├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── fr.yml ├── copilot-instructions.md ├── renovate.json5 └── workflows │ ├── android.yml │ ├── codeql.yml │ └── translation.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── icon.png ├── LICENSE ├── PRIVACY.md ├── README.md ├── app ├── aapt2-resources.cfg ├── build.gradle.kts ├── google-services.json ├── ohos │ └── ohos-3.0.0.0.jar ├── proguard-rules.pro ├── schemas │ ├── com.absinthe.libchecker.database.LCDatabase │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 15.json │ │ ├── 16.json │ │ ├── 17.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 20.json │ │ ├── 21.json │ │ └── 22.json │ └── com.absinthe.libchecker.database.RuleDatabase │ │ └── 1.json └── src │ ├── debug │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-night │ │ └── ic_ci_label.xml │ │ ├── drawable │ │ └── ic_ci_label.xml │ │ ├── values │ │ └── untranslatable.xml │ │ └── xml │ │ └── shortcuts.xml │ ├── foss │ ├── kotlin │ │ ├── com │ │ │ ├── absinthe │ │ │ │ └── libchecker │ │ │ │ │ └── utils │ │ │ │ │ ├── Telemetry.kt │ │ │ │ │ └── harmony │ │ │ │ │ ├── ApplicationDelegate.kt │ │ │ │ │ ├── IBundleManagerDelegate.kt │ │ │ │ │ └── SystemVersionDelegate.kt │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ └── common │ │ │ │ └── internal │ │ │ │ └── BaseGmsClient.java │ │ └── ohos │ │ │ ├── app │ │ │ └── Context.kt │ │ │ ├── bundle │ │ │ ├── AbilityInfo.kt │ │ │ ├── BundleInfo.kt │ │ │ └── IBundleManager.kt │ │ │ └── rpc │ │ │ └── RemoteException.kt │ └── res │ │ └── values │ │ └── bool.xml │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── absinthe │ │ │ └── libchecker │ │ │ └── services │ │ │ ├── IShootService.aidl │ │ │ ├── IWorkerService.aidl │ │ │ ├── OnShootListener.aidl │ │ │ └── OnWorkerListener.aidl │ ├── assets │ │ └── anim │ │ │ ├── gray-down-arrow.json.zip │ │ │ ├── lib_detail_rocket.json.zip │ │ │ └── track_target.json.zip │ ├── ic_launcher-playstore.png │ ├── kotlin │ │ ├── androidx │ │ │ └── appcompat │ │ │ │ └── widget │ │ │ │ └── ToolbarFix.kt │ │ ├── com │ │ │ ├── absinthe │ │ │ │ └── libchecker │ │ │ │ │ ├── LibCheckerApp.kt │ │ │ │ │ ├── annotation │ │ │ │ │ ├── AppListStatus.kt │ │ │ │ │ ├── ElfType.kt │ │ │ │ │ ├── LibType.kt │ │ │ │ │ └── Season.kt │ │ │ │ │ ├── api │ │ │ │ │ ├── AndroidDevelopersInterceptor.kt │ │ │ │ │ ├── ApiManager.kt │ │ │ │ │ ├── BaseUrlInterceptor.kt │ │ │ │ │ ├── bean │ │ │ │ │ │ ├── AndroidDistribution.kt │ │ │ │ │ │ ├── CloudRuleInfo.kt │ │ │ │ │ │ ├── GetAppUpdateInfo.kt │ │ │ │ │ │ ├── LibDetailBean.kt │ │ │ │ │ │ └── RepoInfoResp.kt │ │ │ │ │ └── request │ │ │ │ │ │ ├── AndroidDistributionRequest.kt │ │ │ │ │ │ ├── CloudRuleBundleRequest.kt │ │ │ │ │ │ ├── GetAppUpdateRequest.kt │ │ │ │ │ │ └── LibDetailRequest.kt │ │ │ │ │ ├── app │ │ │ │ │ ├── MainLooperFilter.kt │ │ │ │ │ └── SystemServices.kt │ │ │ │ │ ├── compat │ │ │ │ │ ├── IZipFile.kt │ │ │ │ │ ├── IntentCompat.kt │ │ │ │ │ ├── PackageManagerCompat.kt │ │ │ │ │ ├── VersionCompat.kt │ │ │ │ │ └── ZipFileCompat.kt │ │ │ │ │ ├── constant │ │ │ │ │ ├── AbilityType.kt │ │ │ │ │ ├── AndroidVersions.kt │ │ │ │ │ ├── Constants.kt │ │ │ │ │ ├── GlobalFeatures.kt │ │ │ │ │ ├── GlobalValues.kt │ │ │ │ │ ├── LCUris.kt │ │ │ │ │ ├── OnceTag.kt │ │ │ │ │ ├── URLManager.kt │ │ │ │ │ └── options │ │ │ │ │ │ ├── AdvancedOptions.kt │ │ │ │ │ │ ├── LibReferenceOptions.kt │ │ │ │ │ │ └── SnapshotOptions.kt │ │ │ │ │ ├── data │ │ │ │ │ └── app │ │ │ │ │ │ ├── AppDataSource.kt │ │ │ │ │ │ ├── LocalAppDataSource.kt │ │ │ │ │ │ └── PackageChangeState.kt │ │ │ │ │ ├── database │ │ │ │ │ ├── LCDao.kt │ │ │ │ │ ├── LCDatabase.kt │ │ │ │ │ ├── LCRepository.kt │ │ │ │ │ ├── Repositories.kt │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── AESEncryptionHelper.kt │ │ │ │ │ │ ├── AESEncryptionManager.kt │ │ │ │ │ │ ├── OnCompleteListener.kt │ │ │ │ │ │ └── RoomBackup.kt │ │ │ │ │ └── entity │ │ │ │ │ │ ├── Features.kt │ │ │ │ │ │ ├── LCItem.kt │ │ │ │ │ │ ├── SnapshotDiffStoringItem.kt │ │ │ │ │ │ ├── SnapshotItem.kt │ │ │ │ │ │ ├── TimeStampItem.kt │ │ │ │ │ │ └── TrackItem.kt │ │ │ │ │ ├── features │ │ │ │ │ ├── about │ │ │ │ │ │ ├── AboutPageBuilder.kt │ │ │ │ │ │ ├── DeveloperInfo.kt │ │ │ │ │ │ ├── DeveloperInfoAdapter.kt │ │ │ │ │ │ ├── DeveloperItemView.kt │ │ │ │ │ │ ├── DevelopersDialogFragment.kt │ │ │ │ │ │ └── DevelopersDialogView.kt │ │ │ │ │ ├── album │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── BackupActivity.kt │ │ │ │ │ │ ├── comparison │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── ComparisonActivity.kt │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── ComparisonDashboardHalfView.kt │ │ │ │ │ │ │ │ └── ComparisonDashboardView.kt │ │ │ │ │ │ ├── track │ │ │ │ │ │ │ ├── bean │ │ │ │ │ │ │ │ └── TrackListItem.kt │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── TrackActivity.kt │ │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ │ ├── TrackAdapter.kt │ │ │ │ │ │ │ │ └── TrackListDiff.kt │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── TrackItemView.kt │ │ │ │ │ │ │ │ └── TrackLoadingView.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── AlbumActivity.kt │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ └── AlbumAdapter.kt │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── AlbumItemView.kt │ │ │ │ │ ├── applist │ │ │ │ │ │ ├── DetailFragmentManager.kt │ │ │ │ │ │ ├── LocatedCount.kt │ │ │ │ │ │ ├── Referable.kt │ │ │ │ │ │ ├── Sortable.kt │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── AppBarStateChangeListener.kt │ │ │ │ │ │ │ ├── DetailViewModel.kt │ │ │ │ │ │ │ ├── FeaturesDialog.kt │ │ │ │ │ │ │ ├── IDetailContainer.kt │ │ │ │ │ │ │ ├── VersionedFeature.kt │ │ │ │ │ │ │ ├── bean │ │ │ │ │ │ │ │ ├── AlternativeLaunchItem.kt │ │ │ │ │ │ │ │ ├── AppBundleItem.kt │ │ │ │ │ │ │ │ ├── AppDetailToolbarItem.kt │ │ │ │ │ │ │ │ ├── AppIconItem.kt │ │ │ │ │ │ │ │ ├── AppPropItem.kt │ │ │ │ │ │ │ │ ├── DetailExtraBean.kt │ │ │ │ │ │ │ │ ├── FeatureItem.kt │ │ │ │ │ │ │ │ ├── FeaturePriority.kt │ │ │ │ │ │ │ │ ├── KotlinToolingMetadata.kt │ │ │ │ │ │ │ │ ├── SignatureDetailItem.kt │ │ │ │ │ │ │ │ ├── StatefulComponent.kt │ │ │ │ │ │ │ │ └── StaticLibItem.kt │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── AlternativeLaunchBSDFragment.kt │ │ │ │ │ │ │ │ ├── ApkDetailActivity.kt │ │ │ │ │ │ │ │ ├── AppBundleBottomSheetDialogFragment.kt │ │ │ │ │ │ │ │ ├── AppDetailActivity.kt │ │ │ │ │ │ │ │ ├── AppInfoBottomSheetDialogFragment.kt │ │ │ │ │ │ │ │ ├── AppInstallSourceBSDFragment.kt │ │ │ │ │ │ │ │ ├── AppPropBottomSheetDialogFragment.kt │ │ │ │ │ │ │ │ ├── BaseAppDetailActivity.kt │ │ │ │ │ │ │ │ ├── ELFDetailDialogFragment.kt │ │ │ │ │ │ │ │ ├── LibDetailDialogFragment.kt │ │ │ │ │ │ │ │ ├── OverlayDetailBottomSheetDialogFragment.kt │ │ │ │ │ │ │ │ ├── PermissionDetailDialogFragment.kt │ │ │ │ │ │ │ │ ├── SignatureDetailBSDFragment.kt │ │ │ │ │ │ │ │ ├── XmlBSDFragment.kt │ │ │ │ │ │ │ │ ├── XposedInfoDialogFragment.kt │ │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ │ ├── AlternativeLaunchAdapter.kt │ │ │ │ │ │ │ │ ├── AppBundleAdapter.kt │ │ │ │ │ │ │ │ ├── AppDetailToolbarAdapter.kt │ │ │ │ │ │ │ │ ├── AppInfoAdapter.kt │ │ │ │ │ │ │ │ ├── AppPropsAdapter.kt │ │ │ │ │ │ │ │ ├── FeatureAdapter.kt │ │ │ │ │ │ │ │ ├── LibDetailItemAdapter.kt │ │ │ │ │ │ │ │ ├── LibStringAdapter.kt │ │ │ │ │ │ │ │ ├── LibStringDiffUtil.kt │ │ │ │ │ │ │ │ ├── ProcessBarAdapter.kt │ │ │ │ │ │ │ │ ├── SignatureDetailAdapter.kt │ │ │ │ │ │ │ │ ├── XposedDetailItemAdapter.kt │ │ │ │ │ │ │ │ └── node │ │ │ │ │ │ │ │ │ ├── AbiLabelNode.kt │ │ │ │ │ │ │ │ │ ├── BaseAbiLabelsNode.kt │ │ │ │ │ │ │ │ │ ├── LibDetailItem.kt │ │ │ │ │ │ │ │ │ └── XposedDetailItem.kt │ │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ └── BaseDetailFragment.kt │ │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── AbilityAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── ComponentsAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── DexAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── MetaDataAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── NativeAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── PermissionAnalysisFragment.kt │ │ │ │ │ │ │ │ ├── SignaturesAnalysisFragment.kt │ │ │ │ │ │ │ │ └── StaticAnalysisFragment.kt │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── AlternativeLaunchBSDView.kt │ │ │ │ │ │ │ │ ├── AlternativeLaunchItemView.kt │ │ │ │ │ │ │ │ ├── AppBundleBottomSheetView.kt │ │ │ │ │ │ │ │ ├── AppBundleItemView.kt │ │ │ │ │ │ │ │ ├── AppDetailToolbarView.kt │ │ │ │ │ │ │ │ ├── AppInfoBottomSheetView.kt │ │ │ │ │ │ │ │ ├── AppInfoItemView.kt │ │ │ │ │ │ │ │ ├── AppInstallSourceBottomSheetView.kt │ │ │ │ │ │ │ │ ├── AppInstallSourceItemView.kt │ │ │ │ │ │ │ │ ├── AppInstallTimeItemView.kt │ │ │ │ │ │ │ │ ├── AppPropItemView.kt │ │ │ │ │ │ │ │ ├── AppPropsBottomSheetView.kt │ │ │ │ │ │ │ │ ├── CenterAlignImageSpan.kt │ │ │ │ │ │ │ │ ├── ComponentLibItemView.kt │ │ │ │ │ │ │ │ ├── ComponentRecyclerView.kt │ │ │ │ │ │ │ │ ├── DetailsTitleView.kt │ │ │ │ │ │ │ │ ├── DexListEmptyView.kt │ │ │ │ │ │ │ │ ├── ELFInfoBottomSheetView.kt │ │ │ │ │ │ │ │ ├── EmptyListView.kt │ │ │ │ │ │ │ │ ├── FeatureLabelView.kt │ │ │ │ │ │ │ │ ├── LibDetailBottomSheetView.kt │ │ │ │ │ │ │ │ ├── MetadataLibItemView.kt │ │ │ │ │ │ │ │ ├── NativeLibExtractTipView.kt │ │ │ │ │ │ │ │ ├── NativeLibItemView.kt │ │ │ │ │ │ │ │ ├── OverlayDetailBottomSheetView.kt │ │ │ │ │ │ │ │ ├── PermissionInfoBottomSheetView.kt │ │ │ │ │ │ │ │ ├── ProcessBarView.kt │ │ │ │ │ │ │ │ ├── ProcessIndicatorView.kt │ │ │ │ │ │ │ │ ├── SignatureDetailBottomSheetView.kt │ │ │ │ │ │ │ │ ├── SignatureDetailItemView.kt │ │ │ │ │ │ │ │ ├── StaticLibItemView.kt │ │ │ │ │ │ │ │ ├── TextSwitcherView.kt │ │ │ │ │ │ │ │ ├── XmlBottomSheetView.kt │ │ │ │ │ │ │ │ └── XposedInfoBottomSheetView.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── AdvancedMenuBSDFragment.kt │ │ │ │ │ │ │ ├── AppListFragment.kt │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── AppAdapter.kt │ │ │ │ │ │ │ └── AppListDiffUtil.kt │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── AdvancedMenuBSDView.kt │ │ │ │ │ │ │ ├── AdvancedMenuItemView.kt │ │ │ │ │ │ │ ├── AdvancedMenuSortView.kt │ │ │ │ │ │ │ ├── AppItemView.kt │ │ │ │ │ │ │ ├── AppListInitialiseView.kt │ │ │ │ │ │ │ └── AppListRejectView.kt │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── ABILabelAxisFormatter.kt │ │ │ │ │ │ ├── BaseChartDataSource.kt │ │ │ │ │ │ ├── BaseVariableChartDataSource.kt │ │ │ │ │ │ ├── ChartSourceItem.kt │ │ │ │ │ │ ├── ChartViewModel.kt │ │ │ │ │ │ ├── IAndroidSDKChart.kt │ │ │ │ │ │ ├── IChartDataSource.kt │ │ │ │ │ │ ├── IHeavyWork.kt │ │ │ │ │ │ ├── IntegerFormatter.kt │ │ │ │ │ │ ├── OsVersionAxisFormatter.kt │ │ │ │ │ │ ├── PercentageFormatter.kt │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── AABChartDataSource.kt │ │ │ │ │ │ │ ├── ABIChartDataSource.kt │ │ │ │ │ │ │ ├── CompileApiChartDataSource.kt │ │ │ │ │ │ │ ├── DetailedABIChartDataSource.kt │ │ │ │ │ │ │ ├── JetpackComposeChartDataSource.kt │ │ │ │ │ │ │ ├── KotlinChartDataSource.kt │ │ │ │ │ │ │ ├── MarketDistributionChartDataSource.kt │ │ │ │ │ │ │ ├── MinApiChartDataSource.kt │ │ │ │ │ │ │ ├── PageSize16KBChartDataSource.kt │ │ │ │ │ │ │ └── TargetApiChartDataSource.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── ChartActivity.kt │ │ │ │ │ │ │ ├── ChartFragment.kt │ │ │ │ │ │ │ ├── ClassifyBottomSheetDialogFragment.kt │ │ │ │ │ │ │ ├── ClassifyDialogView.kt │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── AndroidVersionLabelView.kt │ │ │ │ │ │ │ ├── ChartDetailItemView.kt │ │ │ │ │ │ │ ├── ExpandingView.kt │ │ │ │ │ │ │ └── MarketDistributionDashboardView.kt │ │ │ │ │ ├── home │ │ │ │ │ │ ├── HomeViewModel.kt │ │ │ │ │ │ ├── INavViewContainer.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ │ │ └── adapter │ │ │ │ │ │ │ └── AdvancedMenuAdapter.kt │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ │ │ ├── bean │ │ │ │ │ │ │ └── GetUpdatesItem.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── CloudRulesDialogFragment.kt │ │ │ │ │ │ │ ├── CloudRulesDialogView.kt │ │ │ │ │ │ │ ├── GetUpdatesDialogFragment.kt │ │ │ │ │ │ │ ├── GetUpdatesDialogView.kt │ │ │ │ │ │ │ ├── InAppUpdateDialogFragment.kt │ │ │ │ │ │ │ ├── InAppUpdateDialogView.kt │ │ │ │ │ │ │ ├── LibReferenceThresholdView.kt │ │ │ │ │ │ │ ├── LibThresholdDialogFragment.kt │ │ │ │ │ │ │ ├── SettingsFragment.kt │ │ │ │ │ │ │ └── adapter │ │ │ │ │ │ │ └── GetUpdatesAdapter.kt │ │ │ │ │ ├── snapshot │ │ │ │ │ │ ├── SnapshotViewModel.kt │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── bean │ │ │ │ │ │ │ │ ├── SnapshotDetailItem.kt │ │ │ │ │ │ │ │ └── SnapshotDiffItem.kt │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── SnapshotDetailActivity.kt │ │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ │ ├── SnapshotDetailAdapter.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailCountAdapter.kt │ │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ │ │ ├── BaseSnapshotNode.kt │ │ │ │ │ │ │ │ │ ├── SnapshotComponentNode.kt │ │ │ │ │ │ │ │ │ ├── SnapshotDetailCountNode.kt │ │ │ │ │ │ │ │ │ ├── SnapshotNativeNode.kt │ │ │ │ │ │ │ │ │ └── SnapshotTitleNode.kt │ │ │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ │ │ ├── SnapshotComponentProvider.kt │ │ │ │ │ │ │ │ │ ├── SnapshotNativeProvider.kt │ │ │ │ │ │ │ │ │ └── SnapshotTitleProvider.kt │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── SnapshotDetailComponentView.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailCountView.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailDeletedView.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailNativeView.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailNewInstallView.kt │ │ │ │ │ │ │ │ ├── SnapshotDetailTitleView.kt │ │ │ │ │ │ │ │ ├── SnapshotEmptyView.kt │ │ │ │ │ │ │ │ ├── SnapshotNoDiffBSView.kt │ │ │ │ │ │ │ │ ├── SnapshotTitleView.kt │ │ │ │ │ │ │ │ └── SnapshotTypeIndicatorView.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── SnapshotFragment.kt │ │ │ │ │ │ │ ├── SnapshotMenuBSDFragment.kt │ │ │ │ │ │ │ ├── SnapshotNoDiffBSDFragment.kt │ │ │ │ │ │ │ ├── TimeNodeBottomSheetDialogFragment.kt │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── SnapshotAdapter.kt │ │ │ │ │ │ │ ├── SnapshotDiffUtil.kt │ │ │ │ │ │ │ ├── SystemPropsAdapter.kt │ │ │ │ │ │ │ ├── TimeNodeAdapter.kt │ │ │ │ │ │ │ └── TimeNodeItemAdapter.kt │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── SnapshotDashboardView.kt │ │ │ │ │ │ │ ├── SnapshotItemView.kt │ │ │ │ │ │ │ ├── SnapshotMenuBSDView.kt │ │ │ │ │ │ │ ├── SnapshotMenuItemView.kt │ │ │ │ │ │ │ ├── SnapshotStateIndicatorView.kt │ │ │ │ │ │ │ ├── SystemPropItemView.kt │ │ │ │ │ │ │ ├── TimeNodeAddApkView.kt │ │ │ │ │ │ │ ├── TimeNodeAutoRemoveView.kt │ │ │ │ │ │ │ ├── TimeNodeBottomSheetView.kt │ │ │ │ │ │ │ └── TimeNodeItemView.kt │ │ │ │ │ └── statistics │ │ │ │ │ │ ├── LibReferenceViewModel.kt │ │ │ │ │ │ ├── bean │ │ │ │ │ │ ├── LibReference.kt │ │ │ │ │ │ ├── LibStringItem.kt │ │ │ │ │ │ └── LibStringItemChip.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── LibReferenceActivity.kt │ │ │ │ │ │ ├── LibReferenceFragment.kt │ │ │ │ │ │ ├── LibReferenceMenuBSDFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── LibReferenceAdapter.kt │ │ │ │ │ │ ├── RefListDiffUtil.kt │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── LibReferenceProvider.kt │ │ │ │ │ │ │ └── MultipleAppsIconProvider.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── LibReferenceItemView.kt │ │ │ │ │ │ ├── LibReferenceLoadingView.kt │ │ │ │ │ │ ├── LibReferenceMenuBSDView.kt │ │ │ │ │ │ ├── LibReferenceMenuItemView.kt │ │ │ │ │ │ ├── MultipleAppsIconItemView.kt │ │ │ │ │ │ └── MultipleAppsIconView.kt │ │ │ │ │ ├── integrations │ │ │ │ │ ├── anywhere │ │ │ │ │ │ └── AnywhereManager.kt │ │ │ │ │ ├── blocker │ │ │ │ │ │ └── BlockerManager.kt │ │ │ │ │ └── monkeyking │ │ │ │ │ │ ├── MonkeyKingManager.kt │ │ │ │ │ │ └── ShareCmpInfo.kt │ │ │ │ │ ├── services │ │ │ │ │ ├── ShootService.kt │ │ │ │ │ └── WorkerService.kt │ │ │ │ │ ├── ui │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── HighlightAdapter.kt │ │ │ │ │ │ ├── HorizontalSpacesItemDecoration.kt │ │ │ │ │ │ └── VerticalSpacesItemDecoration.kt │ │ │ │ │ ├── app │ │ │ │ │ │ ├── BottomSheetRecyclerView.kt │ │ │ │ │ │ └── CheckPackageOnResumingActivity.kt │ │ │ │ │ ├── base │ │ │ │ │ │ ├── BaseActivity.kt │ │ │ │ │ │ ├── BaseAlertDialogBuilder.kt │ │ │ │ │ │ ├── BaseFragment.kt │ │ │ │ │ │ ├── BaseListControllerFragment.kt │ │ │ │ │ │ ├── IAppBarContainer.kt │ │ │ │ │ │ ├── IBinding.kt │ │ │ │ │ │ ├── IListController.kt │ │ │ │ │ │ └── SaturationTransformation.kt │ │ │ │ │ └── bridge │ │ │ │ │ │ └── BridgeActivity.kt │ │ │ │ │ ├── utils │ │ │ │ │ ├── DateUtils.kt │ │ │ │ │ ├── DeviceUtils.kt │ │ │ │ │ ├── DownloadUtils.kt │ │ │ │ │ ├── FileUtils.kt │ │ │ │ │ ├── FreezeUtils.kt │ │ │ │ │ ├── IntentFilterUtils.kt │ │ │ │ │ ├── JsonUtil.kt │ │ │ │ │ ├── LCAppUtils.kt │ │ │ │ │ ├── OsUtils.kt │ │ │ │ │ ├── PackageUtils.kt │ │ │ │ │ ├── SPDelegates.kt │ │ │ │ │ ├── SPUtils.kt │ │ │ │ │ ├── StorageUtils.kt │ │ │ │ │ ├── Toasty.kt │ │ │ │ │ ├── UiUtils.kt │ │ │ │ │ ├── apk │ │ │ │ │ │ ├── APKSParser.kt │ │ │ │ │ │ ├── ApkPreview.kt │ │ │ │ │ │ ├── XAPKManifest.kt │ │ │ │ │ │ └── XAPKParser.kt │ │ │ │ │ ├── dex │ │ │ │ │ │ ├── FastDexFileFactory.java │ │ │ │ │ │ └── ZipDexContainer2.java │ │ │ │ │ ├── elf │ │ │ │ │ │ ├── Dynamic32Structure.java │ │ │ │ │ │ ├── Dynamic64Structure.java │ │ │ │ │ │ ├── Elf.java │ │ │ │ │ │ ├── Elf32Header.java │ │ │ │ │ │ ├── Elf64Header.java │ │ │ │ │ │ ├── ElfInfo.kt │ │ │ │ │ │ ├── ElfParser.java │ │ │ │ │ │ ├── Program32Header.java │ │ │ │ │ │ ├── Program64Header.java │ │ │ │ │ │ ├── Section32Header.java │ │ │ │ │ │ ├── Section64Header.java │ │ │ │ │ │ ├── Symbol32.java │ │ │ │ │ │ ├── Symbol64.java │ │ │ │ │ │ └── source │ │ │ │ │ │ │ ├── ByteBufferDataSource.java │ │ │ │ │ │ │ ├── DataSource.java │ │ │ │ │ │ │ ├── FileChannelDataSource.java │ │ │ │ │ │ │ └── InputStreamDataSource.java │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── ActivityExtensions.kt │ │ │ │ │ │ ├── AdapterExtensions.kt │ │ │ │ │ │ ├── CompatExtensions.kt │ │ │ │ │ │ ├── ConfigrationExtensions.kt │ │ │ │ │ │ ├── ContextExtensions.kt │ │ │ │ │ │ ├── DispatcherExtensions.kt │ │ │ │ │ │ ├── FragmentExtensions.kt │ │ │ │ │ │ ├── HandlerExtensions.kt │ │ │ │ │ │ ├── LayoutExtensions.kt │ │ │ │ │ │ ├── MessageDigestExtensions.kt │ │ │ │ │ │ ├── NumberExtensions.kt │ │ │ │ │ │ ├── PackageInfoExtensions.kt │ │ │ │ │ │ ├── StringExtensions.kt │ │ │ │ │ │ ├── TypeExtensions.kt │ │ │ │ │ │ └── ViewExtensions.kt │ │ │ │ │ ├── harmony │ │ │ │ │ │ └── HarmonyOsUtil.kt │ │ │ │ │ ├── manifest │ │ │ │ │ │ ├── ApplicationReader.java │ │ │ │ │ │ ├── FullManifestReader.java │ │ │ │ │ │ ├── HiddenPermissionsReader.java │ │ │ │ │ │ ├── ManifestReader.java │ │ │ │ │ │ ├── PropertiesMap.kt │ │ │ │ │ │ ├── ResourceParser.java │ │ │ │ │ │ └── StaticLibraryReader.java │ │ │ │ │ └── timber │ │ │ │ │ │ ├── FileLoggingTree.kt │ │ │ │ │ │ ├── ReleaseTree.kt │ │ │ │ │ │ └── ThreadAwareDebugTree.kt │ │ │ │ │ └── view │ │ │ │ │ ├── AViewGroup.kt │ │ │ │ │ ├── app │ │ │ │ │ ├── AlwaysMarqueeTextView.kt │ │ │ │ │ ├── AppsListLoadingView.kt │ │ │ │ │ ├── CheckableChipView.kt │ │ │ │ │ ├── CustomViewFlipper.kt │ │ │ │ │ ├── HeightAnimatableLinearLayout.kt │ │ │ │ │ ├── IHeaderView.kt │ │ │ │ │ ├── RingDotsView.kt │ │ │ │ │ └── ToastView.kt │ │ │ │ │ ├── drawable │ │ │ │ │ ├── CapsuleDrawable.kt │ │ │ │ │ └── RoundedRectDrawable.kt │ │ │ │ │ └── span │ │ │ │ │ └── CustomTypefaceSpan.kt │ │ │ ├── github │ │ │ │ └── luben │ │ │ │ │ └── zstd │ │ │ │ │ └── ZstdInputStream.kt │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── material │ │ │ │ └── shape │ │ │ │ └── SuperEllipseCornerTreatment.kt │ │ └── org │ │ │ └── tukaani │ │ │ └── xz │ │ │ ├── MemoryLimitException.kt │ │ │ ├── SingleXZInputStream.kt │ │ │ └── XZInputStream.kt │ ├── proto │ │ └── LibChecker.proto │ └── res │ │ ├── anim │ │ ├── anim_fade_in.xml │ │ ├── anim_fade_out.xml │ │ ├── anim_text_switcher_in.xml │ │ ├── anim_text_switcher_out.xml │ │ ├── rd_dialog_enter.xml │ │ └── rd_dialog_exit.xml │ │ ├── animator │ │ └── alpha_animator.xml │ │ ├── drawable-night │ │ ├── ic_ci_label.xml │ │ ├── ic_gradle.xml │ │ ├── ic_label_deleted_package.xml │ │ └── ic_label_new_package.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxxhdpi │ │ ├── pic_kali.webp │ │ ├── pic_logo.png │ │ ├── pic_qhy040404.webp │ │ └── pic_rabbit.webp │ │ ├── drawable │ │ ├── bg_app_item_text.xml │ │ ├── bg_app_item_text_inset.xml │ │ ├── bg_circle_outline.xml │ │ ├── bg_circle_secondary_container.xml │ │ ├── bg_lib_detail_item.xml │ │ ├── bg_snapshot_detail_count.xml │ │ ├── bg_toast.xml │ │ ├── ic_16kb_align.xml │ │ ├── ic_16kb_compat.xml │ │ ├── ic_aab.xml │ │ ├── ic_abi_label_32bit.xml │ │ ├── ic_abi_label_64bit.xml │ │ ├── ic_abi_label_arm64_v8a.xml │ │ ├── ic_abi_label_armeabi.xml │ │ ├── ic_abi_label_armeabi_v7a.xml │ │ ├── ic_abi_label_mips.xml │ │ ├── ic_abi_label_mips64.xml │ │ ├── ic_abi_label_multi_arch.xml │ │ ├── ic_abi_label_no_libs.xml │ │ ├── ic_abi_label_riscv32.xml │ │ ├── ic_abi_label_riscv64.xml │ │ ├── ic_abi_label_x86.xml │ │ ├── ic_abi_label_x86_64.xml │ │ ├── ic_add.xml │ │ ├── ic_android_baklava.xml │ │ ├── ic_android_i.xml │ │ ├── ic_android_j.xml │ │ ├── ic_android_k.xml │ │ ├── ic_android_l.xml │ │ ├── ic_android_m.xml │ │ ├── ic_android_n.xml │ │ ├── ic_android_o.xml │ │ ├── ic_android_o_mr1.xml │ │ ├── ic_android_p.xml │ │ ├── ic_android_q.xml │ │ ├── ic_android_r.xml │ │ ├── ic_android_s.xml │ │ ├── ic_android_t.xml │ │ ├── ic_android_u.xml │ │ ├── ic_android_v.xml │ │ ├── ic_apk_analytics.xml │ │ ├── ic_app_list.xml │ │ ├── ic_app_prop.xml │ │ ├── ic_archive.xml │ │ ├── ic_arrow.xml │ │ ├── ic_arrow_drop_down.xml │ │ ├── ic_arrow_right.xml │ │ ├── ic_backup.xml │ │ ├── ic_changed.xml │ │ ├── ic_chart.xml │ │ ├── ic_check.xml │ │ ├── ic_ci_label.xml │ │ ├── ic_classify.xml │ │ ├── ic_cloud_rules.xml │ │ ├── ic_color_palette.xml │ │ ├── ic_compare.xml │ │ ├── ic_content.xml │ │ ├── ic_dark_mode.xml │ │ ├── ic_deny.xml │ │ ├── ic_dex_empty_list_placeholder.xml │ │ ├── ic_disabled_package.xml │ │ ├── ic_empty_list.xml │ │ ├── ic_failed.xml │ │ ├── ic_favorite.xml │ │ ├── ic_fdroid.xml │ │ ├── ic_feature_live_update.xml │ │ ├── ic_firebase_monochrome.xml │ │ ├── ic_github.xml │ │ ├── ic_gradle.xml │ │ ├── ic_harmony_badge.xml │ │ ├── ic_harmonyos_logo.xml │ │ ├── ic_help.xml │ │ ├── ic_icon_blueprint.xml │ │ ├── ic_install_source.xml │ │ ├── ic_jetbrain_kmp.xml │ │ ├── ic_label.xml │ │ ├── ic_label_compile_sdk.xml │ │ ├── ic_label_deleted_package.xml │ │ ├── ic_label_min_sdk.xml │ │ ├── ic_label_new_package.xml │ │ ├── ic_label_target_sdk.xml │ │ ├── ic_language.xml │ │ ├── ic_launch.xml │ │ ├── ic_lib_sort.xml │ │ ├── ic_log.xml │ │ ├── ic_logo.xml │ │ ├── ic_manage.xml │ │ ├── ic_menu.xml │ │ ├── ic_move.xml │ │ ├── ic_multi_arch.xml │ │ ├── ic_no.xml │ │ ├── ic_notebook.xml │ │ ├── ic_open_in_new.xml │ │ ├── ic_outline_change_circle_24.xml │ │ ├── ic_outline_image.xml │ │ ├── ic_outline_info.xml │ │ ├── ic_outline_save.xml │ │ ├── ic_processes.xml │ │ ├── ic_pwa.xml │ │ ├── ic_question.xml │ │ ├── ic_reactivex.xml │ │ ├── ic_refresh.xml │ │ ├── ic_remove.xml │ │ ├── ic_report.xml │ │ ├── ic_repository.xml │ │ ├── ic_restore.xml │ │ ├── ic_sc_chart.xml │ │ ├── ic_sc_snapshot.xml │ │ ├── ic_sc_statistics.xml │ │ ├── ic_search.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_signatures.xml │ │ ├── ic_snapshot.xml │ │ ├── ic_split.xml │ │ ├── ic_team.xml │ │ ├── ic_threshold.xml │ │ ├── ic_time.xml │ │ ├── ic_track.xml │ │ ├── ic_translate.xml │ │ ├── ic_twotone_content_copy_24.xml │ │ ├── ic_upgrade.xml │ │ ├── ic_url.xml │ │ ├── ic_xposed.xml │ │ ├── ic_yes.xml │ │ ├── launcher_icon_monochrome.xml │ │ ├── ripple_feature_label_36dp.xml │ │ ├── ripple_feature_label_48dp.xml │ │ ├── splash_anim_vector.xml │ │ └── splash_drawable.xml │ │ ├── layout-land │ │ └── activity_main.xml │ │ ├── layout-sw600dp │ │ └── activity_main.xml │ │ ├── layout │ │ ├── activity_album.xml │ │ ├── activity_app_detail.xml │ │ ├── activity_backup.xml │ │ ├── activity_chart.xml │ │ ├── activity_comparison.xml │ │ ├── activity_lib_reference.xml │ │ ├── activity_main.xml │ │ ├── activity_snapshot_detail.xml │ │ ├── activity_track.xml │ │ ├── fragment_app_list.xml │ │ ├── fragment_lib_component.xml │ │ ├── fragment_lib_native.xml │ │ ├── fragment_lib_reference.xml │ │ ├── fragment_pie_chart.xml │ │ ├── fragment_snapshot.xml │ │ ├── layout_abi_chart_switch.xml │ │ └── preference_recyclerview.xml │ │ ├── menu │ │ ├── abi_chart_menu.xml │ │ ├── app_detail_menu.xml │ │ ├── app_list_menu.xml │ │ ├── bottom_nav_menu.xml │ │ ├── comparison_menu.xml │ │ ├── lib_ref_menu.xml │ │ ├── snapshot_detail_menu.xml │ │ ├── snapshot_menu.xml │ │ └── track_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── resources.properties │ │ ├── values-ar-rSA │ │ └── strings.xml │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-in-rID │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-night-v31 │ │ └── colors.xml │ │ ├── values-night │ │ ├── colors.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ └── strings.xml │ │ ├── values-v26 │ │ └── themes.xml │ │ ├── values-v27 │ │ └── themes.xml │ │ ├── values-v28 │ │ └── dimens.xml │ │ ├── values-v29 │ │ └── themes.xml │ │ ├── values-v31 │ │ ├── colors.xml │ │ └── themes.xml │ │ ├── values-v34 │ │ └── bool.xml │ │ ├── values-vi-rVN │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── bool.xml │ │ ├── colors.xml │ │ ├── colors_material.xml │ │ ├── const.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── md_themes.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── themes.xml │ │ ├── themes_customs.xml │ │ ├── themes_overlay.xml │ │ └── untranslatable.xml │ │ └── xml │ │ ├── album_backup.xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ ├── filepaths.xml │ │ ├── main_split_config.xml │ │ ├── main_split_config_foldable.xml │ │ ├── settings.xml │ │ └── shortcuts.xml │ └── market │ ├── AndroidManifest.xml │ ├── kotlin │ ├── com │ │ └── absinthe │ │ │ └── libchecker │ │ │ └── utils │ │ │ ├── Telemetry.kt │ │ │ └── harmony │ │ │ ├── ApplicationDelegate.kt │ │ │ ├── IBundleManagerDelegate.kt │ │ │ └── SystemVersionDelegate.kt │ └── ohos │ │ └── app │ │ ├── Application.java │ │ └── ContextDeal.java │ └── res │ └── values │ └── bool.xml ├── changelog ├── CHANGELOG.md └── CHANGELOG_CN.md ├── crowdin.yml ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── 1341.txt │ │ ├── 1401.txt │ │ ├── 1403.txt │ │ ├── 1448.txt │ │ ├── 1465.txt │ │ ├── 1497.txt │ │ ├── 1585.txt │ │ ├── 1682.txt │ │ ├── 1749.txt │ │ ├── 1893.txt │ │ ├── 2159.txt │ │ ├── 2343.txt │ │ ├── 2441.txt │ │ └── 2515.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── icon.png │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-CN │ ├── changelogs │ ├── 1341.txt │ ├── 1401.txt │ ├── 1403.txt │ ├── 1448.txt │ ├── 1465.txt │ ├── 1497.txt │ ├── 1585.txt │ ├── 1682.txt │ ├── 1749.txt │ ├── 1893.txt │ ├── 2159.txt │ ├── 2343.txt │ ├── 2441.txt │ └── 2515.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ └── icon.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle ├── init.d │ └── dependencyUpdates.gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hidden-api ├── build.gradle.kts └── src │ └── main │ └── java │ ├── android │ ├── content │ │ └── pm │ │ │ ├── ApplicationInfoHidden.java │ │ │ ├── IPackageManager.java │ │ │ ├── PackageInfoHidden.java │ │ │ └── PackageParser.java │ ├── os │ │ └── SystemProperties.java │ └── text │ │ └── format │ │ └── FormatterHidden.java │ └── hidden │ └── DexFileHidden.java ├── qodana.yaml ├── settings.gradle.kts └── source ├── coolapk-badge.png ├── figma ├── Deleted_Label.fig ├── Disabled_Label.fig ├── Multi_Arch_Label.fig ├── abi_labels.fig └── header.fig ├── google-play-badge.png ├── header.png ├── icons ├── LICENSE │ ├── LICENSE.CC_BY_NC_3.txt │ └── LICENSE.txt ├── icon.svg ├── icon_round.svg ├── mipmap-hdpi │ └── ic_launcher.png ├── mipmap-mdpi │ └── ic_launcher.png ├── mipmap-xhdpi │ └── ic_launcher.png ├── mipmap-xxhdpi │ └── ic_launcher.png ├── mipmap-xxxhdpi │ └── ic_launcher.png ├── playstore │ └── icon.png └── v2.svg ├── play_icon.png ├── play_leanback.png ├── tg_group_dark.png └── tg_group_light.png /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/ISSUE_TEMPLATE/fr.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.github/workflows/translation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/README.md -------------------------------------------------------------------------------- /app/aapt2-resources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/aapt2-resources.cfg -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/ohos/ohos-3.0.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/ohos/ohos-3.0.0.0.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/12.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/13.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/14.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/15.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/16.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/17.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/18.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/19.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/20.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/21.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.LCDatabase/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.LCDatabase/22.json -------------------------------------------------------------------------------- /app/schemas/com.absinthe.libchecker.database.RuleDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/schemas/com.absinthe.libchecker.database.RuleDatabase/1.json -------------------------------------------------------------------------------- /app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/debug/res/drawable-night/ic_ci_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/debug/res/drawable-night/ic_ci_label.xml -------------------------------------------------------------------------------- /app/src/debug/res/drawable/ic_ci_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/debug/res/drawable/ic_ci_label.xml -------------------------------------------------------------------------------- /app/src/debug/res/values/untranslatable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/debug/res/values/untranslatable.xml -------------------------------------------------------------------------------- /app/src/debug/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/debug/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /app/src/foss/kotlin/com/absinthe/libchecker/utils/Telemetry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/com/absinthe/libchecker/utils/Telemetry.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/ApplicationDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/ApplicationDelegate.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/IBundleManagerDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/IBundleManagerDelegate.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/SystemVersionDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/com/absinthe/libchecker/utils/harmony/SystemVersionDelegate.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/com/google/android/gms/common/internal/BaseGmsClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/com/google/android/gms/common/internal/BaseGmsClient.java -------------------------------------------------------------------------------- /app/src/foss/kotlin/ohos/app/Context.kt: -------------------------------------------------------------------------------- 1 | package ohos.app 2 | 3 | object Context 4 | -------------------------------------------------------------------------------- /app/src/foss/kotlin/ohos/bundle/AbilityInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/ohos/bundle/AbilityInfo.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/ohos/bundle/BundleInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/ohos/bundle/BundleInfo.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/ohos/bundle/IBundleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/kotlin/ohos/bundle/IBundleManager.kt -------------------------------------------------------------------------------- /app/src/foss/kotlin/ohos/rpc/RemoteException.kt: -------------------------------------------------------------------------------- 1 | package ohos.rpc 2 | 3 | object RemoteException 4 | -------------------------------------------------------------------------------- /app/src/foss/res/values/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/foss/res/values/bool.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/aidl/com/absinthe/libchecker/services/IShootService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/aidl/com/absinthe/libchecker/services/IShootService.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/com/absinthe/libchecker/services/IWorkerService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/aidl/com/absinthe/libchecker/services/IWorkerService.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/com/absinthe/libchecker/services/OnShootListener.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/aidl/com/absinthe/libchecker/services/OnShootListener.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/com/absinthe/libchecker/services/OnWorkerListener.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/aidl/com/absinthe/libchecker/services/OnWorkerListener.aidl -------------------------------------------------------------------------------- /app/src/main/assets/anim/gray-down-arrow.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/assets/anim/gray-down-arrow.json.zip -------------------------------------------------------------------------------- /app/src/main/assets/anim/lib_detail_rocket.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/assets/anim/lib_detail_rocket.json.zip -------------------------------------------------------------------------------- /app/src/main/assets/anim/track_target.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/assets/anim/track_target.json.zip -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/androidx/appcompat/widget/ToolbarFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/androidx/appcompat/widget/ToolbarFix.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/LibCheckerApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/LibCheckerApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/annotation/AppListStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/annotation/AppListStatus.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/annotation/ElfType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/annotation/ElfType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/annotation/LibType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/annotation/LibType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/annotation/Season.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/annotation/Season.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/AndroidDevelopersInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/AndroidDevelopersInterceptor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/ApiManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/ApiManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/BaseUrlInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/BaseUrlInterceptor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/bean/AndroidDistribution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/bean/AndroidDistribution.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/bean/CloudRuleInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/bean/CloudRuleInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/bean/GetAppUpdateInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/bean/GetAppUpdateInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/bean/LibDetailBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/bean/LibDetailBean.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/bean/RepoInfoResp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/bean/RepoInfoResp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/request/AndroidDistributionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/request/AndroidDistributionRequest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/request/CloudRuleBundleRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/request/CloudRuleBundleRequest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/request/GetAppUpdateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/request/GetAppUpdateRequest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/api/request/LibDetailRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/api/request/LibDetailRequest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/app/MainLooperFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/app/MainLooperFilter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/app/SystemServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/app/SystemServices.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/compat/IZipFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/compat/IZipFile.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/compat/IntentCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/compat/IntentCompat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/compat/PackageManagerCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/compat/PackageManagerCompat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/compat/VersionCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/compat/VersionCompat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/compat/ZipFileCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/compat/ZipFileCompat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/AbilityType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/AbilityType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/AndroidVersions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/AndroidVersions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/GlobalFeatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/GlobalFeatures.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/GlobalValues.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/GlobalValues.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/LCUris.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/LCUris.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/OnceTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/OnceTag.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/URLManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/URLManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/options/AdvancedOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/options/AdvancedOptions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/options/LibReferenceOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/options/LibReferenceOptions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/constant/options/SnapshotOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/constant/options/SnapshotOptions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/data/app/AppDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/data/app/AppDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/data/app/LocalAppDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/data/app/LocalAppDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/data/app/PackageChangeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/data/app/PackageChangeState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/LCDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/LCDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/LCDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/LCDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/LCRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/LCRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/Repositories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/Repositories.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/backup/AESEncryptionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/backup/AESEncryptionHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/backup/AESEncryptionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/backup/AESEncryptionManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/backup/OnCompleteListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/backup/OnCompleteListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/backup/RoomBackup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/backup/RoomBackup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/Features.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/Features.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/LCItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/LCItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/SnapshotDiffStoringItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/SnapshotDiffStoringItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/SnapshotItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/SnapshotItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/TimeStampItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/TimeStampItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/database/entity/TrackItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/database/entity/TrackItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/AboutPageBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/AboutPageBuilder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperInfoAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperInfoAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/DeveloperItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/DevelopersDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/DevelopersDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/about/DevelopersDialogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/about/DevelopersDialogView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/backup/ui/BackupActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/backup/ui/BackupActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/comparison/ui/ComparisonActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/comparison/ui/ComparisonActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/bean/TrackListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/bean/TrackListItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/TrackActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/TrackActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/adapter/TrackAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/adapter/TrackAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/adapter/TrackListDiff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/adapter/TrackListDiff.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/view/TrackItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/view/TrackItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/view/TrackLoadingView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/track/ui/view/TrackLoadingView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/AlbumActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/AlbumActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/adapter/AlbumAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/adapter/AlbumAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/view/AlbumItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/album/ui/view/AlbumItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/DetailFragmentManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/DetailFragmentManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/LocatedCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/LocatedCount.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/Referable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/Referable.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/Sortable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/Sortable.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/AppBarStateChangeListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/AppBarStateChangeListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/DetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/DetailViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/FeaturesDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/FeaturesDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/IDetailContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/IDetailContainer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/VersionedFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/VersionedFeature.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AlternativeLaunchItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AlternativeLaunchItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppBundleItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppBundleItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppDetailToolbarItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppDetailToolbarItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppIconItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppIconItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppPropItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/AppPropItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/DetailExtraBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/DetailExtraBean.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/FeatureItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/FeatureItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/FeaturePriority.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/FeaturePriority.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/KotlinToolingMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/KotlinToolingMetadata.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/SignatureDetailItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/SignatureDetailItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/StatefulComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/StatefulComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/StaticLibItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/bean/StaticLibItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AlternativeLaunchBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AlternativeLaunchBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/ApkDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/ApkDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AppDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AppDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AppInstallSourceBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/AppInstallSourceBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/BaseAppDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/BaseAppDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/ELFDetailDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/ELFDetailDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/LibDetailDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/LibDetailDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/SignatureDetailBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/SignatureDetailBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/XmlBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/XmlBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/XposedInfoDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/XposedInfoDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppBundleAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppBundleAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppInfoAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppInfoAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppPropsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/AppPropsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/FeatureAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/FeatureAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibDetailItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibDetailItemAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibStringAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibStringAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibStringDiffUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/LibStringDiffUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/ProcessBarAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/ProcessBarAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/node/AbiLabelNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/node/AbiLabelNode.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/node/LibDetailItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/adapter/node/LibDetailItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/base/BaseDetailFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/base/BaseDetailFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/impl/DexAnalysisFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/impl/DexAnalysisFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppBundleItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppBundleItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppDetailToolbarView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppDetailToolbarView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppInfoItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppInfoItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppPropItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/AppPropItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/CenterAlignImageSpan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/CenterAlignImageSpan.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ComponentLibItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ComponentLibItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ComponentRecyclerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ComponentRecyclerView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/DetailsTitleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/DetailsTitleView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/DexListEmptyView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/DexListEmptyView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/EmptyListView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/EmptyListView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/FeatureLabelView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/FeatureLabelView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/MetadataLibItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/MetadataLibItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/NativeLibItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/NativeLibItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ProcessBarView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ProcessBarView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ProcessIndicatorView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/ProcessIndicatorView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/StaticLibItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/StaticLibItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/TextSwitcherView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/TextSwitcherView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/XmlBottomSheetView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/detail/ui/view/XmlBottomSheetView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/AdvancedMenuBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/AdvancedMenuBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/AppListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/AppListFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/adapter/AppAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/adapter/AppAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/adapter/AppListDiffUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/adapter/AppListDiffUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuBSDView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuBSDView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuSortView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AdvancedMenuSortView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppListInitialiseView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppListInitialiseView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppListRejectView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/applist/ui/view/AppListRejectView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ABILabelAxisFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ABILabelAxisFormatter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/BaseChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/BaseChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/BaseVariableChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/BaseVariableChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ChartSourceItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ChartSourceItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ChartViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ChartViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/IAndroidSDKChart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/IAndroidSDKChart.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/IChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/IChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/IHeavyWork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/IHeavyWork.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/IntegerFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/IntegerFormatter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/OsVersionAxisFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/OsVersionAxisFormatter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/PercentageFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/PercentageFormatter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/AABChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/AABChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/ABIChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/ABIChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/CompileApiChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/CompileApiChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/DetailedABIChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/DetailedABIChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/JetpackComposeChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/JetpackComposeChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/KotlinChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/KotlinChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/MarketDistributionChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/MarketDistributionChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/MinApiChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/MinApiChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/PageSize16KBChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/PageSize16KBChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/TargetApiChartDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/impl/TargetApiChartDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ChartActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ChartActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ChartFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ChartFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ClassifyBottomSheetDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ClassifyBottomSheetDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ClassifyDialogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/ClassifyDialogView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/AndroidVersionLabelView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/AndroidVersionLabelView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/ChartDetailItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/ChartDetailItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/ExpandingView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/chart/ui/view/ExpandingView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/home/HomeViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/home/INavViewContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/home/INavViewContainer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/home/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/home/ui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/home/ui/adapter/AdvancedMenuAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/home/ui/adapter/AdvancedMenuAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/SettingsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/bean/GetUpdatesItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/bean/GetUpdatesItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/CloudRulesDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/CloudRulesDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/CloudRulesDialogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/CloudRulesDialogView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/GetUpdatesDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/GetUpdatesDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/GetUpdatesDialogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/GetUpdatesDialogView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/InAppUpdateDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/InAppUpdateDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/InAppUpdateDialogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/InAppUpdateDialogView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/LibReferenceThresholdView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/LibReferenceThresholdView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/LibThresholdDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/LibThresholdDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/SettingsFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/adapter/GetUpdatesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/settings/ui/adapter/GetUpdatesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/SnapshotViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/SnapshotViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/bean/SnapshotDetailItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/bean/SnapshotDetailItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/bean/SnapshotDiffItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/bean/SnapshotDiffItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/SnapshotDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/SnapshotDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotEmptyView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotEmptyView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotNoDiffBSView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotNoDiffBSView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotTitleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/detail/ui/view/SnapshotTitleView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotMenuBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotMenuBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotNoDiffBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/SnapshotNoDiffBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SnapshotAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SnapshotAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SnapshotDiffUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SnapshotDiffUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SystemPropsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/SystemPropsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/TimeNodeAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/TimeNodeAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/TimeNodeItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/adapter/TimeNodeItemAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotDashboardView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotDashboardView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotMenuBSDView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotMenuBSDView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotMenuItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotMenuItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotStateIndicatorView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SnapshotStateIndicatorView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SystemPropItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/SystemPropItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeAddApkView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeAddApkView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeAutoRemoveView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeAutoRemoveView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeBottomSheetView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeBottomSheetView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/snapshot/ui/view/TimeNodeItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/LibReferenceViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/LibReferenceViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibReference.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibStringItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibStringItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibStringItemChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/bean/LibStringItemChip.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceMenuBSDFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/LibReferenceMenuBSDFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/adapter/LibReferenceAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/adapter/LibReferenceAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/adapter/RefListDiffUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/adapter/RefListDiffUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceLoadingView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceLoadingView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceMenuBSDView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceMenuBSDView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceMenuItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/LibReferenceMenuItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/MultipleAppsIconItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/MultipleAppsIconItemView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/MultipleAppsIconView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/features/statistics/ui/view/MultipleAppsIconView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/integrations/anywhere/AnywhereManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/integrations/anywhere/AnywhereManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/integrations/blocker/BlockerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/integrations/blocker/BlockerManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/integrations/monkeyking/MonkeyKingManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/integrations/monkeyking/MonkeyKingManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/integrations/monkeyking/ShareCmpInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/integrations/monkeyking/ShareCmpInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/services/ShootService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/services/ShootService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/services/WorkerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/services/WorkerService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/HighlightAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/HighlightAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/HorizontalSpacesItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/HorizontalSpacesItemDecoration.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/VerticalSpacesItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/adapter/VerticalSpacesItemDecoration.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/app/BottomSheetRecyclerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/app/BottomSheetRecyclerView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/app/CheckPackageOnResumingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/app/CheckPackageOnResumingActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseAlertDialogBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseAlertDialogBuilder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseListControllerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/BaseListControllerFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/IAppBarContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/IAppBarContainer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/IBinding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/IBinding.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/IListController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/IListController.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/base/SaturationTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/base/SaturationTransformation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/ui/bridge/BridgeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/ui/bridge/BridgeActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/DateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/DateUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/DeviceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/DeviceUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/DownloadUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/DownloadUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/FileUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/FreezeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/FreezeUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/IntentFilterUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/IntentFilterUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/JsonUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/JsonUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/LCAppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/LCAppUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/OsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/OsUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/PackageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/PackageUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/SPDelegates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/SPDelegates.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/SPUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/SPUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/StorageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/StorageUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/Toasty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/Toasty.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/UiUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/UiUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/apk/APKSParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/apk/APKSParser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/apk/ApkPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/apk/ApkPreview.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/apk/XAPKManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/apk/XAPKManifest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/apk/XAPKParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/apk/XAPKParser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/dex/FastDexFileFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/dex/FastDexFileFactory.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/dex/ZipDexContainer2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/dex/ZipDexContainer2.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Dynamic32Structure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Dynamic32Structure.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Dynamic64Structure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Dynamic64Structure.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf32Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf32Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf64Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Elf64Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/ElfInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/ElfInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/ElfParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/ElfParser.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Program32Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Program32Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Program64Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Program64Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Section32Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Section32Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Section64Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Section64Header.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Symbol32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Symbol32.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Symbol64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/Symbol64.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/ByteBufferDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/ByteBufferDataSource.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/DataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/DataSource.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/FileChannelDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/FileChannelDataSource.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/InputStreamDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/elf/source/InputStreamDataSource.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ActivityExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ActivityExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/AdapterExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/AdapterExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/CompatExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/CompatExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ConfigrationExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ConfigrationExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ContextExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ContextExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/DispatcherExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/DispatcherExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/FragmentExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/FragmentExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/HandlerExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/HandlerExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/LayoutExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/LayoutExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/MessageDigestExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/MessageDigestExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/NumberExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/NumberExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/PackageInfoExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/PackageInfoExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/StringExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/StringExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/TypeExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/TypeExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ViewExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/extensions/ViewExtensions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/harmony/HarmonyOsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/harmony/HarmonyOsUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ApplicationReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ApplicationReader.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/FullManifestReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/FullManifestReader.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/HiddenPermissionsReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/HiddenPermissionsReader.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ManifestReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ManifestReader.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/PropertiesMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/PropertiesMap.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ResourceParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/ResourceParser.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/StaticLibraryReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/manifest/StaticLibraryReader.java -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/timber/FileLoggingTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/timber/FileLoggingTree.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/timber/ReleaseTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/timber/ReleaseTree.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/utils/timber/ThreadAwareDebugTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/utils/timber/ThreadAwareDebugTree.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/AViewGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/AViewGroup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/AlwaysMarqueeTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/AlwaysMarqueeTextView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/AppsListLoadingView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/AppsListLoadingView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/CheckableChipView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/CheckableChipView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/CustomViewFlipper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/CustomViewFlipper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/HeightAnimatableLinearLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/HeightAnimatableLinearLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/IHeaderView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/IHeaderView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/RingDotsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/RingDotsView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/app/ToastView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/app/ToastView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/drawable/CapsuleDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/drawable/CapsuleDrawable.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/drawable/RoundedRectDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/drawable/RoundedRectDrawable.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/absinthe/libchecker/view/span/CustomTypefaceSpan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/absinthe/libchecker/view/span/CustomTypefaceSpan.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/github/luben/zstd/ZstdInputStream.kt: -------------------------------------------------------------------------------- 1 | package com.github.luben.zstd 2 | 3 | class ZstdInputStream 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/google/android/material/shape/SuperEllipseCornerTreatment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/kotlin/com/google/android/material/shape/SuperEllipseCornerTreatment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/tukaani/xz/MemoryLimitException.kt: -------------------------------------------------------------------------------- 1 | package org.tukaani.xz 2 | 3 | class MemoryLimitException 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/org/tukaani/xz/SingleXZInputStream.kt: -------------------------------------------------------------------------------- 1 | package org.tukaani.xz 2 | 3 | class SingleXZInputStream 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/org/tukaani/xz/XZInputStream.kt: -------------------------------------------------------------------------------- 1 | package org.tukaani.xz 2 | 3 | class XZInputStream 4 | -------------------------------------------------------------------------------- /app/src/main/proto/LibChecker.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/proto/LibChecker.proto -------------------------------------------------------------------------------- /app/src/main/res/anim/anim_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/anim_fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/anim_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/anim_fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/anim_text_switcher_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/anim_text_switcher_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/anim_text_switcher_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/anim_text_switcher_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/rd_dialog_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/rd_dialog_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/rd_dialog_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/anim/rd_dialog_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/alpha_animator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/animator/alpha_animator.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_ci_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-night/ic_ci_label.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-night/ic_gradle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_label_deleted_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-night/ic_label_deleted_package.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_label_new_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-night/ic_label_new_package.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pic_kali.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-xxxhdpi/pic_kali.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-xxxhdpi/pic_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pic_qhy040404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-xxxhdpi/pic_qhy040404.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pic_rabbit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable-xxxhdpi/pic_rabbit.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_app_item_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_app_item_text.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_app_item_text_inset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_app_item_text_inset.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_circle_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_circle_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_circle_secondary_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_circle_secondary_container.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_lib_detail_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_lib_detail_item.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_snapshot_detail_count.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_snapshot_detail_count.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/bg_toast.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_16kb_align.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_16kb_align.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_16kb_compat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_16kb_compat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_aab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_aab.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_32bit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_32bit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_64bit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_64bit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_arm64_v8a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_arm64_v8a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_armeabi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_armeabi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_armeabi_v7a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_armeabi_v7a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_mips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_mips.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_mips64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_mips64.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_multi_arch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_multi_arch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_no_libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_no_libs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_riscv32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_riscv32.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_riscv64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_riscv64.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_x86.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_x86.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_abi_label_x86_64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_abi_label_x86_64.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_baklava.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_baklava.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_i.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_o_mr1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_o_mr1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_s.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_u.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_v.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_android_v.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_apk_analytics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_apk_analytics.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_app_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_app_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_app_prop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_app_prop.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_archive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_arrow_drop_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_arrow_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_changed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_changed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ci_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_ci_label.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_classify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_classify.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_cloud_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_color_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_color_palette.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_compare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_compare.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_content.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_dark_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_dark_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_deny.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_deny.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_dex_empty_list_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_dex_empty_list_placeholder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_disabled_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_disabled_package.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_empty_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_empty_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_failed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_favorite.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_fdroid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_feature_live_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_feature_live_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_firebase_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_firebase_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_gradle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_harmony_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_harmony_badge.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_harmonyos_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_harmonyos_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_blueprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_icon_blueprint.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_install_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_install_source.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_jetbrain_kmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_jetbrain_kmp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label_compile_sdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label_compile_sdk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label_deleted_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label_deleted_package.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label_min_sdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label_min_sdk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label_new_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label_new_package.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label_target_sdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_label_target_sdk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_language.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_launch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lib_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_lib_sort.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_log.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_move.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_multi_arch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_multi_arch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_no.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_notebook.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_open_in_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_open_in_new.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_change_circle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_outline_change_circle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_outline_image.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_outline_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_outline_save.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_processes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_processes.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pwa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_pwa.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_question.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_question.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_reactivex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_reactivex.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_report.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_repository.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_restore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sc_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_sc_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sc_snapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_sc_snapshot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sc_statistics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_sc_statistics.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_signatures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_signatures.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_snapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_snapshot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_split.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_split.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_team.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_threshold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_threshold.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_time.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_track.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_translate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_twotone_content_copy_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_twotone_content_copy_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_upgrade.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_url.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_xposed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_xposed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_yes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ic_yes.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/launcher_icon_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/launcher_icon_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_feature_label_36dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ripple_feature_label_36dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_feature_label_48dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/ripple_feature_label_48dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_anim_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/splash_anim_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/drawable/splash_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout-sw600dp/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_album.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_album.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_app_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_app_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_comparison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_comparison.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lib_reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_lib_reference.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_snapshot_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_snapshot_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/activity_track.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_app_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_app_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_lib_component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_lib_component.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_lib_native.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_lib_native.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_lib_reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_lib_reference.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_pie_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_pie_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_snapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/fragment_snapshot.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_abi_chart_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/layout_abi_chart_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_recyclerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/layout/preference_recyclerview.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/abi_chart_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/abi_chart_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/app_detail_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/app_detail_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/app_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/app_list_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/comparison_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/comparison_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/lib_ref_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/lib_ref_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/snapshot_detail_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/snapshot_detail_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/snapshot_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/snapshot_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/track_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/menu/track_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US 2 | -------------------------------------------------------------------------------- /app/src/main/res/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-in-rID/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-iw-rIL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-night-v31/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v26/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v26/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v27/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v28/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v28/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v29/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v29/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v31/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v31/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v34/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-v34/bool.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/bool.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/colors_material.xml -------------------------------------------------------------------------------- /app/src/main/res/values/const.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/const.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/md_themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/md_themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes_customs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/themes_customs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/themes_overlay.xml -------------------------------------------------------------------------------- /app/src/main/res/values/untranslatable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/values/untranslatable.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/album_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/album_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/main_split_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/main_split_config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/main_split_config_foldable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/main_split_config_foldable.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /app/src/market/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/market/kotlin/com/absinthe/libchecker/utils/Telemetry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/com/absinthe/libchecker/utils/Telemetry.kt -------------------------------------------------------------------------------- /app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/ApplicationDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/ApplicationDelegate.kt -------------------------------------------------------------------------------- /app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/IBundleManagerDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/IBundleManagerDelegate.kt -------------------------------------------------------------------------------- /app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/SystemVersionDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/com/absinthe/libchecker/utils/harmony/SystemVersionDelegate.kt -------------------------------------------------------------------------------- /app/src/market/kotlin/ohos/app/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/ohos/app/Application.java -------------------------------------------------------------------------------- /app/src/market/kotlin/ohos/app/ContextDeal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/kotlin/ohos/app/ContextDeal.java -------------------------------------------------------------------------------- /app/src/market/res/values/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/app/src/market/res/values/bool.xml -------------------------------------------------------------------------------- /changelog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/changelog/CHANGELOG.md -------------------------------------------------------------------------------- /changelog/CHANGELOG_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/changelog/CHANGELOG_CN.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1341.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1401.txt: -------------------------------------------------------------------------------- 1 | - Marking of not granted permissions 2 | - UI improvements 3 | - Bugs fixes -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1403.txt: -------------------------------------------------------------------------------- 1 | - Marking of not granted permissions 2 | - UI improvements 3 | - Bugs fixes -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1448.txt: -------------------------------------------------------------------------------- 1 | - Bugs fixes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1465.txt: -------------------------------------------------------------------------------- 1 | - Bugs fixes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1497.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1497.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1585.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1585.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1682.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1682.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1749.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1749.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1893.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/1893.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/2159.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/2343.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/2441.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/changelogs/2515.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | View the third-party libraries used by applications -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | LibChecker -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | LibChecker -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/1341.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1401.txt: -------------------------------------------------------------------------------- 1 | - 标示未授权的权限 2 | - UI 改进 3 | - 问题修复 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1403.txt: -------------------------------------------------------------------------------- 1 | - 标示未授权的权限 2 | - UI 改进 3 | - 问题修复 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1448.txt: -------------------------------------------------------------------------------- 1 | - 问题修复 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1465.txt: -------------------------------------------------------------------------------- 1 | - 问题修复 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1497.txt: -------------------------------------------------------------------------------- 1 | - 调整宽屏下的分屏逻辑 2 | - 高级菜单中新增了更多的选项 3 | - 提升应用流畅度,提高应用稳定性 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1585.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/1585.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1682.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/1682.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1749.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/1749.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/1893.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/1893.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/2159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/2159.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/2343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/2343.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/2441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/2441.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/2515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/changelogs/2515.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/fastlane/metadata/android/zh-CN/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 查看应用使用的第三方库 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | LibChecker -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/init.d/dependencyUpdates.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradle/init.d/dependencyUpdates.gradle -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hidden-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/build.gradle.kts -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/content/pm/ApplicationInfoHidden.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/content/pm/ApplicationInfoHidden.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/content/pm/IPackageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/content/pm/IPackageManager.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/content/pm/PackageInfoHidden.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/content/pm/PackageInfoHidden.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/content/pm/PackageParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/content/pm/PackageParser.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/os/SystemProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/os/SystemProperties.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/android/text/format/FormatterHidden.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/android/text/format/FormatterHidden.java -------------------------------------------------------------------------------- /hidden-api/src/main/java/hidden/DexFileHidden.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/hidden-api/src/main/java/hidden/DexFileHidden.java -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/qodana.yaml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /source/coolapk-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/coolapk-badge.png -------------------------------------------------------------------------------- /source/figma/Deleted_Label.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/figma/Deleted_Label.fig -------------------------------------------------------------------------------- /source/figma/Disabled_Label.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/figma/Disabled_Label.fig -------------------------------------------------------------------------------- /source/figma/Multi_Arch_Label.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/figma/Multi_Arch_Label.fig -------------------------------------------------------------------------------- /source/figma/abi_labels.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/figma/abi_labels.fig -------------------------------------------------------------------------------- /source/figma/header.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/figma/header.fig -------------------------------------------------------------------------------- /source/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/google-play-badge.png -------------------------------------------------------------------------------- /source/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/header.png -------------------------------------------------------------------------------- /source/icons/LICENSE/LICENSE.CC_BY_NC_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/LICENSE/LICENSE.CC_BY_NC_3.txt -------------------------------------------------------------------------------- /source/icons/LICENSE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/LICENSE/LICENSE.txt -------------------------------------------------------------------------------- /source/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/icon.svg -------------------------------------------------------------------------------- /source/icons/icon_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/icon_round.svg -------------------------------------------------------------------------------- /source/icons/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source/icons/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source/icons/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source/icons/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source/icons/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source/icons/playstore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/playstore/icon.png -------------------------------------------------------------------------------- /source/icons/v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/icons/v2.svg -------------------------------------------------------------------------------- /source/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/play_icon.png -------------------------------------------------------------------------------- /source/play_leanback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/play_leanback.png -------------------------------------------------------------------------------- /source/tg_group_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/tg_group_dark.png -------------------------------------------------------------------------------- /source/tg_group_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaobozhen/LibChecker/HEAD/source/tg_group_light.png --------------------------------------------------------------------------------