Copy disabled (too large)
Download .txt
Showing preview only (18,706K chars total). Download the full file to get everything.
Repository: MuntashirAkon/AppManager
Branch: master
Commit: ba82bc9ffbd9
Files: 1869
Total size: 17.4 MB
Directory structure:
gitextract_vctfzydw/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ ├── documentation.yml
│ │ ├── feature_request.yml
│ │ └── help-wanted.yml
│ └── workflows/
│ ├── codeql.yml
│ ├── lint.yml
│ └── tests.yml
├── .gitignore
├── .gitmodules
├── .run/
│ ├── Documentation.run.xml
│ ├── app.run.xml
│ ├── app_details.run.xml
│ ├── fm.run.xml
│ ├── lint.run.xml
│ ├── settings.run.xml
│ └── test.run.xml
├── BUILDING.rst
├── CONTRIBUTING.rst
├── COPYING
├── LICENSES/
│ ├── Apache-2.0
│ ├── BSD-2-Clause
│ ├── BSD-3-Clause
│ ├── CC-BY-SA-4.0
│ ├── GPL-2.0
│ ├── GPL-3.0
│ ├── ISC
│ ├── MIT
│ └── WTFPL
├── PRIVACY_POLICY.rst
├── README.md
├── app/
│ ├── .gitignore
│ ├── build.gradle
│ ├── lint.xml
│ ├── proguard-rules.pro
│ ├── schemas/
│ │ └── io.github.muntashirakon.AppManager.db.AppsDb/
│ │ ├── 1.json
│ │ ├── 2.json
│ │ ├── 3.json
│ │ ├── 4.json
│ │ ├── 5.json
│ │ ├── 6.json
│ │ └── 7.json
│ └── src/
│ ├── debug/
│ │ ├── AndroidManifest.xml
│ │ └── java/
│ │ └── io/
│ │ └── github/
│ │ └── muntashirakon/
│ │ └── AppManager/
│ │ └── debug/
│ │ └── R.java
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ ├── aidl/
│ │ │ └── io/
│ │ │ └── github/
│ │ │ └── muntashirakon/
│ │ │ └── AppManager/
│ │ │ ├── IAMService.aidl
│ │ │ ├── IRemoteProcess.aidl
│ │ │ ├── IRemoteShell.aidl
│ │ │ ├── IShellResult.aidl
│ │ │ └── ipc/
│ │ │ └── ps/
│ │ │ ├── ProcessEntry.aidl
│ │ │ └── ProcessUsers.aidl
│ │ ├── annotations/
│ │ │ └── android/
│ │ │ └── content/
│ │ │ └── pm/
│ │ │ └── annotations.xml
│ │ ├── assets/
│ │ │ ├── blanks/
│ │ │ │ ├── blank.docx
│ │ │ │ ├── blank.odp
│ │ │ │ ├── blank.ods
│ │ │ │ ├── blank.odt
│ │ │ │ ├── blank.pptx
│ │ │ │ ├── blank.txt
│ │ │ │ └── blank.xlsx
│ │ │ ├── debloat.json
│ │ │ ├── editor_themes/
│ │ │ │ ├── dark.tmTheme.json
│ │ │ │ └── light.tmTheme
│ │ │ ├── languages/
│ │ │ │ ├── java/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ ├── json/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ ├── kotlin/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ ├── properties/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ ├── sh/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ ├── smali/
│ │ │ │ │ ├── language-configuration.json
│ │ │ │ │ └── tmLanguage.json
│ │ │ │ └── xml/
│ │ │ │ ├── language-configuration.json
│ │ │ │ └── tmLanguage.json
│ │ │ ├── run_server.sh
│ │ │ └── suggestions.json
│ │ ├── cpp/
│ │ │ ├── AhoCorasick.cpp
│ │ │ ├── AhoCorasick.h
│ │ │ ├── CMakeLists.txt
│ │ │ ├── io_github_muntashirakon_AppManager_utils_CpuUtils.cpp
│ │ │ ├── io_github_muntashirakon_AppManager_utils_CpuUtils.h
│ │ │ ├── io_github_muntashirakon_algo_AhoCorasick.cpp
│ │ │ ├── io_github_muntashirakon_algo_AhoCorasick.h
│ │ │ ├── io_github_muntashirakon_compat_system_OsCompat.cpp
│ │ │ └── io_github_muntashirakon_compat_system_OsCompat.h
│ │ ├── java/
│ │ │ ├── androidx/
│ │ │ │ ├── appcompat/
│ │ │ │ │ └── app/
│ │ │ │ │ └── PublicTwilightManager.java
│ │ │ │ └── documentfile/
│ │ │ │ └── provider/
│ │ │ │ ├── DocumentFileUtils.java
│ │ │ │ ├── MediaDocumentFile.java
│ │ │ │ └── VirtualDocumentFile.java
│ │ │ ├── aosp/
│ │ │ │ └── libcore/
│ │ │ │ └── util/
│ │ │ │ ├── EmptyArray.java
│ │ │ │ └── HexEncoding.java
│ │ │ ├── io/
│ │ │ │ └── github/
│ │ │ │ └── muntashirakon/
│ │ │ │ ├── AppManager/
│ │ │ │ │ ├── AppManager.java
│ │ │ │ │ ├── BaseActivity.java
│ │ │ │ │ ├── DummyActivity.java
│ │ │ │ │ ├── PerProcessActivity.java
│ │ │ │ │ ├── StaticDataset.java
│ │ │ │ │ ├── accessibility/
│ │ │ │ │ │ ├── AccessibilityMultiplexer.java
│ │ │ │ │ │ ├── BaseAccessibilityService.java
│ │ │ │ │ │ ├── NoRootAccessibilityService.java
│ │ │ │ │ │ └── activity/
│ │ │ │ │ │ ├── LeadingActivityTrackerActivity.java
│ │ │ │ │ │ └── TrackerWindow.java
│ │ │ │ │ ├── adb/
│ │ │ │ │ │ ├── AdbConnectionManager.java
│ │ │ │ │ │ ├── AdbPairingService.java
│ │ │ │ │ │ └── AdbUtils.java
│ │ │ │ │ ├── apk/
│ │ │ │ │ │ ├── ApkFile.java
│ │ │ │ │ │ ├── ApkSource.java
│ │ │ │ │ │ ├── ApkUtils.java
│ │ │ │ │ │ ├── ApplicationInfoApkSource.java
│ │ │ │ │ │ ├── CachedApkSource.java
│ │ │ │ │ │ ├── UriApkSource.java
│ │ │ │ │ │ ├── behavior/
│ │ │ │ │ │ │ ├── FreezeUnfreeze.java
│ │ │ │ │ │ │ ├── FreezeUnfreezeActivity.java
│ │ │ │ │ │ │ ├── FreezeUnfreezeService.java
│ │ │ │ │ │ │ └── FreezeUnfreezeShortcutInfo.java
│ │ │ │ │ │ ├── dexopt/
│ │ │ │ │ │ │ ├── DexOptDialog.java
│ │ │ │ │ │ │ ├── DexOptOptions.java
│ │ │ │ │ │ │ └── DexOptimizer.java
│ │ │ │ │ │ ├── installer/
│ │ │ │ │ │ │ ├── ApkQueueItem.java
│ │ │ │ │ │ │ ├── InstallerDialogFragment.java
│ │ │ │ │ │ │ ├── InstallerDialogHelper.java
│ │ │ │ │ │ │ ├── InstallerOptions.java
│ │ │ │ │ │ │ ├── InstallerOptionsFragment.java
│ │ │ │ │ │ │ ├── PackageInstallerActivity.java
│ │ │ │ │ │ │ ├── PackageInstallerBroadcastReceiver.java
│ │ │ │ │ │ │ ├── PackageInstallerCompat.java
│ │ │ │ │ │ │ ├── PackageInstallerService.java
│ │ │ │ │ │ │ ├── PackageInstallerViewModel.java
│ │ │ │ │ │ │ └── SupportedAppStores.java
│ │ │ │ │ │ ├── list/
│ │ │ │ │ │ │ ├── AppListItem.java
│ │ │ │ │ │ │ └── ListExporter.java
│ │ │ │ │ │ ├── parser/
│ │ │ │ │ │ │ ├── AndroidBinXmlDecoder.java
│ │ │ │ │ │ │ ├── AndroidBinXmlEncoder.java
│ │ │ │ │ │ │ ├── ManifestComponent.java
│ │ │ │ │ │ │ ├── ManifestIntentFilter.java
│ │ │ │ │ │ │ └── ManifestParser.java
│ │ │ │ │ │ ├── signing/
│ │ │ │ │ │ │ ├── SigSchemes.java
│ │ │ │ │ │ │ ├── Signer.java
│ │ │ │ │ │ │ ├── SignerInfo.java
│ │ │ │ │ │ │ └── ZipAlign.java
│ │ │ │ │ │ ├── splitapk/
│ │ │ │ │ │ │ ├── ApksMetadata.java
│ │ │ │ │ │ │ ├── SplitApkChooser.java
│ │ │ │ │ │ │ └── SplitApkExporter.java
│ │ │ │ │ │ └── whatsnew/
│ │ │ │ │ │ ├── ApkWhatsNewFinder.java
│ │ │ │ │ │ ├── WhatsNewDialogFragment.java
│ │ │ │ │ │ ├── WhatsNewDialogViewModel.java
│ │ │ │ │ │ ├── WhatsNewFragment.java
│ │ │ │ │ │ └── WhatsNewRecyclerAdapter.java
│ │ │ │ │ ├── app/
│ │ │ │ │ │ └── AndroidFragment.java
│ │ │ │ │ ├── backup/
│ │ │ │ │ │ ├── BackupCryptSetupHelper.java
│ │ │ │ │ │ ├── BackupDataDirectoryInfo.java
│ │ │ │ │ │ ├── BackupException.java
│ │ │ │ │ │ ├── BackupFlags.java
│ │ │ │ │ │ ├── BackupItems.java
│ │ │ │ │ │ ├── BackupManager.java
│ │ │ │ │ │ ├── BackupOp.java
│ │ │ │ │ │ ├── BackupUtils.java
│ │ │ │ │ │ ├── CryptoUtils.java
│ │ │ │ │ │ ├── MetadataManager.java
│ │ │ │ │ │ ├── RestoreOp.java
│ │ │ │ │ │ ├── VerifyOp.java
│ │ │ │ │ │ ├── adb/
│ │ │ │ │ │ │ ├── AndroidBackupCreator.java
│ │ │ │ │ │ │ ├── AndroidBackupExtractor.java
│ │ │ │ │ │ │ ├── AndroidBackupHeader.java
│ │ │ │ │ │ │ ├── BackupCategories.java
│ │ │ │ │ │ │ └── Constants.java
│ │ │ │ │ │ ├── convert/
│ │ │ │ │ │ │ ├── ConvertUtils.java
│ │ │ │ │ │ │ ├── Converter.java
│ │ │ │ │ │ │ ├── ImportType.java
│ │ │ │ │ │ │ ├── OABConverter.java
│ │ │ │ │ │ │ ├── SBConverter.java
│ │ │ │ │ │ │ └── TBConverter.java
│ │ │ │ │ │ ├── dialog/
│ │ │ │ │ │ │ ├── BackupFragment.java
│ │ │ │ │ │ │ ├── BackupInfo.java
│ │ │ │ │ │ │ ├── BackupInfoState.java
│ │ │ │ │ │ │ ├── BackupRestoreDialogFragment.java
│ │ │ │ │ │ │ ├── BackupRestoreDialogViewModel.java
│ │ │ │ │ │ │ ├── FlagsAdapter.java
│ │ │ │ │ │ │ ├── RestoreMultipleFragment.java
│ │ │ │ │ │ │ └── RestoreSingleFragment.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── BackupMetadataV2.java
│ │ │ │ │ │ ├── BackupMetadataV5.java
│ │ │ │ │ │ ├── BackupOpOptions.java
│ │ │ │ │ │ ├── DeleteOpOptions.java
│ │ │ │ │ │ └── RestoreOpOptions.java
│ │ │ │ │ ├── batchops/
│ │ │ │ │ │ ├── BatchOpsLogger.java
│ │ │ │ │ │ ├── BatchOpsManager.java
│ │ │ │ │ │ ├── BatchOpsResultsActivity.java
│ │ │ │ │ │ ├── BatchOpsService.java
│ │ │ │ │ │ ├── BatchQueueItem.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── BatchAppOpsOptions.java
│ │ │ │ │ │ ├── BatchBackupImportOptions.java
│ │ │ │ │ │ ├── BatchBackupOptions.java
│ │ │ │ │ │ ├── BatchComponentOptions.java
│ │ │ │ │ │ ├── BatchDexOptOptions.java
│ │ │ │ │ │ ├── BatchFreezeOptions.java
│ │ │ │ │ │ ├── BatchNetPolicyOptions.java
│ │ │ │ │ │ ├── BatchPermissionOptions.java
│ │ │ │ │ │ └── IBatchOpOptions.java
│ │ │ │ │ ├── changelog/
│ │ │ │ │ │ ├── Changelog.java
│ │ │ │ │ │ ├── ChangelogHeader.java
│ │ │ │ │ │ ├── ChangelogItem.java
│ │ │ │ │ │ ├── ChangelogParser.java
│ │ │ │ │ │ └── ChangelogRecyclerAdapter.java
│ │ │ │ │ ├── compat/
│ │ │ │ │ │ ├── ActivityManagerCompat.java
│ │ │ │ │ │ ├── AppOpsManagerCompat.java
│ │ │ │ │ │ ├── ApplicationInfoCompat.java
│ │ │ │ │ │ ├── BackupCompat.java
│ │ │ │ │ │ ├── BinderCompat.java
│ │ │ │ │ │ ├── BiometricAuthenticatorsCompat.java
│ │ │ │ │ │ ├── ClearDataObserver.java
│ │ │ │ │ │ ├── ConnectivityManagerCompat.java
│ │ │ │ │ │ ├── DeviceIdleManagerCompat.java
│ │ │ │ │ │ ├── DomainVerificationManagerCompat.java
│ │ │ │ │ │ ├── InputManagerCompat.java
│ │ │ │ │ │ ├── InstallSourceInfoCompat.java
│ │ │ │ │ │ ├── IntegerCompat.java
│ │ │ │ │ │ ├── ManifestCompat.java
│ │ │ │ │ │ ├── NetworkPolicyManagerCompat.java
│ │ │ │ │ │ ├── NetworkStatsCompat.java
│ │ │ │ │ │ ├── NetworkStatsManagerCompat.java
│ │ │ │ │ │ ├── OverlayManagerCompact.java
│ │ │ │ │ │ ├── PackageInfoCompat2.java
│ │ │ │ │ │ ├── PackageManagerCompat.java
│ │ │ │ │ │ ├── PermissionCompat.java
│ │ │ │ │ │ ├── ProcessCompat.java
│ │ │ │ │ │ ├── SensorServiceCompat.java
│ │ │ │ │ │ ├── StorageManagerCompat.java
│ │ │ │ │ │ ├── SubscriptionManagerCompat.java
│ │ │ │ │ │ ├── ThumbnailUtilsCompat.java
│ │ │ │ │ │ ├── UriCompat.java
│ │ │ │ │ │ ├── UsageStatsManagerCompat.java
│ │ │ │ │ │ └── VirtualDeviceManagerCompat.java
│ │ │ │ │ ├── crypto/
│ │ │ │ │ │ ├── AESCrypto.java
│ │ │ │ │ │ ├── Crypto.java
│ │ │ │ │ │ ├── CryptoException.java
│ │ │ │ │ │ ├── DummyCrypto.java
│ │ │ │ │ │ ├── ECCCrypto.java
│ │ │ │ │ │ ├── OpenPGPCrypto.java
│ │ │ │ │ │ ├── OpenPGPCryptoActivity.java
│ │ │ │ │ │ ├── RSACrypto.java
│ │ │ │ │ │ ├── RandomChar.java
│ │ │ │ │ │ ├── auth/
│ │ │ │ │ │ │ ├── AuthFeatureDemultiplexer.java
│ │ │ │ │ │ │ ├── AuthManager.java
│ │ │ │ │ │ │ └── AuthManagerActivity.java
│ │ │ │ │ │ └── ks/
│ │ │ │ │ │ ├── AesEncryptedData.java
│ │ │ │ │ │ ├── CompatUtil.java
│ │ │ │ │ │ ├── KeyPair.java
│ │ │ │ │ │ ├── KeyStoreActivity.java
│ │ │ │ │ │ ├── KeyStoreManager.java
│ │ │ │ │ │ ├── KeyStoreUtils.java
│ │ │ │ │ │ ├── SecretKeyAndVersion.java
│ │ │ │ │ │ └── SecretKeyCompat.java
│ │ │ │ │ ├── db/
│ │ │ │ │ │ ├── AppsDb.java
│ │ │ │ │ │ ├── dao/
│ │ │ │ │ │ │ ├── AppDao.java
│ │ │ │ │ │ │ ├── BackupDao.java
│ │ │ │ │ │ │ ├── FmFavoriteDao.java
│ │ │ │ │ │ │ ├── FreezeTypeDao.java
│ │ │ │ │ │ │ ├── LogFilterDao.java
│ │ │ │ │ │ │ └── OpHistoryDao.java
│ │ │ │ │ │ ├── entity/
│ │ │ │ │ │ │ ├── App.java
│ │ │ │ │ │ │ ├── Backup.java
│ │ │ │ │ │ │ ├── FmFavorite.java
│ │ │ │ │ │ │ ├── FreezeType.java
│ │ │ │ │ │ │ ├── LogFilter.java
│ │ │ │ │ │ │ └── OpHistory.java
│ │ │ │ │ │ └── utils/
│ │ │ │ │ │ └── AppDb.java
│ │ │ │ │ ├── debloat/
│ │ │ │ │ │ ├── BloatwareDetailsDialog.java
│ │ │ │ │ │ ├── DebloatObject.java
│ │ │ │ │ │ ├── DebloaterActivity.java
│ │ │ │ │ │ ├── DebloaterListOptions.java
│ │ │ │ │ │ ├── DebloaterRecyclerViewAdapter.java
│ │ │ │ │ │ ├── DebloaterViewModel.java
│ │ │ │ │ │ └── SuggestionObject.java
│ │ │ │ │ ├── details/
│ │ │ │ │ │ ├── ActivityLauncherShortcutActivity.java
│ │ │ │ │ │ ├── AppDetailsActivity.java
│ │ │ │ │ │ ├── AppDetailsComponentsFragment.java
│ │ │ │ │ │ ├── AppDetailsFragment.java
│ │ │ │ │ │ ├── AppDetailsOtherFragment.java
│ │ │ │ │ │ ├── AppDetailsOverlaysFragment.java
│ │ │ │ │ │ ├── AppDetailsPermissionsFragment.java
│ │ │ │ │ │ ├── AppDetailsViewModel.java
│ │ │ │ │ │ ├── IconPickerDialogFragment.java
│ │ │ │ │ │ ├── PackageItemShortcutInfo.java
│ │ │ │ │ │ ├── info/
│ │ │ │ │ │ │ ├── ActionItem.java
│ │ │ │ │ │ │ ├── AppInfoFragment.java
│ │ │ │ │ │ │ ├── AppInfoRecyclerAdapter.java
│ │ │ │ │ │ │ ├── AppInfoViewModel.java
│ │ │ │ │ │ │ ├── ListItem.java
│ │ │ │ │ │ │ └── TagItem.java
│ │ │ │ │ │ ├── manifest/
│ │ │ │ │ │ │ ├── ManifestViewerActivity.java
│ │ │ │ │ │ │ └── ManifestViewerViewModel.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── AppDetailsActivityItem.java
│ │ │ │ │ │ ├── AppDetailsAppOpItem.java
│ │ │ │ │ │ ├── AppDetailsComponentItem.java
│ │ │ │ │ │ ├── AppDetailsDefinedPermissionItem.java
│ │ │ │ │ │ ├── AppDetailsFeatureItem.java
│ │ │ │ │ │ ├── AppDetailsItem.java
│ │ │ │ │ │ ├── AppDetailsLibraryItem.java
│ │ │ │ │ │ ├── AppDetailsOverlayItem.java
│ │ │ │ │ │ ├── AppDetailsPermissionItem.java
│ │ │ │ │ │ └── AppDetailsServiceItem.java
│ │ │ │ │ ├── dex/
│ │ │ │ │ │ ├── DexClasses.java
│ │ │ │ │ │ └── DexUtils.java
│ │ │ │ │ ├── editor/
│ │ │ │ │ │ ├── CodeEditorActivity.java
│ │ │ │ │ │ ├── CodeEditorFragment.java
│ │ │ │ │ │ ├── CodeEditorViewModel.java
│ │ │ │ │ │ ├── CodeEditorWidget.java
│ │ │ │ │ │ ├── EditorThemes.java
│ │ │ │ │ │ └── Languages.java
│ │ │ │ │ ├── filters/
│ │ │ │ │ │ ├── AbsExpressionEvaluator.java
│ │ │ │ │ │ ├── EditFilterOptionFragment.java
│ │ │ │ │ │ ├── EditFiltersDialogFragment.java
│ │ │ │ │ │ ├── FilterItem.java
│ │ │ │ │ │ ├── FilterableAppInfo.java
│ │ │ │ │ │ ├── FilteringUtils.java
│ │ │ │ │ │ ├── FinderActivity.java
│ │ │ │ │ │ ├── FinderAdapter.java
│ │ │ │ │ │ ├── FinderFilterAdapter.java
│ │ │ │ │ │ ├── FinderViewModel.java
│ │ │ │ │ │ ├── IFilterableAppInfo.java
│ │ │ │ │ │ └── options/
│ │ │ │ │ │ ├── ApkSizeOption.java
│ │ │ │ │ │ ├── AppLabelOption.java
│ │ │ │ │ │ ├── AppTypeOption.java
│ │ │ │ │ │ ├── BackupOption.java
│ │ │ │ │ │ ├── BloatwareOption.java
│ │ │ │ │ │ ├── CacheSizeOption.java
│ │ │ │ │ │ ├── CompileSdkOption.java
│ │ │ │ │ │ ├── ComponentsOption.java
│ │ │ │ │ │ ├── DataSizeOption.java
│ │ │ │ │ │ ├── DataUsageOption.java
│ │ │ │ │ │ ├── FilterOption.java
│ │ │ │ │ │ ├── FilterOptions.java
│ │ │ │ │ │ ├── FreezeOption.java
│ │ │ │ │ │ ├── InstalledOption.java
│ │ │ │ │ │ ├── InstallerOption.java
│ │ │ │ │ │ ├── LastUpdateOption.java
│ │ │ │ │ │ ├── MinSdkOption.java
│ │ │ │ │ │ ├── PackageNameOption.java
│ │ │ │ │ │ ├── PermissionsOption.java
│ │ │ │ │ │ ├── RunningAppsOption.java
│ │ │ │ │ │ ├── ScreenTimeOption.java
│ │ │ │ │ │ ├── SignatureOption.java
│ │ │ │ │ │ ├── TargetSdkOption.java
│ │ │ │ │ │ ├── TimesOpenedOption.java
│ │ │ │ │ │ ├── TotalSizeOption.java
│ │ │ │ │ │ ├── TrackersOption.java
│ │ │ │ │ │ ├── UidOption.java
│ │ │ │ │ │ └── VersionNameOption.java
│ │ │ │ │ ├── fm/
│ │ │ │ │ │ ├── ContentType2.java
│ │ │ │ │ │ ├── FmActivity.java
│ │ │ │ │ │ ├── FmAdapter.java
│ │ │ │ │ │ ├── FmDrawerItem.java
│ │ │ │ │ │ ├── FmFavoritesManager.java
│ │ │ │ │ │ ├── FmFragment.java
│ │ │ │ │ │ ├── FmItem.java
│ │ │ │ │ │ ├── FmListOptions.java
│ │ │ │ │ │ ├── FmPathListAdapter.java
│ │ │ │ │ │ ├── FmProvider.java
│ │ │ │ │ │ ├── FmShortcutInfo.java
│ │ │ │ │ │ ├── FmTasks.java
│ │ │ │ │ │ ├── FmUtils.java
│ │ │ │ │ │ ├── FmViewModel.java
│ │ │ │ │ │ ├── FolderShortInfo.java
│ │ │ │ │ │ ├── OpenWithActivity.java
│ │ │ │ │ │ ├── SharableItems.java
│ │ │ │ │ │ ├── dialogs/
│ │ │ │ │ │ │ ├── ChangeFileModeDialogFragment.java
│ │ │ │ │ │ │ ├── ChecksumsDialogFragment.java
│ │ │ │ │ │ │ ├── FilePropertiesDialogFragment.java
│ │ │ │ │ │ │ ├── NewFileDialogFragment.java
│ │ │ │ │ │ │ ├── NewFolderDialogFragment.java
│ │ │ │ │ │ │ ├── NewSymbolicLinkDialogFragment.java
│ │ │ │ │ │ │ ├── OpenWithDialogFragment.java
│ │ │ │ │ │ │ └── RenameDialogFragment.java
│ │ │ │ │ │ └── icons/
│ │ │ │ │ │ ├── EpubCoverGenerator.java
│ │ │ │ │ │ ├── FmIconFetcher.java
│ │ │ │ │ │ ├── FmIcons.java
│ │ │ │ │ │ └── J2meIconExtractor.java
│ │ │ │ │ ├── history/
│ │ │ │ │ │ ├── IJsonSerializer.java
│ │ │ │ │ │ ├── JsonDeserializer.java
│ │ │ │ │ │ └── ops/
│ │ │ │ │ │ ├── OpHistoryActivity.java
│ │ │ │ │ │ ├── OpHistoryItem.java
│ │ │ │ │ │ └── OpHistoryManager.java
│ │ │ │ │ ├── intercept/
│ │ │ │ │ │ ├── ActivityInterceptor.java
│ │ │ │ │ │ ├── AddIntentExtraFragment.java
│ │ │ │ │ │ ├── HistoryEditText.java
│ │ │ │ │ │ ├── IntentCompat.java
│ │ │ │ │ │ └── InterceptorShortcutInfo.java
│ │ │ │ │ ├── ipc/
│ │ │ │ │ │ ├── AMService.java
│ │ │ │ │ │ ├── BinderHolder.java
│ │ │ │ │ │ ├── Container.java
│ │ │ │ │ │ ├── FileSystemService.java
│ │ │ │ │ │ ├── HiddenAPIs.java
│ │ │ │ │ │ ├── LocalServices.java
│ │ │ │ │ │ ├── ProxyBinder.java
│ │ │ │ │ │ ├── RemoteProcess.java
│ │ │ │ │ │ ├── RemoteProcessImpl.java
│ │ │ │ │ │ ├── RemoteShellImpl.java
│ │ │ │ │ │ ├── RootService.java
│ │ │ │ │ │ ├── RootServiceManager.java
│ │ │ │ │ │ ├── RootServiceServer.java
│ │ │ │ │ │ ├── SerialExecutorService.java
│ │ │ │ │ │ ├── ServiceConnectionWrapper.java
│ │ │ │ │ │ ├── ServiceNotFoundException.java
│ │ │ │ │ │ ├── package.html
│ │ │ │ │ │ └── ps/
│ │ │ │ │ │ ├── ProcessEntry.java
│ │ │ │ │ │ ├── ProcessUsers.java
│ │ │ │ │ │ └── Ps.java
│ │ │ │ │ ├── logcat/
│ │ │ │ │ │ ├── AbsLogViewerFragment.java
│ │ │ │ │ │ ├── CrazyLoggerService.java
│ │ │ │ │ │ ├── LiveLogViewerFragment.java
│ │ │ │ │ │ ├── LogFilterAdapter.java
│ │ │ │ │ │ ├── LogViewerActivity.java
│ │ │ │ │ │ ├── LogViewerRecyclerAdapter.java
│ │ │ │ │ │ ├── LogViewerViewModel.java
│ │ │ │ │ │ ├── LogcatRecordingService.java
│ │ │ │ │ │ ├── RecordLogDialogActivity.java
│ │ │ │ │ │ ├── RecordLogDialogFragment.java
│ │ │ │ │ │ ├── RecordingWidgetProvider.java
│ │ │ │ │ │ ├── SavedLogViewerFragment.java
│ │ │ │ │ │ ├── helper/
│ │ │ │ │ │ │ ├── BuildHelper.java
│ │ │ │ │ │ │ ├── LogcatHelper.java
│ │ │ │ │ │ │ ├── PreferenceHelper.java
│ │ │ │ │ │ │ ├── SaveLogHelper.java
│ │ │ │ │ │ │ ├── ServiceHelper.java
│ │ │ │ │ │ │ └── WidgetHelper.java
│ │ │ │ │ │ ├── reader/
│ │ │ │ │ │ │ ├── AbsLogcatReader.java
│ │ │ │ │ │ │ ├── LogcatReader.java
│ │ │ │ │ │ │ ├── LogcatReaderLoader.java
│ │ │ │ │ │ │ ├── MultipleLogcatReader.java
│ │ │ │ │ │ │ ├── ScrubberUtils.java
│ │ │ │ │ │ │ └── SingleLogcatReader.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── LogLine.java
│ │ │ │ │ │ ├── SavedLog.java
│ │ │ │ │ │ ├── SearchCriteria.java
│ │ │ │ │ │ └── SendLogDetails.java
│ │ │ │ │ ├── magisk/
│ │ │ │ │ │ ├── MagiskDenyList.java
│ │ │ │ │ │ ├── MagiskHide.java
│ │ │ │ │ │ ├── MagiskProcess.java
│ │ │ │ │ │ └── MagiskUtils.java
│ │ │ │ │ ├── main/
│ │ │ │ │ │ ├── ApplicationItem.java
│ │ │ │ │ │ ├── MainActivity.java
│ │ │ │ │ │ ├── MainBatchOpsHandler.java
│ │ │ │ │ │ ├── MainListOptions.java
│ │ │ │ │ │ ├── MainRecyclerAdapter.java
│ │ │ │ │ │ ├── MainViewModel.java
│ │ │ │ │ │ └── SplashActivity.java
│ │ │ │ │ ├── misc/
│ │ │ │ │ │ ├── AMExceptionHandler.java
│ │ │ │ │ │ ├── AdvancedSearchView.java
│ │ │ │ │ │ ├── DeviceInfo.java
│ │ │ │ │ │ ├── DeviceInfo2.java
│ │ │ │ │ │ ├── HelpActivity.java
│ │ │ │ │ │ ├── LabsActivity.java
│ │ │ │ │ │ ├── ListOptions.java
│ │ │ │ │ │ ├── NoOps.java
│ │ │ │ │ │ ├── OidMap.java
│ │ │ │ │ │ ├── OsEnvironment.java
│ │ │ │ │ │ ├── ScreenLockChecker.java
│ │ │ │ │ │ ├── SystemProperties.java
│ │ │ │ │ │ ├── VMRuntime.java
│ │ │ │ │ │ ├── XposedModuleInfo.java
│ │ │ │ │ │ └── gles/
│ │ │ │ │ │ ├── EglCore.java
│ │ │ │ │ │ ├── EglSurfaceBase.java
│ │ │ │ │ │ ├── GlUtil.java
│ │ │ │ │ │ ├── OffscreenSurface.java
│ │ │ │ │ │ └── package.html
│ │ │ │ │ ├── miui/
│ │ │ │ │ │ └── MiuiVersionInfo.java
│ │ │ │ │ ├── oneclickops/
│ │ │ │ │ │ ├── AppOpCount.java
│ │ │ │ │ │ ├── BackupTasksDialogFragment.java
│ │ │ │ │ │ ├── ClearCacheAppWidget.java
│ │ │ │ │ │ ├── ItemCount.java
│ │ │ │ │ │ ├── OneClickOpsActivity.java
│ │ │ │ │ │ ├── OneClickOpsViewModel.java
│ │ │ │ │ │ └── RestoreTasksDialogFragment.java
│ │ │ │ │ ├── permission/
│ │ │ │ │ │ ├── DevelopmentPermission.java
│ │ │ │ │ │ ├── PermUtils.java
│ │ │ │ │ │ ├── Permission.java
│ │ │ │ │ │ ├── PermissionException.java
│ │ │ │ │ │ ├── ReadOnlyPermission.java
│ │ │ │ │ │ └── RuntimePermission.java
│ │ │ │ │ ├── profiles/
│ │ │ │ │ │ ├── AddToProfileDialogFragment.java
│ │ │ │ │ │ ├── AppsBaseProfileActivity.java
│ │ │ │ │ │ ├── AppsFilterProfileActivity.java
│ │ │ │ │ │ ├── AppsFragment.java
│ │ │ │ │ │ ├── AppsProfileActivity.java
│ │ │ │ │ │ ├── AppsProfileViewModel.java
│ │ │ │ │ │ ├── ConfFragment.java
│ │ │ │ │ │ ├── ConfPreferences.java
│ │ │ │ │ │ ├── LogViewerFragment.java
│ │ │ │ │ │ ├── NewProfileDialogFragment.java
│ │ │ │ │ │ ├── ProfileApplierActivity.java
│ │ │ │ │ │ ├── ProfileApplierService.java
│ │ │ │ │ │ ├── ProfileLogger.java
│ │ │ │ │ │ ├── ProfileManager.java
│ │ │ │ │ │ ├── ProfileQueueItem.java
│ │ │ │ │ │ ├── ProfileShortcutInfo.java
│ │ │ │ │ │ ├── ProfilesActivity.java
│ │ │ │ │ │ ├── ProfilesViewModel.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── AppsBaseProfile.java
│ │ │ │ │ │ ├── AppsFilterProfile.java
│ │ │ │ │ │ ├── AppsProfile.java
│ │ │ │ │ │ ├── BaseProfile.java
│ │ │ │ │ │ └── ProfileApplierResult.java
│ │ │ │ │ ├── progress/
│ │ │ │ │ │ ├── NotificationProgressHandler.java
│ │ │ │ │ │ ├── ProgressHandler.java
│ │ │ │ │ │ └── QueuedProgressHandler.java
│ │ │ │ │ ├── rules/
│ │ │ │ │ │ ├── PseudoRules.java
│ │ │ │ │ │ ├── RuleType.java
│ │ │ │ │ │ ├── RulesExporter.java
│ │ │ │ │ │ ├── RulesImporter.java
│ │ │ │ │ │ ├── RulesStorageManager.java
│ │ │ │ │ │ ├── RulesTypeSelectionDialogFragment.java
│ │ │ │ │ │ ├── compontents/
│ │ │ │ │ │ │ ├── ComponentUtils.java
│ │ │ │ │ │ │ ├── ComponentsBlocker.java
│ │ │ │ │ │ │ └── ExternalComponentsImporter.java
│ │ │ │ │ │ └── struct/
│ │ │ │ │ │ ├── AppOpRule.java
│ │ │ │ │ │ ├── BatteryOptimizationRule.java
│ │ │ │ │ │ ├── ComponentRule.java
│ │ │ │ │ │ ├── FreezeRule.java
│ │ │ │ │ │ ├── MagiskDenyListRule.java
│ │ │ │ │ │ ├── MagiskHideRule.java
│ │ │ │ │ │ ├── NetPolicyRule.java
│ │ │ │ │ │ ├── NotificationListenerRule.java
│ │ │ │ │ │ ├── PermissionRule.java
│ │ │ │ │ │ ├── RuleEntry.java
│ │ │ │ │ │ ├── SsaidRule.java
│ │ │ │ │ │ └── UriGrantRule.java
│ │ │ │ │ ├── runner/
│ │ │ │ │ │ ├── NormalShell.java
│ │ │ │ │ │ ├── PrivilegedShell.java
│ │ │ │ │ │ ├── Runner.java
│ │ │ │ │ │ └── RunnerUtils.java
│ │ │ │ │ ├── runningapps/
│ │ │ │ │ │ ├── AppProcessItem.java
│ │ │ │ │ │ ├── ProcessItem.java
│ │ │ │ │ │ ├── ProcessParser.java
│ │ │ │ │ │ ├── RunningAppDetails.java
│ │ │ │ │ │ ├── RunningAppsActivity.java
│ │ │ │ │ │ ├── RunningAppsAdapter.java
│ │ │ │ │ │ └── RunningAppsViewModel.java
│ │ │ │ │ ├── scanner/
│ │ │ │ │ │ ├── ClassListingFragment.java
│ │ │ │ │ │ ├── LibraryInfoDialog.java
│ │ │ │ │ │ ├── NativeLibraries.java
│ │ │ │ │ │ ├── Pithus.java
│ │ │ │ │ │ ├── ScannerActivity.java
│ │ │ │ │ │ ├── ScannerFragment.java
│ │ │ │ │ │ ├── ScannerViewModel.java
│ │ │ │ │ │ ├── SignatureInfo.java
│ │ │ │ │ │ ├── TrackerInfoDialog.java
│ │ │ │ │ │ ├── VirusTotalDialog.java
│ │ │ │ │ │ └── vt/
│ │ │ │ │ │ ├── VirusTotal.java
│ │ │ │ │ │ ├── VtAvEngineResult.java
│ │ │ │ │ │ ├── VtAvEngineStats.java
│ │ │ │ │ │ ├── VtError.java
│ │ │ │ │ │ └── VtFileReport.java
│ │ │ │ │ ├── self/
│ │ │ │ │ │ ├── BootReceiver.java
│ │ │ │ │ │ ├── Migration.java
│ │ │ │ │ │ ├── MigrationTask.java
│ │ │ │ │ │ ├── Migrations.java
│ │ │ │ │ │ ├── SelfPermissions.java
│ │ │ │ │ │ ├── SelfUriManager.java
│ │ │ │ │ │ ├── filecache/
│ │ │ │ │ │ │ ├── FileCache.java
│ │ │ │ │ │ │ └── InternalCacheCleanerService.java
│ │ │ │ │ │ ├── imagecache/
│ │ │ │ │ │ │ ├── ImageFileCache.java
│ │ │ │ │ │ │ └── ImageLoader.java
│ │ │ │ │ │ ├── life/
│ │ │ │ │ │ │ ├── BuildExpiryChecker.java
│ │ │ │ │ │ │ └── FundingCampaignChecker.java
│ │ │ │ │ │ └── pref/
│ │ │ │ │ │ └── TipsPrefs.java
│ │ │ │ │ ├── servermanager/
│ │ │ │ │ │ ├── AssetsUtils.java
│ │ │ │ │ │ ├── LocalServer.java
│ │ │ │ │ │ ├── LocalServerManager.java
│ │ │ │ │ │ ├── ServerConfig.java
│ │ │ │ │ │ ├── ServerStatusChangeReceiver.java
│ │ │ │ │ │ └── WifiWaitService.java
│ │ │ │ │ ├── session/
│ │ │ │ │ │ └── SessionMonitoringService.java
│ │ │ │ │ ├── settings/
│ │ │ │ │ │ ├── AboutDeviceFragment.java
│ │ │ │ │ │ ├── AboutPreferences.java
│ │ │ │ │ │ ├── AdvancedPreferences.java
│ │ │ │ │ │ ├── ApkSigningPreferences.java
│ │ │ │ │ │ ├── AppearancePreferences.java
│ │ │ │ │ │ ├── BackupRestorePreferences.java
│ │ │ │ │ │ ├── ChangeLanguageFragment.java
│ │ │ │ │ │ ├── FeatureController.java
│ │ │ │ │ │ ├── FileManagerPreferences.java
│ │ │ │ │ │ ├── ImportExportRulesPreferences.java
│ │ │ │ │ │ ├── InstallerPreferences.java
│ │ │ │ │ │ ├── LogViewerPreferences.java
│ │ │ │ │ │ ├── MainPreferences.java
│ │ │ │ │ │ ├── MainPreferencesViewModel.java
│ │ │ │ │ │ ├── ModeOfOpsPreference.java
│ │ │ │ │ │ ├── Ops.java
│ │ │ │ │ │ ├── PreferenceFragment.java
│ │ │ │ │ │ ├── Prefs.java
│ │ │ │ │ │ ├── PrivacyPreferences.java
│ │ │ │ │ │ ├── RulesPreferences.java
│ │ │ │ │ │ ├── SecurityAndOpsViewModel.java
│ │ │ │ │ │ ├── SettingsActivity.java
│ │ │ │ │ │ ├── SettingsDataStore.java
│ │ │ │ │ │ ├── TroubleshootingPreferences.java
│ │ │ │ │ │ ├── VirusTotalPreferences.java
│ │ │ │ │ │ └── crypto/
│ │ │ │ │ │ ├── AESCryptoSelectionDialogFragment.java
│ │ │ │ │ │ ├── ECCCryptoSelectionDialogFragment.java
│ │ │ │ │ │ ├── ImportExportKeyStoreDialogFragment.java
│ │ │ │ │ │ ├── KeyPairGeneratorDialogFragment.java
│ │ │ │ │ │ ├── KeyPairImporterDialogFragment.java
│ │ │ │ │ │ ├── OpenPgpKeySelectionDialogFragment.java
│ │ │ │ │ │ └── RSACryptoSelectionDialogFragment.java
│ │ │ │ │ ├── sharedpref/
│ │ │ │ │ │ ├── EditPrefItemFragment.java
│ │ │ │ │ │ ├── SharedPrefsActivity.java
│ │ │ │ │ │ ├── SharedPrefsUtil.java
│ │ │ │ │ │ └── SharedPrefsViewModel.java
│ │ │ │ │ ├── shortcut/
│ │ │ │ │ │ ├── CreateShortcutDialogFragment.java
│ │ │ │ │ │ └── ShortcutInfo.java
│ │ │ │ │ ├── ssaid/
│ │ │ │ │ │ ├── ChangeSsaidDialog.java
│ │ │ │ │ │ ├── SettingsState.java
│ │ │ │ │ │ ├── SettingsStateV26.java
│ │ │ │ │ │ └── SsaidSettings.java
│ │ │ │ │ ├── sysconfig/
│ │ │ │ │ │ ├── SysConfigActivity.java
│ │ │ │ │ │ ├── SysConfigInfo.java
│ │ │ │ │ │ ├── SysConfigType.java
│ │ │ │ │ │ ├── SysConfigViewModel.java
│ │ │ │ │ │ ├── SysConfigWrapper.java
│ │ │ │ │ │ └── SystemConfig.java
│ │ │ │ │ ├── terminal/
│ │ │ │ │ │ └── TermActivity.java
│ │ │ │ │ ├── types/
│ │ │ │ │ │ ├── ForegroundService.java
│ │ │ │ │ │ ├── PackageChangeReceiver.java
│ │ │ │ │ │ ├── PackageSizeInfo.java
│ │ │ │ │ │ └── UserPackagePair.java
│ │ │ │ │ ├── uri/
│ │ │ │ │ │ ├── GrantUriUtils.java
│ │ │ │ │ │ └── UriManager.java
│ │ │ │ │ ├── usage/
│ │ │ │ │ │ ├── AppUsageActivity.java
│ │ │ │ │ │ ├── AppUsageAdapter.java
│ │ │ │ │ │ ├── AppUsageDetailsDialog.java
│ │ │ │ │ │ ├── AppUsageStatsManager.java
│ │ │ │ │ │ ├── AppUsageViewModel.java
│ │ │ │ │ │ ├── BarChartView.java
│ │ │ │ │ │ ├── DataUsageAppWidget.java
│ │ │ │ │ │ ├── IntervalType.java
│ │ │ │ │ │ ├── PackageUsageInfo.java
│ │ │ │ │ │ ├── ScreenTimeAppWidget.java
│ │ │ │ │ │ ├── SortOrder.java
│ │ │ │ │ │ ├── TimeInterval.java
│ │ │ │ │ │ ├── UsageDataProcessor.java
│ │ │ │ │ │ └── UsageUtils.java
│ │ │ │ │ ├── users/
│ │ │ │ │ │ ├── Groups.java
│ │ │ │ │ │ ├── Owners.java
│ │ │ │ │ │ ├── UserInfo.java
│ │ │ │ │ │ └── Users.java
│ │ │ │ │ ├── utils/
│ │ │ │ │ │ ├── AlphanumComparator.java
│ │ │ │ │ │ ├── AppPref.java
│ │ │ │ │ │ ├── ArrayUtils.java
│ │ │ │ │ │ ├── BetterActivityResult.java
│ │ │ │ │ │ ├── BinderShellExecutor.java
│ │ │ │ │ │ ├── BitmapRandomizer.java
│ │ │ │ │ │ ├── BroadcastUtils.java
│ │ │ │ │ │ ├── ClipboardUtils.java
│ │ │ │ │ │ ├── ContextUtils.java
│ │ │ │ │ │ ├── CpuUtils.java
│ │ │ │ │ │ ├── DateUtils.java
│ │ │ │ │ │ ├── DigestUtils.java
│ │ │ │ │ │ ├── ExUtils.java
│ │ │ │ │ │ ├── FileUtils.java
│ │ │ │ │ │ ├── FreezeUtils.java
│ │ │ │ │ │ ├── HuaweiUtils.java
│ │ │ │ │ │ ├── IntegerUtils.java
│ │ │ │ │ │ ├── IntentUtils.java
│ │ │ │ │ │ ├── JSONUtils.java
│ │ │ │ │ │ ├── KeyStoreUtils.java
│ │ │ │ │ │ ├── LangUtils.java
│ │ │ │ │ │ ├── ListItemCreator.java
│ │ │ │ │ │ ├── MiuiUtils.java
│ │ │ │ │ │ ├── MotorolaUtils.java
│ │ │ │ │ │ ├── MultithreadedExecutor.java
│ │ │ │ │ │ ├── NonNullUtils.java
│ │ │ │ │ │ ├── NotificationUtils.java
│ │ │ │ │ │ ├── PackageUtils.java
│ │ │ │ │ │ ├── ParcelFileDescriptorUtil.java
│ │ │ │ │ │ ├── ResourceUtil.java
│ │ │ │ │ │ ├── RestartUtils.java
│ │ │ │ │ │ ├── SAFUtils.java
│ │ │ │ │ │ ├── StoragePermission.java
│ │ │ │ │ │ ├── StorageUtils.java
│ │ │ │ │ │ ├── TarUtils.java
│ │ │ │ │ │ ├── TextUtilsCompat.java
│ │ │ │ │ │ ├── ThreadUtils.java
│ │ │ │ │ │ ├── UIUtils.java
│ │ │ │ │ │ ├── Utils.java
│ │ │ │ │ │ └── appearance/
│ │ │ │ │ │ ├── AppearanceUtils.java
│ │ │ │ │ │ ├── ColorCodes.java
│ │ │ │ │ │ └── TypefaceUtil.java
│ │ │ │ │ └── viewer/
│ │ │ │ │ ├── ExplorerActivity.java
│ │ │ │ │ └── audio/
│ │ │ │ │ ├── AudioMetadata.java
│ │ │ │ │ ├── AudioPlayerActivity.java
│ │ │ │ │ ├── AudioPlayerDialogFragment.java
│ │ │ │ │ ├── AudioPlayerViewModel.java
│ │ │ │ │ └── RepeatMode.java
│ │ │ │ ├── algo/
│ │ │ │ │ └── AhoCorasick.java
│ │ │ │ ├── csv/
│ │ │ │ │ └── CsvWriter.java
│ │ │ │ ├── io/
│ │ │ │ │ ├── DirectoryUtils.java
│ │ │ │ │ ├── LocalFileOverlay.java
│ │ │ │ │ ├── PathAttributesImpl.java
│ │ │ │ │ ├── PathContentInfoImpl.java
│ │ │ │ │ ├── PathImpl.java
│ │ │ │ │ ├── Paths.java
│ │ │ │ │ ├── ReadOnlyLocalFile.java
│ │ │ │ │ └── fs/
│ │ │ │ │ ├── ApkFileSystem.java
│ │ │ │ │ ├── DexFileSystem.java
│ │ │ │ │ ├── VirtualFileSystem.java
│ │ │ │ │ └── ZipFileSystem.java
│ │ │ │ ├── proc/
│ │ │ │ │ ├── ProcFdInfoList.java
│ │ │ │ │ ├── ProcFs.java
│ │ │ │ │ ├── ProcMappedFiles.java
│ │ │ │ │ ├── ProcMemStat.java
│ │ │ │ │ ├── ProcMemoryInfo.java
│ │ │ │ │ ├── ProcStat.java
│ │ │ │ │ ├── ProcStatus.java
│ │ │ │ │ └── ProcUidNetStat.java
│ │ │ │ └── svg/
│ │ │ │ ├── ParserHelper.java
│ │ │ │ ├── SVG.java
│ │ │ │ ├── SVGParseException.java
│ │ │ │ └── SVGParser.java
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── commons/
│ │ │ └── compress/
│ │ │ ├── archivers/
│ │ │ │ ├── ArchiveEntry.java
│ │ │ │ ├── ArchiveInputStream.java
│ │ │ │ ├── ArchiveOutputStream.java
│ │ │ │ ├── EntryStreamOffsets.java
│ │ │ │ ├── tar/
│ │ │ │ │ ├── TarArchiveEntry.java
│ │ │ │ │ ├── TarArchiveInputStream.java
│ │ │ │ │ ├── TarArchiveOutputStream.java
│ │ │ │ │ ├── TarArchiveSparseEntry.java
│ │ │ │ │ ├── TarArchiveSparseZeroInputStream.java
│ │ │ │ │ ├── TarArchiveStructSparse.java
│ │ │ │ │ ├── TarConstants.java
│ │ │ │ │ └── TarUtils.java
│ │ │ │ └── zip/
│ │ │ │ ├── CharsetAccessor.java
│ │ │ │ ├── NioZipEncoding.java
│ │ │ │ ├── ZipEncoding.java
│ │ │ │ └── ZipEncodingHelper.java
│ │ │ ├── compressors/
│ │ │ │ ├── CompressorInputStream.java
│ │ │ │ ├── CompressorOutputStream.java
│ │ │ │ ├── FileNameUtil.java
│ │ │ │ ├── bzip2/
│ │ │ │ │ ├── BZip2CompressorInputStream.java
│ │ │ │ │ ├── BZip2CompressorOutputStream.java
│ │ │ │ │ ├── BZip2Constants.java
│ │ │ │ │ ├── BZip2Utils.java
│ │ │ │ │ ├── BlockSort.java
│ │ │ │ │ ├── CRC.java
│ │ │ │ │ └── Rand.java
│ │ │ │ └── gzip/
│ │ │ │ ├── GzipCompressorInputStream.java
│ │ │ │ ├── GzipCompressorOutputStream.java
│ │ │ │ ├── GzipParameters.java
│ │ │ │ └── GzipUtils.java
│ │ │ └── utils/
│ │ │ ├── ArchiveUtils.java
│ │ │ ├── BitInputStream.java
│ │ │ ├── BoundedInputStream.java
│ │ │ ├── ByteUtils.java
│ │ │ ├── CharsetNames.java
│ │ │ ├── CloseShieldFilterInputStream.java
│ │ │ ├── CountingInputStream.java
│ │ │ ├── CountingOutputStream.java
│ │ │ ├── FixedLengthBlockOutputStream.java
│ │ │ ├── IOUtils.java
│ │ │ └── InputStreamStatistics.java
│ │ └── res/
│ │ ├── animator/
│ │ │ ├── enter_from_left.xml
│ │ │ ├── enter_from_right.xml
│ │ │ ├── exit_from_left.xml
│ │ │ └── exit_from_right.xml
│ │ ├── drawable/
│ │ │ ├── app_widget_background.xml
│ │ │ ├── badge_background.xml
│ │ │ ├── circle_background.xml
│ │ │ ├── circle_with_padding.xml
│ │ │ ├── dashed_border.xml
│ │ │ ├── ic_add.xml
│ │ │ ├── ic_android.xml
│ │ │ ├── ic_archive.xml
│ │ │ ├── ic_arrow_outward.xml
│ │ │ ├── ic_audio_file.xml
│ │ │ ├── ic_autorenew.xml
│ │ │ ├── ic_backup_restore.xml
│ │ │ ├── ic_battery_plus.xml
│ │ │ ├── ic_block.xml
│ │ │ ├── ic_book.xml
│ │ │ ├── ic_brush.xml
│ │ │ ├── ic_calendar_month.xml
│ │ │ ├── ic_cctv_off.xml
│ │ │ ├── ic_charity.xml
│ │ │ ├── ic_check_circle.xml
│ │ │ ├── ic_clear_cache.xml
│ │ │ ├── ic_clear_data.xml
│ │ │ ├── ic_code.xml
│ │ │ ├── ic_contact_page.xml
│ │ │ ├── ic_content_copy.xml
│ │ │ ├── ic_content_cut.xml
│ │ │ ├── ic_content_duplicate.xml
│ │ │ ├── ic_content_paste.xml
│ │ │ ├── ic_content_save.xml
│ │ │ ├── ic_cursor_default_click.xml
│ │ │ ├── ic_data_usage.xml
│ │ │ ├── ic_database.xml
│ │ │ ├── ic_drag.xml
│ │ │ ├── ic_edit.xml
│ │ │ ├── ic_email.xml
│ │ │ ├── ic_exodusprivacy.xml
│ │ │ ├── ic_expand_less.xml
│ │ │ ├── ic_expand_more.xml
│ │ │ ├── ic_eye.xml
│ │ │ ├── ic_fast_forward.xml
│ │ │ ├── ic_fast_rewind.xml
│ │ │ ├── ic_file.xml
│ │ │ ├── ic_file_copy.xml
│ │ │ ├── ic_file_document.xml
│ │ │ ├── ic_file_document_multiple.xml
│ │ │ ├── ic_file_export.xml
│ │ │ ├── ic_file_import.xml
│ │ │ ├── ic_file_plus.xml
│ │ │ ├── ic_file_replace.xml
│ │ │ ├── ic_file_undo.xml
│ │ │ ├── ic_filter_list.xml
│ │ │ ├── ic_filter_menu.xml
│ │ │ ├── ic_find_and_replace.xml
│ │ │ ├── ic_find_and_replace_all.xml
│ │ │ ├── ic_flag.xml
│ │ │ ├── ic_fold_vertical.xml
│ │ │ ├── ic_folder.xml
│ │ │ ├── ic_font_download.xml
│ │ │ ├── ic_form_textbox.xml
│ │ │ ├── ic_frost_aurorastore.xml
│ │ │ ├── ic_frost_fdroid.xml
│ │ │ ├── ic_frost_termux.xml
│ │ │ ├── ic_get_app.xml
│ │ │ ├── ic_hammer_wrench.xml
│ │ │ ├── ic_history.xml
│ │ │ ├── ic_image.xml
│ │ │ ├── ic_information_circle.xml
│ │ │ ├── ic_launcher_fm_foreground.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── ic_link.xml
│ │ │ ├── ic_liquid_spot_off.xml
│ │ │ ├── ic_list_status.xml
│ │ │ ├── ic_lock.xml
│ │ │ ├── ic_menu.xml
│ │ │ ├── ic_next.xml
│ │ │ ├── ic_open_in_new.xml
│ │ │ ├── ic_package.xml
│ │ │ ├── ic_palette_swatch.xml
│ │ │ ├── ic_pause.xml
│ │ │ ├── ic_pdf_file.xml
│ │ │ ├── ic_phone_android.xml
│ │ │ ├── ic_play_arrow.xml
│ │ │ ├── ic_power_settings.xml
│ │ │ ├── ic_presentation.xml
│ │ │ ├── ic_previous.xml
│ │ │ ├── ic_pulse.xml
│ │ │ ├── ic_record_rec.xml
│ │ │ ├── ic_redo.xml
│ │ │ ├── ic_refresh.xml
│ │ │ ├── ic_repeat.xml
│ │ │ ├── ic_repeat_off.xml
│ │ │ ├── ic_repeat_one.xml
│ │ │ ├── ic_replay.xml
│ │ │ ├── ic_restore.xml
│ │ │ ├── ic_run_fast.xml
│ │ │ ├── ic_security.xml
│ │ │ ├── ic_security_network.xml
│ │ │ ├── ic_settings.xml
│ │ │ ├── ic_share.xml
│ │ │ ├── ic_shield_key.xml
│ │ │ ├── ic_shortcut_record.xml
│ │ │ ├── ic_snowflake.xml
│ │ │ ├── ic_snowflake_off.xml
│ │ │ ├── ic_sort.xml
│ │ │ ├── ic_splash_logo.xml
│ │ │ ├── ic_star.xml
│ │ │ ├── ic_star_outline.xml
│ │ │ ├── ic_stop.xml
│ │ │ ├── ic_sync.xml
│ │ │ ├── ic_tab.xml
│ │ │ ├── ic_table.xml
│ │ │ ├── ic_touch_app.xml
│ │ │ ├── ic_transit_connection.xml
│ │ │ ├── ic_translate.xml
│ │ │ ├── ic_trash_can.xml
│ │ │ ├── ic_tune.xml
│ │ │ ├── ic_undo.xml
│ │ │ ├── ic_unlock.xml
│ │ │ ├── ic_video_file.xml
│ │ │ ├── ic_view_agenda.xml
│ │ │ ├── ic_view_list.xml
│ │ │ ├── ic_vt.xml
│ │ │ ├── ic_wifi.xml
│ │ │ ├── ic_wrap_text.xml
│ │ │ ├── ic_zip_disk.xml
│ │ │ └── ripple_background_24.xml
│ │ ├── drawable-anydpi-v24/
│ │ │ └── ic_default_notification.xml
│ │ ├── layout/
│ │ │ ├── activity_app_details.xml
│ │ │ ├── activity_app_usage.xml
│ │ │ ├── activity_apps_profile.xml
│ │ │ ├── activity_audio_player.xml
│ │ │ ├── activity_auth_management.xml
│ │ │ ├── activity_authentication.xml
│ │ │ ├── activity_batch_ops_results.xml
│ │ │ ├── activity_code_editor.xml
│ │ │ ├── activity_debloater.xml
│ │ │ ├── activity_finder.xml
│ │ │ ├── activity_fm.xml
│ │ │ ├── activity_help.xml
│ │ │ ├── activity_interceptor.xml
│ │ │ ├── activity_labs.xml
│ │ │ ├── activity_logcat.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_one_click_ops.xml
│ │ │ ├── activity_op_history.xml
│ │ │ ├── activity_profiles.xml
│ │ │ ├── activity_running_apps.xml
│ │ │ ├── activity_settings.xml
│ │ │ ├── activity_settings_dual_pane.xml
│ │ │ ├── activity_shared_prefs.xml
│ │ │ ├── activity_sys_config.xml
│ │ │ ├── activity_term.xml
│ │ │ ├── app_widget_clear_cache.xml
│ │ │ ├── app_widget_data_usage_small.xml
│ │ │ ├── app_widget_refresh_button.xml
│ │ │ ├── app_widget_screen_time.xml
│ │ │ ├── app_widget_screen_time_large.xml
│ │ │ ├── app_widget_screen_time_small.xml
│ │ │ ├── appbar.xml
│ │ │ ├── dialog_app_usage_details.xml
│ │ │ ├── dialog_audio_player.xml
│ │ │ ├── dialog_backup_restore.xml
│ │ │ ├── dialog_backup_tasks.xml
│ │ │ ├── dialog_bloatware_details.xml
│ │ │ ├── dialog_certificate_generator.xml
│ │ │ ├── dialog_change_file_mode.xml
│ │ │ ├── dialog_checksums.xml
│ │ │ ├── dialog_create_shortcut.xml
│ │ │ ├── dialog_debloater_list_options.xml
│ │ │ ├── dialog_dexopt.xml
│ │ │ ├── dialog_disclaimer.xml
│ │ │ ├── dialog_edit_filter_item.xml
│ │ │ ├── dialog_edit_filter_option.xml
│ │ │ ├── dialog_edit_pref_item.xml
│ │ │ ├── dialog_file_properties.xml
│ │ │ ├── dialog_icon_picker.xml
│ │ │ ├── dialog_installer.xml
│ │ │ ├── dialog_installer_options.xml
│ │ │ ├── dialog_key_pair_importer.xml
│ │ │ ├── dialog_keystore_password.xml
│ │ │ ├── dialog_list_options.xml
│ │ │ ├── dialog_new_file.xml
│ │ │ ├── dialog_new_symlink.xml
│ │ │ ├── dialog_open_with.xml
│ │ │ ├── dialog_profile_backup_restore.xml
│ │ │ ├── dialog_progress.xml
│ │ │ ├── dialog_progress2.xml
│ │ │ ├── dialog_progress_circular.xml
│ │ │ ├── dialog_rename.xml
│ │ │ ├── dialog_restore_tasks.xml
│ │ │ ├── dialog_running_app_details.xml
│ │ │ ├── dialog_searchable_multi_choice.xml
│ │ │ ├── dialog_searchby.xml
│ │ │ ├── dialog_send_log.xml
│ │ │ ├── dialog_set_apk_format.xml
│ │ │ ├── dialog_ssaid_info.xml
│ │ │ ├── dialog_whats_new.xml
│ │ │ ├── fragment_class_lister.xml
│ │ │ ├── fragment_code_editor.xml
│ │ │ ├── fragment_container.xml
│ │ │ ├── fragment_dialog_backup.xml
│ │ │ ├── fragment_dialog_restore_multiple.xml
│ │ │ ├── fragment_dialog_restore_single.xml
│ │ │ ├── fragment_fm.xml
│ │ │ ├── fragment_log_viewer.xml
│ │ │ ├── fragment_logcat.xml
│ │ │ ├── fragment_mode_of_ops.xml
│ │ │ ├── fragment_scanner.xml
│ │ │ ├── header_running_apps_memory_info.xml
│ │ │ ├── item_app_details_appop.xml
│ │ │ ├── item_app_details_overlay.xml
│ │ │ ├── item_app_details_perm.xml
│ │ │ ├── item_app_details_primary.xml
│ │ │ ├── item_app_details_secondary.xml
│ │ │ ├── item_app_details_signature.xml
│ │ │ ├── item_app_details_tertiary.xml
│ │ │ ├── item_app_info_action.xml
│ │ │ ├── item_app_usage.xml
│ │ │ ├── item_app_usage_header.xml
│ │ │ ├── item_bloatware_details.xml
│ │ │ ├── item_changelog_header.xml
│ │ │ ├── item_changelog_item.xml
│ │ │ ├── item_checkbox.xml
│ │ │ ├── item_chip.xml
│ │ │ ├── item_debloater.xml
│ │ │ ├── item_finder.xml
│ │ │ ├── item_fm.xml
│ │ │ ├── item_fm_drawer.xml
│ │ │ ├── item_icon_title_subtitle.xml
│ │ │ ├── item_logcat.xml
│ │ │ ├── item_main.xml
│ │ │ ├── item_op_history.xml
│ │ │ ├── item_path.xml
│ │ │ ├── item_right_standalone_action.xml
│ │ │ ├── item_right_summary.xml
│ │ │ ├── item_running_app.xml
│ │ │ ├── item_shared_lib.xml
│ │ │ ├── item_switch.xml
│ │ │ ├── item_sys_config.xml
│ │ │ ├── item_text_input_layout_monospace.xml
│ │ │ ├── item_text_view.xml
│ │ │ ├── item_title_action.xml
│ │ │ ├── item_whats_new.xml
│ │ │ ├── pager_app_details.xml
│ │ │ ├── pager_app_info.xml
│ │ │ ├── widget_recording.xml
│ │ │ └── window_activity_tracker.xml
│ │ ├── menu/
│ │ │ ├── activity_activity_interceptor_actions.xml
│ │ │ ├── activity_app_explorer_selection_actions.xml
│ │ │ ├── activity_app_usage_actions.xml
│ │ │ ├── activity_batch_ops_results_actions.xml
│ │ │ ├── activity_code_editor_actions.xml
│ │ │ ├── activity_debloater_actions.xml
│ │ │ ├── activity_debloater_selection_actions.xml
│ │ │ ├── activity_fm_actions.xml
│ │ │ ├── activity_help_actions.xml
│ │ │ ├── activity_main_actions.xml
│ │ │ ├── activity_main_selection_actions.xml
│ │ │ ├── activity_profile_navigation.xml
│ │ │ ├── activity_profiles_actions.xml
│ │ │ ├── activity_profiles_popup_actions.xml
│ │ │ ├── activity_running_apps_actions.xml
│ │ │ ├── activity_running_apps_popup_actions.xml
│ │ │ ├── activity_scanner.xml
│ │ │ ├── activity_shared_prefs_actions.xml
│ │ │ ├── fragment_app_details_app_ops_actions.xml
│ │ │ ├── fragment_app_details_components_actions.xml
│ │ │ ├── fragment_app_details_components_selection_actions.xml
│ │ │ ├── fragment_app_details_overlay_actions.xml
│ │ │ ├── fragment_app_details_permissions_actions.xml
│ │ │ ├── fragment_app_details_refresh_actions.xml
│ │ │ ├── fragment_app_info_actions.xml
│ │ │ ├── fragment_class_lister_actions.xml
│ │ │ ├── fragment_fm_item_actions.xml
│ │ │ ├── fragment_fm_selection_actions.xml
│ │ │ ├── fragment_fm_speed_dial.xml
│ │ │ ├── fragment_live_log_viewer_actions.xml
│ │ │ ├── fragment_logcat_selection_actions.xml
│ │ │ ├── fragment_profile_apps_actions.xml
│ │ │ ├── fragment_saved_log_viewer_actions.xml
│ │ │ └── view_advanced_search_type_selections.xml
│ │ ├── mipmap-anydpi-v26/
│ │ │ ├── ic_banner.xml
│ │ │ ├── ic_launcher.xml
│ │ │ ├── ic_launcher_fm.xml
│ │ │ ├── ic_launcher_fm_round.xml
│ │ │ └── ic_launcher_round.xml
│ │ ├── raw/
│ │ │ └── changelog.xml
│ │ ├── values/
│ │ │ ├── arrays.xml
│ │ │ ├── attrs.xml
│ │ │ ├── colors.xml
│ │ │ ├── dimens.xml
│ │ │ ├── disclaimer.xml
│ │ │ ├── ic_banner_background.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_fm_background.xml
│ │ │ ├── libs.xml
│ │ │ ├── native_libs.xml
│ │ │ ├── strings.xml
│ │ │ ├── styles.xml
│ │ │ ├── trackers.xml
│ │ │ └── word_list.xml
│ │ ├── values-ar/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ar-rSA/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-az/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ban/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-be/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-bn-rBD/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-cs/
│ │ │ └── disclaimer.xml
│ │ ├── values-cs-rCZ/
│ │ │ └── strings.xml
│ │ ├── values-da/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-de/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-el/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-eo/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-es/
│ │ │ └── disclaimer.xml
│ │ ├── values-es-rES/
│ │ │ └── strings.xml
│ │ ├── values-fa/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-fr/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-hi/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-hu/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-in-rID/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-it-rIT/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-iw/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ja/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ko/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-lv/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-nb-rNO/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-night-v31/
│ │ │ └── styles.xml
│ │ ├── values-nl/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-pl/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-pt/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-pt-rBR/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ro/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-ru-rRU/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-si/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-sq/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-sv/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-tr-rTR/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-uk/
│ │ │ └── disclaimer.xml
│ │ ├── values-uk-rUA/
│ │ │ └── strings.xml
│ │ ├── values-v31/
│ │ │ └── styles.xml
│ │ ├── values-vi/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-zh-rCN/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ ├── values-zh-rTW/
│ │ │ ├── disclaimer.xml
│ │ │ └── strings.xml
│ │ └── xml/
│ │ ├── accessibility_service_config.xml
│ │ ├── app_widget_info_clear_cache.xml
│ │ ├── app_widget_info_data_usage.xml
│ │ ├── app_widget_info_screen_time.xml
│ │ ├── backup_rules.xml
│ │ ├── full_backup_rules.xml
│ │ ├── locales_config.xml
│ │ ├── network_security_config.xml
│ │ ├── preferences_about.xml
│ │ ├── preferences_advanced.xml
│ │ ├── preferences_appearance.xml
│ │ ├── preferences_backup_restore.xml
│ │ ├── preferences_file_manager.xml
│ │ ├── preferences_installer.xml
│ │ ├── preferences_log_viewer.xml
│ │ ├── preferences_main.xml
│ │ ├── preferences_privacy.xml
│ │ ├── preferences_profile_config.xml
│ │ ├── preferences_rules.xml
│ │ ├── preferences_rules_import_export.xml
│ │ ├── preferences_signature.xml
│ │ ├── preferences_troubleshooting.xml
│ │ ├── preferences_virus_total.xml
│ │ └── recording_widget_info.xml
│ └── test/
│ ├── java/
│ │ ├── android/
│ │ │ ├── os/
│ │ │ │ └── UserHandleHidden.java
│ │ │ └── system/
│ │ │ ├── OsHidden.java
│ │ │ └── StructPasswd.java
│ │ ├── androidx/
│ │ │ └── documentfile/
│ │ │ └── provider/
│ │ │ ├── DexDocumentFileTest.java
│ │ │ └── ZipDocumentFileTest.java
│ │ ├── io/
│ │ │ └── github/
│ │ │ └── muntashirakon/
│ │ │ ├── AppManager/
│ │ │ │ ├── apk/
│ │ │ │ │ ├── dexopt/
│ │ │ │ │ │ └── DexOptOptionsTest.java
│ │ │ │ │ └── parser/
│ │ │ │ │ ├── AndroidBinXmlDecoderTest.java
│ │ │ │ │ ├── AndroidBinXmlEncoderTest.java
│ │ │ │ │ └── ManifestParserTest.java
│ │ │ │ ├── backup/
│ │ │ │ │ ├── BackupDataDirectoryInfoTest.java
│ │ │ │ │ ├── BackupManagerTest.java
│ │ │ │ │ ├── BackupUtilsTest.java
│ │ │ │ │ ├── adb/
│ │ │ │ │ │ ├── AndroidBackupCreatorTest.java
│ │ │ │ │ │ └── AndroidBackupExtractorTest.java
│ │ │ │ │ └── convert/
│ │ │ │ │ ├── OABConverterTest.java
│ │ │ │ │ ├── SBConverterTest.java
│ │ │ │ │ └── TBConverterTest.java
│ │ │ │ ├── batchops/
│ │ │ │ │ ├── BatchQueueItemTest.java
│ │ │ │ │ └── struct/
│ │ │ │ │ ├── BatchAppOpsOptionsTest.java
│ │ │ │ │ ├── BatchBackupImportOptionsTest.java
│ │ │ │ │ └── BatchDexOptOptionsTest.java
│ │ │ │ ├── compat/
│ │ │ │ │ └── ActivityManagerCompatTest.java
│ │ │ │ ├── filters/
│ │ │ │ │ └── FilterItemTest.java
│ │ │ │ ├── fm/
│ │ │ │ │ └── FmProviderTest.java
│ │ │ │ ├── rules/
│ │ │ │ │ ├── PseudoRulesTest.java
│ │ │ │ │ ├── compontents/
│ │ │ │ │ │ └── ComponentUtilsTest.java
│ │ │ │ │ └── struct/
│ │ │ │ │ └── RuleEntryTest.java
│ │ │ │ ├── runningapps/
│ │ │ │ │ └── ProcessParserTest.java
│ │ │ │ ├── scanner/
│ │ │ │ │ └── vt/
│ │ │ │ │ └── VirusTotalTest.java
│ │ │ │ ├── ssaid/
│ │ │ │ │ └── SsaidSettingsTest.java
│ │ │ │ └── utils/
│ │ │ │ ├── BitmapRandomizerTest.java
│ │ │ │ ├── RoboUtils.java
│ │ │ │ └── TarUtilsTest.java
│ │ │ ├── csv/
│ │ │ │ └── CsvWriterTest.java
│ │ │ ├── io/
│ │ │ │ ├── PathTest.java
│ │ │ │ ├── PathsTest.java
│ │ │ │ ├── ShadowLocalFileOverlay.java
│ │ │ │ ├── SplitInputStreamTest.java
│ │ │ │ ├── SplitOutputStreamTest.java
│ │ │ │ └── fs/
│ │ │ │ └── ZipFileSystemTest.java
│ │ │ └── test/
│ │ │ └── shadows/
│ │ │ ├── OsConstantsValues.java
│ │ │ ├── ShadowBackupDataDirectoryInfo.java
│ │ │ ├── ShadowDeviceIdleManagerCompat.java
│ │ │ ├── ShadowOsConstants.java
│ │ │ ├── ShadowOwners.java
│ │ │ ├── ShadowPackageInstallerCompat.java
│ │ │ └── ShadowPackageManagerCompat.java
│ │ └── org/
│ │ └── apache/
│ │ └── commons/
│ │ └── compress/
│ │ ├── archivers/
│ │ │ └── tar/
│ │ │ ├── TarArchiveInputStreamTest.java
│ │ │ └── TarArchiveOutputStreamTest.java
│ │ └── compressors/
│ │ ├── bzip2/
│ │ │ ├── BZip2CompressorInputStreamTest.java
│ │ │ └── BZip2CompressorOutputStreamTest.java
│ │ └── gzip/
│ │ ├── GzipCompressorInputStreamTest.java
│ │ └── GzipCompressorOutputStreamTest.java
│ └── resources/
│ ├── AppManager_v2.5.22.apks
│ ├── AppManager_v2.5.22.apks.0
│ ├── AppManager_v2.5.22.apks.1
│ ├── AppManager_v2.5.22.apks.2
│ ├── AppManager_v2.5.22.apks.3
│ ├── AppManager_v2.5.22.apks.4
│ ├── AppManager_v2.5.22.apks.5
│ ├── AppManager_v2.5.22.apks.6
│ ├── AppManager_v2.5.22.apks.7
│ ├── AppManager_v2.5.22.apks.tar.0
│ ├── AppManager_v2.5.22.apks.tar.1
│ ├── AppManager_v2.5.22.apks.tar.bz2
│ ├── AppManager_v2.5.22.apks.tar.bz2.0
│ ├── AppManager_v2.5.22.apks.tar.bz2.1
│ ├── AppManager_v2.5.22.apks.tar.gz.0
│ ├── AppManager_v2.5.22.apks.tar.gz.1
│ ├── SwiftBackup/
│ │ ├── ademar.textlauncher.app
│ │ ├── ademar.textlauncher.xml
│ │ ├── com.google.android.samples.dynamicfeatures.ondemand.app
│ │ ├── com.google.android.samples.dynamicfeatures.ondemand.splits
│ │ ├── com.google.android.samples.dynamicfeatures.ondemand.xml
│ │ ├── com.test.app.app
│ │ ├── com.test.app.exp
│ │ ├── com.test.app.xml
│ │ ├── dnsfilter.android.app
│ │ ├── dnsfilter.android.extdat
│ │ ├── dnsfilter.android.xml
│ │ ├── org.billthefarmer.editor.app
│ │ └── org.billthefarmer.editor.xml
│ ├── TitaniumBackup/
│ │ ├── ademar.textlauncher-20210530-111646.properties
│ │ ├── ademar.textlauncher-7016ac07c52a556afd2eed992b976255.apk.bz2
│ │ ├── ca.cmetcalfe.locationshare-20210529-164219.properties
│ │ ├── ca.cmetcalfe.locationshare-20210529-164219.tar.bz2
│ │ ├── dnsfilter.android-20210529-164214.properties
│ │ ├── dnsfilter.android-20210529-164214.tar.bz2
│ │ ├── dnsfilter.android-6df217d8c3415e7664cb4942b2145ec1.apk.bz2
│ │ ├── org.billthefarmer.editor-20210529-164210.properties
│ │ ├── org.billthefarmer.editor-20210529-164210.tar.bz2
│ │ └── org.billthefarmer.editor-71ecafd32cda1d2975f8aa3cbacdc540.apk.bz2
│ ├── backups/
│ │ ├── adb/
│ │ │ ├── all_data.ab
│ │ │ ├── data0.tar.gz.0
│ │ │ ├── data1.tar.gz.0
│ │ │ ├── data2.tar.gz.0
│ │ │ ├── key_value.ab
│ │ │ └── source.tar.gz.0
│ │ └── v4/
│ │ └── AppManager/
│ │ └── dnsfilter.android/
│ │ ├── 0/
│ │ │ ├── checksums.txt
│ │ │ ├── data0.tar.gz.0
│ │ │ ├── data1.tar.gz.0
│ │ │ ├── meta_v2.am.json
│ │ │ ├── misc.am.tsv
│ │ │ └── source.tar.gz.0
│ │ └── 0_test/
│ │ ├── checksums.txt
│ │ ├── data0.tar.gz.0
│ │ ├── data1.tar.gz.0
│ │ ├── meta_v2.am.json
│ │ ├── misc.am.tsv
│ │ └── source.tar.gz.0
│ ├── dumpsys_app_processes.txt
│ ├── dumpsys_services.txt
│ ├── ifw/
│ │ └── sample.package.xml
│ ├── oandbackups/
│ │ ├── ademar.textlauncher/
│ │ │ ├── ademar.textlauncher.log
│ │ │ └── classes.dex
│ │ ├── ca.cmetcalfe.locationshare/
│ │ │ └── ca.cmetcalfe.locationshare.log
│ │ ├── dnsfilter.android/
│ │ │ └── dnsfilter.android.log
│ │ └── org.billthefarmer.editor/
│ │ └── org.billthefarmer.editor.log
│ ├── plain.txt
│ ├── prefixed/
│ │ ├── prefixed_exclude.txt
│ │ └── prefixed_include.txt
│ ├── proc/
│ │ ├── 11/
│ │ │ ├── attr/
│ │ │ │ ├── current
│ │ │ │ ├── exec
│ │ │ │ ├── fscreate
│ │ │ │ ├── keycreate
│ │ │ │ ├── prev
│ │ │ │ └── sockcreate
│ │ │ ├── cgroup
│ │ │ ├── cmdline
│ │ │ ├── comm
│ │ │ ├── coredump_filter
│ │ │ ├── cpuset
│ │ │ ├── limits
│ │ │ ├── oom_adj
│ │ │ ├── oom_score
│ │ │ ├── oom_score_adj
│ │ │ ├── sched
│ │ │ ├── sched_group_id
│ │ │ ├── sched_init_task_load
│ │ │ ├── sched_wake_up_idle
│ │ │ ├── schedstat
│ │ │ ├── stat
│ │ │ ├── statm
│ │ │ ├── status
│ │ │ ├── timerslack_ns
│ │ │ └── wchan
│ │ ├── 1101/
│ │ │ ├── attr/
│ │ │ │ ├── current
│ │ │ │ ├── exec
│ │ │ │ ├── fscreate
│ │ │ │ ├── keycreate
│ │ │ │ ├── prev
│ │ │ │ └── sockcreate
│ │ │ ├── cgroup
│ │ │ ├── cmdline
│ │ │ ├── comm
│ │ │ ├── coredump_filter
│ │ │ ├── cpuset
│ │ │ ├── limits
│ │ │ ├── oom_adj
│ │ │ ├── oom_score
│ │ │ ├── oom_score_adj
│ │ │ ├── sched
│ │ │ ├── sched_group_id
│ │ │ ├── sched_init_task_load
│ │ │ ├── sched_wake_up_idle
│ │ │ ├── schedstat
│ │ │ ├── stat
│ │ │ ├── statm
│ │ │ ├── status
│ │ │ ├── timerslack_ns
│ │ │ └── wchan
│ │ ├── 1129/
│ │ │ ├── attr/
│ │ │ │ ├── current
│ │ │ │ ├── exec
│ │ │ │ ├── fscreate
│ │ │ │ ├── keycreate
│ │ │ │ ├── prev
│ │ │ │ └── sockcreate
│ │ │ ├── cgroup
│ │ │ ├── cmdline
│ │ │ ├── comm
│ │ │ ├── coredump_filter
│ │ │ ├── cpuset
│ │ │ ├── limits
│ │ │ ├── oom_adj
│ │ │ ├── oom_score
│ │ │ ├── oom_score_adj
│ │ │ ├── sched
│ │ │ ├── sched_group_id
│ │ │ ├── sched_init_task_load
│ │ │ ├── sched_wake_up_idle
│ │ │ ├── schedstat
│ │ │ ├── stat
│ │ │ ├── statm
│ │ │ ├── status
│ │ │ ├── timerslack_ns
│ │ │ └── wchan
│ │ ├── 11547/
│ │ │ ├── attr/
│ │ │ │ ├── current
│ │ │ │ ├── exec
│ │ │ │ ├── fscreate
│ │ │ │ ├── keycreate
│ │ │ │ ├── prev
│ │ │ │ └── sockcreate
│ │ │ ├── cgroup
│ │ │ ├── cmdline
│ │ │ ├── comm
│ │ │ ├── coredump_filter
│ │ │ ├── cpuset
│ │ │ ├── limits
│ │ │ ├── oom_adj
│ │ │ ├── oom_score
│ │ │ ├── oom_score_adj
│ │ │ ├── sched
│ │ │ ├── sched_group_id
│ │ │ ├── sched_init_task_load
│ │ │ ├── sched_wake_up_idle
│ │ │ ├── schedstat
│ │ │ ├── stat
│ │ │ ├── statm
│ │ │ ├── status
│ │ │ ├── timerslack_ns
│ │ │ └── wchan
│ │ ├── 123/
│ │ │ ├── attr/
│ │ │ │ ├── current
│ │ │ │ ├── exec
│ │ │ │ ├── fscreate
│ │ │ │ ├── keycreate
│ │ │ │ ├── prev
│ │ │ │ └── sockcreate
│ │ │ ├── cgroup
│ │ │ ├── cmdline
│ │ │ ├── comm
│ │ │ ├── coredump_filter
│ │ │ ├── cpuset
│ │ │ ├── limits
│ │ │ ├── oom_adj
│ │ │ ├── oom_score
│ │ │ ├── oom_score_adj
│ │ │ ├── sched
│ │ │ ├── sched_group_id
│ │ │ ├── sched_init_task_load
│ │ │ ├── sched_wake_up_idle
│ │ │ ├── schedstat
│ │ │ ├── stat
│ │ │ ├── statm
│ │ │ ├── status
│ │ │ ├── timerslack_ns
│ │ │ └── wchan
│ │ └── uptime
│ ├── raw/
│ │ ├── exclude.txt
│ │ └── include.txt
│ ├── robolectric.properties
│ └── xml/
│ ├── HMS_Core_Android_Manifest.bin.xml
│ ├── HMS_Core_Android_Manifest.man.xml
│ ├── settings_ssaid.xml
│ ├── test_layout.bin.xml
│ └── test_layout.plain.xml
├── build.gradle
├── docs/
│ ├── .gitignore
│ ├── build.gradle
│ ├── mdbook/
│ │ ├── .gitignore
│ │ ├── book.toml
│ │ └── build.py
│ ├── raw/
│ │ ├── .gitignore
│ │ ├── changelog_old.md
│ │ ├── css/
│ │ │ └── custom.css
│ │ ├── de/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── en/
│ │ │ ├── README.md
│ │ │ ├── appendices/
│ │ │ │ ├── app-ops.tex
│ │ │ │ ├── changelogs.tex
│ │ │ │ ├── main.tex
│ │ │ │ └── specifications.tex
│ │ │ ├── custom.css
│ │ │ ├── doctool.sh
│ │ │ ├── faq/
│ │ │ │ ├── aot.tex
│ │ │ │ ├── app-components.tex
│ │ │ │ ├── main.tex
│ │ │ │ └── misc.tex
│ │ │ ├── guide/
│ │ │ │ ├── aot.tex
│ │ │ │ ├── automation.tex
│ │ │ │ ├── backup-restore.tex
│ │ │ │ ├── main.tex
│ │ │ │ ├── net-policy.tex
│ │ │ │ └── wireless_debugging.tex
│ │ │ ├── images/
│ │ │ │ ├── appops.drawio
│ │ │ │ ├── main_page_entry_info_labeled.drawio
│ │ │ │ └── main_page_entry_info_numbered.drawio
│ │ │ ├── index.html
│ │ │ ├── intro/
│ │ │ │ └── main.tex
│ │ │ ├── keywords.tex
│ │ │ ├── lua/
│ │ │ │ ├── alert_fix.lua
│ │ │ │ ├── header_with_hyperlinks.lua
│ │ │ │ ├── img_to_object.lua
│ │ │ │ └── toc_generator.lua
│ │ │ ├── main.tex
│ │ │ ├── main_vanilla.tex
│ │ │ ├── pages/
│ │ │ │ ├── app-details-page.tex
│ │ │ │ ├── interceptor-page.tex
│ │ │ │ ├── main-page.tex
│ │ │ │ ├── main.tex
│ │ │ │ ├── one-click-ops-page.tex
│ │ │ │ ├── profile-page.tex
│ │ │ │ ├── profiles-page.tex
│ │ │ │ ├── scanner-page.tex
│ │ │ │ ├── settings-page.tex
│ │ │ │ └── shared-prefs-editor-page.tex
│ │ │ ├── strings.xml
│ │ │ └── titlepage.tex
│ │ ├── es/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── fr/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── index.html
│ │ ├── ja/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── ko/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── pt/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── pt-rBR/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── ru/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── vi/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ ├── zh-rCN/
│ │ │ ├── index.html
│ │ │ └── strings.xml
│ │ └── zh-rTW/
│ │ ├── index.html
│ │ └── strings.xml
│ └── src/
│ └── main/
│ └── AndroidManifest.xml
├── fastlane/
│ └── metadata/
│ └── android/
│ ├── en-US/
│ │ ├── changelogs/
│ │ │ ├── 437.txt
│ │ │ ├── 440.txt
│ │ │ ├── 441.txt
│ │ │ ├── 442.txt
│ │ │ ├── 443.txt
│ │ │ ├── 444.txt
│ │ │ └── 445.txt
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ └── ja/
│ ├── full_description.txt
│ ├── short_description.txt
│ └── title.txt
├── gradle/
│ └── wrapper/
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── hiddenapi/
│ ├── .gitignore
│ ├── build.gradle
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── java/
│ ├── android/
│ │ ├── annotation/
│ │ │ ├── AppIdInt.java
│ │ │ └── UserIdInt.java
│ │ ├── app/
│ │ │ ├── ActivityManagerNative.java
│ │ │ ├── ActivityThread.java
│ │ │ ├── AppOpsManagerHidden.java
│ │ │ ├── ContentProviderHolder.java
│ │ │ ├── ContextImpl.java
│ │ │ ├── GrantedUriPermission.java
│ │ │ ├── IActivityManager.java
│ │ │ ├── IApplicationThread.java
│ │ │ ├── INotificationManager.java
│ │ │ ├── IServiceConnection.java
│ │ │ ├── IUriGrantsManager.java
│ │ │ ├── ProfilerInfo.java
│ │ │ ├── backup/
│ │ │ │ └── IBackupManager.java
│ │ │ └── usage/
│ │ │ ├── IStorageStatsManager.java
│ │ │ └── IUsageStatsManager.java
│ │ ├── content/
│ │ │ ├── ComponentCallbacks2.java
│ │ │ ├── Context.java
│ │ │ ├── IContentProvider.java
│ │ │ ├── IIntentReceiver.java
│ │ │ ├── IIntentSender.java
│ │ │ ├── IntentHidden.java
│ │ │ ├── om/
│ │ │ │ ├── IOverlayManager.java
│ │ │ │ └── OverlayInfoHidden.java
│ │ │ └── pm/
│ │ │ ├── ApplicationInfoHidden.java
│ │ │ ├── IOnPermissionsChangeListener.java
│ │ │ ├── IPackageDataObserver.java
│ │ │ ├── IPackageDeleteObserver.java
│ │ │ ├── IPackageDeleteObserver2.java
│ │ │ ├── IPackageInstallObserver2.java
│ │ │ ├── IPackageInstaller.java
│ │ │ ├── IPackageInstallerCallback.java
│ │ │ ├── IPackageInstallerSession.java
│ │ │ ├── IPackageManager.java
│ │ │ ├── IPackageManagerN.java
│ │ │ ├── IPackageMoveObserver.java
│ │ │ ├── IPackageStatsObserver.java
│ │ │ ├── KeySet.java
│ │ │ ├── PackageCleanItem.java
│ │ │ ├── PackageInfoHidden.java
│ │ │ ├── PackageInstallerHidden.java
│ │ │ ├── ParceledListSlice.java
│ │ │ ├── SuspendDialogInfo.java
│ │ │ ├── UserInfo.java
│ │ │ ├── VerifierDeviceIdentity.java
│ │ │ ├── permission/
│ │ │ │ └── SplitPermissionInfoParcelable.java
│ │ │ └── verify/
│ │ │ └── domain/
│ │ │ └── IDomainVerificationManager.java
│ │ ├── hardware/
│ │ │ └── input/
│ │ │ ├── IInputManager.java
│ │ │ └── InputManagerHidden.java
│ │ ├── miui/
│ │ │ └── AppOpsUtils.java
│ │ ├── net/
│ │ │ ├── ConnectivityManagerHidden.java
│ │ │ ├── IConnectivityManager.java
│ │ │ ├── INetworkPolicyListener.java
│ │ │ ├── INetworkPolicyManager.java
│ │ │ ├── INetworkStatsService.java
│ │ │ ├── INetworkStatsSession.java
│ │ │ ├── NetworkPolicyManager.java
│ │ │ ├── NetworkStats.java
│ │ │ └── NetworkTemplate.java
│ │ ├── os/
│ │ │ ├── IBinderHidden.java
│ │ │ ├── IDeviceIdleController.java
│ │ │ ├── IUserManager.java
│ │ │ ├── ResultReceiver.java
│ │ │ ├── SELinux.java
│ │ │ ├── ServiceManager.java
│ │ │ ├── ServiceSpecificException.java
│ │ │ ├── ShellCallback.java
│ │ │ ├── SystemProperties.java
│ │ │ ├── UserHandleHidden.java
│ │ │ └── storage/
│ │ │ ├── IMountService.java
│ │ │ ├── IStorageManager.java
│ │ │ ├── StorageManagerHidden.java
│ │ │ └── StorageVolumeHidden.java
│ │ ├── permission/
│ │ │ ├── IOnPermissionsChangeListener.java
│ │ │ └── IPermissionManager.java
│ │ ├── provider/
│ │ │ └── SettingsHidden.java
│ │ ├── system/
│ │ │ ├── OsHidden.java
│ │ │ └── StructPasswd.java
│ │ └── util/
│ │ ├── TypedXmlPullParser.java
│ │ ├── TypedXmlSerializer.java
│ │ └── XmlHidden.java
│ ├── com/
│ │ └── android/
│ │ ├── internal/
│ │ │ ├── app/
│ │ │ │ ├── IAppOpsActiveCallback.java
│ │ │ │ ├── IAppOpsCallback.java
│ │ │ │ ├── IAppOpsNotedCallback.java
│ │ │ │ └── IAppOpsService.java
│ │ │ ├── os/
│ │ │ │ └── PowerProfile.java
│ │ │ └── telephony/
│ │ │ ├── IPhoneSubInfo.java
│ │ │ └── ISub.java
│ │ └── org/
│ │ └── conscrypt/
│ │ └── Conscrypt.java
│ └── misc/
│ └── utils/
│ └── HiddenUtil.java
├── libcore/
│ ├── .gitignore
│ ├── compat/
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ └── src/
│ │ ├── main/
│ │ │ ├── AndroidManifest.xml
│ │ │ └── java/
│ │ │ ├── io/
│ │ │ │ └── github/
│ │ │ │ └── muntashirakon/
│ │ │ │ └── compat/
│ │ │ │ ├── HexDump.java
│ │ │ │ ├── ObjectsCompat.java
│ │ │ │ ├── io/
│ │ │ │ │ ├── FastDataInput.java
│ │ │ │ │ └── FastDataOutput.java
│ │ │ │ ├── os/
│ │ │ │ │ └── ParcelCompat2.java
│ │ │ │ ├── system/
│ │ │ │ │ ├── OsCompat.java
│ │ │ │ │ ├── StructGroup.java
│ │ │ │ │ └── StructTimespec.java
│ │ │ │ └── xml/
│ │ │ │ ├── BinaryXmlPullParser.java
│ │ │ │ ├── BinaryXmlSerializer.java
│ │ │ │ ├── FastXmlSerializer.java
│ │ │ │ ├── TypedXmlPullParser.java
│ │ │ │ ├── TypedXmlSerializer.java
│ │ │ │ ├── Xml.java
│ │ │ │ ├── XmlPullParserWrapper.java
│ │ │ │ ├── XmlSerializerWrapper.java
│ │ │ │ └── XmlUtils.java
│ │ │ └── org/
│ │ │ └── slf4j/
│ │ │ ├── Logger.java
│ │ │ ├── LoggerFactory.java
│ │ │ └── LoggerImpl.java
│ │ └── test/
│ │ ├── java/
│ │ │ └── io/
│ │ │ └── github/
│ │ │ └── muntashirakon/
│ │ │ └── compat/
│ │ │ └── xml/
│ │ │ └── XmlTest.java
│ │ └── resources/
│ │ ├── robolectric.properties
│ │ ├── settings_ssaid.abx.xml
│ │ ├── settings_ssaid.plain.xml
│ │ ├── urigrants.abx.xml
│ │ └── urigrants.plain.xml
│ ├── io/
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ └── src/
│ │ └── main/
│ │ ├── AndroidManifest.xml
│ │ ├── aidl/
│ │ │ ├── aosp/
│ │ │ │ └── android/
│ │ │ │ └── content/
│ │ │ │ └── pm/
│ │ │ │ ├── ParceledListSlice.aidl
│ │ │ │ └── StringParceledListSlice.aidl
│ │ │ └── io/
│ │ │ └── github/
│ │ │ └── muntashirakon/
│ │ │ └── io/
│ │ │ ├── IFileSystemService.aidl
│ │ │ ├── IOResult.aidl
│ │ │ └── UidGidPair.aidl
│ │ └── java/
│ │ ├── androidx/
│ │ │ └── documentfile/
│ │ │ └── provider/
│ │ │ └── ExtendedRawDocumentFile.java
│ │ ├── aosp/
│ │ │ └── android/
│ │ │ └── content/
│ │ │ └── pm/
│ │ │ ├── BaseParceledListSlice.java
│ │ │ ├── ParcelUtils.java
│ │ │ ├── ParceledListSlice.java
│ │ │ └── StringParceledListSlice.java
│ │ └── io/
│ │ └── github/
│ │ └── muntashirakon/
│ │ └── io/
│ │ ├── AtomicExtendedFile.java
│ │ ├── CharSequenceInputStream.java
│ │ ├── ExtendedFile.java
│ │ ├── FileContainer.java
│ │ ├── FileImpl.java
│ │ ├── FileSystemManager.java
│ │ ├── FileSystemService.java
│ │ ├── FileUtils.java
│ │ ├── IOResult.java
│ │ ├── IoUtils.java
│ │ ├── LocalFile.java
│ │ ├── NIOFactory.java
│ │ ├── OpenFile.java
│ │ ├── Path.java
│ │ ├── PathAttributes.java
│ │ ├── PathContentInfo.java
│ │ ├── PathReader.java
│ │ ├── PathWriter.java
│ │ ├── RemoteFile.java
│ │ ├── RemoteFileChannel.java
│ │ ├── SplitInputStream.java
│ │ ├── SplitOutputStream.java
│ │ └── UidGidPair.java
│ └── ui/
│ ├── .gitignore
│ ├── build.gradle
│ ├── consumer-rules.pro
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ ├── java/
│ │ └── io/
│ │ └── github/
│ │ └── muntashirakon/
│ │ ├── adapters/
│ │ │ ├── AnyFilterArrayAdapter.java
│ │ │ ├── NoFilterArrayAdapter.java
│ │ │ └── SelectedArrayAdapter.java
│ │ ├── dialog/
│ │ │ ├── AlertDialogBuilder.java
│ │ │ ├── BottomSheetAlertDialogFragment.java
│ │ │ ├── BottomSheetBehavior.java
│ │ │ ├── BottomSheetDialog.java
│ │ │ ├── CapsuleBottomSheetDialogFragment.java
│ │ │ ├── DialogTitleBuilder.java
│ │ │ ├── FullScreenDialogTitleBuilder.java
│ │ │ ├── ScrollableDialogBuilder.java
│ │ │ ├── SearchableFlagsDialogBuilder.java
│ │ │ ├── SearchableItemsDialogBuilder.java
│ │ │ ├── SearchableMultiChoiceDialogBuilder.java
│ │ │ ├── SearchableSingleChoiceDialogBuilder.java
│ │ │ ├── TextInputDialogBuilder.java
│ │ │ └── TextInputDropdownDialogBuilder.java
│ │ ├── lifecycle/
│ │ │ ├── SingleLiveEvent.java
│ │ │ └── SoftInputLifeCycleObserver.java
│ │ ├── multiselection/
│ │ │ ├── MultiSelectionActionsMenu.java
│ │ │ ├── MultiSelectionActionsMenuPresenter.java
│ │ │ ├── MultiSelectionActionsView.java
│ │ │ └── ReflowMenuItemView.java
│ │ ├── preference/
│ │ │ ├── DefaultAlertPreference.java
│ │ │ ├── HyperlinkPreference.java
│ │ │ ├── InfoAlertPreference.java
│ │ │ ├── PrimaryButtonPreference.java
│ │ │ ├── TopSwitchPreference.java
│ │ │ └── WarningAlertPreference.java
│ │ ├── text/
│ │ │ └── style/
│ │ │ └── ListSpan.java
│ │ ├── util/
│ │ │ ├── AccessibilityUtils.java
│ │ │ ├── AdapterUtils.java
│ │ │ ├── LocalizedString.java
│ │ │ ├── MotionUtils.java
│ │ │ ├── ParcelUtils.java
│ │ │ └── UiUtils.java
│ │ ├── view/
│ │ │ ├── AutoCompleteTextViewCompat.java
│ │ │ ├── AutoFitGridLayoutManager.java
│ │ │ ├── ProgressIndicatorCompat.java
│ │ │ └── TextInputLayoutCompat.java
│ │ └── widget/
│ │ ├── AlwaysFocusedCheckedTextView.java
│ │ ├── AppBarLayout.java
│ │ ├── CheckBox.java
│ │ ├── FloatingActionButtonGroup.java
│ │ ├── FlowLayout.java
│ │ ├── HyperlinkTextView.java
│ │ ├── MaterialAlertView.java
│ │ ├── MaterialAutoCompleteTextView.java
│ │ ├── MaterialSpinner.java
│ │ ├── MaxHeightScrollView.java
│ │ ├── MultiSelectionView.java
│ │ ├── NestedScrollView.java
│ │ ├── NestedScrollableHost.java
│ │ ├── RadioGroupGridLayout.java
│ │ ├── RecyclerView.java
│ │ ├── RoundedFirstAndLastChildViewGroup.java
│ │ ├── SearchView.java
│ │ ├── SwipeRefreshLayout.java
│ │ └── TextInputTextView.java
│ └── res/
│ ├── anim/
│ │ ├── bottom_sheet_slide_down.xml
│ │ ├── bottom_sheet_slide_up.xml
│ │ ├── fullscreen_dialog_enter.xml
│ │ └── fullscreen_dialog_exit.xml
│ ├── color/
│ │ ├── bottom_sheet_drag_handle_color.xml
│ │ ├── bottom_sheet_drag_handle_color_activated.xml
│ │ └── tab_item_background_color.xml
│ ├── drawable/
│ │ ├── bottom_sheet_drag_handle.xml
│ │ ├── bottom_sheet_drag_handle_activated.xml
│ │ ├── ic_caution.xml
│ │ ├── ic_clear.xml
│ │ ├── ic_information.xml
│ │ ├── ic_keyboard_backspace.xml
│ │ ├── ic_more_horiz.xml
│ │ ├── ic_more_vert.xml
│ │ ├── ic_search.xml
│ │ ├── ic_spinner_caret.xml
│ │ ├── item_highlight.xml
│ │ ├── item_semi_transparent.xml
│ │ ├── item_transparent.xml
│ │ ├── mtrl_switch_thumb_checked_medium.xml
│ │ ├── mtrl_switch_thumb_checked_pressed_medium.xml
│ │ ├── mtrl_switch_thumb_checked_unchecked_medium.xml
│ │ ├── mtrl_switch_thumb_medium.xml
│ │ ├── mtrl_switch_thumb_pressed_checked_medium.xml
│ │ ├── mtrl_switch_thumb_pressed_medium.xml
│ │ ├── mtrl_switch_thumb_pressed_unchecked_medium.xml
│ │ ├── mtrl_switch_thumb_unchecked_checked_medium.xml
│ │ ├── mtrl_switch_thumb_unchecked_medium.xml
│ │ ├── mtrl_switch_thumb_unchecked_pressed_medium.xml
│ │ ├── mtrl_switch_track_decoration_medium.xml
│ │ ├── mtrl_switch_track_medium.xml
│ │ ├── popup_menu_background.xml
│ │ ├── popup_menu_item_background.xml
│ │ ├── popup_menu_item_background_ripple.xml
│ │ ├── spinner_rounded_border.xml
│ │ └── tab_item_background_rounded.xml
│ ├── drawable-v23/
│ │ └── popup_menu_background.xml
│ ├── layout/
│ │ ├── auto_complete_dropdown_item.xml
│ │ ├── auto_complete_dropdown_item_small.xml
│ │ ├── dialog_bottom_sheet.xml
│ │ ├── dialog_bottom_sheet_alert.xml
│ │ ├── dialog_bottom_sheet_capsule.xml
│ │ ├── dialog_scrollable_text_view.xml
│ │ ├── dialog_searchable_multi_choice.xml
│ │ ├── dialog_searchable_single_choice.xml
│ │ ├── dialog_text_input.xml
│ │ ├── dialog_text_input_dropdown.xml
│ │ ├── dialog_title_toolbar.xml
│ │ ├── dialog_title_with_two_icons.xml
│ │ ├── item_reflow_menu.xml
│ │ ├── m3_alert_select_dialog_item.xml
│ │ ├── m3_preference.xml
│ │ ├── m3_preference_alert.xml
│ │ ├── m3_preference_button.xml
│ │ ├── m3_preference_category.xml
│ │ ├── m3_preference_image_frame.xml
│ │ ├── m3_preference_top_switch.xml
│ │ ├── m3_preference_widget_material_switch.xml
│ │ └── view_selection_panel.xml
│ ├── values/
│ │ ├── attrs.xml
│ │ ├── bools.xml
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-large/
│ │ └── bools.xml
│ ├── values-ldrtl/
│ │ └── styles.xml
│ ├── values-night/
│ │ ├── colors.xml
│ │ └── styles.xml
│ ├── values-v23/
│ │ └── styles.xml
│ ├── values-v27/
│ │ └── styles.xml
│ └── values-v29/
│ └── styles.xml
├── libopenpgp/
│ ├── .gitignore
│ ├── build.gradle
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ ├── aidl/
│ │ └── org/
│ │ └── openintents/
│ │ └── openpgp/
│ │ ├── IOpenPgpService.aidl
│ │ └── IOpenPgpService2.aidl
│ └── java/
│ └── org/
│ └── openintents/
│ └── openpgp/
│ ├── AutocryptPeerUpdate.java
│ ├── OpenPgpDecryptionResult.java
│ ├── OpenPgpError.java
│ ├── OpenPgpMetadata.java
│ ├── OpenPgpSignatureResult.java
│ └── util/
│ ├── OpenPgpApi.java
│ ├── OpenPgpServiceConnection.java
│ ├── OpenPgpUtils.java
│ └── ParcelFileDescriptorUtil.java
├── libs/
│ ├── README.md
│ ├── add_lib.php
│ └── libsmali.jsonl
├── libserver/
│ ├── .gitignore
│ ├── build.gradle
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ ├── aidl/
│ │ └── io/
│ │ └── github/
│ │ └── muntashirakon/
│ │ └── AppManager/
│ │ └── server/
│ │ └── common/
│ │ └── IRootServiceManager.aidl
│ └── java/
│ └── io/
│ └── github/
│ └── muntashirakon/
│ └── AppManager/
│ └── server/
│ └── common/
│ ├── BaseCaller.java
│ ├── Caller.java
│ ├── CallerResult.java
│ ├── ClassUtils.java
│ ├── ConfigParams.java
│ ├── Constants.java
│ ├── DataTransmission.java
│ ├── FLog.java
│ ├── ParamsFixer.java
│ ├── ParcelableUtil.java
│ ├── ServerActions.java
│ ├── ServerInfo.java
│ ├── ServerUtils.java
│ ├── Shell.java
│ └── ShellCaller.java
├── schema/
│ ├── changlelog.dtd
│ └── packages.dtd
├── scripts/
│ ├── aab_to_apks.sh
│ ├── backup_github_project.sh
│ ├── docs.php
│ ├── fix_strings.php
│ ├── keep-five.sh
│ ├── make_debloat_list.php
│ ├── make_docs.sh
│ ├── make_suggestions.php
│ ├── push_to_mirrors.sh
│ ├── update_libraries.php
│ └── utils.php
├── server/
│ ├── .gitignore
│ ├── build.gradle
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── java/
│ └── io/
│ └── github/
│ └── muntashirakon/
│ └── AppManager/
│ └── server/
│ ├── BroadcastSender.java
│ ├── LifecycleAgent.java
│ ├── RootServiceMain.java
│ ├── Server.java
│ ├── ServerHandler.java
│ └── ServerRunner.java
├── settings.gradle
└── versions.gradle
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug report
description: Create a report to help us improve App Manager
labels: [Bug]
body:
- type: checkboxes
attributes:
label: Please check before submitting an issue
description: Checking the <a href="https://muntashirakon.github.io/AppManager/">docs</a> before submitting an issue may solve your problem.
options:
- label: I know what my device, OS and App Manager versions are
required: true
- label: I know how to take logs
required: true
- label: I know how to reproduce the issue which may not be specific to my device
required: false
- type: textarea
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is
validations:
required: true
- type: textarea
attributes:
label: To Reproduce
description: Steps to reproduce the behaviour
placeholder: |
- 1. Go to '...'
- 2. Click on '....'
- 3. Scroll down to '....'
- 4. See error
- type: textarea
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
- type: textarea
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
- type: textarea
attributes:
label: Logs
description: If applicable, add crash or any other logs to help us figure out the problem.
- type: textarea
attributes:
label: Device info
value: |
- Device:
- OS Version:
- App Manager Version:
- Mode: Root/ADB/NonRoot
validations:
required: true
- type: textarea
attributes:
label: Additional context
description: Add any other context about the problem here.
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: 🐜 android-libraries Repo
url: https://github.com/MuntashirAkon/android-libraries
about: Please send requests for new trackers and libraries to this repository
- name: 📗 App Manager Docs
url: https://muntashirakon.github.io/AppManager/
about: Please read documentation carefully before submitting an issue
================================================
FILE: .github/ISSUE_TEMPLATE/documentation.yml
================================================
name: Docs improvement
description: Improve Docs and Readme
labels: [Documentation]
body:
- type: checkboxes
attributes:
label: Please check before submitting an issue
description: You must be familiar with the technical terms specified in the documentation. Also, if your problem comes from the translated version rather than the English original, please correct it from Weblate.
options:
- label: This issue is not related to the translated version of the documentation
required: true
- label: I know technical terms used in the documentation
required: true
- type: textarea
attributes:
label: Describe the problem area
description: A short and concise description of the already existing feature or documentation, e.g. uninstall in batch operations.
validations:
required: true
- type: textarea
attributes:
label: Current documentation if it present
description: Link or copy-and-paste the current description or refer by section number and title
- type: textarea
attributes:
label: Describe your suggestion
description: A clear and concise description of what you expect the documentation to contain, e.g. it should've been noted that uninstall in batch operations does not work in no-root mode
validations:
required: true
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the documentation here.
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: Feature request
description: Suggest an idea for this project
labels: [Feature]
body:
- type: checkboxes
attributes:
label: Please check before submitting an issue
description: Checking the <a href="https://muntashirakon.github.io/AppManager/">docs</a> before submitting an issue may solve your problem.
options:
- label: I am using the latest version of App Manager
required: true
- label: I have searched the issues and haven't found anything relevant
required: true
- label: I have read the docs
required: true
- type: textarea
attributes:
label: Describe a description of the new feature
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
================================================
FILE: .github/ISSUE_TEMPLATE/help-wanted.yml
================================================
name: Help wanted
description: Ask for help regarding a feature
labels: [Help Wanted]
body:
- type: textarea
attributes:
label: Describe the existing feature/documentation
description: A short and concise description of the already existing feature or documentation, e.g. uninstall in batch operations. The purpose of this template is to improve your knowledge regarding the feature. For new features, use the feature request template. Use the bug report template if the feature is not working as expected.
- type: textarea
attributes:
label: Describe your problem(s)
description: Describe the problem(s) you've faced while using the feature or reading the documentation.
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature/documentation here.
================================================
FILE: .github/workflows/codeql.yml
================================================
name: "CodeQL"
on:
push:
branches: [ "master", "AppManager-*" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '43 14 * * 4'
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
================================================
FILE: .github/workflows/lint.yml
================================================
name: Lint
on:
push:
branches:
- 'master'
- 'AppManager-*'
paths-ignore:
- 'fastlane/**'
- 'scripts/**'
- '*.md'
pull_request:
branches:
- 'master'
- 'AppManager-*'
paths-ignore:
- 'fastlane/**'
- 'scripts/**'
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run lint
run: ./gradlew lint
- name: Upload lint results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
path: ./app/build/reports/lint-results-debug.html
================================================
FILE: .github/workflows/tests.yml
================================================
name: Tests
on:
push:
branches:
- 'master'
- 'AppManager-*'
paths-ignore:
- 'fastlane/**'
- 'scripts/**'
- '*.md'
pull_request:
branches:
- 'master'
- 'AppManager-*'
paths-ignore:
- 'fastlane/**'
- 'scripts/**'
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run tests
run: ./gradlew test
- name: Upload test results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: unitTestResults
path: ./app/build/reports/tests/testDebugUnitTest/
================================================
FILE: .gitignore
================================================
.gradle/
.idea/
crowdin.properties
local.properties
.DS_Store
build/
app/preRelease/
app/release/
app/debug/
app/libs/am-common.jar
toybox/src/main/jniLibs
app/src/main/assets/am.jar
app/src/main/assets/main.jar
pids
logs
node_modules
npm-debug.log
coverage/
run
dist
.nyc_output
.basement
config.local.js
basement_dist
*.apk
*.iml
*.jks
*~
scripts/KeyStore.sh
================================================
FILE: .gitmodules
================================================
[submodule "scripts/android-libraries"]
path = scripts/android-libraries
url = https://github.com/MuntashirAkon/android-libraries.git
[submodule "scripts/android-debloat-list"]
path = scripts/android-debloat-list
url = https://github.com/MuntashirAkon/android-debloat-list.git
================================================
FILE: .run/Documentation.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Documentation" type="LATEX_RUN_CONFIGURATION" factoryName="LaTeX configuration factory" activateToolWindowBeforeRun="false">
<texify>
<compiler>PDFLATEX</compiler>
<compiler-path>pdflatex</compiler-path>
<sumatra-path />
<pdf-viewer>NONE</pdf-viewer>
<viewer-command>open</viewer-command>
<compiler-arguments>-shell-escape</compiler-arguments>
<envs />
<main-file>$PROJECT_DIR$/docs/raw/en/main_vanilla.tex</main-file>
<output-path>$PROJECT_DIR$/docs/raw/en</output-path>
<auxil-path>{projectDir}/auxil</auxil-path>
<compile-twice>false</compile-twice>
<output-format>PDF</output-format>
<latex-distribution>TEXLIVE</latex-distribution>
<has-been-run>true</has-been-run>
<bib-run-config>[]</bib-run-config>
<makeindex-run-config>[]</makeindex-run-config>
</texify>
<method v="2" />
</configuration>
</component>
================================================
FILE: .run/app.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="app" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="AppManager.app.main" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="true" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
<option name="MODE" value="default_activity" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="DEBUGGER_TYPE" value="Java" />
<Java />
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY_CLASS" value="" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
================================================
FILE: .run/app_details.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="app_details" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="AppManager.app.main" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="true" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="-e pkg io.github.muntashirakon.AppManager.debug" />
<option name="MODE" value="specific_activity" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="DEBUGGER_TYPE" value="Java" />
<Java />
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY_CLASS" value="io.github.muntashirakon.AppManager.details.AppInfoActivity" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
================================================
FILE: .run/fm.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="fm" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="AppManager.app.main" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="true" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
<option name="MODE" value="specific_activity" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="DEBUGGER_TYPE" value="Java" />
<Java />
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY_CLASS" value="io.github.muntashirakon.AppManager.fm.FmActivity" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
================================================
FILE: .run/lint.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="lint" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="lintDebug" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>
================================================
FILE: .run/settings.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="settings" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="AppManager.app.main" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="true" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
<option name="MODE" value="specific_activity" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
<option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
<option name="DEBUGGER_TYPE" value="Java" />
<Auto>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Auto>
<Hybrid>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Hybrid>
<Java>
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Java>
<Native>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Native>
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY_CLASS" value="io.github.muntashirakon.AppManager.settings.SettingsActivity" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
================================================
FILE: .run/test.run.xml
================================================
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="test" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="testDebugUnitTest" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>
================================================
FILE: BUILDING.rst
================================================
.. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
====================
Building App Manager
====================
Requirements
============
* **Hardware:** Any computer with 8 GB RAM and 20 GB storage
* **Operating system:** Linux/macOS/WSL
* **Software:** Android Studio/IntelliJ IDEA, Gradle, Latex, pandoc, JDK 17+
* **Active network connection:** Depending on your development environment,
you may need at least 20 GB data package.
macOS
=====
The following steps are required only if you want to build APKS:
- Install Homebrew::
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install bundletool::
brew install bundletool
Linux|GNU
=========
- Install the development tools.
* For Debian/Ubuntu::
sudo apt-get install build-essential
* For Fedora/CentOS/RHEL::
sudo yum groupinstall "Development Tools"
* For Arch/Artix/Manjaro::
sudo pacman -S base-devel
- Install `bundletool-all.jar`_ if you want to build APKS, and make sure it is
available as ``bundletool`` command. A quick way would be to create an alias
as follows (assuming you're using ``bash``)::
echo "alias bundletool='java -jar path/to/bundletool.jar'" >> ~/.bashrc
Make sure to replace ``/path/to/bundletool-all.jar`` with the actual path for
**bundletool-all.jar**.
* For Arch/Artix/Majaro (with ``yay``)::
yay -S bundletool
Clone and Build App Manager
===========================
1. Clone the repo along with submodules::
git clone --recurse-submodules https://github.com/MuntashirAkon/AppManager.git
You can use the `--depth 1` argument if you don't want to clone past
commits.
2. Open the project **AppManager** using Android Studio/IntelliJ IDEA. The IDE
should start syncing automatically. It will also download all the necessary
dependencies automatically provided you have a working network connection.
3. Build debug version of App Manager from *Menu* > *Build* > *Make Project*,
or, from the terminal::
./gradlew packageDebugUniversalApk
The command will generate a universal APK instead of a bundled app.
Create Bundled App
==================
To create a bundled app in APKS format, run the following command::
./scripts/aab_to_apks.sh type
Replace ``type`` with ``release`` or ``debug`` based on your requirements.
It will ask for KeyStore credentials interactively.
The script above will also generate a universal APK.
.. _bundletool-all.jar: https://github.com/google/bundletool
Build documentation
===================
See `docs/raw/en/README.md <docs/raw/en/README.md>`_
================================================
FILE: CONTRIBUTING.rst
================================================
.. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
============
Contributing
============
You are welcome contribute to App Manager! This doesn't mean that you need
coding skills. You can contribute to App Manager by creating helpful issues,
attending discussions, improving documentations and translations, making icon
for icon packs, adding unrecognised libraries or ad/tracking signatures,
reviewing the source code, as well as reporting security vulnerabilities.
AI-Generated Contributions
==========================
To maintain the legal integrity and clear provenance of App Manager's codebase
under the GPL-3.0-or-later license, we DO NOT accept contributions that are
generated, in whole part or in part, by Artificial Intelligence (AI) or Large
Language Models (LLMs). All contributions MUST be the original work of the
human author(s) submitting the pull or merge request. By submitting a pull or
merge request, you affirm that the code was authored by you without the use of
generative AI tools that produce functional code blocks.
Rules
=====
- If you are going to implement or work on any specific feature, please inform
us before doing so. Due to the complex nature of the project, integrating a
new feature could be challenging.
- Your contributions are licensed under ``GPL-3.0-or-later`` by default.
Please see related `Linux documentations`_ to see how to add license headers
to a file, and remember the following:
* If the files your are contributing to do not have ``GPL-3.0-or-later``, add
it to the existing ``SPDX-License-Identifier`` using ``AND``, e.g. ::
SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later
* If the entire file or Java class is copied from another person or project,
you have to add a copyright statement adding the person who wrote it first
like this::
// Copyright 2004 Linus Torvalds
You can also add other contributors but they are not mandatory. You do not
need to include your name because it can already be available via the
version control system.
* Do not add the **@author** tag as it is considered a bad practice.
- You have to sign-off your work. You can do that using the ``--signoff``
argument. If you are not using command line or a software that does not
support it, you can add the following line at the end of your commit
message::
Signed-off-by: My Name <my.name@example.com>
We also support most of the `commit message conventions`_ from Linux.
App Manager is a legal software and its contributions are protected by
copyright laws. Consider using real credentials ie. real name and email as
we may be required to delete your valuable contributions in the event of
introducing new license or adding exceptions to the existing license.
**Note:** Repositories located in sites other than GitHub are currently
considered mirrors and any pull or merge requests submitted there will not be
accepted. Instead, you can submit patches (as ``.patch`` files) via email
attachment. My email address is am4android [at] riseup [dot] net. Beware
that such emails may be publicly accessible in future. GitHub pull requests
will be merged manually using the corresponding patches. As a result, GitHub
may falsely mark them *closed* instead of *merged*.
**Warning.** Every commit made by other users are thoroughly examined with the
exception of commits made through Weblate. So, if it is found that you are
abusing the Weblate platform, you will be blocked on Weblate without a warning,
and ALL your contributions to this project shall be removed. This is a hobby
project, and like any hobby, I want to make things neat and clean. Existing
contributors are also encouraged to report any abuse. Your identity shall be
kept secret.
.. _Linux documentations: https://github.com/torvalds/linux/blob/master/Documentation/process/license-rules.rst
.. _commit message conventions: https://git.wiki.kernel.org/index.php/CommitMessageConventions
================================================
FILE: COPYING
================================================
App Manager is provided under:
SPDX-License-Identifier: GPL-3.0-or-later
Being under the terms of the GNU General Public License version 3 or
later, according with:
LICENSES/GPL-3.0
In addition, other licenses may also apply. Please navigate to:
LICENSES/
to see all the licenses used in this project.
All contributions to the App Manager are subject to this COPYING file.
================================================
FILE: LICENSES/Apache-2.0
================================================
Valid-License-Identifier: Apache-2.0
SPDX-URL: https://spdx.org/licenses/Apache-2.0.html
Usage-Guide:
To use the Apache License version 2.0 put the following SPDX tag/value
pair into a comment according to the placement guidelines in the
licensing rules documentation:
SPDX-License-Identifier: Apache-2.0
Do NOT use this license unless the files are copied from another work
under the same license. In such cases, use "AND GPL-3.0-or-later" so
that your contributions are under GPL-3.0+ license.
License-Text:
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the
copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other
entities that control, are controlled by, or are under common control with
that entity. For the purposes of this definition, "control" means (i) the
power, direct or indirect, to cause the direction or management of such
entity, whether by contract or otherwise, or (ii) ownership of fifty
percent (50%) or more of the outstanding shares, or (iii) beneficial
ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising
permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation source,
and configuration files.
"Object" form shall mean any form resulting from mechanical transformation
or translation of a Source form, including but not limited to compiled
object code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form,
made available under the License, as indicated by a copyright notice that
is included in or attached to the work (an example is provided in the
Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form,
that is based on (or derived from) the Work and for which the editorial
revisions, annotations, elaborations, or other modifications represent, as
a whole, an original work of authorship. For the purposes of this License,
Derivative Works shall not include works that remain separable from, or
merely link (or bind by name) to the interfaces of, the Work and Derivative
Works thereof.
"Contribution" shall mean any work of authorship, including the original
version of the Work and any modifications or additions to that Work or
Derivative Works thereof, that is intentionally submitted to Licensor for
inclusion in the Work by the copyright owner or by an individual or Legal
Entity authorized to submit on behalf of the copyright owner. For the
purposes of this definition, "submitted" means any form of electronic,
verbal, or written communication sent to the Licensor or its
representatives, including but not limited to communication on electronic
mailing lists, source code control systems, and issue tracking systems that
are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously
marked or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on
behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly
perform, sublicense, and distribute the Work and such Derivative Works
in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable (except as stated in
this section) patent license to make, have made, use, offer to sell,
sell, import, and otherwise transfer the Work, where such license
applies only to those patent claims licensable by such Contributor that
are necessarily infringed by their Contribution(s) alone or by
combination of their Contribution(s) with the Work to which such
Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a
lawsuit) alleging that the Work or a Contribution incorporated within
the Work constitutes direct or contributory patent infringement, then
any patent licenses granted to You under this License for that Work
shall terminate as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications,
and in Source or Object form, provided that You meet the following
conditions:
a. You must give any other recipients of the Work or Derivative Works a
copy of this License; and
b. You must cause any modified files to carry prominent notices stating
that You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices
from the Source form of the Work, excluding those notices that do not
pertain to any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained within
such NOTICE file, excluding those notices that do not pertain to any
part of the Derivative Works, in at least one of the following
places: within a NOTICE text file distributed as part of the
Derivative Works; within the Source form or documentation, if
provided along with the Derivative Works; or, within a display
generated by the Derivative Works, if and wherever such third-party
notices normally appear. The contents of the NOTICE file are for
informational purposes only and do not modify the License. You may
add Your own attribution notices within Derivative Works that You
distribute, alongside or as an addendum to the NOTICE text from the
Work, provided that such additional attribution notices cannot be
construed as modifying the License.
You may add Your own copyright statement to Your modifications and may
provide additional or different license terms and conditions for use,
reproduction, or distribution of Your modifications, or for any such
Derivative Works as a whole, provided Your use, reproduction, and
distribution of the Work otherwise complies with the conditions stated
in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to
the Licensor shall be under the terms and conditions of this License,
without any additional terms or conditions. Notwithstanding the above,
nothing herein shall supersede or modify the terms of any separate
license agreement you may have executed with Licensor regarding such
Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to
in writing, Licensor provides the Work (and each Contributor provides
its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied, including, without limitation,
any warranties or conditions of TITLE, NON-INFRINGEMENT,
MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely
responsible for determining the appropriateness of using or
redistributing the Work and assume any risks associated with Your
exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether
in tort (including negligence), contract, or otherwise, unless required
by applicable law (such as deliberate and grossly negligent acts) or
agreed to in writing, shall any Contributor be liable to You for
damages, including any direct, indirect, special, incidental, or
consequential damages of any character arising as a result of this
License or out of the use or inability to use the Work (including but
not limited to damages for loss of goodwill, work stoppage, computer
failure or malfunction, or any and all other commercial damages or
losses), even if such Contributor has been advised of the possibility of
such damages.
9. Accepting Warranty or Additional Liability. While redistributing the
Work or Derivative Works thereof, You may choose to offer, and charge a
fee for, acceptance of support, warranty, indemnity, or other liability
obligations and/or rights consistent with this License. However, in
accepting such obligations, You may act only on Your own behalf and on
Your sole responsibility, not on behalf of any other Contributor, and
only if You agree to indemnify, defend, and hold each Contributor
harmless for any liability incurred by, or claims asserted against, such
Contributor by reason of your accepting any such warranty or additional
liability.
END OF TERMS AND CONDITIONS
================================================
FILE: LICENSES/BSD-2-Clause
================================================
Valid-License-Identifier: BSD-2-Clause
SPDX-URL: https://spdx.org/licenses/BSD-2-Clause.html
Usage-Guide:
To use the BSD 2-clause "Simplified" License put the following SPDX
tag/value pair into a comment according to the placement guidelines in
the licensing rules documentation:
SPDX-License-Identifier: BSD-2-Clause
Do NOT use this license unless the files are copied from another work
under the same license. In such cases, use "AND GPL-3.0-or-later" so
that your contributions are under GPL-3.0+ license.
License-Text:
Copyright (c) <year> <owner> . All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
================================================
FILE: LICENSES/BSD-3-Clause
================================================
Valid-License-Identifier: BSD-3-Clause
SPDX-URL: https://spdx.org/licenses/BSD-3-Clause.html
Usage-Guide:
To use the BSD 3-clause "New" or "Revised" License put the following SPDX
tag/value pair into a comment according to the placement guidelines in
the licensing rules documentation:
SPDX-License-Identifier: BSD-3-Clause
License-Text:
Copyright (c) <year> <owner> . All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
================================================
FILE: LICENSES/CC-BY-SA-4.0
================================================
Valid-License-Identifier: CC-BY-SA-4.0
SPDX-URL: https://spdx.org/licenses/CC-BY-SA-4.0
Usage-Guide:
Do NOT use this license for code, but it's acceptable for content like artwork
or documentation. When using it for the latter, it's best to use it together
GPL-3.0-or-later license using "OR".
To use the Creative Commons Attribution-ShareAlike 4.0 International license
put the following SPDX tag/value pair into a comment according to the
placement guidelines in the licensing rules documentation:
SPDX-License-Identifier: CC-BY-SA-4.0
License-Text:
Creative Commons Attribution-ShareAlike 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution-ShareAlike 4.0 International Public
License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution-ShareAlike 4.0 International Public License ("Public
License"). To the extent this Public License may be interpreted as a
contract, You are granted the Licensed Rights in consideration of Your
acceptance of these terms and conditions, and the Licensor grants You
such rights in consideration of benefits the Licensor receives from
making the Licensed Material available under these terms and
conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. BY-SA Compatible License means a license listed at
creativecommons.org/compatiblelicenses, approved by Creative
Commons as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
e. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
f. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
g. License Elements means the license attributes listed in the name
of a Creative Commons Public License. The License Elements of this
Public License are Attribution and ShareAlike.
h. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
i. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
k. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
l. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
m. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. Additional offer from the Licensor -- Adapted Material.
Every recipient of Adapted Material from You
automatically receives an offer from the Licensor to
exercise the Licensed Rights in the Adapted Material
under the conditions of the Adapter's License You apply.
c. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
b. ShareAlike.
In addition to the conditions in Section 3(a), if You Share
Adapted Material You produce, the following conditions also apply.
1. The Adapter's License You apply must be a Creative Commons
license with the same License Elements, this version or
later, or a BY-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the
Adapter's License You apply. You may satisfy this condition
in any reasonable manner based on the medium, means, and
context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms
or conditions on, or apply any Effective Technological
Measures to, Adapted Material that restrict exercise of the
rights granted under the Adapter's License You apply.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material,
including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.
================================================
FILE: LICENSES/GPL-2.0
================================================
Valid-License-Identifier: GPL-2.0+
Valid-License-Identifier: GPL-2.0-or-later
SPDX-URL: https://spdx.org/licenses/GPL-2.0-or-later.html
Usage-Guide:
To use this license in source code, put one of the following SPDX
tag/value pairs into a comment according to the placement
guidelines in the licensing rules documentation.
For 'GNU General Public License (GPL) version 2 or any later version' use:
SPDX-License-Identifier: GPL-2.0+
or
SPDX-License-Identifier: GPL-2.0-or-later
License-Text:
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
================================================
FILE: LICENSES/GPL-3.0
================================================
Valid-License-Identifier: GPL-3.0+
Valid-License-Identifier: GPL-3.0-or-later
SPDX-URL: https://spdx.org/licenses/GPL-3.0-or-later.html
Usage-Guide:
To use this license in source code, put one of the following SPDX
tag/value pairs into a comment according to the placement
guidelines in the licensing rules documentation.
For 'GNU General Public License (GPL) version 3 or any later version' use:
SPDX-License-Identifier: GPL-3.0+
or
SPDX-License-Identifier: GPL-3.0-or-later
License-Text:
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: LICENSES/ISC
================================================
Valid-License-Identifier: ISC
SPDX-URL: https://spdx.org/licenses/ISC.html
Usage-Guide:
To use the ISC License put the following SPDX tag/value pair into a
comment according to the placement guidelines in the licensing rules
documentation:
SPDX-License-Identifier: ISC
Do NOT use this license unless the files are copied from another work
under the same license. In such cases, use "AND GPL-3.0-or-later" so
that your contributions are under GPL-3.0+ license.
License-Text:
ISC License
Copyright (c) <year> <copyright holders>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
================================================
FILE: LICENSES/MIT
================================================
Valid-License-Identifier: MIT
SPDX-URL: https://spdx.org/licenses/MIT.html
Usage-Guide:
To use the MIT License put the following SPDX tag/value pair into a
comment according to the placement guidelines in the licensing rules
documentation:
SPDX-License-Identifier: MIT
Do NOT use this license unless the files are copied from another work
under the same license. In such cases, use "AND GPL-3.0-or-later" so
that your contributions are under GPL-3.0+ license.
License-Text:
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
================================================
FILE: LICENSES/WTFPL
================================================
Valid-License-Identifier: WTFPL
SPDX-URL: https://spdx.org/licenses/WTFPL.html
Usage-Guide:
To use the WTFPL put the following SPDX tag/value pair into a
comment according to the placement guidelines in the licensing rules
documentation:
SPDX-License-Identifier: WTFPL
Do NOT use this license unless the files are copied from another work
under the same license. In such cases, use "AND GPL-3.0-or-later" so
that your contributions are under GPL-3.0+ license.
License-Text:
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
================================================
FILE: PRIVACY_POLICY.rst
================================================
.. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
==============
Privacy Policy
==============
(DRAFT REVISION NO. 3)
1. Definition
=============
- "The Project" refers to the App Manager project which includes the git
repositories (excluding The Project Hosting Providers), E-Mails, and their
maintainers. (See §6)
- "We", "Us", and similar capitalized pronouns refer to the maintainers of
The Project.
- "E-Mail" or "E-Mails" refers to the messages sent directly to the maintainers
of The Project.
- "The Software" refers to App Manager software distributed by its maintainers.
- "The Project Hosting Providers" refers to GitHub, GitLab, Codeberg, RiseUp,
and SourceHut.
- "Third-party Services" refers to The Project Hosting Providers along with
VirusTotal, Pithus, F-Droid, and Hosted Weblate.
- "Third-party Websites" refers to websites We do not control or operate.
- "You", "Yours", and similar capitalized pronouns refer to anyone who uses
The Software or has contributed to The Project in any capacity.
- "PII" refers to personally identifiable information.
2. Information Collected from You
=================================
2.1. The Project
---------------
We DO NOT collect any information that You have not provided voluntarily.
The sources of this information include your contributions on Git and any
E-Mails you send. This information may include PII, such as Your real name
and E-Mail address. If You send crash reports and logs via E-Mail, they may
also contain non-PII details, such as Your device name, operating system
version, software version, language, and more.
The official website for The Project is located at
https://muntashirakon.github.io/AppManager/ and is hosted by GitHub (see §2.3).
We do not collect any information from this website.
2.2. The Software
-----------------
We DO NOT collect any information from The Software.
2.3. Third-party Services
-------------------------
Depending on the services used, the privacy policy of the following services
will apply to You:
- `GitHub`_ (Stars, issues, pull requests, discussions, releases, traffic)
- `GitLab`_ (Stars, merge requests, traffic)
- `Codeberg`_ (Stars, issues, pull requests)
- `RiseUp`_ (Stars, issues, merge requests)
- `SourceHut`_ (Tickets)
- `VirusTotal`_ (Malware reports, file uploads, traffic)
- `F-Droid`_ (F-Droid official repository and app store)
- `Hosted Weblate`_ (Translations).
2.4. Third-party Websites
-------------------------
Links to Third-party Websites are provided for your benefit. For your safety,
it is recommended that You read and understand the privacy policy of these
websites before visiting them.
3. Data Retention Policy
========================
Information collected through Git is stored indefinitely and is accessible to
anyone, anywhere. E-Mails that do not have legal significance can be retained
for a maximum of one year. These E-Mails are stored offline in a partition
that is encrypted using FileVault. However, E-Mails deemed legally significant
can be kept permanently, both online and offline. To understand the data
retention policies of the Third-party Services (as specified in §2.3) and
Third-party Websites (as outlined in §2.4), please refer to their respective
privacy policies.
4. Removal of Information
=========================
You can request the removal of PII by either sending Us an E-Mail or creating
an issue. You can also request the removal of non-PII, but please note that
the removal is not guaranteed. In both cases, the following types of
information cannot be removed by Us:
- Information present in a commit message, such as the ``Signed-off-by:`` tag
- Information contained in a file (since they are a part of git history)
- Forked repositories (You need to ask the person who forked the repository)
- Reactions to GitHub issues, comments, and discussions (You need to remove
them Yourself)
- Information stored by the Third-party Services or Third-party Websites (You
need to ask them Yourself).
The following information may or may not be removed:
- Mentions in a comment
- E-Mails deemed legally significant.
5. Changes to the Privacy Policy
================================
All changes, except those related to spelling or grammar, will be announced on
all the official channels. Unless stated otherwise, the updated privacy policy
will apply only to The Software released after the changes.
6. Project Maintainers
======================
1. **Name:** Muntashir Al-Islam
**Email:** muntashirakon [at] riseup [dot] net
.. _GitHub: https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement
.. _GitLab: https://about.gitlab.com/privacy/
.. _Codeberg: https://codeberg.org/codeberg/org/src/PrivacyPolicy.md
.. _RiseUp: https://riseup.net/en/privacy-policy
.. _SourceHut: https://man.sr.ht/privacy.md
.. _VirusTotal: https://support.virustotal.com/hc/en-us/articles/115002168385-Privacy-Policy
.. _F-Droid: https://f-droid.org/en/about/#terms-etc
.. _Hosted Weblate: https://hosted.weblate.org/legal/privacy/
================================================
FILE: README.md
================================================
<!-- SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0 -->
<p align="center">
<img src="docs/raw/images/icon.png" alt="App Manager Logo" height="150dp">
</p>
<h1 align="center">App Manager</h1>
<p align=center>
<a href="https://muntashirakon.github.io/AppManager">Docs</a> ·
<a href="https://github.com/MuntashirAkon/AppManager/releases">Releases</a> ·
<a href="https://t.me/AppManagerChannel">Telegram Channel</a>
</p>
---
## Features
### General features
- Fully reproducible, copylefted libre software (GPLv3+)
- Material 3 with dynamic colours
- Display as much information as possible in the main page
- List activities, broadcast receivers, services, providers, app ops, permissions, signatures, shared libraries, etc. of an application
- Launch activities and services
- Create shortcuts of activities
- [Intercept activities](https://muntashirakon.github.io/AppManager/#sec:interceptor-page)
- Scan for trackers and libraries in apps and list (all or only) tracking classes (and their code dump)
- View/save the manifest of an app
- Display app usage, data usage (mobile and Wi-Fi), and app storage info (requires “Usage Access” permission)
- Install/uninstall APK files (including APKS, APKM and XAPK with OBB files)
- Share APK files
- Back up/restore APK files
- Batch operations
- Single-click operations
- Logcat viewer, manager and exporter
- [Profiles](https://muntashirakon.github.io/AppManager/#sec:profiles-page)
- Debloater
- Code editor
- File manager
- Simple terminal emulator
- Open an app in Aurora Store or in your favourite F-Droid client
- Sign APK files with custom signatures before installing
- Backup encryption: OpenPGP via OpenKeychain, RSA, ECC (hybrid encryption with AES) and AES.
- Track foreground UI components
### Root/ADB-only features
- Revoke runtime (AKA dangerous) and development permissions
- Change the mode of an app op
- Display/kill/force-stop running apps or processes
- Clear app data or app cache
- View/change net policy
- Control battery optimization
- Freeze/unfreeze apps
### Root-only features
- Block any activities, broadcast receivers, services, or providers of an app with native import/export as well as Watt and Blocker import support
- View/edit/delete shared preferences of any app
- Back up/restore apps with data, rules and extras (such as permissions, battery optimization, SSAID, etc.)
- View system configurations including blacklisted or whitelisted apps, permissions, etc.
- View/change SSAID.
…and many more! This single app combines the features of 5 or 6 apps any tech-savvy person needs!
### Upcoming features
- Finder: Find app components, permissions etc. in all apps
- Basic APK editing
- Routine operations
- Enable/disable app actions such as launch on boot
- Crash monitor
- Systemless disabling/uninstalling of the system apps
- Import app list exported by App Manager
- More advance terminal emulator
- Database viewer and editor, etc.
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80" />](https://f-droid.org/packages/io.github.muntashirakon.AppManager)
## Translations
Help translate [the app strings](https://hosted.weblate.org/engage/app-manager/) and
[the docs](https://hosted.weblate.org/projects/app-manager/docs/) at Hosted Weblate.
[](https://hosted.weblate.org/engage/app-manager/)
## Mirrors
[Codeberg](https://codeberg.org/muntashir/AppManager) ·
[GitLab](https://gitlab.com/muntashir/AppManager) ·
[Riseup](https://0xacab.org/muntashir/AppManager) ·
[sourcehut](https://git.sr.ht/~muntashir/AppManager)
## Screenshots
<img src="fastlane/metadata/android/en-US/images/phoneScreenshots/1.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/2.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/3.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/4.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/5.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/6.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/7.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/8.png" height="500dp" /><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/9.png" height="500dp" />
## Build Instructions
See [BUILDING.rst](BUILDING.rst)
## Contributing
See [CONTRIBUTING.rst](CONTRIBUTING.rst)
## Donation and Funding
As of September 2024, App Manager is not accepting any financial support until further notice. But
you may still be able to send gifts (e.g., gift cards, subscriptions, food and drink, flowers, or
even cash). Please contact the maintainer at muntashirakon [at] riseup [dot] net for further
assistance.
In addition, the maintainers and contributors of this project DO NOT consent to the creation, sale,
or promotion of tokens, cryptocurrencies, NFTs, or any other financial instruments that claim to
represent this project, its code, or its community. Any such attempts are unauthorized and not
affiliated with this project in any way.
## Credits and Libraries
A list of credits and libraries are available in the **About** section of the app.
================================================
FILE: app/.gitignore
================================================
/build
*.apk
.cxx
*~
================================================
FILE: app/build.gradle
================================================
// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later
plugins {
id('com.android.application')
id('dev.rikka.tools.refine') version "${refine_version}"
}
android {
namespace 'io.github.muntashirakon.AppManager'
compileSdk compile_sdk
buildToolsVersion = build_tools
defaultConfig {
applicationId 'io.github.muntashirakon.AppManager'
minSdk min_sdk
targetSdk target_sdk
versionCode 445
versionName "4.0.5"
javaCompileOptions {
annotationProcessorOptions {
arguments += [
"room.schemaLocation": "$projectDir/schemas".toString(),
"room.incremental" : "true"
]
}
}
externalNativeBuild {
cmake {
arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
}
}
// Add build time to BuildConfig
buildConfigField "long", "BUILD_TIME_MILLIS", "${buildTime()}"
}
signingConfigs {
debug {
storeFile file('dev_keystore.jks')
storePassword 'kJCp!Bda#PBdN2RLK%yMK@hatq&69E'
keyPassword 'kJCp!Bda#PBdN2RLK%yMK@hatq&69E'
keyAlias 'key0'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "App Manager"
}
debug {
applicationIdSuffix '.debug'
versionNameSuffix '-DEBUG'
signingConfig signingConfigs.debug
resValue "string", "app_name", "AM Debug"
}
}
lint {
checkReleaseBuilds false
abortOnError false
checkDependencies true
}
compileOptions {
encoding "UTF-8"
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
splits {
abi {
reset()
include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
universalApk true
}
}
aaptOptions {
noCompress 'jar', 'sh'
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
dependenciesInfo {
includeInApk false
includeInBundle false
}
packagingOptions {
jniLibs {
useLegacyPackaging true
}
resources {
excludes += ['META-INF/*.version']
merges += ['baksmali.properties']
}
}
buildFeatures {
aidl true
buildConfig true
}
}
dependencies {
compileOnly project(path: ':hiddenapi')
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:${desugar_jdk_version}"
// Core Libraries
implementation project(path: ':libcore:compat')
implementation project(path: ':libcore:io')
implementation project(path: ':libcore:ui')
implementation project(path: ':libserver')
implementation project(path: ':docs')
// API
implementation "com.github.MuntashirAkon:unapkm-android:${unapkm_version}"
implementation project(path: ':libopenpgp')
// APK Editing
implementation "com.github.REAndroid:ARSCLib:${arsclib_version}"
implementation "com.github.MuntashirAkon:apksig-android:${apksig_version}"
implementation "com.github.MuntashirAkon:sun-security-android:${sun_security_version}"
implementation "org.bouncycastle:bcprov-jdk15to18:${bouncycastle_version}"
implementation "org.bouncycastle:bcpkix-jdk15to18:${bouncycastle_version}"
implementation "com.android.tools.smali:smali-baksmali:${baksmali_version}"
implementation "com.android.tools.smali:smali:${baksmali_version}"
implementation "com.github.MuntashirAkon.jadx:jadx-core:${jadx_version}"
// Replace SLF4J with a placeholder
configurations {
configureEach {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
}
implementation "com.github.MuntashirAkon.jadx:jadx-dex-input:${jadx_version}"
// Replace SLF4J with a placeholder
configurations {
configureEach {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
}
// DB
implementation "androidx.room:room-runtime:${room_version}"
annotationProcessor "androidx.room:room-compiler:${room_version}"
// FM
implementation "com.j256.simplemagic:simplemagic:${simplemagic_version}"
// Privileged
implementation "com.github.MuntashirAkon:libadb-android:${libadb_version}"
implementation "com.github.topjohnwu.libsu:core:${libsu_version}"
implementation "org.lsposed.hiddenapibypass:hiddenapibypass:${hiddenapibypass_version}"
implementation "dev.rikka.tools.refine:runtime:${refine_version}"
// UI
implementation "com.google.android.material:material:${material_version}"
implementation "androidx.core:core:${androidx_core_version}"
implementation "androidx.appcompat:appcompat:${appcompat_version}"
// Fix duplicate classes issue in material
configurations {
configureEach {
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
}
}
implementation "androidx.documentfile:documentfile:${documentfile_version}"
implementation "androidx.activity:activity:${activity_version}"
implementation "androidx.core:core-splashscreen:${splashscreen_version}"
implementation "androidx.biometric:biometric:${biometric_version}"
implementation "androidx.webkit:webkit:${webkit_version}"
implementation "io.github.Rosemoe.sora-editor:editor:${sora_editor_version}"
implementation "io.github.Rosemoe.sora-editor:language-textmate:${sora_editor_version}"
implementation "com.github.MuntashirAkon:time-duration-picker:${duration_picker}"
// Utility
implementation "com.google.code.gson:gson:${gson_version}"
implementation "com.github.luben:zstd-jni:${zstd_version}@aar"
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'
// Espresso UI Testing
// androidTestImplementation "com.android.support.test.espresso:espresso-core:3.0.2"
// Optional if you need to detect intents.
// androidTestImplementation "com.android.support.test.espresso:espresso-intents:3.0.2"
// Unit Testing
testImplementation "junit:junit:${junit_version}"
testImplementation "org.robolectric:robolectric:${robolectric_version}"
}
preBuild.dependsOn ":server:build"
def buildTime() {
var commitTime = "git show --no-patch --format=%ct000".execute([], project.rootDir).text.trim()
if (isDigitsOnly(commitTime)) {
return Long.parseLong(commitTime)
}
println("Using system time as the build time.")
return System.currentTimeMillis()
}
static def isDigitsOnly(CharSequence str) {
final int len = str.length()
for (int cp, i = 0; i < len; i += Character.charCount(cp)) {
cp = Character.codePointAt(str, i)
if (!Character.isDigit(cp)) {
return false
}
}
return true
}
================================================
FILE: app/lint.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="MissingTranslation" severity="ignore" />
<issue id="ImpliedQuantity" severity="ignore" />
<issue id="WakelockTimeout" severity="ignore" />
<issue id="LogConditional" severity="informational" />
<issue id="Registered" severity="informational" />
<issue id="UnknownNullness" severity="informational" />
<issue id="DuplicateStrings" severity="warning" />
<!-- In some cases, the linter produces wrong results for WrongConstant -->
<issue id="WrongConstant" severity="warning" />
<issue id="WrongThreadInterprocedural" severity="warning" />
<issue id="HardcodedText" severity="error" />
</lint>
================================================
FILE: app/proguard-rules.pro
================================================
# Specify compression level
-optimizationpasses 5
# Algorithm for confusion
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
# Allow access to and modification of classes and class members with modifiers during optimization
-allowaccessmodification
# Rename file source to "Sourcefile" string
-renamesourcefileattribute SourceFile
# Keep line number
-keepattributes SourceFile,LineNumberTable
# Keep generics
-keepattributes Signature
# Keep all class members that implement the serializable interface
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
# Keep all class members that implement the percelable interface
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
public int describeContents();
public void writeToParcel(android.os.Parcel, int);
}
# Keep preference fragments
-keep public class * extends androidx.preference.PreferenceFragmentCompat {}
# Keep XmlPullParsers FIXME: Otherwise abstract method exception would occur
-keep public class * extends org.xmlpull.v1.XmlPullParser { *; }
-keep public class * extends org.xmlpull.v1.XmlSerializer { *; }
# Don't minify server-related classes FIXME
-keep public class io.github.muntashirakon.AppManager.servermanager.** { *; }
-keep public class io.github.muntashirakon.AppManager.server.** { *; }
-keep public class io.github.muntashirakon.AppManager.ipc.** { *; }
# Don't minify debug-sepcific resource file
-keep public class io.github.muntashirakon.AppManager.debug.R$raw {*;}
# Don't minify OpenPGP API
-keep public class org.openintents.openpgp.IOpenPgpService { *; }
-keep public class org.openintents.openpgp.IOpenPgpService2 { *; }
# Don't minify Spake2 library
-keep public class io.github.muntashirakon.crypto.spake2.** { *; }
# Don't minify AOSP private APIs
-keep class android.** { *; }
-keep class com.android.** { *; }
-keep class libcore.util.** { *; }
-keep class org.xmlpull.v1.** { *; }
================================================
FILE: app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/1.json
================================================
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "d363fa70deeafe04c0457034f211df42",
"entities": [
{
"tableName": "app",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `user_id` INTEGER NOT NULL DEFAULT -10000, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `flags` INTEGER NOT NULL DEFAULT 0, `uid` INTEGER NOT NULL DEFAULT 0, `shared_uid` TEXT DEFAULT NULL, `first_install_time` INTEGER NOT NULL DEFAULT 0, `last_update_time` INTEGER NOT NULL DEFAULT 0, `target_sdk` INTEGER NOT NULL DEFAULT 0, `cert_name` TEXT DEFAULT '', `cert_algo` TEXT DEFAULT '', `is_installed` INTEGER NOT NULL DEFAULT true, `is_enabled` INTEGER NOT NULL DEFAULT false, `has_activities` INTEGER NOT NULL DEFAULT false, `has_splits` INTEGER NOT NULL DEFAULT false, `rules_count` INTEGER NOT NULL DEFAULT 0, `tracker_count` INTEGER NOT NULL DEFAULT 0, `last_action_time` INTEGER NOT NULL DEFAULT 0, PRIMARY KEY(`package_name`, `user_id`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "-10000"
},
{
"fieldPath": "packageLabel",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "uid",
"columnName": "uid",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sharedUserId",
"columnName": "shared_uid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "NULL"
},
{
"fieldPath": "firstInstallTime",
"columnName": "first_install_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUpdateTime",
"columnName": "last_update_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sdk",
"columnName": "target_sdk",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "certName",
"columnName": "cert_name",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "certAlgo",
"columnName": "cert_algo",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "isInstalled",
"columnName": "is_installed",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "true"
},
{
"fieldPath": "isEnabled",
"columnName": "is_enabled",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasActivities",
"columnName": "has_activities",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "rulesCount",
"columnName": "rules_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "trackerCount",
"columnName": "tracker_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastActionTime",
"columnName": "last_action_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
}
],
"primaryKey": {
"columnNames": [
"package_name",
"user_id"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "log_filter",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": true
},
"indices": [
{
"name": "index_name",
"unique": true,
"columnNames": [
"name"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_name` ON `${TABLE_NAME}` (`name`)"
}
],
"foreignKeys": []
},
{
"tableName": "file_hash",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`path` TEXT NOT NULL, `hash` TEXT, PRIMARY KEY(`path`))",
"fields": [
{
"fieldPath": "path",
"columnName": "path",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "hash",
"columnName": "hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"path"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "backup",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `backup_name` TEXT NOT NULL, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `is_system` INTEGER NOT NULL, `has_splits` INTEGER NOT NULL, `has_rules` INTEGER NOT NULL, `backup_time` INTEGER NOT NULL, `crypto` TEXT, `meta_version` INTEGER NOT NULL, `flags` INTEGER NOT NULL, `user_id` INTEGER NOT NULL, `tar_type` TEXT, `has_key_store` INTEGER NOT NULL, `installer_app` TEXT, `info_hash` TEXT, PRIMARY KEY(`backup_name`, `package_name`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "backupName",
"columnName": "backup_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "label",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isSystem",
"columnName": "is_system",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasRules",
"columnName": "has_rules",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "backupTime",
"columnName": "backup_time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "crypto",
"columnName": "crypto",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "version",
"columnName": "meta_version",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "tarType",
"columnName": "tar_type",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hasKeyStore",
"columnName": "has_key_store",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "installer",
"columnName": "installer_app",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hash",
"columnName": "info_hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"backup_name",
"package_name"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'd363fa70deeafe04c0457034f211df42')"
]
}
}
================================================
FILE: app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/2.json
================================================
{
"formatVersion": 1,
"database": {
"version": 2,
"identityHash": "175f99951d829b88618a0e192ef9bedb",
"entities": [
{
"tableName": "app",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `user_id` INTEGER NOT NULL DEFAULT -10000, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `flags` INTEGER NOT NULL DEFAULT 0, `uid` INTEGER NOT NULL DEFAULT 0, `shared_uid` TEXT DEFAULT NULL, `first_install_time` INTEGER NOT NULL DEFAULT 0, `last_update_time` INTEGER NOT NULL DEFAULT 0, `target_sdk` INTEGER NOT NULL DEFAULT 0, `cert_name` TEXT DEFAULT '', `cert_algo` TEXT DEFAULT '', `is_installed` INTEGER NOT NULL DEFAULT true, `is_enabled` INTEGER NOT NULL DEFAULT false, `has_activities` INTEGER NOT NULL DEFAULT false, `has_splits` INTEGER NOT NULL DEFAULT false, `has_keystore` INTEGER NOT NULL DEFAULT false, `uses_saf` INTEGER NOT NULL DEFAULT false, `ssaid` TEXT DEFAULT '', `code_size` INTEGER NOT NULL DEFAULT 0, `data_size` INTEGER NOT NULL DEFAULT 0, `mobile_data` INTEGER NOT NULL DEFAULT 0, `wifi_data` INTEGER NOT NULL DEFAULT 0, `rules_count` INTEGER NOT NULL DEFAULT 0, `tracker_count` INTEGER NOT NULL DEFAULT 0, `open_count` INTEGER NOT NULL DEFAULT 0, `screen_time` INTEGER NOT NULL DEFAULT 0, `last_usage_time` INTEGER NOT NULL DEFAULT 0, `last_action_time` INTEGER NOT NULL DEFAULT 0, PRIMARY KEY(`package_name`, `user_id`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "-10000"
},
{
"fieldPath": "packageLabel",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "uid",
"columnName": "uid",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sharedUserId",
"columnName": "shared_uid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "NULL"
},
{
"fieldPath": "firstInstallTime",
"columnName": "first_install_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUpdateTime",
"columnName": "last_update_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sdk",
"columnName": "target_sdk",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "certName",
"columnName": "cert_name",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "certAlgo",
"columnName": "cert_algo",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "isInstalled",
"columnName": "is_installed",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "true"
},
{
"fieldPath": "isEnabled",
"columnName": "is_enabled",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasActivities",
"columnName": "has_activities",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasKeystore",
"columnName": "has_keystore",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "usesSaf",
"columnName": "uses_saf",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "ssaid",
"columnName": "ssaid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "codeSize",
"columnName": "code_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "dataSize",
"columnName": "data_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "mobileDataUsage",
"columnName": "mobile_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "wifiDataUsage",
"columnName": "wifi_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "rulesCount",
"columnName": "rules_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "trackerCount",
"columnName": "tracker_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "openCount",
"columnName": "open_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "screenTime",
"columnName": "screen_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUsageTime",
"columnName": "last_usage_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastActionTime",
"columnName": "last_action_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
}
],
"primaryKey": {
"columnNames": [
"package_name",
"user_id"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "log_filter",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": true
},
"indices": [
{
"name": "index_name",
"unique": true,
"columnNames": [
"name"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_name` ON `${TABLE_NAME}` (`name`)"
}
],
"foreignKeys": []
},
{
"tableName": "file_hash",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`path` TEXT NOT NULL, `hash` TEXT, PRIMARY KEY(`path`))",
"fields": [
{
"fieldPath": "path",
"columnName": "path",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "hash",
"columnName": "hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"path"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "backup",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `backup_name` TEXT NOT NULL, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `is_system` INTEGER NOT NULL, `has_splits` INTEGER NOT NULL, `has_rules` INTEGER NOT NULL, `backup_time` INTEGER NOT NULL, `crypto` TEXT, `meta_version` INTEGER NOT NULL, `flags` INTEGER NOT NULL, `user_id` INTEGER NOT NULL, `tar_type` TEXT, `has_key_store` INTEGER NOT NULL, `installer_app` TEXT, `info_hash` TEXT, PRIMARY KEY(`backup_name`, `package_name`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "backupName",
"columnName": "backup_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "label",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isSystem",
"columnName": "is_system",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasRules",
"columnName": "has_rules",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "backupTime",
"columnName": "backup_time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "crypto",
"columnName": "crypto",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "version",
"columnName": "meta_version",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "tarType",
"columnName": "tar_type",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hasKeyStore",
"columnName": "has_key_store",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "installer",
"columnName": "installer_app",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hash",
"columnName": "info_hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"backup_name",
"package_name"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '175f99951d829b88618a0e192ef9bedb')"
]
}
}
================================================
FILE: app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/3.json
================================================
{
"formatVersion": 1,
"database": {
"version": 3,
"identityHash": "ac92def333f7b8a38eb1ceab89033e99",
"entities": [
{
"tableName": "app",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `user_id` INTEGER NOT NULL DEFAULT -10000, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `flags` INTEGER NOT NULL DEFAULT 0, `uid` INTEGER NOT NULL DEFAULT 0, `shared_uid` TEXT DEFAULT NULL, `first_install_time` INTEGER NOT NULL DEFAULT 0, `last_update_time` INTEGER NOT NULL DEFAULT 0, `target_sdk` INTEGER NOT NULL DEFAULT 0, `cert_name` TEXT DEFAULT '', `cert_algo` TEXT DEFAULT '', `is_installed` INTEGER NOT NULL DEFAULT true, `is_enabled` INTEGER NOT NULL DEFAULT false, `has_activities` INTEGER NOT NULL DEFAULT false, `has_splits` INTEGER NOT NULL DEFAULT false, `has_keystore` INTEGER NOT NULL DEFAULT false, `uses_saf` INTEGER NOT NULL DEFAULT false, `ssaid` TEXT DEFAULT '', `code_size` INTEGER NOT NULL DEFAULT 0, `data_size` INTEGER NOT NULL DEFAULT 0, `mobile_data` INTEGER NOT NULL DEFAULT 0, `wifi_data` INTEGER NOT NULL DEFAULT 0, `rules_count` INTEGER NOT NULL DEFAULT 0, `tracker_count` INTEGER NOT NULL DEFAULT 0, `open_count` INTEGER NOT NULL DEFAULT 0, `screen_time` INTEGER NOT NULL DEFAULT 0, `last_usage_time` INTEGER NOT NULL DEFAULT 0, `last_action_time` INTEGER NOT NULL DEFAULT 0, PRIMARY KEY(`package_name`, `user_id`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "-10000"
},
{
"fieldPath": "packageLabel",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "uid",
"columnName": "uid",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sharedUserId",
"columnName": "shared_uid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "NULL"
},
{
"fieldPath": "firstInstallTime",
"columnName": "first_install_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUpdateTime",
"columnName": "last_update_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sdk",
"columnName": "target_sdk",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "certName",
"columnName": "cert_name",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "certAlgo",
"columnName": "cert_algo",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "isInstalled",
"columnName": "is_installed",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "true"
},
{
"fieldPath": "isEnabled",
"columnName": "is_enabled",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasActivities",
"columnName": "has_activities",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasKeystore",
"columnName": "has_keystore",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "usesSaf",
"columnName": "uses_saf",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "ssaid",
"columnName": "ssaid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "codeSize",
"columnName": "code_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "dataSize",
"columnName": "data_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "mobileDataUsage",
"columnName": "mobile_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "wifiDataUsage",
"columnName": "wifi_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "rulesCount",
"columnName": "rules_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "trackerCount",
"columnName": "tracker_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "openCount",
"columnName": "open_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "screenTime",
"columnName": "screen_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUsageTime",
"columnName": "last_usage_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastActionTime",
"columnName": "last_action_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"package_name",
"user_id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "log_filter",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_name",
"unique": true,
"columnNames": [
"name"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_name` ON `${TABLE_NAME}` (`name`)"
}
],
"foreignKeys": []
},
{
"tableName": "file_hash",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`path` TEXT NOT NULL, `hash` TEXT, PRIMARY KEY(`path`))",
"fields": [
{
"fieldPath": "path",
"columnName": "path",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "hash",
"columnName": "hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"path"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "backup",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `backup_name` TEXT NOT NULL, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `is_system` INTEGER NOT NULL, `has_splits` INTEGER NOT NULL, `has_rules` INTEGER NOT NULL, `backup_time` INTEGER NOT NULL, `crypto` TEXT, `meta_version` INTEGER NOT NULL, `flags` INTEGER NOT NULL, `user_id` INTEGER NOT NULL, `tar_type` TEXT, `has_key_store` INTEGER NOT NULL, `installer_app` TEXT, `info_hash` TEXT, PRIMARY KEY(`backup_name`, `package_name`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "backupName",
"columnName": "backup_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "label",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isSystem",
"columnName": "is_system",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasRules",
"columnName": "has_rules",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "backupTime",
"columnName": "backup_time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "crypto",
"columnName": "crypto",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "version",
"columnName": "meta_version",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "tarType",
"columnName": "tar_type",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hasKeyStore",
"columnName": "has_key_store",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "installer",
"columnName": "installer_app",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "uuid",
"columnName": "info_hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"backup_name",
"package_name"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "op_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT NOT NULL, `time` INTEGER NOT NULL, `data` TEXT NOT NULL, `status` TEXT NOT NULL, `extra` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "type",
"columnName": "type",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "execTime",
"columnName": "time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "serializedData",
"columnName": "data",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "status",
"columnName": "status",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "serializedExtra",
"columnName": "extra",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ac92def333f7b8a38eb1ceab89033e99')"
]
}
}
================================================
FILE: app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/4.json
================================================
{
"formatVersion": 1,
"database": {
"version": 4,
"identityHash": "7bb1cd35f0800b965e5a475458918b80",
"entities": [
{
"tableName": "app",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `user_id` INTEGER NOT NULL DEFAULT -10000, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `flags` INTEGER NOT NULL DEFAULT 0, `uid` INTEGER NOT NULL DEFAULT 0, `shared_uid` TEXT DEFAULT NULL, `first_install_time` INTEGER NOT NULL DEFAULT 0, `last_update_time` INTEGER NOT NULL DEFAULT 0, `target_sdk` INTEGER NOT NULL DEFAULT 0, `cert_name` TEXT DEFAULT '', `cert_algo` TEXT DEFAULT '', `is_installed` INTEGER NOT NULL DEFAULT true, `is_enabled` INTEGER NOT NULL DEFAULT false, `has_activities` INTEGER NOT NULL DEFAULT false, `has_splits` INTEGER NOT NULL DEFAULT false, `has_keystore` INTEGER NOT NULL DEFAULT false, `uses_saf` INTEGER NOT NULL DEFAULT false, `ssaid` TEXT DEFAULT '', `code_size` INTEGER NOT NULL DEFAULT 0, `data_size` INTEGER NOT NULL DEFAULT 0, `mobile_data` INTEGER NOT NULL DEFAULT 0, `wifi_data` INTEGER NOT NULL DEFAULT 0, `rules_count` INTEGER NOT NULL DEFAULT 0, `tracker_count` INTEGER NOT NULL DEFAULT 0, `open_count` INTEGER NOT NULL DEFAULT 0, `screen_time` INTEGER NOT NULL DEFAULT 0, `last_usage_time` INTEGER NOT NULL DEFAULT 0, `last_action_time` INTEGER NOT NULL DEFAULT 0, PRIMARY KEY(`package_name`, `user_id`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "-10000"
},
{
"fieldPath": "packageLabel",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "uid",
"columnName": "uid",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sharedUserId",
"columnName": "shared_uid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "NULL"
},
{
"fieldPath": "firstInstallTime",
"columnName": "first_install_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUpdateTime",
"columnName": "last_update_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "sdk",
"columnName": "target_sdk",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "certName",
"columnName": "cert_name",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "certAlgo",
"columnName": "cert_algo",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "isInstalled",
"columnName": "is_installed",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "true"
},
{
"fieldPath": "isEnabled",
"columnName": "is_enabled",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasActivities",
"columnName": "has_activities",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "hasKeystore",
"columnName": "has_keystore",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "usesSaf",
"columnName": "uses_saf",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "false"
},
{
"fieldPath": "ssaid",
"columnName": "ssaid",
"affinity": "TEXT",
"notNull": false,
"defaultValue": "''"
},
{
"fieldPath": "codeSize",
"columnName": "code_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "dataSize",
"columnName": "data_size",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "mobileDataUsage",
"columnName": "mobile_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "wifiDataUsage",
"columnName": "wifi_data",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "rulesCount",
"columnName": "rules_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "trackerCount",
"columnName": "tracker_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "openCount",
"columnName": "open_count",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "screenTime",
"columnName": "screen_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastUsageTime",
"columnName": "last_usage_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
},
{
"fieldPath": "lastActionTime",
"columnName": "last_action_time",
"affinity": "INTEGER",
"notNull": true,
"defaultValue": "0"
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"package_name",
"user_id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "log_filter",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_name",
"unique": true,
"columnNames": [
"name"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_name` ON `${TABLE_NAME}` (`name`)"
}
],
"foreignKeys": []
},
{
"tableName": "file_hash",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`path` TEXT NOT NULL, `hash` TEXT, PRIMARY KEY(`path`))",
"fields": [
{
"fieldPath": "path",
"columnName": "path",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "hash",
"columnName": "hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"path"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "backup",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`package_name` TEXT NOT NULL, `backup_name` TEXT NOT NULL, `label` TEXT, `version_name` TEXT, `version_code` INTEGER NOT NULL, `is_system` INTEGER NOT NULL, `has_splits` INTEGER NOT NULL, `has_rules` INTEGER NOT NULL, `backup_time` INTEGER NOT NULL, `crypto` TEXT, `meta_version` INTEGER NOT NULL, `flags` INTEGER NOT NULL, `user_id` INTEGER NOT NULL, `tar_type` TEXT, `has_key_store` INTEGER NOT NULL, `installer_app` TEXT, `info_hash` TEXT, PRIMARY KEY(`backup_name`, `package_name`))",
"fields": [
{
"fieldPath": "packageName",
"columnName": "package_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "backupName",
"columnName": "backup_name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "label",
"columnName": "label",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionName",
"columnName": "version_name",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "versionCode",
"columnName": "version_code",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isSystem",
"columnName": "is_system",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasSplits",
"columnName": "has_splits",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "hasRules",
"columnName": "has_rules",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "backupTime",
"columnName": "backup_time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "crypto",
"columnName": "crypto",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "version",
"columnName": "meta_version",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "flags",
"columnName": "flags",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "userId",
"columnName": "user_id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "tarType",
"columnName": "tar_type",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "hasKeyStore",
"columnName": "has_key_store",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "installer",
"columnName": "installer_app",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "uuid",
"columnName": "info_hash",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"backup_name",
"package_name"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "op_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT NOT NULL, `time` INTEGER NOT NULL, `data` TEXT NOT NULL, `status` TEXT NOT NULL, `extra` TEXT)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "type",
"columnName": "type",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "execTime",
"columnName": "time",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "serializedData",
"columnName": "data"
gitextract_vctfzydw/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── documentation.yml │ │ ├── feature_request.yml │ │ └── help-wanted.yml │ └── workflows/ │ ├── codeql.yml │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── .run/ │ ├── Documentation.run.xml │ ├── app.run.xml │ ├── app_details.run.xml │ ├── fm.run.xml │ ├── lint.run.xml │ ├── settings.run.xml │ └── test.run.xml ├── BUILDING.rst ├── CONTRIBUTING.rst ├── COPYING ├── LICENSES/ │ ├── Apache-2.0 │ ├── BSD-2-Clause │ ├── BSD-3-Clause │ ├── CC-BY-SA-4.0 │ ├── GPL-2.0 │ ├── GPL-3.0 │ ├── ISC │ ├── MIT │ └── WTFPL ├── PRIVACY_POLICY.rst ├── README.md ├── app/ │ ├── .gitignore │ ├── build.gradle │ ├── lint.xml │ ├── proguard-rules.pro │ ├── schemas/ │ │ └── io.github.muntashirakon.AppManager.db.AppsDb/ │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ └── 7.json │ └── src/ │ ├── debug/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── io/ │ │ └── github/ │ │ └── muntashirakon/ │ │ └── AppManager/ │ │ └── debug/ │ │ └── R.java │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── aidl/ │ │ │ └── io/ │ │ │ └── github/ │ │ │ └── muntashirakon/ │ │ │ └── AppManager/ │ │ │ ├── IAMService.aidl │ │ │ ├── IRemoteProcess.aidl │ │ │ ├── IRemoteShell.aidl │ │ │ ├── IShellResult.aidl │ │ │ └── ipc/ │ │ │ └── ps/ │ │ │ ├── ProcessEntry.aidl │ │ │ └── ProcessUsers.aidl │ │ ├── annotations/ │ │ │ └── android/ │ │ │ └── content/ │ │ │ └── pm/ │ │ │ └── annotations.xml │ │ ├── assets/ │ │ │ ├── blanks/ │ │ │ │ ├── blank.docx │ │ │ │ ├── blank.odp │ │ │ │ ├── blank.ods │ │ │ │ ├── blank.odt │ │ │ │ ├── blank.pptx │ │ │ │ ├── blank.txt │ │ │ │ └── blank.xlsx │ │ │ ├── debloat.json │ │ │ ├── editor_themes/ │ │ │ │ ├── dark.tmTheme.json │ │ │ │ └── light.tmTheme │ │ │ ├── languages/ │ │ │ │ ├── java/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ ├── json/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ ├── kotlin/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ ├── properties/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ ├── sh/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ ├── smali/ │ │ │ │ │ ├── language-configuration.json │ │ │ │ │ └── tmLanguage.json │ │ │ │ └── xml/ │ │ │ │ ├── language-configuration.json │ │ │ │ └── tmLanguage.json │ │ │ ├── run_server.sh │ │ │ └── suggestions.json │ │ ├── cpp/ │ │ │ ├── AhoCorasick.cpp │ │ │ ├── AhoCorasick.h │ │ │ ├── CMakeLists.txt │ │ │ ├── io_github_muntashirakon_AppManager_utils_CpuUtils.cpp │ │ │ ├── io_github_muntashirakon_AppManager_utils_CpuUtils.h │ │ │ ├── io_github_muntashirakon_algo_AhoCorasick.cpp │ │ │ ├── io_github_muntashirakon_algo_AhoCorasick.h │ │ │ ├── io_github_muntashirakon_compat_system_OsCompat.cpp │ │ │ └── io_github_muntashirakon_compat_system_OsCompat.h │ │ ├── java/ │ │ │ ├── androidx/ │ │ │ │ ├── appcompat/ │ │ │ │ │ └── app/ │ │ │ │ │ └── PublicTwilightManager.java │ │ │ │ └── documentfile/ │ │ │ │ └── provider/ │ │ │ │ ├── DocumentFileUtils.java │ │ │ │ ├── MediaDocumentFile.java │ │ │ │ └── VirtualDocumentFile.java │ │ │ ├── aosp/ │ │ │ │ └── libcore/ │ │ │ │ └── util/ │ │ │ │ ├── EmptyArray.java │ │ │ │ └── HexEncoding.java │ │ │ ├── io/ │ │ │ │ └── github/ │ │ │ │ └── muntashirakon/ │ │ │ │ ├── AppManager/ │ │ │ │ │ ├── AppManager.java │ │ │ │ │ ├── BaseActivity.java │ │ │ │ │ ├── DummyActivity.java │ │ │ │ │ ├── PerProcessActivity.java │ │ │ │ │ ├── StaticDataset.java │ │ │ │ │ ├── accessibility/ │ │ │ │ │ │ ├── AccessibilityMultiplexer.java │ │ │ │ │ │ ├── BaseAccessibilityService.java │ │ │ │ │ │ ├── NoRootAccessibilityService.java │ │ │ │ │ │ └── activity/ │ │ │ │ │ │ ├── LeadingActivityTrackerActivity.java │ │ │ │ │ │ └── TrackerWindow.java │ │ │ │ │ ├── adb/ │ │ │ │ │ │ ├── AdbConnectionManager.java │ │ │ │ │ │ ├── AdbPairingService.java │ │ │ │ │ │ └── AdbUtils.java │ │ │ │ │ ├── apk/ │ │ │ │ │ │ ├── ApkFile.java │ │ │ │ │ │ ├── ApkSource.java │ │ │ │ │ │ ├── ApkUtils.java │ │ │ │ │ │ ├── ApplicationInfoApkSource.java │ │ │ │ │ │ ├── CachedApkSource.java │ │ │ │ │ │ ├── UriApkSource.java │ │ │ │ │ │ ├── behavior/ │ │ │ │ │ │ │ ├── FreezeUnfreeze.java │ │ │ │ │ │ │ ├── FreezeUnfreezeActivity.java │ │ │ │ │ │ │ ├── FreezeUnfreezeService.java │ │ │ │ │ │ │ └── FreezeUnfreezeShortcutInfo.java │ │ │ │ │ │ ├── dexopt/ │ │ │ │ │ │ │ ├── DexOptDialog.java │ │ │ │ │ │ │ ├── DexOptOptions.java │ │ │ │ │ │ │ └── DexOptimizer.java │ │ │ │ │ │ ├── installer/ │ │ │ │ │ │ │ ├── ApkQueueItem.java │ │ │ │ │ │ │ ├── InstallerDialogFragment.java │ │ │ │ │ │ │ ├── InstallerDialogHelper.java │ │ │ │ │ │ │ ├── InstallerOptions.java │ │ │ │ │ │ │ ├── InstallerOptionsFragment.java │ │ │ │ │ │ │ ├── PackageInstallerActivity.java │ │ │ │ │ │ │ ├── PackageInstallerBroadcastReceiver.java │ │ │ │ │ │ │ ├── PackageInstallerCompat.java │ │ │ │ │ │ │ ├── PackageInstallerService.java │ │ │ │ │ │ │ ├── PackageInstallerViewModel.java │ │ │ │ │ │ │ └── SupportedAppStores.java │ │ │ │ │ │ ├── list/ │ │ │ │ │ │ │ ├── AppListItem.java │ │ │ │ │ │ │ └── ListExporter.java │ │ │ │ │ │ ├── parser/ │ │ │ │ │ │ │ ├── AndroidBinXmlDecoder.java │ │ │ │ │ │ │ ├── AndroidBinXmlEncoder.java │ │ │ │ │ │ │ ├── ManifestComponent.java │ │ │ │ │ │ │ ├── ManifestIntentFilter.java │ │ │ │ │ │ │ └── ManifestParser.java │ │ │ │ │ │ ├── signing/ │ │ │ │ │ │ │ ├── SigSchemes.java │ │ │ │ │ │ │ ├── Signer.java │ │ │ │ │ │ │ ├── SignerInfo.java │ │ │ │ │ │ │ └── ZipAlign.java │ │ │ │ │ │ ├── splitapk/ │ │ │ │ │ │ │ ├── ApksMetadata.java │ │ │ │ │ │ │ ├── SplitApkChooser.java │ │ │ │ │ │ │ └── SplitApkExporter.java │ │ │ │ │ │ └── whatsnew/ │ │ │ │ │ │ ├── ApkWhatsNewFinder.java │ │ │ │ │ │ ├── WhatsNewDialogFragment.java │ │ │ │ │ │ ├── WhatsNewDialogViewModel.java │ │ │ │ │ │ ├── WhatsNewFragment.java │ │ │ │ │ │ └── WhatsNewRecyclerAdapter.java │ │ │ │ │ ├── app/ │ │ │ │ │ │ └── AndroidFragment.java │ │ │ │ │ ├── backup/ │ │ │ │ │ │ ├── BackupCryptSetupHelper.java │ │ │ │ │ │ ├── BackupDataDirectoryInfo.java │ │ │ │ │ │ ├── BackupException.java │ │ │ │ │ │ ├── BackupFlags.java │ │ │ │ │ │ ├── BackupItems.java │ │ │ │ │ │ ├── BackupManager.java │ │ │ │ │ │ ├── BackupOp.java │ │ │ │ │ │ ├── BackupUtils.java │ │ │ │ │ │ ├── CryptoUtils.java │ │ │ │ │ │ ├── MetadataManager.java │ │ │ │ │ │ ├── RestoreOp.java │ │ │ │ │ │ ├── VerifyOp.java │ │ │ │ │ │ ├── adb/ │ │ │ │ │ │ │ ├── AndroidBackupCreator.java │ │ │ │ │ │ │ ├── AndroidBackupExtractor.java │ │ │ │ │ │ │ ├── AndroidBackupHeader.java │ │ │ │ │ │ │ ├── BackupCategories.java │ │ │ │ │ │ │ └── Constants.java │ │ │ │ │ │ ├── convert/ │ │ │ │ │ │ │ ├── ConvertUtils.java │ │ │ │ │ │ │ ├── Converter.java │ │ │ │ │ │ │ ├── ImportType.java │ │ │ │ │ │ │ ├── OABConverter.java │ │ │ │ │ │ │ ├── SBConverter.java │ │ │ │ │ │ │ └── TBConverter.java │ │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ │ ├── BackupFragment.java │ │ │ │ │ │ │ ├── BackupInfo.java │ │ │ │ │ │ │ ├── BackupInfoState.java │ │ │ │ │ │ │ ├── BackupRestoreDialogFragment.java │ │ │ │ │ │ │ ├── BackupRestoreDialogViewModel.java │ │ │ │ │ │ │ ├── FlagsAdapter.java │ │ │ │ │ │ │ ├── RestoreMultipleFragment.java │ │ │ │ │ │ │ └── RestoreSingleFragment.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── BackupMetadataV2.java │ │ │ │ │ │ ├── BackupMetadataV5.java │ │ │ │ │ │ ├── BackupOpOptions.java │ │ │ │ │ │ ├── DeleteOpOptions.java │ │ │ │ │ │ └── RestoreOpOptions.java │ │ │ │ │ ├── batchops/ │ │ │ │ │ │ ├── BatchOpsLogger.java │ │ │ │ │ │ ├── BatchOpsManager.java │ │ │ │ │ │ ├── BatchOpsResultsActivity.java │ │ │ │ │ │ ├── BatchOpsService.java │ │ │ │ │ │ ├── BatchQueueItem.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── BatchAppOpsOptions.java │ │ │ │ │ │ ├── BatchBackupImportOptions.java │ │ │ │ │ │ ├── BatchBackupOptions.java │ │ │ │ │ │ ├── BatchComponentOptions.java │ │ │ │ │ │ ├── BatchDexOptOptions.java │ │ │ │ │ │ ├── BatchFreezeOptions.java │ │ │ │ │ │ ├── BatchNetPolicyOptions.java │ │ │ │ │ │ ├── BatchPermissionOptions.java │ │ │ │ │ │ └── IBatchOpOptions.java │ │ │ │ │ ├── changelog/ │ │ │ │ │ │ ├── Changelog.java │ │ │ │ │ │ ├── ChangelogHeader.java │ │ │ │ │ │ ├── ChangelogItem.java │ │ │ │ │ │ ├── ChangelogParser.java │ │ │ │ │ │ └── ChangelogRecyclerAdapter.java │ │ │ │ │ ├── compat/ │ │ │ │ │ │ ├── ActivityManagerCompat.java │ │ │ │ │ │ ├── AppOpsManagerCompat.java │ │ │ │ │ │ ├── ApplicationInfoCompat.java │ │ │ │ │ │ ├── BackupCompat.java │ │ │ │ │ │ ├── BinderCompat.java │ │ │ │ │ │ ├── BiometricAuthenticatorsCompat.java │ │ │ │ │ │ ├── ClearDataObserver.java │ │ │ │ │ │ ├── ConnectivityManagerCompat.java │ │ │ │ │ │ ├── DeviceIdleManagerCompat.java │ │ │ │ │ │ ├── DomainVerificationManagerCompat.java │ │ │ │ │ │ ├── InputManagerCompat.java │ │ │ │ │ │ ├── InstallSourceInfoCompat.java │ │ │ │ │ │ ├── IntegerCompat.java │ │ │ │ │ │ ├── ManifestCompat.java │ │ │ │ │ │ ├── NetworkPolicyManagerCompat.java │ │ │ │ │ │ ├── NetworkStatsCompat.java │ │ │ │ │ │ ├── NetworkStatsManagerCompat.java │ │ │ │ │ │ ├── OverlayManagerCompact.java │ │ │ │ │ │ ├── PackageInfoCompat2.java │ │ │ │ │ │ ├── PackageManagerCompat.java │ │ │ │ │ │ ├── PermissionCompat.java │ │ │ │ │ │ ├── ProcessCompat.java │ │ │ │ │ │ ├── SensorServiceCompat.java │ │ │ │ │ │ ├── StorageManagerCompat.java │ │ │ │ │ │ ├── SubscriptionManagerCompat.java │ │ │ │ │ │ ├── ThumbnailUtilsCompat.java │ │ │ │ │ │ ├── UriCompat.java │ │ │ │ │ │ ├── UsageStatsManagerCompat.java │ │ │ │ │ │ └── VirtualDeviceManagerCompat.java │ │ │ │ │ ├── crypto/ │ │ │ │ │ │ ├── AESCrypto.java │ │ │ │ │ │ ├── Crypto.java │ │ │ │ │ │ ├── CryptoException.java │ │ │ │ │ │ ├── DummyCrypto.java │ │ │ │ │ │ ├── ECCCrypto.java │ │ │ │ │ │ ├── OpenPGPCrypto.java │ │ │ │ │ │ ├── OpenPGPCryptoActivity.java │ │ │ │ │ │ ├── RSACrypto.java │ │ │ │ │ │ ├── RandomChar.java │ │ │ │ │ │ ├── auth/ │ │ │ │ │ │ │ ├── AuthFeatureDemultiplexer.java │ │ │ │ │ │ │ ├── AuthManager.java │ │ │ │ │ │ │ └── AuthManagerActivity.java │ │ │ │ │ │ └── ks/ │ │ │ │ │ │ ├── AesEncryptedData.java │ │ │ │ │ │ ├── CompatUtil.java │ │ │ │ │ │ ├── KeyPair.java │ │ │ │ │ │ ├── KeyStoreActivity.java │ │ │ │ │ │ ├── KeyStoreManager.java │ │ │ │ │ │ ├── KeyStoreUtils.java │ │ │ │ │ │ ├── SecretKeyAndVersion.java │ │ │ │ │ │ └── SecretKeyCompat.java │ │ │ │ │ ├── db/ │ │ │ │ │ │ ├── AppsDb.java │ │ │ │ │ │ ├── dao/ │ │ │ │ │ │ │ ├── AppDao.java │ │ │ │ │ │ │ ├── BackupDao.java │ │ │ │ │ │ │ ├── FmFavoriteDao.java │ │ │ │ │ │ │ ├── FreezeTypeDao.java │ │ │ │ │ │ │ ├── LogFilterDao.java │ │ │ │ │ │ │ └── OpHistoryDao.java │ │ │ │ │ │ ├── entity/ │ │ │ │ │ │ │ ├── App.java │ │ │ │ │ │ │ ├── Backup.java │ │ │ │ │ │ │ ├── FmFavorite.java │ │ │ │ │ │ │ ├── FreezeType.java │ │ │ │ │ │ │ ├── LogFilter.java │ │ │ │ │ │ │ └── OpHistory.java │ │ │ │ │ │ └── utils/ │ │ │ │ │ │ └── AppDb.java │ │ │ │ │ ├── debloat/ │ │ │ │ │ │ ├── BloatwareDetailsDialog.java │ │ │ │ │ │ ├── DebloatObject.java │ │ │ │ │ │ ├── DebloaterActivity.java │ │ │ │ │ │ ├── DebloaterListOptions.java │ │ │ │ │ │ ├── DebloaterRecyclerViewAdapter.java │ │ │ │ │ │ ├── DebloaterViewModel.java │ │ │ │ │ │ └── SuggestionObject.java │ │ │ │ │ ├── details/ │ │ │ │ │ │ ├── ActivityLauncherShortcutActivity.java │ │ │ │ │ │ ├── AppDetailsActivity.java │ │ │ │ │ │ ├── AppDetailsComponentsFragment.java │ │ │ │ │ │ ├── AppDetailsFragment.java │ │ │ │ │ │ ├── AppDetailsOtherFragment.java │ │ │ │ │ │ ├── AppDetailsOverlaysFragment.java │ │ │ │ │ │ ├── AppDetailsPermissionsFragment.java │ │ │ │ │ │ ├── AppDetailsViewModel.java │ │ │ │ │ │ ├── IconPickerDialogFragment.java │ │ │ │ │ │ ├── PackageItemShortcutInfo.java │ │ │ │ │ │ ├── info/ │ │ │ │ │ │ │ ├── ActionItem.java │ │ │ │ │ │ │ ├── AppInfoFragment.java │ │ │ │ │ │ │ ├── AppInfoRecyclerAdapter.java │ │ │ │ │ │ │ ├── AppInfoViewModel.java │ │ │ │ │ │ │ ├── ListItem.java │ │ │ │ │ │ │ └── TagItem.java │ │ │ │ │ │ ├── manifest/ │ │ │ │ │ │ │ ├── ManifestViewerActivity.java │ │ │ │ │ │ │ └── ManifestViewerViewModel.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── AppDetailsActivityItem.java │ │ │ │ │ │ ├── AppDetailsAppOpItem.java │ │ │ │ │ │ ├── AppDetailsComponentItem.java │ │ │ │ │ │ ├── AppDetailsDefinedPermissionItem.java │ │ │ │ │ │ ├── AppDetailsFeatureItem.java │ │ │ │ │ │ ├── AppDetailsItem.java │ │ │ │ │ │ ├── AppDetailsLibraryItem.java │ │ │ │ │ │ ├── AppDetailsOverlayItem.java │ │ │ │ │ │ ├── AppDetailsPermissionItem.java │ │ │ │ │ │ └── AppDetailsServiceItem.java │ │ │ │ │ ├── dex/ │ │ │ │ │ │ ├── DexClasses.java │ │ │ │ │ │ └── DexUtils.java │ │ │ │ │ ├── editor/ │ │ │ │ │ │ ├── CodeEditorActivity.java │ │ │ │ │ │ ├── CodeEditorFragment.java │ │ │ │ │ │ ├── CodeEditorViewModel.java │ │ │ │ │ │ ├── CodeEditorWidget.java │ │ │ │ │ │ ├── EditorThemes.java │ │ │ │ │ │ └── Languages.java │ │ │ │ │ ├── filters/ │ │ │ │ │ │ ├── AbsExpressionEvaluator.java │ │ │ │ │ │ ├── EditFilterOptionFragment.java │ │ │ │ │ │ ├── EditFiltersDialogFragment.java │ │ │ │ │ │ ├── FilterItem.java │ │ │ │ │ │ ├── FilterableAppInfo.java │ │ │ │ │ │ ├── FilteringUtils.java │ │ │ │ │ │ ├── FinderActivity.java │ │ │ │ │ │ ├── FinderAdapter.java │ │ │ │ │ │ ├── FinderFilterAdapter.java │ │ │ │ │ │ ├── FinderViewModel.java │ │ │ │ │ │ ├── IFilterableAppInfo.java │ │ │ │ │ │ └── options/ │ │ │ │ │ │ ├── ApkSizeOption.java │ │ │ │ │ │ ├── AppLabelOption.java │ │ │ │ │ │ ├── AppTypeOption.java │ │ │ │ │ │ ├── BackupOption.java │ │ │ │ │ │ ├── BloatwareOption.java │ │ │ │ │ │ ├── CacheSizeOption.java │ │ │ │ │ │ ├── CompileSdkOption.java │ │ │ │ │ │ ├── ComponentsOption.java │ │ │ │ │ │ ├── DataSizeOption.java │ │ │ │ │ │ ├── DataUsageOption.java │ │ │ │ │ │ ├── FilterOption.java │ │ │ │ │ │ ├── FilterOptions.java │ │ │ │ │ │ ├── FreezeOption.java │ │ │ │ │ │ ├── InstalledOption.java │ │ │ │ │ │ ├── InstallerOption.java │ │ │ │ │ │ ├── LastUpdateOption.java │ │ │ │ │ │ ├── MinSdkOption.java │ │ │ │ │ │ ├── PackageNameOption.java │ │ │ │ │ │ ├── PermissionsOption.java │ │ │ │ │ │ ├── RunningAppsOption.java │ │ │ │ │ │ ├── ScreenTimeOption.java │ │ │ │ │ │ ├── SignatureOption.java │ │ │ │ │ │ ├── TargetSdkOption.java │ │ │ │ │ │ ├── TimesOpenedOption.java │ │ │ │ │ │ ├── TotalSizeOption.java │ │ │ │ │ │ ├── TrackersOption.java │ │ │ │ │ │ ├── UidOption.java │ │ │ │ │ │ └── VersionNameOption.java │ │ │ │ │ ├── fm/ │ │ │ │ │ │ ├── ContentType2.java │ │ │ │ │ │ ├── FmActivity.java │ │ │ │ │ │ ├── FmAdapter.java │ │ │ │ │ │ ├── FmDrawerItem.java │ │ │ │ │ │ ├── FmFavoritesManager.java │ │ │ │ │ │ ├── FmFragment.java │ │ │ │ │ │ ├── FmItem.java │ │ │ │ │ │ ├── FmListOptions.java │ │ │ │ │ │ ├── FmPathListAdapter.java │ │ │ │ │ │ ├── FmProvider.java │ │ │ │ │ │ ├── FmShortcutInfo.java │ │ │ │ │ │ ├── FmTasks.java │ │ │ │ │ │ ├── FmUtils.java │ │ │ │ │ │ ├── FmViewModel.java │ │ │ │ │ │ ├── FolderShortInfo.java │ │ │ │ │ │ ├── OpenWithActivity.java │ │ │ │ │ │ ├── SharableItems.java │ │ │ │ │ │ ├── dialogs/ │ │ │ │ │ │ │ ├── ChangeFileModeDialogFragment.java │ │ │ │ │ │ │ ├── ChecksumsDialogFragment.java │ │ │ │ │ │ │ ├── FilePropertiesDialogFragment.java │ │ │ │ │ │ │ ├── NewFileDialogFragment.java │ │ │ │ │ │ │ ├── NewFolderDialogFragment.java │ │ │ │ │ │ │ ├── NewSymbolicLinkDialogFragment.java │ │ │ │ │ │ │ ├── OpenWithDialogFragment.java │ │ │ │ │ │ │ └── RenameDialogFragment.java │ │ │ │ │ │ └── icons/ │ │ │ │ │ │ ├── EpubCoverGenerator.java │ │ │ │ │ │ ├── FmIconFetcher.java │ │ │ │ │ │ ├── FmIcons.java │ │ │ │ │ │ └── J2meIconExtractor.java │ │ │ │ │ ├── history/ │ │ │ │ │ │ ├── IJsonSerializer.java │ │ │ │ │ │ ├── JsonDeserializer.java │ │ │ │ │ │ └── ops/ │ │ │ │ │ │ ├── OpHistoryActivity.java │ │ │ │ │ │ ├── OpHistoryItem.java │ │ │ │ │ │ └── OpHistoryManager.java │ │ │ │ │ ├── intercept/ │ │ │ │ │ │ ├── ActivityInterceptor.java │ │ │ │ │ │ ├── AddIntentExtraFragment.java │ │ │ │ │ │ ├── HistoryEditText.java │ │ │ │ │ │ ├── IntentCompat.java │ │ │ │ │ │ └── InterceptorShortcutInfo.java │ │ │ │ │ ├── ipc/ │ │ │ │ │ │ ├── AMService.java │ │ │ │ │ │ ├── BinderHolder.java │ │ │ │ │ │ ├── Container.java │ │ │ │ │ │ ├── FileSystemService.java │ │ │ │ │ │ ├── HiddenAPIs.java │ │ │ │ │ │ ├── LocalServices.java │ │ │ │ │ │ ├── ProxyBinder.java │ │ │ │ │ │ ├── RemoteProcess.java │ │ │ │ │ │ ├── RemoteProcessImpl.java │ │ │ │ │ │ ├── RemoteShellImpl.java │ │ │ │ │ │ ├── RootService.java │ │ │ │ │ │ ├── RootServiceManager.java │ │ │ │ │ │ ├── RootServiceServer.java │ │ │ │ │ │ ├── SerialExecutorService.java │ │ │ │ │ │ ├── ServiceConnectionWrapper.java │ │ │ │ │ │ ├── ServiceNotFoundException.java │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ └── ps/ │ │ │ │ │ │ ├── ProcessEntry.java │ │ │ │ │ │ ├── ProcessUsers.java │ │ │ │ │ │ └── Ps.java │ │ │ │ │ ├── logcat/ │ │ │ │ │ │ ├── AbsLogViewerFragment.java │ │ │ │ │ │ ├── CrazyLoggerService.java │ │ │ │ │ │ ├── LiveLogViewerFragment.java │ │ │ │ │ │ ├── LogFilterAdapter.java │ │ │ │ │ │ ├── LogViewerActivity.java │ │ │ │ │ │ ├── LogViewerRecyclerAdapter.java │ │ │ │ │ │ ├── LogViewerViewModel.java │ │ │ │ │ │ ├── LogcatRecordingService.java │ │ │ │ │ │ ├── RecordLogDialogActivity.java │ │ │ │ │ │ ├── RecordLogDialogFragment.java │ │ │ │ │ │ ├── RecordingWidgetProvider.java │ │ │ │ │ │ ├── SavedLogViewerFragment.java │ │ │ │ │ │ ├── helper/ │ │ │ │ │ │ │ ├── BuildHelper.java │ │ │ │ │ │ │ ├── LogcatHelper.java │ │ │ │ │ │ │ ├── PreferenceHelper.java │ │ │ │ │ │ │ ├── SaveLogHelper.java │ │ │ │ │ │ │ ├── ServiceHelper.java │ │ │ │ │ │ │ └── WidgetHelper.java │ │ │ │ │ │ ├── reader/ │ │ │ │ │ │ │ ├── AbsLogcatReader.java │ │ │ │ │ │ │ ├── LogcatReader.java │ │ │ │ │ │ │ ├── LogcatReaderLoader.java │ │ │ │ │ │ │ ├── MultipleLogcatReader.java │ │ │ │ │ │ │ ├── ScrubberUtils.java │ │ │ │ │ │ │ └── SingleLogcatReader.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── LogLine.java │ │ │ │ │ │ ├── SavedLog.java │ │ │ │ │ │ ├── SearchCriteria.java │ │ │ │ │ │ └── SendLogDetails.java │ │ │ │ │ ├── magisk/ │ │ │ │ │ │ ├── MagiskDenyList.java │ │ │ │ │ │ ├── MagiskHide.java │ │ │ │ │ │ ├── MagiskProcess.java │ │ │ │ │ │ └── MagiskUtils.java │ │ │ │ │ ├── main/ │ │ │ │ │ │ ├── ApplicationItem.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── MainBatchOpsHandler.java │ │ │ │ │ │ ├── MainListOptions.java │ │ │ │ │ │ ├── MainRecyclerAdapter.java │ │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ │ └── SplashActivity.java │ │ │ │ │ ├── misc/ │ │ │ │ │ │ ├── AMExceptionHandler.java │ │ │ │ │ │ ├── AdvancedSearchView.java │ │ │ │ │ │ ├── DeviceInfo.java │ │ │ │ │ │ ├── DeviceInfo2.java │ │ │ │ │ │ ├── HelpActivity.java │ │ │ │ │ │ ├── LabsActivity.java │ │ │ │ │ │ ├── ListOptions.java │ │ │ │ │ │ ├── NoOps.java │ │ │ │ │ │ ├── OidMap.java │ │ │ │ │ │ ├── OsEnvironment.java │ │ │ │ │ │ ├── ScreenLockChecker.java │ │ │ │ │ │ ├── SystemProperties.java │ │ │ │ │ │ ├── VMRuntime.java │ │ │ │ │ │ ├── XposedModuleInfo.java │ │ │ │ │ │ └── gles/ │ │ │ │ │ │ ├── EglCore.java │ │ │ │ │ │ ├── EglSurfaceBase.java │ │ │ │ │ │ ├── GlUtil.java │ │ │ │ │ │ ├── OffscreenSurface.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── miui/ │ │ │ │ │ │ └── MiuiVersionInfo.java │ │ │ │ │ ├── oneclickops/ │ │ │ │ │ │ ├── AppOpCount.java │ │ │ │ │ │ ├── BackupTasksDialogFragment.java │ │ │ │ │ │ ├── ClearCacheAppWidget.java │ │ │ │ │ │ ├── ItemCount.java │ │ │ │ │ │ ├── OneClickOpsActivity.java │ │ │ │ │ │ ├── OneClickOpsViewModel.java │ │ │ │ │ │ └── RestoreTasksDialogFragment.java │ │ │ │ │ ├── permission/ │ │ │ │ │ │ ├── DevelopmentPermission.java │ │ │ │ │ │ ├── PermUtils.java │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ ├── PermissionException.java │ │ │ │ │ │ ├── ReadOnlyPermission.java │ │ │ │ │ │ └── RuntimePermission.java │ │ │ │ │ ├── profiles/ │ │ │ │ │ │ ├── AddToProfileDialogFragment.java │ │ │ │ │ │ ├── AppsBaseProfileActivity.java │ │ │ │ │ │ ├── AppsFilterProfileActivity.java │ │ │ │ │ │ ├── AppsFragment.java │ │ │ │ │ │ ├── AppsProfileActivity.java │ │ │ │ │ │ ├── AppsProfileViewModel.java │ │ │ │ │ │ ├── ConfFragment.java │ │ │ │ │ │ ├── ConfPreferences.java │ │ │ │ │ │ ├── LogViewerFragment.java │ │ │ │ │ │ ├── NewProfileDialogFragment.java │ │ │ │ │ │ ├── ProfileApplierActivity.java │ │ │ │ │ │ ├── ProfileApplierService.java │ │ │ │ │ │ ├── ProfileLogger.java │ │ │ │ │ │ ├── ProfileManager.java │ │ │ │ │ │ ├── ProfileQueueItem.java │ │ │ │ │ │ ├── ProfileShortcutInfo.java │ │ │ │ │ │ ├── ProfilesActivity.java │ │ │ │ │ │ ├── ProfilesViewModel.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── AppsBaseProfile.java │ │ │ │ │ │ ├── AppsFilterProfile.java │ │ │ │ │ │ ├── AppsProfile.java │ │ │ │ │ │ ├── BaseProfile.java │ │ │ │ │ │ └── ProfileApplierResult.java │ │ │ │ │ ├── progress/ │ │ │ │ │ │ ├── NotificationProgressHandler.java │ │ │ │ │ │ ├── ProgressHandler.java │ │ │ │ │ │ └── QueuedProgressHandler.java │ │ │ │ │ ├── rules/ │ │ │ │ │ │ ├── PseudoRules.java │ │ │ │ │ │ ├── RuleType.java │ │ │ │ │ │ ├── RulesExporter.java │ │ │ │ │ │ ├── RulesImporter.java │ │ │ │ │ │ ├── RulesStorageManager.java │ │ │ │ │ │ ├── RulesTypeSelectionDialogFragment.java │ │ │ │ │ │ ├── compontents/ │ │ │ │ │ │ │ ├── ComponentUtils.java │ │ │ │ │ │ │ ├── ComponentsBlocker.java │ │ │ │ │ │ │ └── ExternalComponentsImporter.java │ │ │ │ │ │ └── struct/ │ │ │ │ │ │ ├── AppOpRule.java │ │ │ │ │ │ ├── BatteryOptimizationRule.java │ │ │ │ │ │ ├── ComponentRule.java │ │ │ │ │ │ ├── FreezeRule.java │ │ │ │ │ │ ├── MagiskDenyListRule.java │ │ │ │ │ │ ├── MagiskHideRule.java │ │ │ │ │ │ ├── NetPolicyRule.java │ │ │ │ │ │ ├── NotificationListenerRule.java │ │ │ │ │ │ ├── PermissionRule.java │ │ │ │ │ │ ├── RuleEntry.java │ │ │ │ │ │ ├── SsaidRule.java │ │ │ │ │ │ └── UriGrantRule.java │ │ │ │ │ ├── runner/ │ │ │ │ │ │ ├── NormalShell.java │ │ │ │ │ │ ├── PrivilegedShell.java │ │ │ │ │ │ ├── Runner.java │ │ │ │ │ │ └── RunnerUtils.java │ │ │ │ │ ├── runningapps/ │ │ │ │ │ │ ├── AppProcessItem.java │ │ │ │ │ │ ├── ProcessItem.java │ │ │ │ │ │ ├── ProcessParser.java │ │ │ │ │ │ ├── RunningAppDetails.java │ │ │ │ │ │ ├── RunningAppsActivity.java │ │ │ │ │ │ ├── RunningAppsAdapter.java │ │ │ │ │ │ └── RunningAppsViewModel.java │ │ │ │ │ ├── scanner/ │ │ │ │ │ │ ├── ClassListingFragment.java │ │ │ │ │ │ ├── LibraryInfoDialog.java │ │ │ │ │ │ ├── NativeLibraries.java │ │ │ │ │ │ ├── Pithus.java │ │ │ │ │ │ ├── ScannerActivity.java │ │ │ │ │ │ ├── ScannerFragment.java │ │ │ │ │ │ ├── ScannerViewModel.java │ │ │ │ │ │ ├── SignatureInfo.java │ │ │ │ │ │ ├── TrackerInfoDialog.java │ │ │ │ │ │ ├── VirusTotalDialog.java │ │ │ │ │ │ └── vt/ │ │ │ │ │ │ ├── VirusTotal.java │ │ │ │ │ │ ├── VtAvEngineResult.java │ │ │ │ │ │ ├── VtAvEngineStats.java │ │ │ │ │ │ ├── VtError.java │ │ │ │ │ │ └── VtFileReport.java │ │ │ │ │ ├── self/ │ │ │ │ │ │ ├── BootReceiver.java │ │ │ │ │ │ ├── Migration.java │ │ │ │ │ │ ├── MigrationTask.java │ │ │ │ │ │ ├── Migrations.java │ │ │ │ │ │ ├── SelfPermissions.java │ │ │ │ │ │ ├── SelfUriManager.java │ │ │ │ │ │ ├── filecache/ │ │ │ │ │ │ │ ├── FileCache.java │ │ │ │ │ │ │ └── InternalCacheCleanerService.java │ │ │ │ │ │ ├── imagecache/ │ │ │ │ │ │ │ ├── ImageFileCache.java │ │ │ │ │ │ │ └── ImageLoader.java │ │ │ │ │ │ ├── life/ │ │ │ │ │ │ │ ├── BuildExpiryChecker.java │ │ │ │ │ │ │ └── FundingCampaignChecker.java │ │ │ │ │ │ └── pref/ │ │ │ │ │ │ └── TipsPrefs.java │ │ │ │ │ ├── servermanager/ │ │ │ │ │ │ ├── AssetsUtils.java │ │ │ │ │ │ ├── LocalServer.java │ │ │ │ │ │ ├── LocalServerManager.java │ │ │ │ │ │ ├── ServerConfig.java │ │ │ │ │ │ ├── ServerStatusChangeReceiver.java │ │ │ │ │ │ └── WifiWaitService.java │ │ │ │ │ ├── session/ │ │ │ │ │ │ └── SessionMonitoringService.java │ │ │ │ │ ├── settings/ │ │ │ │ │ │ ├── AboutDeviceFragment.java │ │ │ │ │ │ ├── AboutPreferences.java │ │ │ │ │ │ ├── AdvancedPreferences.java │ │ │ │ │ │ ├── ApkSigningPreferences.java │ │ │ │ │ │ ├── AppearancePreferences.java │ │ │ │ │ │ ├── BackupRestorePreferences.java │ │ │ │ │ │ ├── ChangeLanguageFragment.java │ │ │ │ │ │ ├── FeatureController.java │ │ │ │ │ │ ├── FileManagerPreferences.java │ │ │ │ │ │ ├── ImportExportRulesPreferences.java │ │ │ │ │ │ ├── InstallerPreferences.java │ │ │ │ │ │ ├── LogViewerPreferences.java │ │ │ │ │ │ ├── MainPreferences.java │ │ │ │ │ │ ├── MainPreferencesViewModel.java │ │ │ │ │ │ ├── ModeOfOpsPreference.java │ │ │ │ │ │ ├── Ops.java │ │ │ │ │ │ ├── PreferenceFragment.java │ │ │ │ │ │ ├── Prefs.java │ │ │ │ │ │ ├── PrivacyPreferences.java │ │ │ │ │ │ ├── RulesPreferences.java │ │ │ │ │ │ ├── SecurityAndOpsViewModel.java │ │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ │ ├── SettingsDataStore.java │ │ │ │ │ │ ├── TroubleshootingPreferences.java │ │ │ │ │ │ ├── VirusTotalPreferences.java │ │ │ │ │ │ └── crypto/ │ │ │ │ │ │ ├── AESCryptoSelectionDialogFragment.java │ │ │ │ │ │ ├── ECCCryptoSelectionDialogFragment.java │ │ │ │ │ │ ├── ImportExportKeyStoreDialogFragment.java │ │ │ │ │ │ ├── KeyPairGeneratorDialogFragment.java │ │ │ │ │ │ ├── KeyPairImporterDialogFragment.java │ │ │ │ │ │ ├── OpenPgpKeySelectionDialogFragment.java │ │ │ │ │ │ └── RSACryptoSelectionDialogFragment.java │ │ │ │ │ ├── sharedpref/ │ │ │ │ │ │ ├── EditPrefItemFragment.java │ │ │ │ │ │ ├── SharedPrefsActivity.java │ │ │ │ │ │ ├── SharedPrefsUtil.java │ │ │ │ │ │ └── SharedPrefsViewModel.java │ │ │ │ │ ├── shortcut/ │ │ │ │ │ │ ├── CreateShortcutDialogFragment.java │ │ │ │ │ │ └── ShortcutInfo.java │ │ │ │ │ ├── ssaid/ │ │ │ │ │ │ ├── ChangeSsaidDialog.java │ │ │ │ │ │ ├── SettingsState.java │ │ │ │ │ │ ├── SettingsStateV26.java │ │ │ │ │ │ └── SsaidSettings.java │ │ │ │ │ ├── sysconfig/ │ │ │ │ │ │ ├── SysConfigActivity.java │ │ │ │ │ │ ├── SysConfigInfo.java │ │ │ │ │ │ ├── SysConfigType.java │ │ │ │ │ │ ├── SysConfigViewModel.java │ │ │ │ │ │ ├── SysConfigWrapper.java │ │ │ │ │ │ └── SystemConfig.java │ │ │ │ │ ├── terminal/ │ │ │ │ │ │ └── TermActivity.java │ │ │ │ │ ├── types/ │ │ │ │ │ │ ├── ForegroundService.java │ │ │ │ │ │ ├── PackageChangeReceiver.java │ │ │ │ │ │ ├── PackageSizeInfo.java │ │ │ │ │ │ └── UserPackagePair.java │ │ │ │ │ ├── uri/ │ │ │ │ │ │ ├── GrantUriUtils.java │ │ │ │ │ │ └── UriManager.java │ │ │ │ │ ├── usage/ │ │ │ │ │ │ ├── AppUsageActivity.java │ │ │ │ │ │ ├── AppUsageAdapter.java │ │ │ │ │ │ ├── AppUsageDetailsDialog.java │ │ │ │ │ │ ├── AppUsageStatsManager.java │ │ │ │ │ │ ├── AppUsageViewModel.java │ │ │ │ │ │ ├── BarChartView.java │ │ │ │ │ │ ├── DataUsageAppWidget.java │ │ │ │ │ │ ├── IntervalType.java │ │ │ │ │ │ ├── PackageUsageInfo.java │ │ │ │ │ │ ├── ScreenTimeAppWidget.java │ │ │ │ │ │ ├── SortOrder.java │ │ │ │ │ │ ├── TimeInterval.java │ │ │ │ │ │ ├── UsageDataProcessor.java │ │ │ │ │ │ └── UsageUtils.java │ │ │ │ │ ├── users/ │ │ │ │ │ │ ├── Groups.java │ │ │ │ │ │ ├── Owners.java │ │ │ │ │ │ ├── UserInfo.java │ │ │ │ │ │ └── Users.java │ │ │ │ │ ├── utils/ │ │ │ │ │ │ ├── AlphanumComparator.java │ │ │ │ │ │ ├── AppPref.java │ │ │ │ │ │ ├── ArrayUtils.java │ │ │ │ │ │ ├── BetterActivityResult.java │ │ │ │ │ │ ├── BinderShellExecutor.java │ │ │ │ │ │ ├── BitmapRandomizer.java │ │ │ │ │ │ ├── BroadcastUtils.java │ │ │ │ │ │ ├── ClipboardUtils.java │ │ │ │ │ │ ├── ContextUtils.java │ │ │ │ │ │ ├── CpuUtils.java │ │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ │ ├── DigestUtils.java │ │ │ │ │ │ ├── ExUtils.java │ │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ │ ├── FreezeUtils.java │ │ │ │ │ │ ├── HuaweiUtils.java │ │ │ │ │ │ ├── IntegerUtils.java │ │ │ │ │ │ ├── IntentUtils.java │ │ │ │ │ │ ├── JSONUtils.java │ │ │ │ │ │ ├── KeyStoreUtils.java │ │ │ │ │ │ ├── LangUtils.java │ │ │ │ │ │ ├── ListItemCreator.java │ │ │ │ │ │ ├── MiuiUtils.java │ │ │ │ │ │ ├── MotorolaUtils.java │ │ │ │ │ │ ├── MultithreadedExecutor.java │ │ │ │ │ │ ├── NonNullUtils.java │ │ │ │ │ │ ├── NotificationUtils.java │ │ │ │ │ │ ├── PackageUtils.java │ │ │ │ │ │ ├── ParcelFileDescriptorUtil.java │ │ │ │ │ │ ├── ResourceUtil.java │ │ │ │ │ │ ├── RestartUtils.java │ │ │ │ │ │ ├── SAFUtils.java │ │ │ │ │ │ ├── StoragePermission.java │ │ │ │ │ │ ├── StorageUtils.java │ │ │ │ │ │ ├── TarUtils.java │ │ │ │ │ │ ├── TextUtilsCompat.java │ │ │ │ │ │ ├── ThreadUtils.java │ │ │ │ │ │ ├── UIUtils.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ └── appearance/ │ │ │ │ │ │ ├── AppearanceUtils.java │ │ │ │ │ │ ├── ColorCodes.java │ │ │ │ │ │ └── TypefaceUtil.java │ │ │ │ │ └── viewer/ │ │ │ │ │ ├── ExplorerActivity.java │ │ │ │ │ └── audio/ │ │ │ │ │ ├── AudioMetadata.java │ │ │ │ │ ├── AudioPlayerActivity.java │ │ │ │ │ ├── AudioPlayerDialogFragment.java │ │ │ │ │ ├── AudioPlayerViewModel.java │ │ │ │ │ └── RepeatMode.java │ │ │ │ ├── algo/ │ │ │ │ │ └── AhoCorasick.java │ │ │ │ ├── csv/ │ │ │ │ │ └── CsvWriter.java │ │ │ │ ├── io/ │ │ │ │ │ ├── DirectoryUtils.java │ │ │ │ │ ├── LocalFileOverlay.java │ │ │ │ │ ├── PathAttributesImpl.java │ │ │ │ │ ├── PathContentInfoImpl.java │ │ │ │ │ ├── PathImpl.java │ │ │ │ │ ├── Paths.java │ │ │ │ │ ├── ReadOnlyLocalFile.java │ │ │ │ │ └── fs/ │ │ │ │ │ ├── ApkFileSystem.java │ │ │ │ │ ├── DexFileSystem.java │ │ │ │ │ ├── VirtualFileSystem.java │ │ │ │ │ └── ZipFileSystem.java │ │ │ │ ├── proc/ │ │ │ │ │ ├── ProcFdInfoList.java │ │ │ │ │ ├── ProcFs.java │ │ │ │ │ ├── ProcMappedFiles.java │ │ │ │ │ ├── ProcMemStat.java │ │ │ │ │ ├── ProcMemoryInfo.java │ │ │ │ │ ├── ProcStat.java │ │ │ │ │ ├── ProcStatus.java │ │ │ │ │ └── ProcUidNetStat.java │ │ │ │ └── svg/ │ │ │ │ ├── ParserHelper.java │ │ │ │ ├── SVG.java │ │ │ │ ├── SVGParseException.java │ │ │ │ └── SVGParser.java │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── commons/ │ │ │ └── compress/ │ │ │ ├── archivers/ │ │ │ │ ├── ArchiveEntry.java │ │ │ │ ├── ArchiveInputStream.java │ │ │ │ ├── ArchiveOutputStream.java │ │ │ │ ├── EntryStreamOffsets.java │ │ │ │ ├── tar/ │ │ │ │ │ ├── TarArchiveEntry.java │ │ │ │ │ ├── TarArchiveInputStream.java │ │ │ │ │ ├── TarArchiveOutputStream.java │ │ │ │ │ ├── TarArchiveSparseEntry.java │ │ │ │ │ ├── TarArchiveSparseZeroInputStream.java │ │ │ │ │ ├── TarArchiveStructSparse.java │ │ │ │ │ ├── TarConstants.java │ │ │ │ │ └── TarUtils.java │ │ │ │ └── zip/ │ │ │ │ ├── CharsetAccessor.java │ │ │ │ ├── NioZipEncoding.java │ │ │ │ ├── ZipEncoding.java │ │ │ │ └── ZipEncodingHelper.java │ │ │ ├── compressors/ │ │ │ │ ├── CompressorInputStream.java │ │ │ │ ├── CompressorOutputStream.java │ │ │ │ ├── FileNameUtil.java │ │ │ │ ├── bzip2/ │ │ │ │ │ ├── BZip2CompressorInputStream.java │ │ │ │ │ ├── BZip2CompressorOutputStream.java │ │ │ │ │ ├── BZip2Constants.java │ │ │ │ │ ├── BZip2Utils.java │ │ │ │ │ ├── BlockSort.java │ │ │ │ │ ├── CRC.java │ │ │ │ │ └── Rand.java │ │ │ │ └── gzip/ │ │ │ │ ├── GzipCompressorInputStream.java │ │ │ │ ├── GzipCompressorOutputStream.java │ │ │ │ ├── GzipParameters.java │ │ │ │ └── GzipUtils.java │ │ │ └── utils/ │ │ │ ├── ArchiveUtils.java │ │ │ ├── BitInputStream.java │ │ │ ├── BoundedInputStream.java │ │ │ ├── ByteUtils.java │ │ │ ├── CharsetNames.java │ │ │ ├── CloseShieldFilterInputStream.java │ │ │ ├── CountingInputStream.java │ │ │ ├── CountingOutputStream.java │ │ │ ├── FixedLengthBlockOutputStream.java │ │ │ ├── IOUtils.java │ │ │ └── InputStreamStatistics.java │ │ └── res/ │ │ ├── animator/ │ │ │ ├── enter_from_left.xml │ │ │ ├── enter_from_right.xml │ │ │ ├── exit_from_left.xml │ │ │ └── exit_from_right.xml │ │ ├── drawable/ │ │ │ ├── app_widget_background.xml │ │ │ ├── badge_background.xml │ │ │ ├── circle_background.xml │ │ │ ├── circle_with_padding.xml │ │ │ ├── dashed_border.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_android.xml │ │ │ ├── ic_archive.xml │ │ │ ├── ic_arrow_outward.xml │ │ │ ├── ic_audio_file.xml │ │ │ ├── ic_autorenew.xml │ │ │ ├── ic_backup_restore.xml │ │ │ ├── ic_battery_plus.xml │ │ │ ├── ic_block.xml │ │ │ ├── ic_book.xml │ │ │ ├── ic_brush.xml │ │ │ ├── ic_calendar_month.xml │ │ │ ├── ic_cctv_off.xml │ │ │ ├── ic_charity.xml │ │ │ ├── ic_check_circle.xml │ │ │ ├── ic_clear_cache.xml │ │ │ ├── ic_clear_data.xml │ │ │ ├── ic_code.xml │ │ │ ├── ic_contact_page.xml │ │ │ ├── ic_content_copy.xml │ │ │ ├── ic_content_cut.xml │ │ │ ├── ic_content_duplicate.xml │ │ │ ├── ic_content_paste.xml │ │ │ ├── ic_content_save.xml │ │ │ ├── ic_cursor_default_click.xml │ │ │ ├── ic_data_usage.xml │ │ │ ├── ic_database.xml │ │ │ ├── ic_drag.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_email.xml │ │ │ ├── ic_exodusprivacy.xml │ │ │ ├── ic_expand_less.xml │ │ │ ├── ic_expand_more.xml │ │ │ ├── ic_eye.xml │ │ │ ├── ic_fast_forward.xml │ │ │ ├── ic_fast_rewind.xml │ │ │ ├── ic_file.xml │ │ │ ├── ic_file_copy.xml │ │ │ ├── ic_file_document.xml │ │ │ ├── ic_file_document_multiple.xml │ │ │ ├── ic_file_export.xml │ │ │ ├── ic_file_import.xml │ │ │ ├── ic_file_plus.xml │ │ │ ├── ic_file_replace.xml │ │ │ ├── ic_file_undo.xml │ │ │ ├── ic_filter_list.xml │ │ │ ├── ic_filter_menu.xml │ │ │ ├── ic_find_and_replace.xml │ │ │ ├── ic_find_and_replace_all.xml │ │ │ ├── ic_flag.xml │ │ │ ├── ic_fold_vertical.xml │ │ │ ├── ic_folder.xml │ │ │ ├── ic_font_download.xml │ │ │ ├── ic_form_textbox.xml │ │ │ ├── ic_frost_aurorastore.xml │ │ │ ├── ic_frost_fdroid.xml │ │ │ ├── ic_frost_termux.xml │ │ │ ├── ic_get_app.xml │ │ │ ├── ic_hammer_wrench.xml │ │ │ ├── ic_history.xml │ │ │ ├── ic_image.xml │ │ │ ├── ic_information_circle.xml │ │ │ ├── ic_launcher_fm_foreground.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_link.xml │ │ │ ├── ic_liquid_spot_off.xml │ │ │ ├── ic_list_status.xml │ │ │ ├── ic_lock.xml │ │ │ ├── ic_menu.xml │ │ │ ├── ic_next.xml │ │ │ ├── ic_open_in_new.xml │ │ │ ├── ic_package.xml │ │ │ ├── ic_palette_swatch.xml │ │ │ ├── ic_pause.xml │ │ │ ├── ic_pdf_file.xml │ │ │ ├── ic_phone_android.xml │ │ │ ├── ic_play_arrow.xml │ │ │ ├── ic_power_settings.xml │ │ │ ├── ic_presentation.xml │ │ │ ├── ic_previous.xml │ │ │ ├── ic_pulse.xml │ │ │ ├── ic_record_rec.xml │ │ │ ├── ic_redo.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_repeat.xml │ │ │ ├── ic_repeat_off.xml │ │ │ ├── ic_repeat_one.xml │ │ │ ├── ic_replay.xml │ │ │ ├── ic_restore.xml │ │ │ ├── ic_run_fast.xml │ │ │ ├── ic_security.xml │ │ │ ├── ic_security_network.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_shield_key.xml │ │ │ ├── ic_shortcut_record.xml │ │ │ ├── ic_snowflake.xml │ │ │ ├── ic_snowflake_off.xml │ │ │ ├── ic_sort.xml │ │ │ ├── ic_splash_logo.xml │ │ │ ├── ic_star.xml │ │ │ ├── ic_star_outline.xml │ │ │ ├── ic_stop.xml │ │ │ ├── ic_sync.xml │ │ │ ├── ic_tab.xml │ │ │ ├── ic_table.xml │ │ │ ├── ic_touch_app.xml │ │ │ ├── ic_transit_connection.xml │ │ │ ├── ic_translate.xml │ │ │ ├── ic_trash_can.xml │ │ │ ├── ic_tune.xml │ │ │ ├── ic_undo.xml │ │ │ ├── ic_unlock.xml │ │ │ ├── ic_video_file.xml │ │ │ ├── ic_view_agenda.xml │ │ │ ├── ic_view_list.xml │ │ │ ├── ic_vt.xml │ │ │ ├── ic_wifi.xml │ │ │ ├── ic_wrap_text.xml │ │ │ ├── ic_zip_disk.xml │ │ │ └── ripple_background_24.xml │ │ ├── drawable-anydpi-v24/ │ │ │ └── ic_default_notification.xml │ │ ├── layout/ │ │ │ ├── activity_app_details.xml │ │ │ ├── activity_app_usage.xml │ │ │ ├── activity_apps_profile.xml │ │ │ ├── activity_audio_player.xml │ │ │ ├── activity_auth_management.xml │ │ │ ├── activity_authentication.xml │ │ │ ├── activity_batch_ops_results.xml │ │ │ ├── activity_code_editor.xml │ │ │ ├── activity_debloater.xml │ │ │ ├── activity_finder.xml │ │ │ ├── activity_fm.xml │ │ │ ├── activity_help.xml │ │ │ ├── activity_interceptor.xml │ │ │ ├── activity_labs.xml │ │ │ ├── activity_logcat.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_one_click_ops.xml │ │ │ ├── activity_op_history.xml │ │ │ ├── activity_profiles.xml │ │ │ ├── activity_running_apps.xml │ │ │ ├── activity_settings.xml │ │ │ ├── activity_settings_dual_pane.xml │ │ │ ├── activity_shared_prefs.xml │ │ │ ├── activity_sys_config.xml │ │ │ ├── activity_term.xml │ │ │ ├── app_widget_clear_cache.xml │ │ │ ├── app_widget_data_usage_small.xml │ │ │ ├── app_widget_refresh_button.xml │ │ │ ├── app_widget_screen_time.xml │ │ │ ├── app_widget_screen_time_large.xml │ │ │ ├── app_widget_screen_time_small.xml │ │ │ ├── appbar.xml │ │ │ ├── dialog_app_usage_details.xml │ │ │ ├── dialog_audio_player.xml │ │ │ ├── dialog_backup_restore.xml │ │ │ ├── dialog_backup_tasks.xml │ │ │ ├── dialog_bloatware_details.xml │ │ │ ├── dialog_certificate_generator.xml │ │ │ ├── dialog_change_file_mode.xml │ │ │ ├── dialog_checksums.xml │ │ │ ├── dialog_create_shortcut.xml │ │ │ ├── dialog_debloater_list_options.xml │ │ │ ├── dialog_dexopt.xml │ │ │ ├── dialog_disclaimer.xml │ │ │ ├── dialog_edit_filter_item.xml │ │ │ ├── dialog_edit_filter_option.xml │ │ │ ├── dialog_edit_pref_item.xml │ │ │ ├── dialog_file_properties.xml │ │ │ ├── dialog_icon_picker.xml │ │ │ ├── dialog_installer.xml │ │ │ ├── dialog_installer_options.xml │ │ │ ├── dialog_key_pair_importer.xml │ │ │ ├── dialog_keystore_password.xml │ │ │ ├── dialog_list_options.xml │ │ │ ├── dialog_new_file.xml │ │ │ ├── dialog_new_symlink.xml │ │ │ ├── dialog_open_with.xml │ │ │ ├── dialog_profile_backup_restore.xml │ │ │ ├── dialog_progress.xml │ │ │ ├── dialog_progress2.xml │ │ │ ├── dialog_progress_circular.xml │ │ │ ├── dialog_rename.xml │ │ │ ├── dialog_restore_tasks.xml │ │ │ ├── dialog_running_app_details.xml │ │ │ ├── dialog_searchable_multi_choice.xml │ │ │ ├── dialog_searchby.xml │ │ │ ├── dialog_send_log.xml │ │ │ ├── dialog_set_apk_format.xml │ │ │ ├── dialog_ssaid_info.xml │ │ │ ├── dialog_whats_new.xml │ │ │ ├── fragment_class_lister.xml │ │ │ ├── fragment_code_editor.xml │ │ │ ├── fragment_container.xml │ │ │ ├── fragment_dialog_backup.xml │ │ │ ├── fragment_dialog_restore_multiple.xml │ │ │ ├── fragment_dialog_restore_single.xml │ │ │ ├── fragment_fm.xml │ │ │ ├── fragment_log_viewer.xml │ │ │ ├── fragment_logcat.xml │ │ │ ├── fragment_mode_of_ops.xml │ │ │ ├── fragment_scanner.xml │ │ │ ├── header_running_apps_memory_info.xml │ │ │ ├── item_app_details_appop.xml │ │ │ ├── item_app_details_overlay.xml │ │ │ ├── item_app_details_perm.xml │ │ │ ├── item_app_details_primary.xml │ │ │ ├── item_app_details_secondary.xml │ │ │ ├── item_app_details_signature.xml │ │ │ ├── item_app_details_tertiary.xml │ │ │ ├── item_app_info_action.xml │ │ │ ├── item_app_usage.xml │ │ │ ├── item_app_usage_header.xml │ │ │ ├── item_bloatware_details.xml │ │ │ ├── item_changelog_header.xml │ │ │ ├── item_changelog_item.xml │ │ │ ├── item_checkbox.xml │ │ │ ├── item_chip.xml │ │ │ ├── item_debloater.xml │ │ │ ├── item_finder.xml │ │ │ ├── item_fm.xml │ │ │ ├── item_fm_drawer.xml │ │ │ ├── item_icon_title_subtitle.xml │ │ │ ├── item_logcat.xml │ │ │ ├── item_main.xml │ │ │ ├── item_op_history.xml │ │ │ ├── item_path.xml │ │ │ ├── item_right_standalone_action.xml │ │ │ ├── item_right_summary.xml │ │ │ ├── item_running_app.xml │ │ │ ├── item_shared_lib.xml │ │ │ ├── item_switch.xml │ │ │ ├── item_sys_config.xml │ │ │ ├── item_text_input_layout_monospace.xml │ │ │ ├── item_text_view.xml │ │ │ ├── item_title_action.xml │ │ │ ├── item_whats_new.xml │ │ │ ├── pager_app_details.xml │ │ │ ├── pager_app_info.xml │ │ │ ├── widget_recording.xml │ │ │ └── window_activity_tracker.xml │ │ ├── menu/ │ │ │ ├── activity_activity_interceptor_actions.xml │ │ │ ├── activity_app_explorer_selection_actions.xml │ │ │ ├── activity_app_usage_actions.xml │ │ │ ├── activity_batch_ops_results_actions.xml │ │ │ ├── activity_code_editor_actions.xml │ │ │ ├── activity_debloater_actions.xml │ │ │ ├── activity_debloater_selection_actions.xml │ │ │ ├── activity_fm_actions.xml │ │ │ ├── activity_help_actions.xml │ │ │ ├── activity_main_actions.xml │ │ │ ├── activity_main_selection_actions.xml │ │ │ ├── activity_profile_navigation.xml │ │ │ ├── activity_profiles_actions.xml │ │ │ ├── activity_profiles_popup_actions.xml │ │ │ ├── activity_running_apps_actions.xml │ │ │ ├── activity_running_apps_popup_actions.xml │ │ │ ├── activity_scanner.xml │ │ │ ├── activity_shared_prefs_actions.xml │ │ │ ├── fragment_app_details_app_ops_actions.xml │ │ │ ├── fragment_app_details_components_actions.xml │ │ │ ├── fragment_app_details_components_selection_actions.xml │ │ │ ├── fragment_app_details_overlay_actions.xml │ │ │ ├── fragment_app_details_permissions_actions.xml │ │ │ ├── fragment_app_details_refresh_actions.xml │ │ │ ├── fragment_app_info_actions.xml │ │ │ ├── fragment_class_lister_actions.xml │ │ │ ├── fragment_fm_item_actions.xml │ │ │ ├── fragment_fm_selection_actions.xml │ │ │ ├── fragment_fm_speed_dial.xml │ │ │ ├── fragment_live_log_viewer_actions.xml │ │ │ ├── fragment_logcat_selection_actions.xml │ │ │ ├── fragment_profile_apps_actions.xml │ │ │ ├── fragment_saved_log_viewer_actions.xml │ │ │ └── view_advanced_search_type_selections.xml │ │ ├── mipmap-anydpi-v26/ │ │ │ ├── ic_banner.xml │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_launcher_fm.xml │ │ │ ├── ic_launcher_fm_round.xml │ │ │ └── ic_launcher_round.xml │ │ ├── raw/ │ │ │ └── changelog.xml │ │ ├── values/ │ │ │ ├── arrays.xml │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── disclaimer.xml │ │ │ ├── ic_banner_background.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_fm_background.xml │ │ │ ├── libs.xml │ │ │ ├── native_libs.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── trackers.xml │ │ │ └── word_list.xml │ │ ├── values-ar/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ar-rSA/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-az/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ban/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-be/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-bn-rBD/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-cs/ │ │ │ └── disclaimer.xml │ │ ├── values-cs-rCZ/ │ │ │ └── strings.xml │ │ ├── values-da/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-de/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-el/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-eo/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-es/ │ │ │ └── disclaimer.xml │ │ ├── values-es-rES/ │ │ │ └── strings.xml │ │ ├── values-fa/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-fr/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-hi/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-hu/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-in-rID/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-it-rIT/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-iw/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ja/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ko/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-lv/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-nb-rNO/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-night-v31/ │ │ │ └── styles.xml │ │ ├── values-nl/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-pl/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-pt/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-pt-rBR/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ro/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-ru-rRU/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-si/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-sq/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-sv/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-tr-rTR/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-uk/ │ │ │ └── disclaimer.xml │ │ ├── values-uk-rUA/ │ │ │ └── strings.xml │ │ ├── values-v31/ │ │ │ └── styles.xml │ │ ├── values-vi/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-zh-rCN/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ ├── values-zh-rTW/ │ │ │ ├── disclaimer.xml │ │ │ └── strings.xml │ │ └── xml/ │ │ ├── accessibility_service_config.xml │ │ ├── app_widget_info_clear_cache.xml │ │ ├── app_widget_info_data_usage.xml │ │ ├── app_widget_info_screen_time.xml │ │ ├── backup_rules.xml │ │ ├── full_backup_rules.xml │ │ ├── locales_config.xml │ │ ├── network_security_config.xml │ │ ├── preferences_about.xml │ │ ├── preferences_advanced.xml │ │ ├── preferences_appearance.xml │ │ ├── preferences_backup_restore.xml │ │ ├── preferences_file_manager.xml │ │ ├── preferences_installer.xml │ │ ├── preferences_log_viewer.xml │ │ ├── preferences_main.xml │ │ ├── preferences_privacy.xml │ │ ├── preferences_profile_config.xml │ │ ├── preferences_rules.xml │ │ ├── preferences_rules_import_export.xml │ │ ├── preferences_signature.xml │ │ ├── preferences_troubleshooting.xml │ │ ├── preferences_virus_total.xml │ │ └── recording_widget_info.xml │ └── test/ │ ├── java/ │ │ ├── android/ │ │ │ ├── os/ │ │ │ │ └── UserHandleHidden.java │ │ │ └── system/ │ │ │ ├── OsHidden.java │ │ │ └── StructPasswd.java │ │ ├── androidx/ │ │ │ └── documentfile/ │ │ │ └── provider/ │ │ │ ├── DexDocumentFileTest.java │ │ │ └── ZipDocumentFileTest.java │ │ ├── io/ │ │ │ └── github/ │ │ │ └── muntashirakon/ │ │ │ ├── AppManager/ │ │ │ │ ├── apk/ │ │ │ │ │ ├── dexopt/ │ │ │ │ │ │ └── DexOptOptionsTest.java │ │ │ │ │ └── parser/ │ │ │ │ │ ├── AndroidBinXmlDecoderTest.java │ │ │ │ │ ├── AndroidBinXmlEncoderTest.java │ │ │ │ │ └── ManifestParserTest.java │ │ │ │ ├── backup/ │ │ │ │ │ ├── BackupDataDirectoryInfoTest.java │ │ │ │ │ ├── BackupManagerTest.java │ │ │ │ │ ├── BackupUtilsTest.java │ │ │ │ │ ├── adb/ │ │ │ │ │ │ ├── AndroidBackupCreatorTest.java │ │ │ │ │ │ └── AndroidBackupExtractorTest.java │ │ │ │ │ └── convert/ │ │ │ │ │ ├── OABConverterTest.java │ │ │ │ │ ├── SBConverterTest.java │ │ │ │ │ └── TBConverterTest.java │ │ │ │ ├── batchops/ │ │ │ │ │ ├── BatchQueueItemTest.java │ │ │ │ │ └── struct/ │ │ │ │ │ ├── BatchAppOpsOptionsTest.java │ │ │ │ │ ├── BatchBackupImportOptionsTest.java │ │ │ │ │ └── BatchDexOptOptionsTest.java │ │ │ │ ├── compat/ │ │ │ │ │ └── ActivityManagerCompatTest.java │ │ │ │ ├── filters/ │ │ │ │ │ └── FilterItemTest.java │ │ │ │ ├── fm/ │ │ │ │ │ └── FmProviderTest.java │ │ │ │ ├── rules/ │ │ │ │ │ ├── PseudoRulesTest.java │ │ │ │ │ ├── compontents/ │ │ │ │ │ │ └── ComponentUtilsTest.java │ │ │ │ │ └── struct/ │ │ │ │ │ └── RuleEntryTest.java │ │ │ │ ├── runningapps/ │ │ │ │ │ └── ProcessParserTest.java │ │ │ │ ├── scanner/ │ │ │ │ │ └── vt/ │ │ │ │ │ └── VirusTotalTest.java │ │ │ │ ├── ssaid/ │ │ │ │ │ └── SsaidSettingsTest.java │ │ │ │ └── utils/ │ │ │ │ ├── BitmapRandomizerTest.java │ │ │ │ ├── RoboUtils.java │ │ │ │ └── TarUtilsTest.java │ │ │ ├── csv/ │ │ │ │ └── CsvWriterTest.java │ │ │ ├── io/ │ │ │ │ ├── PathTest.java │ │ │ │ ├── PathsTest.java │ │ │ │ ├── ShadowLocalFileOverlay.java │ │ │ │ ├── SplitInputStreamTest.java │ │ │ │ ├── SplitOutputStreamTest.java │ │ │ │ └── fs/ │ │ │ │ └── ZipFileSystemTest.java │ │ │ └── test/ │ │ │ └── shadows/ │ │ │ ├── OsConstantsValues.java │ │ │ ├── ShadowBackupDataDirectoryInfo.java │ │ │ ├── ShadowDeviceIdleManagerCompat.java │ │ │ ├── ShadowOsConstants.java │ │ │ ├── ShadowOwners.java │ │ │ ├── ShadowPackageInstallerCompat.java │ │ │ └── ShadowPackageManagerCompat.java │ │ └── org/ │ │ └── apache/ │ │ └── commons/ │ │ └── compress/ │ │ ├── archivers/ │ │ │ └── tar/ │ │ │ ├── TarArchiveInputStreamTest.java │ │ │ └── TarArchiveOutputStreamTest.java │ │ └── compressors/ │ │ ├── bzip2/ │ │ │ ├── BZip2CompressorInputStreamTest.java │ │ │ └── BZip2CompressorOutputStreamTest.java │ │ └── gzip/ │ │ ├── GzipCompressorInputStreamTest.java │ │ └── GzipCompressorOutputStreamTest.java │ └── resources/ │ ├── AppManager_v2.5.22.apks │ ├── AppManager_v2.5.22.apks.0 │ ├── AppManager_v2.5.22.apks.1 │ ├── AppManager_v2.5.22.apks.2 │ ├── AppManager_v2.5.22.apks.3 │ ├── AppManager_v2.5.22.apks.4 │ ├── AppManager_v2.5.22.apks.5 │ ├── AppManager_v2.5.22.apks.6 │ ├── AppManager_v2.5.22.apks.7 │ ├── AppManager_v2.5.22.apks.tar.0 │ ├── AppManager_v2.5.22.apks.tar.1 │ ├── AppManager_v2.5.22.apks.tar.bz2 │ ├── AppManager_v2.5.22.apks.tar.bz2.0 │ ├── AppManager_v2.5.22.apks.tar.bz2.1 │ ├── AppManager_v2.5.22.apks.tar.gz.0 │ ├── AppManager_v2.5.22.apks.tar.gz.1 │ ├── SwiftBackup/ │ │ ├── ademar.textlauncher.app │ │ ├── ademar.textlauncher.xml │ │ ├── com.google.android.samples.dynamicfeatures.ondemand.app │ │ ├── com.google.android.samples.dynamicfeatures.ondemand.splits │ │ ├── com.google.android.samples.dynamicfeatures.ondemand.xml │ │ ├── com.test.app.app │ │ ├── com.test.app.exp │ │ ├── com.test.app.xml │ │ ├── dnsfilter.android.app │ │ ├── dnsfilter.android.extdat │ │ ├── dnsfilter.android.xml │ │ ├── org.billthefarmer.editor.app │ │ └── org.billthefarmer.editor.xml │ ├── TitaniumBackup/ │ │ ├── ademar.textlauncher-20210530-111646.properties │ │ ├── ademar.textlauncher-7016ac07c52a556afd2eed992b976255.apk.bz2 │ │ ├── ca.cmetcalfe.locationshare-20210529-164219.properties │ │ ├── ca.cmetcalfe.locationshare-20210529-164219.tar.bz2 │ │ ├── dnsfilter.android-20210529-164214.properties │ │ ├── dnsfilter.android-20210529-164214.tar.bz2 │ │ ├── dnsfilter.android-6df217d8c3415e7664cb4942b2145ec1.apk.bz2 │ │ ├── org.billthefarmer.editor-20210529-164210.properties │ │ ├── org.billthefarmer.editor-20210529-164210.tar.bz2 │ │ └── org.billthefarmer.editor-71ecafd32cda1d2975f8aa3cbacdc540.apk.bz2 │ ├── backups/ │ │ ├── adb/ │ │ │ ├── all_data.ab │ │ │ ├── data0.tar.gz.0 │ │ │ ├── data1.tar.gz.0 │ │ │ ├── data2.tar.gz.0 │ │ │ ├── key_value.ab │ │ │ └── source.tar.gz.0 │ │ └── v4/ │ │ └── AppManager/ │ │ └── dnsfilter.android/ │ │ ├── 0/ │ │ │ ├── checksums.txt │ │ │ ├── data0.tar.gz.0 │ │ │ ├── data1.tar.gz.0 │ │ │ ├── meta_v2.am.json │ │ │ ├── misc.am.tsv │ │ │ └── source.tar.gz.0 │ │ └── 0_test/ │ │ ├── checksums.txt │ │ ├── data0.tar.gz.0 │ │ ├── data1.tar.gz.0 │ │ ├── meta_v2.am.json │ │ ├── misc.am.tsv │ │ └── source.tar.gz.0 │ ├── dumpsys_app_processes.txt │ ├── dumpsys_services.txt │ ├── ifw/ │ │ └── sample.package.xml │ ├── oandbackups/ │ │ ├── ademar.textlauncher/ │ │ │ ├── ademar.textlauncher.log │ │ │ └── classes.dex │ │ ├── ca.cmetcalfe.locationshare/ │ │ │ └── ca.cmetcalfe.locationshare.log │ │ ├── dnsfilter.android/ │ │ │ └── dnsfilter.android.log │ │ └── org.billthefarmer.editor/ │ │ └── org.billthefarmer.editor.log │ ├── plain.txt │ ├── prefixed/ │ │ ├── prefixed_exclude.txt │ │ └── prefixed_include.txt │ ├── proc/ │ │ ├── 11/ │ │ │ ├── attr/ │ │ │ │ ├── current │ │ │ │ ├── exec │ │ │ │ ├── fscreate │ │ │ │ ├── keycreate │ │ │ │ ├── prev │ │ │ │ └── sockcreate │ │ │ ├── cgroup │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── coredump_filter │ │ │ ├── cpuset │ │ │ ├── limits │ │ │ ├── oom_adj │ │ │ ├── oom_score │ │ │ ├── oom_score_adj │ │ │ ├── sched │ │ │ ├── sched_group_id │ │ │ ├── sched_init_task_load │ │ │ ├── sched_wake_up_idle │ │ │ ├── schedstat │ │ │ ├── stat │ │ │ ├── statm │ │ │ ├── status │ │ │ ├── timerslack_ns │ │ │ └── wchan │ │ ├── 1101/ │ │ │ ├── attr/ │ │ │ │ ├── current │ │ │ │ ├── exec │ │ │ │ ├── fscreate │ │ │ │ ├── keycreate │ │ │ │ ├── prev │ │ │ │ └── sockcreate │ │ │ ├── cgroup │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── coredump_filter │ │ │ ├── cpuset │ │ │ ├── limits │ │ │ ├── oom_adj │ │ │ ├── oom_score │ │ │ ├── oom_score_adj │ │ │ ├── sched │ │ │ ├── sched_group_id │ │ │ ├── sched_init_task_load │ │ │ ├── sched_wake_up_idle │ │ │ ├── schedstat │ │ │ ├── stat │ │ │ ├── statm │ │ │ ├── status │ │ │ ├── timerslack_ns │ │ │ └── wchan │ │ ├── 1129/ │ │ │ ├── attr/ │ │ │ │ ├── current │ │ │ │ ├── exec │ │ │ │ ├── fscreate │ │ │ │ ├── keycreate │ │ │ │ ├── prev │ │ │ │ └── sockcreate │ │ │ ├── cgroup │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── coredump_filter │ │ │ ├── cpuset │ │ │ ├── limits │ │ │ ├── oom_adj │ │ │ ├── oom_score │ │ │ ├── oom_score_adj │ │ │ ├── sched │ │ │ ├── sched_group_id │ │ │ ├── sched_init_task_load │ │ │ ├── sched_wake_up_idle │ │ │ ├── schedstat │ │ │ ├── stat │ │ │ ├── statm │ │ │ ├── status │ │ │ ├── timerslack_ns │ │ │ └── wchan │ │ ├── 11547/ │ │ │ ├── attr/ │ │ │ │ ├── current │ │ │ │ ├── exec │ │ │ │ ├── fscreate │ │ │ │ ├── keycreate │ │ │ │ ├── prev │ │ │ │ └── sockcreate │ │ │ ├── cgroup │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── coredump_filter │ │ │ ├── cpuset │ │ │ ├── limits │ │ │ ├── oom_adj │ │ │ ├── oom_score │ │ │ ├── oom_score_adj │ │ │ ├── sched │ │ │ ├── sched_group_id │ │ │ ├── sched_init_task_load │ │ │ ├── sched_wake_up_idle │ │ │ ├── schedstat │ │ │ ├── stat │ │ │ ├── statm │ │ │ ├── status │ │ │ ├── timerslack_ns │ │ │ └── wchan │ │ ├── 123/ │ │ │ ├── attr/ │ │ │ │ ├── current │ │ │ │ ├── exec │ │ │ │ ├── fscreate │ │ │ │ ├── keycreate │ │ │ │ ├── prev │ │ │ │ └── sockcreate │ │ │ ├── cgroup │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── coredump_filter │ │ │ ├── cpuset │ │ │ ├── limits │ │ │ ├── oom_adj │ │ │ ├── oom_score │ │ │ ├── oom_score_adj │ │ │ ├── sched │ │ │ ├── sched_group_id │ │ │ ├── sched_init_task_load │ │ │ ├── sched_wake_up_idle │ │ │ ├── schedstat │ │ │ ├── stat │ │ │ ├── statm │ │ │ ├── status │ │ │ ├── timerslack_ns │ │ │ └── wchan │ │ └── uptime │ ├── raw/ │ │ ├── exclude.txt │ │ └── include.txt │ ├── robolectric.properties │ └── xml/ │ ├── HMS_Core_Android_Manifest.bin.xml │ ├── HMS_Core_Android_Manifest.man.xml │ ├── settings_ssaid.xml │ ├── test_layout.bin.xml │ └── test_layout.plain.xml ├── build.gradle ├── docs/ │ ├── .gitignore │ ├── build.gradle │ ├── mdbook/ │ │ ├── .gitignore │ │ ├── book.toml │ │ └── build.py │ ├── raw/ │ │ ├── .gitignore │ │ ├── changelog_old.md │ │ ├── css/ │ │ │ └── custom.css │ │ ├── de/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── en/ │ │ │ ├── README.md │ │ │ ├── appendices/ │ │ │ │ ├── app-ops.tex │ │ │ │ ├── changelogs.tex │ │ │ │ ├── main.tex │ │ │ │ └── specifications.tex │ │ │ ├── custom.css │ │ │ ├── doctool.sh │ │ │ ├── faq/ │ │ │ │ ├── aot.tex │ │ │ │ ├── app-components.tex │ │ │ │ ├── main.tex │ │ │ │ └── misc.tex │ │ │ ├── guide/ │ │ │ │ ├── aot.tex │ │ │ │ ├── automation.tex │ │ │ │ ├── backup-restore.tex │ │ │ │ ├── main.tex │ │ │ │ ├── net-policy.tex │ │ │ │ └── wireless_debugging.tex │ │ │ ├── images/ │ │ │ │ ├── appops.drawio │ │ │ │ ├── main_page_entry_info_labeled.drawio │ │ │ │ └── main_page_entry_info_numbered.drawio │ │ │ ├── index.html │ │ │ ├── intro/ │ │ │ │ └── main.tex │ │ │ ├── keywords.tex │ │ │ ├── lua/ │ │ │ │ ├── alert_fix.lua │ │ │ │ ├── header_with_hyperlinks.lua │ │ │ │ ├── img_to_object.lua │ │ │ │ └── toc_generator.lua │ │ │ ├── main.tex │ │ │ ├── main_vanilla.tex │ │ │ ├── pages/ │ │ │ │ ├── app-details-page.tex │ │ │ │ ├── interceptor-page.tex │ │ │ │ ├── main-page.tex │ │ │ │ ├── main.tex │ │ │ │ ├── one-click-ops-page.tex │ │ │ │ ├── profile-page.tex │ │ │ │ ├── profiles-page.tex │ │ │ │ ├── scanner-page.tex │ │ │ │ ├── settings-page.tex │ │ │ │ └── shared-prefs-editor-page.tex │ │ │ ├── strings.xml │ │ │ └── titlepage.tex │ │ ├── es/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── fr/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── index.html │ │ ├── ja/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── ko/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── pt/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── pt-rBR/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── ru/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── vi/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ ├── zh-rCN/ │ │ │ ├── index.html │ │ │ └── strings.xml │ │ └── zh-rTW/ │ │ ├── index.html │ │ └── strings.xml │ └── src/ │ └── main/ │ └── AndroidManifest.xml ├── fastlane/ │ └── metadata/ │ └── android/ │ ├── en-US/ │ │ ├── changelogs/ │ │ │ ├── 437.txt │ │ │ ├── 440.txt │ │ │ ├── 441.txt │ │ │ ├── 442.txt │ │ │ ├── 443.txt │ │ │ ├── 444.txt │ │ │ └── 445.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ └── ja/ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── hiddenapi/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ ├── android/ │ │ ├── annotation/ │ │ │ ├── AppIdInt.java │ │ │ └── UserIdInt.java │ │ ├── app/ │ │ │ ├── ActivityManagerNative.java │ │ │ ├── ActivityThread.java │ │ │ ├── AppOpsManagerHidden.java │ │ │ ├── ContentProviderHolder.java │ │ │ ├── ContextImpl.java │ │ │ ├── GrantedUriPermission.java │ │ │ ├── IActivityManager.java │ │ │ ├── IApplicationThread.java │ │ │ ├── INotificationManager.java │ │ │ ├── IServiceConnection.java │ │ │ ├── IUriGrantsManager.java │ │ │ ├── ProfilerInfo.java │ │ │ ├── backup/ │ │ │ │ └── IBackupManager.java │ │ │ └── usage/ │ │ │ ├── IStorageStatsManager.java │ │ │ └── IUsageStatsManager.java │ │ ├── content/ │ │ │ ├── ComponentCallbacks2.java │ │ │ ├── Context.java │ │ │ ├── IContentProvider.java │ │ │ ├── IIntentReceiver.java │ │ │ ├── IIntentSender.java │ │ │ ├── IntentHidden.java │ │ │ ├── om/ │ │ │ │ ├── IOverlayManager.java │ │ │ │ └── OverlayInfoHidden.java │ │ │ └── pm/ │ │ │ ├── ApplicationInfoHidden.java │ │ │ ├── IOnPermissionsChangeListener.java │ │ │ ├── IPackageDataObserver.java │ │ │ ├── IPackageDeleteObserver.java │ │ │ ├── IPackageDeleteObserver2.java │ │ │ ├── IPackageInstallObserver2.java │ │ │ ├── IPackageInstaller.java │ │ │ ├── IPackageInstallerCallback.java │ │ │ ├── IPackageInstallerSession.java │ │ │ ├── IPackageManager.java │ │ │ ├── IPackageManagerN.java │ │ │ ├── IPackageMoveObserver.java │ │ │ ├── IPackageStatsObserver.java │ │ │ ├── KeySet.java │ │ │ ├── PackageCleanItem.java │ │ │ ├── PackageInfoHidden.java │ │ │ ├── PackageInstallerHidden.java │ │ │ ├── ParceledListSlice.java │ │ │ ├── SuspendDialogInfo.java │ │ │ ├── UserInfo.java │ │ │ ├── VerifierDeviceIdentity.java │ │ │ ├── permission/ │ │ │ │ └── SplitPermissionInfoParcelable.java │ │ │ └── verify/ │ │ │ └── domain/ │ │ │ └── IDomainVerificationManager.java │ │ ├── hardware/ │ │ │ └── input/ │ │ │ ├── IInputManager.java │ │ │ └── InputManagerHidden.java │ │ ├── miui/ │ │ │ └── AppOpsUtils.java │ │ ├── net/ │ │ │ ├── ConnectivityManagerHidden.java │ │ │ ├── IConnectivityManager.java │ │ │ ├── INetworkPolicyListener.java │ │ │ ├── INetworkPolicyManager.java │ │ │ ├── INetworkStatsService.java │ │ │ ├── INetworkStatsSession.java │ │ │ ├── NetworkPolicyManager.java │ │ │ ├── NetworkStats.java │ │ │ └── NetworkTemplate.java │ │ ├── os/ │ │ │ ├── IBinderHidden.java │ │ │ ├── IDeviceIdleController.java │ │ │ ├── IUserManager.java │ │ │ ├── ResultReceiver.java │ │ │ ├── SELinux.java │ │ │ ├── ServiceManager.java │ │ │ ├── ServiceSpecificException.java │ │ │ ├── ShellCallback.java │ │ │ ├── SystemProperties.java │ │ │ ├── UserHandleHidden.java │ │ │ └── storage/ │ │ │ ├── IMountService.java │ │ │ ├── IStorageManager.java │ │ │ ├── StorageManagerHidden.java │ │ │ └── StorageVolumeHidden.java │ │ ├── permission/ │ │ │ ├── IOnPermissionsChangeListener.java │ │ │ └── IPermissionManager.java │ │ ├── provider/ │ │ │ └── SettingsHidden.java │ │ ├── system/ │ │ │ ├── OsHidden.java │ │ │ └── StructPasswd.java │ │ └── util/ │ │ ├── TypedXmlPullParser.java │ │ ├── TypedXmlSerializer.java │ │ └── XmlHidden.java │ ├── com/ │ │ └── android/ │ │ ├── internal/ │ │ │ ├── app/ │ │ │ │ ├── IAppOpsActiveCallback.java │ │ │ │ ├── IAppOpsCallback.java │ │ │ │ ├── IAppOpsNotedCallback.java │ │ │ │ └── IAppOpsService.java │ │ │ ├── os/ │ │ │ │ └── PowerProfile.java │ │ │ └── telephony/ │ │ │ ├── IPhoneSubInfo.java │ │ │ └── ISub.java │ │ └── org/ │ │ └── conscrypt/ │ │ └── Conscrypt.java │ └── misc/ │ └── utils/ │ └── HiddenUtil.java ├── libcore/ │ ├── .gitignore │ ├── compat/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ ├── io/ │ │ │ │ └── github/ │ │ │ │ └── muntashirakon/ │ │ │ │ └── compat/ │ │ │ │ ├── HexDump.java │ │ │ │ ├── ObjectsCompat.java │ │ │ │ ├── io/ │ │ │ │ │ ├── FastDataInput.java │ │ │ │ │ └── FastDataOutput.java │ │ │ │ ├── os/ │ │ │ │ │ └── ParcelCompat2.java │ │ │ │ ├── system/ │ │ │ │ │ ├── OsCompat.java │ │ │ │ │ ├── StructGroup.java │ │ │ │ │ └── StructTimespec.java │ │ │ │ └── xml/ │ │ │ │ ├── BinaryXmlPullParser.java │ │ │ │ ├── BinaryXmlSerializer.java │ │ │ │ ├── FastXmlSerializer.java │ │ │ │ ├── TypedXmlPullParser.java │ │ │ │ ├── TypedXmlSerializer.java │ │ │ │ ├── Xml.java │ │ │ │ ├── XmlPullParserWrapper.java │ │ │ │ ├── XmlSerializerWrapper.java │ │ │ │ └── XmlUtils.java │ │ │ └── org/ │ │ │ └── slf4j/ │ │ │ ├── Logger.java │ │ │ ├── LoggerFactory.java │ │ │ └── LoggerImpl.java │ │ └── test/ │ │ ├── java/ │ │ │ └── io/ │ │ │ └── github/ │ │ │ └── muntashirakon/ │ │ │ └── compat/ │ │ │ └── xml/ │ │ │ └── XmlTest.java │ │ └── resources/ │ │ ├── robolectric.properties │ │ ├── settings_ssaid.abx.xml │ │ ├── settings_ssaid.plain.xml │ │ ├── urigrants.abx.xml │ │ └── urigrants.plain.xml │ ├── io/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── aidl/ │ │ │ ├── aosp/ │ │ │ │ └── android/ │ │ │ │ └── content/ │ │ │ │ └── pm/ │ │ │ │ ├── ParceledListSlice.aidl │ │ │ │ └── StringParceledListSlice.aidl │ │ │ └── io/ │ │ │ └── github/ │ │ │ └── muntashirakon/ │ │ │ └── io/ │ │ │ ├── IFileSystemService.aidl │ │ │ ├── IOResult.aidl │ │ │ └── UidGidPair.aidl │ │ └── java/ │ │ ├── androidx/ │ │ │ └── documentfile/ │ │ │ └── provider/ │ │ │ └── ExtendedRawDocumentFile.java │ │ ├── aosp/ │ │ │ └── android/ │ │ │ └── content/ │ │ │ └── pm/ │ │ │ ├── BaseParceledListSlice.java │ │ │ ├── ParcelUtils.java │ │ │ ├── ParceledListSlice.java │ │ │ └── StringParceledListSlice.java │ │ └── io/ │ │ └── github/ │ │ └── muntashirakon/ │ │ └── io/ │ │ ├── AtomicExtendedFile.java │ │ ├── CharSequenceInputStream.java │ │ ├── ExtendedFile.java │ │ ├── FileContainer.java │ │ ├── FileImpl.java │ │ ├── FileSystemManager.java │ │ ├── FileSystemService.java │ │ ├── FileUtils.java │ │ ├── IOResult.java │ │ ├── IoUtils.java │ │ ├── LocalFile.java │ │ ├── NIOFactory.java │ │ ├── OpenFile.java │ │ ├── Path.java │ │ ├── PathAttributes.java │ │ ├── PathContentInfo.java │ │ ├── PathReader.java │ │ ├── PathWriter.java │ │ ├── RemoteFile.java │ │ ├── RemoteFileChannel.java │ │ ├── SplitInputStream.java │ │ ├── SplitOutputStream.java │ │ └── UidGidPair.java │ └── ui/ │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ └── io/ │ │ └── github/ │ │ └── muntashirakon/ │ │ ├── adapters/ │ │ │ ├── AnyFilterArrayAdapter.java │ │ │ ├── NoFilterArrayAdapter.java │ │ │ └── SelectedArrayAdapter.java │ │ ├── dialog/ │ │ │ ├── AlertDialogBuilder.java │ │ │ ├── BottomSheetAlertDialogFragment.java │ │ │ ├── BottomSheetBehavior.java │ │ │ ├── BottomSheetDialog.java │ │ │ ├── CapsuleBottomSheetDialogFragment.java │ │ │ ├── DialogTitleBuilder.java │ │ │ ├── FullScreenDialogTitleBuilder.java │ │ │ ├── ScrollableDialogBuilder.java │ │ │ ├── SearchableFlagsDialogBuilder.java │ │ │ ├── SearchableItemsDialogBuilder.java │ │ │ ├── SearchableMultiChoiceDialogBuilder.java │ │ │ ├── SearchableSingleChoiceDialogBuilder.java │ │ │ ├── TextInputDialogBuilder.java │ │ │ └── TextInputDropdownDialogBuilder.java │ │ ├── lifecycle/ │ │ │ ├── SingleLiveEvent.java │ │ │ └── SoftInputLifeCycleObserver.java │ │ ├── multiselection/ │ │ │ ├── MultiSelectionActionsMenu.java │ │ │ ├── MultiSelectionActionsMenuPresenter.java │ │ │ ├── MultiSelectionActionsView.java │ │ │ └── ReflowMenuItemView.java │ │ ├── preference/ │ │ │ ├── DefaultAlertPreference.java │ │ │ ├── HyperlinkPreference.java │ │ │ ├── InfoAlertPreference.java │ │ │ ├── PrimaryButtonPreference.java │ │ │ ├── TopSwitchPreference.java │ │ │ └── WarningAlertPreference.java │ │ ├── text/ │ │ │ └── style/ │ │ │ └── ListSpan.java │ │ ├── util/ │ │ │ ├── AccessibilityUtils.java │ │ │ ├── AdapterUtils.java │ │ │ ├── LocalizedString.java │ │ │ ├── MotionUtils.java │ │ │ ├── ParcelUtils.java │ │ │ └── UiUtils.java │ │ ├── view/ │ │ │ ├── AutoCompleteTextViewCompat.java │ │ │ ├── AutoFitGridLayoutManager.java │ │ │ ├── ProgressIndicatorCompat.java │ │ │ └── TextInputLayoutCompat.java │ │ └── widget/ │ │ ├── AlwaysFocusedCheckedTextView.java │ │ ├── AppBarLayout.java │ │ ├── CheckBox.java │ │ ├── FloatingActionButtonGroup.java │ │ ├── FlowLayout.java │ │ ├── HyperlinkTextView.java │ │ ├── MaterialAlertView.java │ │ ├── MaterialAutoCompleteTextView.java │ │ ├── MaterialSpinner.java │ │ ├── MaxHeightScrollView.java │ │ ├── MultiSelectionView.java │ │ ├── NestedScrollView.java │ │ ├── NestedScrollableHost.java │ │ ├── RadioGroupGridLayout.java │ │ ├── RecyclerView.java │ │ ├── RoundedFirstAndLastChildViewGroup.java │ │ ├── SearchView.java │ │ ├── SwipeRefreshLayout.java │ │ └── TextInputTextView.java │ └── res/ │ ├── anim/ │ │ ├── bottom_sheet_slide_down.xml │ │ ├── bottom_sheet_slide_up.xml │ │ ├── fullscreen_dialog_enter.xml │ │ └── fullscreen_dialog_exit.xml │ ├── color/ │ │ ├── bottom_sheet_drag_handle_color.xml │ │ ├── bottom_sheet_drag_handle_color_activated.xml │ │ └── tab_item_background_color.xml │ ├── drawable/ │ │ ├── bottom_sheet_drag_handle.xml │ │ ├── bottom_sheet_drag_handle_activated.xml │ │ ├── ic_caution.xml │ │ ├── ic_clear.xml │ │ ├── ic_information.xml │ │ ├── ic_keyboard_backspace.xml │ │ ├── ic_more_horiz.xml │ │ ├── ic_more_vert.xml │ │ ├── ic_search.xml │ │ ├── ic_spinner_caret.xml │ │ ├── item_highlight.xml │ │ ├── item_semi_transparent.xml │ │ ├── item_transparent.xml │ │ ├── mtrl_switch_thumb_checked_medium.xml │ │ ├── mtrl_switch_thumb_checked_pressed_medium.xml │ │ ├── mtrl_switch_thumb_checked_unchecked_medium.xml │ │ ├── mtrl_switch_thumb_medium.xml │ │ ├── mtrl_switch_thumb_pressed_checked_medium.xml │ │ ├── mtrl_switch_thumb_pressed_medium.xml │ │ ├── mtrl_switch_thumb_pressed_unchecked_medium.xml │ │ ├── mtrl_switch_thumb_unchecked_checked_medium.xml │ │ ├── mtrl_switch_thumb_unchecked_medium.xml │ │ ├── mtrl_switch_thumb_unchecked_pressed_medium.xml │ │ ├── mtrl_switch_track_decoration_medium.xml │ │ ├── mtrl_switch_track_medium.xml │ │ ├── popup_menu_background.xml │ │ ├── popup_menu_item_background.xml │ │ ├── popup_menu_item_background_ripple.xml │ │ ├── spinner_rounded_border.xml │ │ └── tab_item_background_rounded.xml │ ├── drawable-v23/ │ │ └── popup_menu_background.xml │ ├── layout/ │ │ ├── auto_complete_dropdown_item.xml │ │ ├── auto_complete_dropdown_item_small.xml │ │ ├── dialog_bottom_sheet.xml │ │ ├── dialog_bottom_sheet_alert.xml │ │ ├── dialog_bottom_sheet_capsule.xml │ │ ├── dialog_scrollable_text_view.xml │ │ ├── dialog_searchable_multi_choice.xml │ │ ├── dialog_searchable_single_choice.xml │ │ ├── dialog_text_input.xml │ │ ├── dialog_text_input_dropdown.xml │ │ ├── dialog_title_toolbar.xml │ │ ├── dialog_title_with_two_icons.xml │ │ ├── item_reflow_menu.xml │ │ ├── m3_alert_select_dialog_item.xml │ │ ├── m3_preference.xml │ │ ├── m3_preference_alert.xml │ │ ├── m3_preference_button.xml │ │ ├── m3_preference_category.xml │ │ ├── m3_preference_image_frame.xml │ │ ├── m3_preference_top_switch.xml │ │ ├── m3_preference_widget_material_switch.xml │ │ └── view_selection_panel.xml │ ├── values/ │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── values-large/ │ │ └── bools.xml │ ├── values-ldrtl/ │ │ └── styles.xml │ ├── values-night/ │ │ ├── colors.xml │ │ └── styles.xml │ ├── values-v23/ │ │ └── styles.xml │ ├── values-v27/ │ │ └── styles.xml │ └── values-v29/ │ └── styles.xml ├── libopenpgp/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── aidl/ │ │ └── org/ │ │ └── openintents/ │ │ └── openpgp/ │ │ ├── IOpenPgpService.aidl │ │ └── IOpenPgpService2.aidl │ └── java/ │ └── org/ │ └── openintents/ │ └── openpgp/ │ ├── AutocryptPeerUpdate.java │ ├── OpenPgpDecryptionResult.java │ ├── OpenPgpError.java │ ├── OpenPgpMetadata.java │ ├── OpenPgpSignatureResult.java │ └── util/ │ ├── OpenPgpApi.java │ ├── OpenPgpServiceConnection.java │ ├── OpenPgpUtils.java │ └── ParcelFileDescriptorUtil.java ├── libs/ │ ├── README.md │ ├── add_lib.php │ └── libsmali.jsonl ├── libserver/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── aidl/ │ │ └── io/ │ │ └── github/ │ │ └── muntashirakon/ │ │ └── AppManager/ │ │ └── server/ │ │ └── common/ │ │ └── IRootServiceManager.aidl │ └── java/ │ └── io/ │ └── github/ │ └── muntashirakon/ │ └── AppManager/ │ └── server/ │ └── common/ │ ├── BaseCaller.java │ ├── Caller.java │ ├── CallerResult.java │ ├── ClassUtils.java │ ├── ConfigParams.java │ ├── Constants.java │ ├── DataTransmission.java │ ├── FLog.java │ ├── ParamsFixer.java │ ├── ParcelableUtil.java │ ├── ServerActions.java │ ├── ServerInfo.java │ ├── ServerUtils.java │ ├── Shell.java │ └── ShellCaller.java ├── schema/ │ ├── changlelog.dtd │ └── packages.dtd ├── scripts/ │ ├── aab_to_apks.sh │ ├── backup_github_project.sh │ ├── docs.php │ ├── fix_strings.php │ ├── keep-five.sh │ ├── make_debloat_list.php │ ├── make_docs.sh │ ├── make_suggestions.php │ ├── push_to_mirrors.sh │ ├── update_libraries.php │ └── utils.php ├── server/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── io/ │ └── github/ │ └── muntashirakon/ │ └── AppManager/ │ └── server/ │ ├── BroadcastSender.java │ ├── LifecycleAgent.java │ ├── RootServiceMain.java │ ├── Server.java │ ├── ServerHandler.java │ └── ServerRunner.java ├── settings.gradle └── versions.gradle
Showing preview only (998K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (12293 symbols across 954 files)
FILE: app/src/debug/java/io/github/muntashirakon/AppManager/debug/R.java
class R (line 5) | public final class R {
class raw (line 6) | public static final class raw {
FILE: app/src/main/cpp/AhoCorasick.h
type TrieNode (line 8) | struct TrieNode {
FILE: app/src/main/cpp/io_github_muntashirakon_AppManager_utils_CpuUtils.cpp
function JNIEXPORT (line 9) | JNIEXPORT jlong JNICALL
function JNIEXPORT (line 16) | JNIEXPORT jstring JNICALL
FILE: app/src/main/cpp/io_github_muntashirakon_algo_AhoCorasick.cpp
function JNIEXPORT (line 19) | JNIEXPORT jlong JNICALL
function JNIEXPORT (line 45) | JNIEXPORT jintArray JNICALL
function JNIEXPORT (line 67) | JNIEXPORT void JNICALL
FILE: app/src/main/cpp/io_github_muntashirakon_compat_system_OsCompat.cpp
function setgrent (line 44) | void setgrent() {
type group (line 48) | struct group
type group (line 50) | struct group
function endgrent (line 60) | void endgrent() {
function setpwent (line 65) | void setpwent() {
type passwd (line 69) | struct passwd
type passwd (line 71) | struct passwd
function endpwent (line 81) | void endpwent() {
function jclass (line 87) | static jclass findClass(JNIEnv *env, const char *name) {
function jclass (line 100) | static jclass getErrnoExceptionClass(JNIEnv *env) {
function throwException (line 108) | static void throwException(JNIEnv *env, jclass exceptionClass, jmethodID...
function throwErrnoException (line 132) | static void throwErrnoException(JNIEnv* env, const char* functionName) {
function jclass (line 146) | static jclass getStringClass(JNIEnv *env) {
function jclass (line 154) | static jclass getStructGroupClass(JNIEnv *env) {
function jclass (line 162) | static jclass getStructPasswdClass(JNIEnv *env) {
function jclass (line 170) | static jclass getStructTimespecClass(JNIEnv *env) {
function jclass (line 178) | static jclass getOsCompatClass(JNIEnv *env) {
function jobject (line 187) | static jobject newStructGroup(JNIEnv *env, const struct group *group) {
function jobject (line 229) | static jobject newStructPasswd(JNIEnv *env, const struct passwd *passwd) {
function javaStructTimespecToTimespec (line 252) | static struct timespec javaStructTimespecToTimespec(JNIEnv *env, jobject...
function JNIEXPORT (line 269) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
function JNIEXPORT (line 277) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
function JNIEXPORT (line 285) | JNIEXPORT jobject JNICALL Java_io_github_muntashirakon_compat_system_OsC...
function JNIEXPORT (line 312) | JNIEXPORT jobject JNICALL Java_io_github_muntashirakon_compat_system_OsC...
function JNIEXPORT (line 334) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
function JNIEXPORT (line 342) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
function JNIEXPORT (line 350) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
function JNIEXPORT (line 363) | JNIEXPORT void JNICALL Java_io_github_muntashirakon_compat_system_OsComp...
FILE: app/src/main/java/androidx/appcompat/app/PublicTwilightManager.java
class PublicTwilightManager (line 9) | public class PublicTwilightManager {
method isNight (line 10) | public static boolean isNight(@NonNull Context context) {
FILE: app/src/main/java/androidx/documentfile/provider/DocumentFileUtils.java
class DocumentFileUtils (line 21) | public final class DocumentFileUtils {
method newTreeDocumentFile (line 22) | @NonNull
method isSingleDocumentFile (line 27) | public static boolean isSingleDocumentFile(@Nullable DocumentFile docu...
method isTreeDocumentFile (line 31) | public static boolean isTreeDocumentFile(@Nullable DocumentFile docume...
method resolveAltNameForSaf (line 35) | @NonNull
method resolveAltNameForTreeUri (line 50) | public static String resolveAltNameForTreeUri(@NonNull Uri treeUri) {
method getUriSource (line 67) | @Nullable
FILE: app/src/main/java/androidx/documentfile/provider/MediaDocumentFile.java
class MediaDocumentFile (line 21) | public class MediaDocumentFile extends SingleDocumentFile {
method MediaDocumentFile (line 25) | public MediaDocumentFile(@Nullable DocumentFile parent, Context contex...
method isVirtual (line 31) | @Override
method canWrite (line 36) | @Override
method exists (line 54) | @Override
FILE: app/src/main/java/androidx/documentfile/provider/VirtualDocumentFile.java
class VirtualDocumentFile (line 26) | public class VirtualDocumentFile extends DocumentFile {
method parseUri (line 27) | @Nullable
method VirtualDocumentFile (line 41) | public VirtualDocumentFile(@Nullable DocumentFile parent, @NonNull Vir...
method VirtualDocumentFile (line 47) | protected VirtualDocumentFile(@NonNull VirtualDocumentFile parent, @No...
method createFile (line 56) | @Nullable
method createDirectory (line 72) | @Nullable
method getFullPath (line 83) | @NonNull
method getFileSystem (line 88) | @NonNull
method getName (line 93) | @NonNull
method getType (line 102) | @Nullable
method isVirtual (line 117) | @Override
method isFile (line 122) | @Override
method isDirectory (line 127) | @Override
method exists (line 132) | @Override
method canRead (line 137) | @Override
method canWrite (line 142) | @Override
method getMode (line 147) | public int getMode() {
method setMode (line 151) | public boolean setMode(int mode) {
method getUidGid (line 156) | @Nullable
method setUidGid (line 161) | public boolean setUidGid(@NonNull UidGidPair uidGidPair) {
method delete (line 166) | @Override
method getUri (line 171) | @NonNull
method openInputStream (line 177) | @NonNull
method openOutputStream (line 182) | @NonNull
method openChannel (line 187) | public FileChannel openChannel(int mode) throws IOException {
method openFileDescriptor (line 191) | @NonNull
method lastModified (line 196) | @Override
method setLastModified (line 201) | public boolean setLastModified(long millis) {
method lastAccess (line 205) | public long lastAccess() {
method creationTime (line 209) | public long creationTime() {
method length (line 213) | @Override
method findFile (line 218) | @Nullable
method listFiles (line 232) | @NonNull
method renameTo (line 244) | @Override
FILE: app/src/main/java/aosp/libcore/util/EmptyArray.java
class EmptyArray (line 6) | public final class EmptyArray {
method EmptyArray (line 7) | private EmptyArray() {}
FILE: app/src/main/java/aosp/libcore/util/HexEncoding.java
class HexEncoding (line 9) | public class HexEncoding {
method HexEncoding (line 20) | private HexEncoding() {}
method encodeToString (line 25) | public static String encodeToString(byte b, boolean upperCase) {
method encode (line 36) | public static char[] encode(byte[] data) {
method encode (line 43) | public static char[] encode(byte[] data, boolean upperCase) {
method encode (line 50) | public static char[] encode(byte[] data, int offset, int len) {
method encode (line 57) | private static char[] encode(byte[] data, int offset, int len, boolean...
method encodeToString (line 73) | public static String encodeToString(byte[] data) {
method encodeToString (line 80) | public static String encodeToString(byte[] data, boolean upperCase) {
method decode (line 90) | public static byte[] decode(String encoded) throws IllegalArgumentExce...
method decode (line 101) | public static byte[] decode(String encoded, boolean allowSingleChar)
method decode (line 112) | public static byte[] decode(char[] encoded) throws IllegalArgumentExce...
method decode (line 123) | public static byte[] decode(char[] encoded, boolean allowSingleChar)
method toDigit (line 151) | private static int toDigit(char[] str, int offset) throws IllegalArgum...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/AppManager.java
class AppManager (line 24) | public class AppManager extends Application {
method onCreate (line 36) | @Keep
method attachBaseContext (line 47) | @Keep
method onTrimMemory (line 56) | @Override
method onLowMemory (line 64) | @Override
method onTerminate (line 70) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/BaseActivity.java
class BaseActivity (line 39) | public abstract class BaseActivity extends PerProcessActivity {
method onCreate (line 73) | @Override
method onAuthenticated (line 96) | protected abstract void onAuthenticated(@Nullable Bundle savedInstance...
method onStart (line 98) | @CallSuper
method onStop (line 111) | @CallSuper
method doAuthenticate (line 120) | private void doAuthenticate(@Nullable Bundle savedInstanceState) {
method ensureSecurityAndModeOfOp (line 198) | private void ensureSecurityAndModeOfOp() {
method handleMigrationAndModeOfOp (line 230) | private void handleMigrationAndModeOfOp() {
method initPermissionChecks (line 239) | private boolean initPermissionChecks(boolean checkAll) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/DummyActivity.java
class DummyActivity (line 8) | public class DummyActivity extends Activity {
method onCreate (line 9) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/PerProcessActivity.java
class PerProcessActivity (line 18) | public class PerProcessActivity extends AppCompatActivity {
method onCreate (line 19) | @CallSuper
method getTransparentBackground (line 26) | public boolean getTransparentBackground() {
method onCreateOptionsMenu (line 30) | @CallSuper
method clearBackStack (line 40) | protected void clearBackStack() {
method removeCurrentFragment (line 48) | protected void removeCurrentFragment(@IdRes int id) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/StaticDataset.java
class StaticDataset (line 34) | public class StaticDataset {
method getTrackerCodeSignatures (line 88) | public static String[] getTrackerCodeSignatures() {
method getSearchableTrackerSignatures (line 92) | public static AhoCorasick getSearchableTrackerSignatures() {
method cleanup (line 99) | public static void cleanup() {
method getTrackerNames (line 106) | public static String[] getTrackerNames() {
method getDebloatObjects (line 113) | @WorkerThread
method getDebloatObjectsWithInstalledInfo (line 121) | @WorkerThread
method loadDebloatObjects (line 133) | @NonNull
method loadSuggestions (line 153) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/accessibility/AccessibilityMultiplexer.java
class AccessibilityMultiplexer (line 13) | public class AccessibilityMultiplexer {
method getInstance (line 37) | public static AccessibilityMultiplexer getInstance() {
method isInstallEnabled (line 45) | public boolean isInstallEnabled() {
method isUninstallEnabled (line 49) | public boolean isUninstallEnabled() {
method isClearCacheEnabled (line 53) | public boolean isClearCacheEnabled() {
method isClearDataEnabled (line 57) | public boolean isClearDataEnabled() {
method isForceStopEnabled (line 61) | public boolean isForceStopEnabled() {
method isNavigateToStorageAndCache (line 65) | public boolean isNavigateToStorageAndCache() {
method isLeadingActivityTracker (line 68) | public boolean isLeadingActivityTracker() {
method clearFlags (line 72) | public void clearFlags() {
method enableInstall (line 76) | public void enableInstall(boolean enable) {
method enableUninstall (line 80) | public void enableUninstall(boolean enable) {
method enableClearCache (line 84) | public void enableClearCache(boolean enable) {
method enableClearData (line 88) | public void enableClearData(boolean enable) {
method enableForceStop (line 92) | public void enableForceStop(boolean enable) {
method enableNavigateToStorageAndCache (line 96) | public void enableNavigateToStorageAndCache(boolean enable) {
method enableLeadingActivityTracker (line 100) | public void enableLeadingActivityTracker(boolean enable) {
method getTitleText (line 104) | @Nullable
method setTitleText (line 109) | public void setTitleText(String title) {
method addOrRemoveFlag (line 113) | private void addOrRemoveFlag(@Flags int flag, boolean add) {
method addFlag (line 118) | private void addFlag(@Flags int flag) {
method removeFlag (line 122) | private void removeFlag(@Flags int flag) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/accessibility/BaseAccessibilityService.java
class BaseAccessibilityService (line 21) | public abstract class BaseAccessibilityService extends AccessibilityServ...
method init (line 24) | public void init(Context context) {
method isAccessibilityEnabled (line 31) | public static boolean isAccessibilityEnabled(@NonNull Context context) {
method openAccessibilitySettings (line 45) | public void openAccessibilitySettings() {
method performViewClick (line 56) | public void performViewClick(@Nullable AccessibilityNodeInfo nodeInfo) {
method performBackClick (line 72) | public void performBackClick() {
method performScrollBackward (line 80) | public void performScrollBackward() {
method performScrollForward (line 88) | public void performScrollForward() {
method findViewByText (line 99) | public AccessibilityNodeInfo findViewByText(String text) {
method findViewByText (line 110) | @Nullable
method findViewById (line 134) | @Nullable
method clickTextViewByText (line 149) | public void clickTextViewByText(String text) {
method clickTextViewByID (line 164) | public void clickTextViewByID(String id) {
method inputText (line 185) | public void inputText(AccessibilityNodeInfo nodeInfo, String text) {
method findViewByText (line 191) | @Nullable
method findViewByTextRecursive (line 207) | @Nullable
method findViewByClassName (line 226) | @Nullable
method waitUntilEnabled (line 240) | protected static void waitUntilEnabled(@NonNull AccessibilityNodeInfo ...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/accessibility/NoRootAccessibilityService.java
class NoRootAccessibilityService (line 21) | public class NoRootAccessibilityService extends BaseAccessibilityService {
method onCreate (line 31) | @Override
method onAccessibilityEvent (line 37) | @Override
method onInterrupt (line 110) | @Override
method onUnbind (line 114) | @Override
method automateInstallationUninstallation (line 123) | private void automateInstallationUninstallation(@NonNull Accessibility...
method navigateToStorageAndCache (line 137) | private boolean navigateToStorageAndCache(AccessibilityEvent event) {
method getString (line 167) | private String getString(@NonNull AccessibilityEvent event, @NonNull S...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/accessibility/activity/LeadingActivityTrackerActivity.java
class LeadingActivityTrackerActivity (line 25) | public class LeadingActivityTrackerActivity extends BaseActivity {
method onAuthenticated (line 37) | @Override
method getTransparentBackground (line 42) | @Override
method init (line 47) | private void init() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/accessibility/activity/TrackerWindow.java
class TrackerWindow (line 47) | public class TrackerWindow implements View.OnTouchListener {
method TrackerWindow (line 68) | @SuppressLint("ClickableViewAccessibility")
method onTouch (line 150) | @SuppressLint("ClickableViewAccessibility")
method showOrUpdate (line 181) | public void showOrUpdate(AccessibilityEvent event) {
method dismiss (line 216) | public void dismiss() {
method iconify (line 228) | private void iconify() {
method expand (line 243) | private void expand() {
method updateLayout (line 258) | private void updateLayout() {
method copyText (line 263) | private void copyText(CharSequence label, CharSequence content) {
method getActivityName (line 267) | @Nullable
method getClassHierarchy (line 302) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbConnectionManager.java
class AdbConnectionManager (line 22) | public class AdbConnectionManager extends AbsAdbConnectionManager {
method getInstance (line 29) | public static AdbConnectionManager getInstance() throws Exception {
method AdbConnectionManager (line 40) | public AdbConnectionManager() throws Exception {
method getPairingObserver (line 52) | public LiveData<Exception> getPairingObserver() {
method pairLiveData (line 56) | @WorkerThread
method getPrivateKey (line 69) | @NonNull
method getCertificate (line 75) | @NonNull
method getDeviceName (line 81) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbPairingService.java
class AdbPairingService (line 44) | @RequiresApi(Build.VERSION_CODES.R)
method onCreate (line 63) | @Override
method onStartCommand (line 83) | @Override
method onBind (line 112) | @Nullable
method onDestroy (line 118) | @Override
method startSearching (line 135) | @MainThread
method inputPairingCode (line 158) | @MainThread
method startPairing (line 178) | @MainThread
method stopSearching (line 212) | @MainThread
method getStopIntent (line 222) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbUtils.java
class AdbUtils (line 32) | public class AdbUtils {
method getLatestAdbDaemon (line 33) | @WorkerThread
method enableWirelessDebugging (line 84) | @RequiresApi(Build.VERSION_CODES.R)
method isAdbdRunning (line 121) | public static boolean isAdbdRunning() {
method getAdbPortOrDefault (line 126) | public static int getAdbPortOrDefault() {
method startAdb (line 130) | public static boolean startAdb(int port) {
method stopAdb (line 135) | public static boolean stopAdb() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkFile.java
class ApkFile (line 78) | public final class ApkFile implements AutoCloseable {
method getInstance (line 95) | @AnyThread
method createInstance (line 111) | @AnyThread
method createInstance (line 121) | @AnyThread
method getUniqueKey (line 131) | @GuardedBy("sApkFiles")
method ApkFile (line 199) | private ApkFile(@NonNull Uri apkUri, @Nullable String mimeType, int sp...
method ApkFile (line 360) | private ApkFile(@NonNull ApplicationInfo info, int sparseArrayKey) thr...
method getBaseEntry (line 423) | public Entry getBaseEntry() {
method getEntries (line 427) | @NonNull
method getIdsigFile (line 432) | @Nullable
method getApksMetadata (line 440) | @Nullable
method getPackageName (line 445) | @NonNull
method isSplit (line 450) | public boolean isSplit() {
method hasObb (line 454) | public boolean hasObb() {
method extractObb (line 458) | @WorkerThread
method isClosed (line 472) | public boolean isClosed() {
method close (line 476) | @Override
method finalize (line 502) | @Override
class Entry (line 509) | public class Entry implements AutoCloseable, LocalizedString {
method Entry (line 556) | Entry(@NonNull File source, @NonNull ByteBuffer manifest, @Nullable ...
method Entry (line 561) | Entry(@NonNull String name,
method Entry (line 570) | Entry(@NonNull String name,
method Entry (line 579) | private Entry(@NonNull String id,
method getFileName (line 665) | @NonNull
method getFileSize (line 676) | public long getFileSize() {
method getFileSize (line 686) | @WorkerThread
method getFile (line 695) | @WorkerThread
method getInputStream (line 700) | @WorkerThread
method getSignedFile (line 710) | private File getSignedFile() throws IOException {
method getSignedInputStream (line 739) | private InputStream getSignedInputStream() throws IOException {
method getApkSource (line 748) | @Nullable
method close (line 756) | @Override
method getRealInputStream (line 773) | @NonNull
method getRealCachedFile (line 786) | @WorkerThread
method isRequired (line 805) | public boolean isRequired() {
method isIsolated (line 812) | public boolean isIsolated() {
method getAbi (line 824) | @NonNull
method getDensity (line 840) | public int getDensity() {
method getLocale (line 853) | @NonNull
method getFeature (line 861) | @Nullable
method isForFeature (line 869) | public boolean isForFeature() {
method supported (line 876) | public boolean supported() {
method toLocalizedString (line 885) | @Override
method toShortLocalizedString (line 908) | public CharSequence toShortLocalizedString(Context context) {
method equals (line 944) | @Override
method hashCode (line 953) | @Override
class ApkFileException (line 959) | public static class ApkFileException extends Throwable {
method ApkFileException (line 960) | public ApkFileException(@Nullable String message) {
method ApkFileException (line 964) | public ApkFileException(@Nullable String message, Throwable throwabl...
method ApkFileException (line 968) | public ApkFileException(Throwable throwable) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkSource.java
class ApkSource (line 19) | public abstract class ApkSource implements Parcelable, IJsonSerializer {
method getApkSource (line 20) | @NonNull
method getCachedApkSource (line 25) | @NonNull
method getApkSource (line 30) | @NonNull
method resolve (line 35) | @AnyThread
method toCachedSource (line 39) | @AnyThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkUtils.java
class ApkUtils (line 65) | public final class ApkUtils {
method getSharableApkFile (line 74) | @WorkerThread
method backupApk (line 101) | @WorkerThread
method getFormattedApkFilename (line 126) | @NonNull
method isSplitApk (line 143) | public static boolean isSplitApk(@NonNull ApplicationInfo info) {
method getManifestFromApk (line 147) | @NonNull
method getManifestFromApk (line 177) | @NonNull
method getManifestAttributes (line 212) | @NonNull
method hasObbFiles (line 270) | public static boolean hasObbFiles(@NonNull String packageName, @UserId...
method getObbDir (line 279) | @NonNull
method getOrCreateObbDir (line 289) | @NonNull
method getWritableExternalDirectory (line 299) | @NonNull
method getDensityFromName (line 317) | public static int getDensityFromName(@Nullable String densityName) {
method getAndroidManifestFromApk (line 325) | @NonNull
method findCdRecord (line 337) | @Nullable
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/ApplicationInfoApkSource.java
class ApplicationInfoApkSource (line 23) | public class ApplicationInfoApkSource extends ApkSource {
method ApplicationInfoApkSource (line 31) | ApplicationInfoApkSource(@NonNull ApplicationInfo applicationInfo) {
method resolve (line 35) | @NonNull
method toCachedSource (line 47) | @NonNull
method ApplicationInfoApkSource (line 54) | protected ApplicationInfoApkSource(@NonNull Parcel in) {
method describeContents (line 60) | @Override
method writeToParcel (line 65) | @Override
method ApplicationInfoApkSource (line 71) | protected ApplicationInfoApkSource(@NonNull JSONObject jsonObject) thr...
method serializeToJson (line 80) | @NonNull
method createFromParcel (line 93) | @Override
method newArray (line 98) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/CachedApkSource.java
class CachedApkSource (line 27) | public class CachedApkSource extends ApkSource {
method CachedApkSource (line 39) | CachedApkSource(@NonNull Uri uri, @Nullable String mimeType) {
method resolve (line 44) | @NonNull
method toCachedSource (line 72) | @NonNull
method cleanup (line 82) | public void cleanup() {
method CachedApkSource (line 87) | protected CachedApkSource(@NonNull Parcel in) {
method describeContents (line 97) | @Override
method writeToParcel (line 102) | @Override
method CachedApkSource (line 111) | protected CachedApkSource(@NonNull JSONObject jsonObject) throws JSONE...
method serializeToJson (line 119) | @NonNull
method createFromParcel (line 134) | @Override
method newArray (line 139) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/UriApkSource.java
class UriApkSource (line 19) | public class UriApkSource extends ApkSource {
method UriApkSource (line 29) | public UriApkSource(@NonNull Uri uri, @Nullable String mimeType) {
method resolve (line 34) | @NonNull
method toCachedSource (line 46) | @NonNull
method UriApkSource (line 52) | protected UriApkSource(@NonNull Parcel in) {
method describeContents (line 58) | @Override
method writeToParcel (line 63) | @Override
method UriApkSource (line 70) | protected UriApkSource(@NonNull JSONObject jsonObject) throws JSONExce...
method serializeToJson (line 76) | @NonNull
method createFromParcel (line 90) | @Override
method newArray (line 95) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreeze.java
class FreezeUnfreeze (line 31) | public final class FreezeUnfreeze {
method getShortcutIntent (line 52) | @NonNull
method getShortcutIntent (line 62) | @NonNull
method getShortcutInfo (line 72) | @Nullable
method getFreezeDialog (line 109) | @NonNull
method launchApp (line 124) | static void launchApp(@NonNull FragmentActivity activity, @NonNull Fre...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeActivity.java
class FreezeUnfreezeActivity (line 45) | public class FreezeUnfreezeActivity extends BaseActivity {
method onAuthenticated (line 48) | @Override
method getTransparentBackground (line 97) | @Override
method onNewIntent (line 102) | @Override
method hideNotification (line 117) | private void hideNotification(@Nullable FreezeUnfreezeShortcutInfo sho...
class FreezeUnfreezeViewModel (line 123) | public static class FreezeUnfreezeViewModel extends AndroidViewModel {
method FreezeUnfreezeViewModel (line 128) | public FreezeUnfreezeViewModel(@NonNull Application application) {
method addToPendingShortcuts (line 132) | public void addToPendingShortcuts(@NonNull FreezeUnfreezeShortcutInf...
method checkNextFrozen (line 138) | public void checkNextFrozen() {
method freezeFinal (line 177) | public void freezeFinal(FreezeUnfreezeShortcutInfo shortcutInfo) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeService.java
class FreezeUnfreezeService (line 53) | public class FreezeUnfreezeService extends Service {
method onReceive (line 64) | @Override
method onCreate (line 87) | @Override
method onStartCommand (line 93) | @Override
method onTaskRemoved (line 131) | @Override
method onDestroy (line 139) | @Override
method onBind (line 150) | @Nullable
method onHandleIntent (line 156) | private void onHandleIntent(@Nullable Intent intent) {
method freezeAllPackages (line 165) | @WorkerThread
method updateShortcuts (line 193) | private void updateShortcuts(@NonNull FreezeUnfreezeShortcutInfo short...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeShortcutInfo.java
class FreezeUnfreezeShortcutInfo (line 16) | public class FreezeUnfreezeShortcutInfo extends ShortcutInfo {
method FreezeUnfreezeShortcutInfo (line 26) | public FreezeUnfreezeShortcutInfo(@NonNull String packageName, int use...
method FreezeUnfreezeShortcutInfo (line 33) | protected FreezeUnfreezeShortcutInfo(Parcel in) {
method getPrivateFlags (line 41) | public int getPrivateFlags() {
method setPrivateFlags (line 45) | public void setPrivateFlags(int privateFlags) {
method addPrivateFlags (line 49) | public void addPrivateFlags(int privateFlags) {
method removePrivateFlags (line 53) | public void removePrivateFlags(int privateFlags) {
method writeToParcel (line 57) | @Override
method hashCode (line 66) | @Override
method toShortcutIntent (line 71) | @Override
method createFromParcel (line 77) | @Override
method newArray (line 82) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptDialog.java
class DexOptDialog (line 34) | public class DexOptDialog extends DialogFragment {
method getInstance (line 39) | @NonNull
method onCreateDialog (line 72) | @NonNull
method launchOp (line 136) | private void launchOp() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptOptions.java
class DexOptOptions (line 20) | public class DexOptOptions implements Parcelable, IJsonSerializer {
method getDefault (line 21) | @NonNull
method DexOptOptions (line 41) | private DexOptOptions() {
method DexOptOptions (line 44) | protected DexOptOptions(@NonNull Parcel in) {
method writeToParcel (line 55) | @Override
method DexOptOptions (line 67) | protected DexOptOptions(@NonNull JSONObject jsonObject) throws JSONExc...
method serializeToJson (line 80) | @NonNull
method describeContents (line 95) | @Override
method createFromParcel (line 101) | @NonNull
method newArray (line 107) | @NonNull
method getDefaultCompilerFilterForInstallation (line 114) | @NonNull
method getDefaultCompilerFilter (line 123) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptimizer.java
class DexOptimizer (line 17) | @RequiresApi(Build.VERSION_CODES.N)
method DexOptimizer (line 26) | public DexOptimizer(@NonNull IPackageManager pm, @NonNull String packa...
method getLastError (line 31) | @Nullable
method performDexOptMode (line 40) | @SuppressWarnings("deprecation")
method clearApplicationProfileData (line 56) | public boolean clearApplicationProfileData() {
method compileLayouts (line 67) | @SuppressWarnings("deprecation")
method forceDexOpt (line 82) | public boolean forceDexOpt() {
method forceDexOptUnprivileged (line 115) | private boolean forceDexOptUnprivileged() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/ApkQueueItem.java
class ApkQueueItem (line 34) | public class ApkQueueItem implements Parcelable, IJsonSerializer {
method fromIntent (line 35) | @NonNull
method fromApkSource (line 64) | @NonNull
method ApkQueueItem (line 85) | private ApkQueueItem(@NonNull String packageName, boolean installExist...
method ApkQueueItem (line 91) | private ApkQueueItem(@NonNull ApkSource apkSource) {
method ApkQueueItem (line 96) | protected ApkQueueItem(@NonNull Parcel in) {
method getPackageName (line 108) | @Nullable
method setPackageName (line 113) | public void setPackageName(@Nullable String packageName) {
method isInstallExisting (line 117) | public boolean isInstallExisting() {
method getApkSource (line 121) | @Nullable
method setApkSource (line 126) | public void setApkSource(@Nullable ApkSource apkSource) {
method getInstallerOptions (line 130) | @Nullable
method setInstallerOptions (line 135) | public void setInstallerOptions(@Nullable InstallerOptions installerOp...
method setSelectedSplits (line 149) | public void setSelectedSplits(@NonNull ArrayList<String> selectedSplit...
method getSelectedSplits (line 153) | @Nullable
method getAppLabel (line 158) | @Nullable
method setAppLabel (line 163) | public void setAppLabel(@Nullable String appLabel) {
method describeContents (line 167) | @Override
method writeToParcel (line 172) | @Override
method ApkQueueItem (line 184) | protected ApkQueueItem(@NonNull JSONObject jsonObject) throws JSONExce...
method serializeToJson (line 198) | @NonNull
method createFromParcel (line 216) | @Override
method newArray (line 222) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerDialogFragment.java
class InstallerDialogFragment (line 21) | public class InstallerDialogFragment extends DialogFragment {
type FragmentStartedCallback (line 24) | public interface FragmentStartedCallback {
method onStart (line 25) | void onStart(@NonNull InstallerDialogFragment fragment, @NonNull Ale...
method setFragmentStartedCallback (line 32) | public void setFragmentStartedCallback(FragmentStartedCallback fragmen...
method onCreateDialog (line 36) | @NonNull
method onCreateView (line 52) | @Nullable
method onStart (line 58) | @Override
method getDialogView (line 66) | public View getDialogView() {
method getTitleBuilder (line 70) | public DialogTitleBuilder getTitleBuilder() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerDialogHelper.java
class InstallerDialogHelper (line 24) | public final class InstallerDialogHelper {
type OnClickButtonsListener (line 25) | public interface OnClickButtonsListener {
method triggerInstall (line 26) | void triggerInstall();
method triggerCancel (line 28) | void triggerCancel();
method InstallerDialogHelper (line 43) | public InstallerDialogHelper(@NonNull InstallerDialogFragment fragment...
method initProgress (line 57) | public void initProgress(View.OnClickListener cancelListener) {
method showParseFailedDialog (line 80) | public void showParseFailedDialog(View.OnClickListener closeListener) {
method onParseSuccess (line 99) | public void onParseSuccess(CharSequence title, CharSequence subtitle, ...
method showWhatsNewDialog (line 110) | public void showWhatsNewDialog(@StringRes int installButtonRes, Fragme...
method showInstallConfirmationDialog (line 130) | public void showInstallConfirmationDialog(@StringRes int installButton...
method showApkChooserDialog (line 150) | public void showApkChooserDialog(@StringRes int installButtonRes, Frag...
method showDowngradeReinstallWarning (line 170) | public void showDowngradeReinstallWarning(CharSequence msg,
method showSignatureMismatchReinstallWarning (line 190) | public void showSignatureMismatchReinstallWarning(CharSequence msg,
method showInstallProgressDialog (line 211) | public void showInstallProgressDialog(@Nullable View.OnClickListener b...
method showInstallFinishedDialog (line 235) | public void showInstallFinishedDialog(CharSequence msg, @StringRes int...
method dismiss (line 260) | public void dismiss() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerOptions.java
class InstallerOptions (line 27) | public class InstallerOptions implements Parcelable, IJsonSerializer {
method getDefault (line 28) | @NonNull
method InstallerOptions (line 51) | private InstallerOptions() {
method InstallerOptions (line 73) | protected InstallerOptions(@NonNull Parcel in) {
method copy (line 89) | public void copy(@NonNull InstallerOptions options) {
method writeToParcel (line 105) | @Override
method InstallerOptions (line 122) | protected InstallerOptions(@NonNull JSONObject jsonObject) throws JSON...
method serializeToJson (line 139) | @NonNull
method describeContents (line 161) | @Override
method createFromParcel (line 167) | @Override
method newArray (line 172) | @Override
method getUserId (line 179) | @UserIdInt
method setUserId (line 184) | public void setUserId(@UserIdInt int userId) {
method getInstallLocation (line 188) | public int getInstallLocation() {
method setInstallLocation (line 192) | public void setInstallLocation(int installLocation) {
method getInstallerName (line 196) | @NonNull
method setInstallerName (line 201) | public void setInstallerName(@Nullable String installerName) {
method getOriginatingPackage (line 205) | @Nullable
method setOriginatingPackage (line 210) | public void setOriginatingPackage(@Nullable String originatingPackage) {
method getOriginatingUri (line 214) | @Nullable
method setOriginatingUri (line 219) | public void setOriginatingUri(@Nullable Uri originatingUri) {
method isSetOriginatingPackage (line 223) | public boolean isSetOriginatingPackage() {
method setSetOriginatingPackage (line 227) | public void setSetOriginatingPackage(boolean setOriginatingPackage) {
method getPackageSource (line 231) | public int getPackageSource() {
method setPackageSource (line 235) | public void setPackageSource(int packageSource) {
method getInstallScenario (line 239) | public int getInstallScenario() {
method setInstallScenario (line 243) | public void setInstallScenario(int installScenario) {
method requestUpdateOwnership (line 247) | public boolean requestUpdateOwnership() {
method requestUpdateOwnership (line 251) | public void requestUpdateOwnership(boolean update) {
method isDisableApkVerification (line 255) | public boolean isDisableApkVerification() {
method setDisableApkVerification (line 259) | public void setDisableApkVerification(boolean disableApkVerification) {
method isSignApkFiles (line 263) | public boolean isSignApkFiles() {
method setSignApkFiles (line 267) | public void setSignApkFiles(boolean signApkFiles) {
method isForceDexOpt (line 271) | public boolean isForceDexOpt() {
method setForceDexOpt (line 275) | public void setForceDexOpt(boolean forceDexOpt) {
method isBlockTrackers (line 279) | public boolean isBlockTrackers() {
method setBlockTrackers (line 283) | public void setBlockTrackers(boolean blockTrackers) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerOptionsFragment.java
class InstallerOptionsFragment (line 68) | public class InstallerOptionsFragment extends DialogFragment {
type OnClickListener (line 75) | public interface OnClickListener {
method onClick (line 76) | void onClick(DialogInterface dialog, int which, @Nullable InstallerO...
method getInstance (line 79) | @NonNull
method setOnClickListener (line 111) | public void setOnClickListener(@Nullable OnClickListener clickListener) {
method onCreate (line 115) | @Override
method onCreateDialog (line 121) | @NonNull
method onCreateView (line 181) | @Nullable
method onViewCreated (line 187) | @Override
method getSelectedUserId (line 193) | private int getSelectedUserId(boolean canInstallForOtherUsers) {
method initUserSpinner (line 197) | private void initUserSpinner(boolean canInstallForOtherUsers) {
method initInstallLocationSpinner (line 228) | private void initInstallLocationSpinner() {
method initPackageSourceSpinner (line 246) | private void initPackageSourceSpinner() {
method initInstallerAppSpinner (line 264) | private void initInstallerAppSpinner() {
method displayInstallerAppSelectionDialog (line 296) | public void displayInstallerAppSelectionDialog(@NonNull List<Pair<Stri...
class InstallerOptionsViewModel (line 321) | public static class InstallerOptionsViewModel extends AndroidViewModel {
method InstallerOptionsViewModel (line 324) | public InstallerOptionsViewModel(@NonNull Application application) {
method getPackageNameLabelPairLiveData (line 328) | public LiveData<List<Pair<String, CharSequence>>> getPackageNameLabe...
method loadPackageNameLabelPair (line 332) | public void loadPackageNameLabelPair() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerActivity.java
class PackageInstallerActivity (line 92) | public class PackageInstallerActivity extends BaseActivity implements In...
method getLaunchableInstance (line 95) | @NonNull
method getLaunchableInstance (line 102) | @NonNull
method getLaunchableInstance (line 109) | @NonNull
method onServiceConnected (line 169) | @Override
method onServiceDisconnected (line 174) | @Override
method getTransparentBackground (line 180) | @Override
method onAuthenticated (line 185) | @Override
method onDestroy (line 241) | @Override
method init (line 254) | private void init(@NonNull InstallerDialogFragment fragment, @NonNull ...
method displayChangesOrInstallationPrompt (line 265) | @UiThread
method displayInstallationPrompt (line 311) | private void displayInstallationPrompt(int actionRes, boolean splitOnl...
method displayInstallerOptions (line 325) | private void displayInstallerOptions(InstallerOptionsFragment.OnClickL...
method onSaveInstanceState (line 332) | @Override
method install (line 338) | @UiThread
method launchInstallerService (line 348) | @UiThread
method onNewIntent (line 378) | @Override
method triggerInstall (line 409) | @UiThread
method triggerCancel (line 465) | @Override
method reinstall (line 474) | private void reinstall() {
method goToNext (line 484) | private void goToNext() {
method hasNext (line 502) | private boolean hasNext() {
method getVersionInfoWithTrackers (line 508) | @NonNull
method showInstallationFinishedDialog (line 521) | public void showInstallationFinishedDialog(String packageName, int res...
method showInstallationFinishedDialog (line 527) | public void showInstallationFinishedDialog(String packageName, CharSeq...
method getStringFromStatus (line 554) | @NonNull
method setInstallFinishedListener (line 592) | public void setInstallFinishedListener() {
method unsetInstallFinishedListener (line 601) | public void unsetInstallFinishedListener() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerBroadcastReceiver.java
class PackageInstallerBroadcastReceiver (line 23) | class PackageInstallerBroadcastReceiver extends BroadcastReceiver {
method setPackageName (line 31) | public void setPackageName(String packageName) {
method setAppLabel (line 35) | public void setAppLabel(CharSequence appLabel) {
method onReceive (line 39) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerCompat.java
class PackageInstallerCompat (line 83) | @SuppressLint("ShiftFlags")
type OnInstallListener (line 479) | public interface OnInstallListener {
method onStartInstall (line 480) | @WorkerThread
method onAnotherAttemptInMiui (line 492) | @WorkerThread
method onSecondAttemptInHyperOsWithoutInstaller (line 506) | @WorkerThread
method onFinishedInstall (line 511) | @WorkerThread
method getNewInstance (line 516) | @NonNull
method onReceive (line 538) | @Override
method PackageInstallerCompat (line 588) | private PackageInstallerCompat() {
method setOnInstallListener (line 594) | public void setOnInstallListener(@Nullable OnInstallListener onInstall...
method setAppLabel (line 598) | public void setAppLabel(@Nullable CharSequence appLabel) {
method getAllRequestedUsers (line 602) | @NonNull
method install (line 614) | public boolean install(@NonNull ApkFile apkFile, @NonNull List<String>...
method install (line 696) | public boolean install(@NonNull Path[] apkFiles, @NonNull String packa...
method install (line 700) | public boolean install(@NonNull Path[] apkFiles, @NonNull String packa...
method commit (line 760) | private boolean commit(int userId) {
method openSession (line 817) | @SuppressWarnings("BooleanMethodIsAlwaysInverted")
method restoreVerifySettings (line 920) | private void restoreVerifySettings() {
method getInstallFlags (line 930) | @InstallFlags
method installExisting (line 948) | public boolean installExisting(@NonNull String packageName, @UserIdInt...
method copyObb (line 1030) | @WorkerThread
method cleanOldSessions (line 1059) | private void cleanOldSessions() {
method abandon (line 1080) | private boolean abandon() {
method callFinish (line 1091) | private void callFinish(int result) {
method installCompleted (line 1095) | private void installCompleted(int sessionId,
method uninstall (line 1153) | @SuppressWarnings("deprecation")
method getDeleteFlags (line 1247) | @DeleteFlags
method getCorrectUserIdForUninstallation (line 1270) | private static int getCorrectUserIdForUninstallation(@NonNull String p...
class LocalIntentReceiver (line 1286) | private static class LocalIntentReceiver {
method send (line 1290) | @Override
method send (line 1296) | @Override
method send (line 1302) | @Override
method send (line 1307) | public void send(Intent intent) {
method getIntentSender (line 1316) | @SuppressWarnings("JavaReflectionMemberAccess")
method getResult (line 1322) | public Intent getResult() {
method unregisterReceiver (line 1331) | private void unregisterReceiver() {
method initBroadcastReceiver (line 1338) | private void initBroadcastReceiver() {
method sendStartedBroadcast (line 1356) | private void sendStartedBroadcast(@NonNull String packageName, int ses...
method sendCompletedBroadcast (line 1364) | static void sendCompletedBroadcast(@NonNull Context context, @NonNull ...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerService.java
class PackageInstallerService (line 61) | public class PackageInstallerService extends ForegroundService {
type OnInstallFinished (line 67) | public interface OnInstallFinished {
method onFinished (line 68) | @UiThread
method PackageInstallerService (line 73) | public PackageInstallerService() {
method onCreate (line 83) | @Override
method onStartCommand (line 90) | @Override
method onHandleIntent (line 112) | @Override
method onQueued (line 205) | @Override
method onStartIntent (line 218) | @Override
method onDestroy (line 237) | @Override
method setOnInstallFinished (line 247) | public void setOnInstallFinished(@Nullable OnInstallFinished onInstall...
method getQueueItem (line 251) | @Nullable
method finishInstallation (line 259) | private void finishInstallation(@NonNull String packageName, int status,
method sendNotification (line 273) | private void sendNotification(@NonNull String packageName,
method getStringFromStatus (line 300) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerViewModel.java
class PackageInstallerViewModel (line 40) | public class PackageInstallerViewModel extends AndroidViewModel {
method PackageInstallerViewModel (line 57) | public PackageInstallerViewModel(@NonNull Application application) {
method onCleared (line 62) | @Override
method packageInfoLiveData (line 71) | public LiveData<PackageInfo> packageInfoLiveData() {
method packageUninstalledLiveData (line 75) | public LiveData<Boolean> packageUninstalledLiveData() {
method getPackageInfo (line 79) | @AnyThread
method uninstallPackage (line 109) | public void uninstallPackage() {
method getNewPackageInfo (line 117) | public PackageInfo getNewPackageInfo() {
method getInstalledPackageInfo (line 121) | @Nullable
method getAppLabel (line 126) | public String getAppLabel() {
method getAppIcon (line 130) | public Drawable getAppIcon() {
method getPackageName (line 134) | public String getPackageName() {
method getApkFile (line 138) | public ApkFile getApkFile() {
method getApkSource (line 142) | public ApkSource getApkSource() {
method getTrackerCount (line 146) | public int getTrackerCount() {
method isSignatureDifferent (line 150) | public boolean isSignatureDifferent() {
method getSelectedSplits (line 154) | public Set<String> getSelectedSplits() {
method getSelectedSplitsForInstallation (line 158) | @NonNull
method getPackageInfoInternal (line 169) | private void getPackageInfoInternal() throws PackageManager.NameNotFou...
method getExistingPackageInfoInternal (line 195) | private void getExistingPackageInfoInternal(@NonNull String packageNam...
method loadNewPackageInfo (line 210) | @WorkerThread
method loadInstalledPackageInfo (line 231) | @WorkerThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/SupportedAppStores.java
class SupportedAppStores (line 9) | public final class SupportedAppStores {
method isAppStoreSupported (line 21) | public static boolean isAppStoreSupported(@NonNull String packageName) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/list/AppListItem.java
class AppListItem (line 7) | public class AppListItem {
method AppListItem (line 21) | public AppListItem(String packageName) {
method getIcon (line 25) | public Bitmap getIcon() {
method setIcon (line 29) | public void setIcon(Bitmap icon) {
method getPackageLabel (line 33) | public String getPackageLabel() {
method setPackageLabel (line 37) | public void setPackageLabel(String packageLabel) {
method getVersionCode (line 41) | public long getVersionCode() {
method setVersionCode (line 45) | public void setVersionCode(long versionCode) {
method getVersionName (line 49) | public String getVersionName() {
method setVersionName (line 53) | public void setVersionName(String versionName) {
method getMinSdk (line 57) | public int getMinSdk() {
method setMinSdk (line 61) | public void setMinSdk(int minSdk) {
method getTargetSdk (line 65) | public int getTargetSdk() {
method setTargetSdk (line 69) | public void setTargetSdk(int targetSdk) {
method getSignatureSha256 (line 73) | public String getSignatureSha256() {
method setSignatureSha256 (line 77) | public void setSignatureSha256(String signatureSha256) {
method getFirstInstallTime (line 81) | public long getFirstInstallTime() {
method setFirstInstallTime (line 85) | public void setFirstInstallTime(long firstInstallTime) {
method getLastUpdateTime (line 89) | public long getLastUpdateTime() {
method setLastUpdateTime (line 93) | public void setLastUpdateTime(long lastUpdateTime) {
method getInstallerPackageName (line 97) | public String getInstallerPackageName() {
method setInstallerPackageName (line 101) | public void setInstallerPackageName(String installerPackageName) {
method getInstallerPackageLabel (line 105) | public String getInstallerPackageLabel() {
method setInstallerPackageLabel (line 109) | public void setInstallerPackageLabel(String installerPackageLabel) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/list/ListExporter.java
class ListExporter (line 37) | public final class ListExporter {
method export (line 48) | public static void export(@NonNull Context context,
method exportXml (line 74) | private static void exportXml(@NonNull Writer writer,
method exportCsv (line 108) | private static void exportCsv(@NonNull Writer writer,
method exportJson (line 142) | private static void exportJson(@NonNull Writer writer,
method exportMarkdown (line 171) | private static void exportMarkdown(@NonNull Context context, @NonNull ...
method getAppListItems (line 204) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/AndroidBinXmlDecoder.java
class AndroidBinXmlDecoder (line 34) | public class AndroidBinXmlDecoder {
method isBinaryXml (line 35) | public static boolean isBinaryXml(@NonNull ByteBuffer buffer) {
method decode (line 45) | @NonNull
method decode (line 50) | @NonNull
method decode (line 61) | @NonNull
method decode (line 70) | public static void decode(@NonNull ByteBuffer byteBuffer, @NonNull Out...
method getNamespacePrefix (line 124) | @NonNull
method getFrameworkPackageBlock (line 132) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/AndroidBinXmlEncoder.java
class AndroidBinXmlEncoder (line 15) | public class AndroidBinXmlEncoder {
method encodeFile (line 16) | @NonNull
method encodeString (line 21) | @NonNull
method encode (line 26) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestComponent.java
class ManifestComponent (line 10) | public class ManifestComponent {
method ManifestComponent (line 14) | public ManifestComponent(ComponentName cn) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestIntentFilter.java
class ManifestIntentFilter (line 11) | public class ManifestIntentFilter {
class ManifestData (line 17) | public static class ManifestData {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestParser.java
class ManifestParser (line 25) | public class ManifestParser {
method ManifestParser (line 51) | public ManifestParser(@NonNull byte[] manifestBytes) {
method ManifestParser (line 55) | public ManifestParser(@NonNull ByteBuffer manifestBytes) {
method parseComponents (line 59) | public List<ManifestComponent> parseComponents() throws IOException {
method parseComponentInfo (line 110) | @NonNull
method parseIntentFilter (line 126) | @NonNull
method parseData (line 156) | @NonNull
method getAttributeValue (line 187) | @Nullable
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/SigSchemes.java
class SigSchemes (line 11) | public class SigSchemes {
method SigSchemes (line 33) | public SigSchemes(@SignatureScheme int flags) {
method isEmpty (line 37) | public boolean isEmpty() {
method getFlags (line 41) | public int getFlags() {
method setFlags (line 45) | public void setFlags(int flags) {
method getAllItems (line 49) | @NonNull
method v1SchemeEnabled (line 58) | public boolean v1SchemeEnabled() {
method v2SchemeEnabled (line 61) | public boolean v2SchemeEnabled() {
method v3SchemeEnabled (line 64) | public boolean v3SchemeEnabled() {
method v4SchemeEnabled (line 67) | public boolean v4SchemeEnabled() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/Signer.java
class Signer (line 35) | public class Signer {
method canSign (line 39) | public static boolean canSign() {
method getInstance (line 49) | @NonNull
method Signer (line 72) | private Signer(@NonNull SigSchemes sigSchemes, @NonNull PrivateKey pri...
method isV4SchemeEnabled (line 78) | public boolean isV4SchemeEnabled() {
method setIdsigFile (line 82) | public void setIdsigFile(@Nullable File idsigFile) {
method sign (line 86) | public boolean sign(File in, File out, int minSdk, boolean alignFileSi...
method verify (line 122) | public static boolean verify(@NonNull SigSchemes sigSchemes, @NonNull ...
method getSourceStampSource (line 189) | @Nullable
method logCert (line 202) | private static void logCert(@NonNull X509Certificate x509Certificate, ...
method logEncoded (line 226) | private static void logEncoded(CharSequence charSequence, byte[] bArr) {
method log (line 232) | private static void log(String str, byte[] bArr) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/SignerInfo.java
class SignerInfo (line 24) | public class SignerInfo {
method SignerInfo (line 34) | public SignerInfo(@NonNull ApkVerifier.Result apkVerifierResult) {
method SignerInfo (line 81) | @RequiresApi(Build.VERSION_CODES.P)
method SignerInfo (line 126) | public SignerInfo(@Nullable Signature[] signatures) {
method hasMultipleSigners (line 143) | public boolean hasMultipleSigners() {
method hasProofOfRotation (line 147) | public boolean hasProofOfRotation() {
method getCurrentSignerCerts (line 151) | @Nullable
method getSourceStampCert (line 156) | @Nullable
method getSignerCertsInLineage (line 161) | @Nullable
method getAllSignerCerts (line 172) | @Nullable
method generateCertificateOrFail (line 177) | private static X509Certificate generateCertificateOrFail(Signature sig...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/ZipAlign.java
class ZipAlign (line 21) | public class ZipAlign {
method align (line 28) | public static void align(@NonNull File input, @NonNull File output, in...
method align (line 45) | public static void align(@NonNull File inFile, int alignment, boolean ...
method verify (line 58) | public static boolean verify(@NonNull File file, int alignment, boolea...
method getAlignment (line 100) | private static int getAlignment(@NonNull ArchiveEntry entry, int defau...
method getZipAligner (line 112) | @NonNull
method toTmpFile (line 123) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/ApksMetadata.java
class ApksMetadata (line 39) | public class ApksMetadata {
class Dependency (line 45) | public static class Dependency {
class BuildInfo (line 68) | public static class BuildInfo {
method BuildInfo (line 75) | public BuildInfo() {
method BuildInfo (line 83) | public BuildInfo(long timestamp, String builderId, String builderLab...
method ApksMetadata (line 105) | public ApksMetadata() {
method ApksMetadata (line 109) | public ApksMetadata(PackageInfo packageInfo) {
method readMetadata (line 113) | public void readMetadata(String jsonString) throws JSONException {
method writeMetadata (line 153) | public void writeMetadata(@NonNull ZipOutputStream zipOutputStream) th...
method getMetadataAsJson (line 211) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/SplitApkChooser.java
class SplitApkChooser (line 30) | public class SplitApkChooser extends Fragment {
method getNewInstance (line 36) | @NonNull
method onCreate (line 52) | @Override
method onCreateView (line 59) | @Nullable
method onViewCreated (line 84) | @Override
method getInitialSelections (line 103) | @NonNull
method getUnsupportedOrRequiredSplitIds (line 203) | @NonNull
method select (line 214) | @NonNull
method deselect (line 268) | @Nullable
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/SplitApkExporter.java
class SplitApkExporter (line 41) | public final class SplitApkExporter {
method saveApks (line 42) | @WorkerThread
method saveApkInternal (line 53) | static void saveApkInternal(@NonNull ZipOutputStream zipOutputStream, ...
method addFile (line 87) | static void addFile(@NonNull ZipOutputStream zipOutputStream, @NonNull...
method addBytes (line 101) | static void addBytes(@NonNull ZipOutputStream zipOutputStream, @NonNul...
method getAllApkFiles (line 113) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/ApkWhatsNewFinder.java
class ApkWhatsNewFinder (line 36) | public class ApkWhatsNewFinder {
method getInstance (line 62) | public static ApkWhatsNewFinder getInstance() {
method getWhatsNew (line 82) | @WorkerThread
method findChanges (line 202) | @NonNull
class Change (line 214) | public static class Change {
method Change (line 220) | public Change(int changeType, @NonNull String value) {
method toString (line 225) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewDialogFragment.java
class WhatsNewDialogFragment (line 28) | public class WhatsNewDialogFragment extends DialogFragment {
method getInstance (line 33) | @NonNull
method onCreateDialog (line 48) | @NonNull
method onCreateView (line 59) | @Nullable
method onViewCreated (line 65) | @Override
method show (line 78) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewDialogViewModel.java
class WhatsNewDialogViewModel (line 22) | public class WhatsNewDialogViewModel extends AndroidViewModel {
method WhatsNewDialogViewModel (line 27) | public WhatsNewDialogViewModel(@NonNull Application application) {
method onCleared (line 31) | @Override
method getChangesLiveData (line 39) | public LiveData<List<ApkWhatsNewFinder.Change>> getChangesLiveData() {
method loadChanges (line 43) | public void loadChanges(PackageInfo newPkgInfo, PackageInfo oldPkgInfo) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewFragment.java
class WhatsNewFragment (line 23) | public class WhatsNewFragment extends Fragment {
method getInstance (line 28) | @NonNull
method onCreateView (line 38) | @Nullable
method onViewCreated (line 44) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewRecyclerAdapter.java
class WhatsNewRecyclerAdapter (line 25) | class WhatsNewRecyclerAdapter extends RecyclerView.Adapter<WhatsNewRecyc...
method WhatsNewRecyclerAdapter (line 34) | WhatsNewRecyclerAdapter(Context context, @NonNull String packageName) {
method setAdapterList (line 43) | void setAdapterList(List<ApkWhatsNewFinder.Change> list) {
method onCreateViewHolder (line 47) | @NonNull
method onBindViewHolder (line 60) | @Override
method getItemCount (line 88) | @Override
method getItemViewType (line 93) | @Override
class ViewHolder (line 98) | static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 102) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/app/AndroidFragment.java
class AndroidFragment (line 15) | public class AndroidFragment extends Fragment {
method getFragmentContext (line 16) | @NonNull
method getFragmentActivity (line 21) | @NonNull
method getActionBar (line 26) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupCryptSetupHelper.java
class BackupCryptSetupHelper (line 19) | public class BackupCryptSetupHelper {
method BackupCryptSetupHelper (line 30) | public BackupCryptSetupHelper(@NonNull String mode, int version) throw...
method getKeyIds (line 36) | @Nullable
method getAes (line 41) | @Nullable
method getIv (line 46) | @Nullable
method setup (line 51) | @NonNull
method generateIv (line 92) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupDataDirectoryInfo.java
class BackupDataDirectoryInfo (line 20) | public class BackupDataDirectoryInfo {
method getInfo (line 23) | @SuppressLint("SdCardPath")
method getExternalInfo (line 55) | @NonNull
method BackupDataDirectoryInfo (line 111) | private BackupDataDirectoryInfo(String path, boolean isMounted, @Type ...
method getDirectory (line 119) | public Path getDirectory() {
method isExternal (line 123) | public boolean isExternal() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupException.java
class BackupException (line 7) | public class BackupException extends Throwable {
method BackupException (line 11) | public BackupException(@NonNull String message) {
method BackupException (line 16) | public BackupException(@NonNull String message, @NonNull Throwable cau...
method getMessage (line 21) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupFlags.java
class BackupFlags (line 28) | public final class BackupFlags {
method getSupportedBackupFlags (line 81) | @BackupFlag
method getSupportedBackupFlagsAsArray (line 91) | @NonNull
method getBackupFlagsAsArray (line 115) | @NonNull
method getFormattedFlagNames (line 155) | @NonNull
method fromPref (line 172) | @NonNull
method BackupFlags (line 177) | public BackupFlags(@BackupFlag int flags) {
method getFlags (line 181) | @BackupFlag
method addFlag (line 186) | public void addFlag(@BackupFlag int flag) {
method removeFlag (line 190) | public void removeFlag(@BackupFlag int flag) {
method setFlags (line 194) | public void setFlags(int flags) {
method flagsToCheckedIndexes (line 198) | @NonNull
method isEmpty (line 210) | public boolean isEmpty() {
method backupApkFiles (line 214) | public boolean backupApkFiles() {
method backupInternalData (line 218) | public boolean backupInternalData() {
method backupExternalData (line 222) | public boolean backupExternalData() {
method backupAdbData (line 226) | public boolean backupAdbData() {
method backupMediaObb (line 230) | public boolean backupMediaObb() {
method backupData (line 234) | public boolean backupData() {
method backupRules (line 238) | public boolean backupRules() {
method backupExtras (line 242) | public boolean backupExtras() {
method backupCache (line 246) | public boolean backupCache() {
method skipSignatureCheck (line 250) | @SuppressWarnings("BooleanMethodIsAlwaysInverted")
method backupMultiple (line 255) | public boolean backupMultiple() {
method backupCustomUsers (line 259) | public boolean backupCustomUsers() {
method toLocalisedString (line 263) | @NonNull
method getSanitizedFlags (line 304) | private static int getSanitizedFlags(int flags) {
method migrate (line 314) | private static int migrate(int flags) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupItems.java
class BackupItems (line 37) | public class BackupItems {
method getBaseDirectory (line 48) | @NonNull
method findBackupItem (line 53) | @NonNull
method findOrCreateBackupItem (line 58) | @NonNull
method createBackupItemGracefully (line 85) | @NonNull
method findAllBackupItems (line 108) | @NonNull
method getTemporaryUnencryptedPath (line 133) | @NonNull
method getTemporaryBackupPath (line 144) | @NonNull
method getApkBackupDirectory (line 156) | @NonNull
method createNoMediaIfNotExists (line 161) | public static void createNoMediaIfNotExists() throws IOException {
class BackupItem (line 168) | public static class BackupItem {
method BackupItem (line 190) | private BackupItem(@NonNull Path backupPath, boolean backupMode) thr...
method BackupItem (line 200) | private BackupItem(@NonNull Path backupPath) {
method setCrypto (line 206) | public void setCrypto(@Nullable Crypto crypto) {
method setBackupName (line 216) | public void setBackupName(@Nullable String backupName) {
method getBackupName (line 221) | @Nullable
method setPreviousBackups (line 236) | public void setPreviousBackups(@Nullable List<BackupItem> previousBa...
method getRelativeDir (line 240) | public String getRelativeDir() {
method isBackupMode (line 252) | public boolean isBackupMode() {
method getBackupPath (line 256) | @NonNull
method getUnencryptedBackupPath (line 261) | public Path getUnencryptedBackupPath() throws IOException {
method requireUnencryptedBackupPath (line 270) | public Path requireUnencryptedBackupPath() throws IOException {
method encrypt (line 278) | @NonNull
method decrypt (line 310) | @NonNull
method getIconFile (line 338) | @NonNull
method isV5AndUp (line 346) | public boolean isV5AndUp() {
method getInfoFile (line 350) | public Path getInfoFile() throws IOException {
method getMetadataV5File (line 357) | public Path getMetadataV5File(boolean decryptIfRequired) throws IOEx...
method getMetadataV2File (line 368) | @NonNull
method getInfo (line 376) | public BackupMetadataV5.Info getInfo() throws IOException {
method getMetadata (line 380) | public BackupMetadataV5 getMetadata() throws IOException {
method getMetadata (line 384) | public BackupMetadataV5 getMetadata(BackupMetadataV5.Info backupInfo...
method getChecksumFile (line 388) | @NonNull
method getChecksum (line 400) | @NonNull
method getMiscFile (line 405) | @NonNull
method getRulesFile (line 416) | @NonNull
method getSourceFiles (line 427) | @NonNull
method getDataFiles (line 435) | @NonNull
method getKeyStoreFiles (line 443) | @NonNull
method freeze (line 450) | public void freeze() throws IOException {
method unfreeze (line 454) | public void unfreeze() throws FileNotFoundException {
method isFrozen (line 458) | public boolean isFrozen() {
method commit (line 466) | public void commit() throws IOException {
method cleanup (line 491) | public void cleanup() {
method exists (line 510) | public boolean exists() {
method delete (line 514) | public boolean delete() {
method getFreezeFile (line 529) | @NonNull
class Checksum (line 535) | public static class Checksum implements Closeable {
method getCertChecksums (line 541) | @NonNull
method Checksum (line 554) | Checksum(@NonNull Path checksumFile, String mode) throws IOException {
method getFile (line 577) | public Path getFile() {
method add (line 581) | public void add(@NonNull String fileName, @NonNull String checksum) {
method get (line 592) | @Nullable
method close (line 599) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupManager.java
class BackupManager (line 26) | public class BackupManager {
method getExt (line 43) | @NonNull
method BackupManager (line 54) | public BackupManager() {
method requiresRestart (line 58) | public boolean requiresRestart() {
method backup (line 62) | public void backup(@NonNull BackupOpOptions options, @Nullable Progres...
method restore (line 94) | public void restore(@NonNull RestoreOpOptions options, @Nullable Progr...
method deleteBackup (line 129) | public void deleteBackup(@NonNull DeleteOpOptions options) throws Back...
method verify (line 165) | public void verify(@NonNull String relativeDir) throws BackupException {
method calculateMaxProgress (line 177) | private static int calculateMaxProgress(@NonNull BackupFlags backupFla...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupOp.java
class BackupOp (line 87) | @WorkerThread
method BackupOp (line 111) | BackupOp(@NonNull String packageName, @NonNull BackupFlags backupFlags,
method close (line 143) | @Override
method getMetadata (line 148) | @NonNull
method runBackup (line 153) | void runBackup(@Nullable ProgressHandler progressHandler) throws Backu...
method incrementProgress (line 215) | private static void incrementProgress(@Nullable ProgressHandler progre...
method setupMetadataAndCrypto (line 223) | public BackupMetadataV5 setupMetadataAndCrypto() throws CryptoException {
method backupIcon (line 299) | private void backupIcon() {
method backupApkFiles (line 312) | private void backupApkFiles() throws BackupException {
method backupData (line 342) | private void backupData() throws BackupException {
method backupDirectory (line 364) | @NonNull
method backupAdb (line 378) | @NonNull
method backupKeyStore (line 395) | private void backupKeyStore() throws BackupException { // Called only...
method backupExtras (line 453) | private void backupExtras() throws BackupException {
method backupRules (line 578) | private void backupRules() throws BackupException {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupUtils.java
class BackupUtils (line 43) | public final class BackupUtils {
method isUuid (line 51) | public static boolean isUuid(@NonNull String name) {
method getCompatBackupName (line 55) | @Nullable
method getV4BackupName (line 64) | @NonNull
method getV4SanitizedBackupName (line 74) | @Nullable
method getV5RelativeDir (line 84) | @NonNull
method getV4RelativeDir (line 90) | @NonNull
method getV4RelativeDir (line 97) | @NonNull
method getRealBackupName (line 104) | @Nullable
method getReadableTarType (line 127) | public static String getReadableTarType(@TarUtils.TarType String tarTy...
method storeAllAndGetLatestBackupMetadata (line 135) | @WorkerThread
method getAllLatestBackupMetadataFromDb (line 160) | @WorkerThread
method putBackupToDbAndBroadcast (line 173) | public static void putBackupToDbAndBroadcast(@NonNull Context context,...
method deleteBackupToDbAndBroadcast (line 183) | public static void deleteBackupToDbAndBroadcast(@NonNull Context conte...
method getBackupMetadataFromDbNoLockValidate (line 190) | @WorkerThread
method retrieveBackupFromDb (line 207) | @NonNull
method retrieveLatestBackupFromDb (line 229) | @Nullable
method retrieveBaseBackupFromDb (line 246) | @Nullable
method getLatestBackupMetadataFromDbNoLockValidate (line 258) | @WorkerThread
method getAllMetadata (line 274) | @WorkerThread
method getSourceFilePrefix (line 295) | @NonNull
method getDataFilePrefix (line 303) | @NonNull
method getExcludeDirs (line 311) | @NonNull
method getDataDirectories (line 324) | @SuppressLint("SdCardPath")
method getWritableDataDirectory (line 375) | @VisibleForTesting(otherwise = VisibleForTesting.PROTECTED)
method getExternalStorage (line 418) | @SuppressLint("SdCardPath")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/CryptoUtils.java
class CryptoUtils (line 25) | public class CryptoUtils {
method getMode (line 42) | @Mode
method getExtension (line 50) | public static String getExtension(@NonNull @Mode String mode) {
method getAppropriateFilename (line 69) | @NonNull
method setupCrypto (line 74) | @WorkerThread
method isAvailable (line 83) | @WorkerThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/MetadataManager.java
class MetadataManager (line 26) | public final class MetadataManager {
method MetadataManager (line 35) | private MetadataManager() {
method setCurrentBackupMetaVersion (line 38) | @VisibleForTesting
method getCurrentBackupMetaVersion (line 43) | public static int getCurrentBackupMetaVersion() {
method readInfo (line 47) | @NonNull
method readMetadata (line 67) | @NonNull
method readMetadata (line 74) | @NonNull
method writeMetadata (line 103) | @WorkerThread
method writeMetadataV2 (line 118) | @WorkerThread
method writeMetadataV5 (line 135) | @WorkerThread
method setCrypto (line 160) | private static void setCrypto(@NonNull BackupItems.BackupItem backupIt...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/RestoreOp.java
class RestoreOp (line 80) | @WorkerThread
method RestoreOp (line 106) | RestoreOp(@NonNull String packageName, @NonNull BackupFlags requestedF...
method close (line 167) | @Override
method runRestore (line 174) | void runRestore(@Nullable ProgressHandler progressHandler) throws Back...
method incrementProgress (line 207) | private static void incrementProgress(@Nullable ProgressHandler progre...
method requiresRestart (line 215) | public boolean requiresRestart() {
method verifyMetadata (line 219) | private void verifyMetadata() throws BackupException {
method checkMasterKey (line 251) | private void checkMasterKey() throws BackupException {
method restoreApkFiles (line 274) | private void restoreApkFiles() throws BackupException {
method restoreKeyStore (line 430) | private void restoreKeyStore() throws BackupException {
method restoreData (line 499) | private void restoreData() throws BackupException {
method restoreDirectory (line 539) | private void restoreDirectory(@NonNull String dir, int index) throws B...
method restoreAdb (line 622) | private void restoreAdb(int index) throws BackupException {
method restoreExtras (line 642) | private synchronized void restoreExtras() throws BackupException {
method loadMiscRules (line 741) | private void loadMiscRules(final PseudoRules rules) throws BackupExcep...
method restoreRules (line 771) | private void restoreRules() throws BackupException {
method deleteFiles (line 811) | private void deleteFiles(@NonNull Path[] files) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/VerifyOp.java
class VerifyOp (line 17) | @WorkerThread
method VerifyOp (line 32) | VerifyOp(@NonNull BackupItems.BackupItem backupItem) throws BackupExce...
method close (line 74) | @Override
method verify (line 81) | void verify() throws BackupException {
method verifyMetadata (line 107) | private void verifyMetadata() throws BackupException {
method verifyApkFiles (line 139) | private void verifyApkFiles() throws BackupException {
method verifyKeyStore (line 157) | private void verifyKeyStore() throws BackupException {
method verifyData (line 175) | private void verifyData() throws BackupException {
method verifyExtras (line 195) | private void verifyExtras() throws BackupException {
method verifyRules (line 212) | private void verifyRules() throws BackupException {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupCreator.java
class AndroidBackupCreator (line 47) | public class AndroidBackupCreator implements AutoCloseable {
method fromTar (line 50) | public static void fromTar(@NonNull Path tarSource, @NonNull Path abDe...
method AndroidBackupCreator (line 79) | public AndroidBackupCreator(@NonNull Map<Integer, List<Path>> category...
method close (line 92) | @Override
method getBackupFile (line 99) | public Path getBackupFile(int dataIndex) throws IOException {
method mergeCategoryFilesIntoTar (line 114) | private void mergeCategoryFilesIntoTar(@NonNull Path outputTarFile) th...
method addManifestEntry (line 137) | private void addManifestEntry(@NonNull TarArchiveOutputStream taos) th...
method getManifestBytes (line 152) | @NonNull
method processCategoryFiles (line 187) | private void processCategoryFiles(@NonNull TarArchiveOutputStream taos,
method transformEntryPath (line 224) | @NonNull
method transformInternalPath (line 247) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupExtractor.java
class AndroidBackupExtractor (line 40) | public class AndroidBackupExtractor implements AutoCloseable {
method toTar (line 43) | public static void toTar(@NonNull Path abSource, @NonNull Path tarDest...
method AndroidBackupExtractor (line 58) | public AndroidBackupExtractor(@NonNull Path abFile, @NonNull Path temp...
method close (line 131) | @Override
method getSourceFiles (line 138) | @Nullable
method getInternalCeDataFiles (line 144) | @Nullable
method getInternalDeDataFiles (line 150) | @Nullable
method getExternalDataFiles (line 156) | @Nullable
method getObbFiles (line 162) | @Nullable
method getFiles (line 168) | @Nullable
method getCategory (line 210) | private int getCategory(@NonNull String filename) {
method getTargetArchiveEntry (line 239) | @NonNull
method getRealFilename (line 260) | @NonNull
class TargetTarEntry (line 287) | private static class TargetTarEntry {
method TargetTarEntry (line 296) | private TargetTarEntry(@NonNull Path sourceFile, @NonNull String sou...
method toString (line 304) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupHeader.java
class AndroidBackupHeader (line 45) | final class AndroidBackupHeader {
method AndroidBackupHeader (line 55) | public AndroidBackupHeader(int backupFileVersion, boolean compress, @N...
method AndroidBackupHeader (line 61) | public AndroidBackupHeader(@Nullable char[] password) {
method read (line 67) | @NonNull
method write (line 106) | @NonNull
method emitAesBackupHeader (line 159) | @NonNull
method decodeAesHeaderAndInitialize (line 231) | @NonNull
method attemptEncryptionKeyDecryption (line 264) | @NonNull
method randomBytes (line 316) | public byte[] randomBytes(int bits) {
method readHeaderLine (line 322) | @NonNull
method readFullyOrThrow (line 335) | private static void readFullyOrThrow(InputStream in, byte[] buffer) th...
method makeKeyChecksum (line 357) | @NonNull
method buildCharArrayKey (line 378) | @NonNull
method byteArrayToHex (line 390) | public static String byteArrayToHex(byte[] data) {
method hexToByteArray (line 397) | public static byte[] hexToByteArray(String digits) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/Constants.java
class Constants (line 12) | final class Constants {
method Constants (line 134) | private Constants() {
method getBackupFileVersionFromApi (line 137) | public static int getBackupFileVersionFromApi(int api) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/ConvertUtils.java
class ConvertUtils (line 41) | public final class ConvertUtils {
method getV5Metadata (line 44) | @NonNull
method decryptSourceFiles (line 78) | @NonNull
method getConversionUtil (line 105) | @NonNull
method getRelevantImportFiles (line 119) | @NonNull
method getDataDirs (line 136) | @SuppressLint("SdCardPath")
method getChecksumsFromApk (line 152) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/Converter.java
class Converter (line 7) | public abstract class Converter {
method convert (line 8) | public abstract void convert() throws BackupException;
method cleanup (line 10) | public abstract void cleanup();
method getPackageName (line 12) | public abstract String getPackageName();
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/OABConverter.java
class OABConverter (line 61) | public class OABConverter extends Converter {
method OABConverter (line 99) | public OABConverter(@NonNull Path backupLocation) {
method convert (line 106) | @Override
method cleanup (line 174) | @Override
method getPackageName (line 180) | @Override
method readLogFile (line 185) | private BackupMetadataV2 readLogFile() throws BackupException {
method backupApkFile (line 249) | private void backupApkFile() throws BackupException {
method backupData (line 297) | private void backupData() throws BackupException {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/SBConverter.java
class SBConverter (line 65) | public class SBConverter extends Converter {
method SBConverter (line 82) | public SBConverter(@NonNull Path xmlFile) {
method getPackageName (line 91) | @Override
method convert (line 96) | @Override
method cleanup (line 163) | @Override
method backupApkFile (line 170) | private void backupApkFile() throws BackupException {
method backupData (line 201) | private void backupData() throws BackupException {
method generateMetadata (line 269) | @SuppressLint("WrongConstant")
method getApkFile (line 346) | @NonNull
method getSplitFile (line 351) | @NonNull
method getObbFile (line 356) | @NonNull
method getIntDataFile (line 361) | @NonNull
method getExtDataFile (line 366) | @NonNull
method cacheAndGetSplitConfigs (line 371) | private String[] cacheAndGetSplitConfigs() throws IOException, RemoteE...
method backupIcon (line 398) | private void backupIcon() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/TBConverter.java
class TBConverter (line 62) | public class TBConverter extends Converter {
method TBConverter (line 91) | public TBConverter(@NonNull Path propFile) {
method convert (line 103) | @Override
method getPackageName (line 175) | @Override
method cleanup (line 180) | @Override
method backupApkFile (line 187) | private void backupApkFile() throws BackupException {
method backupData (line 242) | private void backupData() throws BackupException {
method readPropFile (line 372) | private BackupMetadataV2 readPropFile() throws BackupException {
method getDataFile (line 429) | @NonNull
method getApkFile (line 438) | @NonNull
method backupIcon (line 446) | private void backupIcon() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupFragment.java
class BackupFragment (line 31) | public class BackupFragment extends Fragment {
method getInstance (line 34) | @NonNull
method onCreateView (line 46) | @Nullable
method onViewCreated (line 52) | @Override
method handleBackup (line 85) | private void handleBackup(@NonNull BackupFlags flags) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupInfo.java
class BackupInfo (line 13) | public class BackupInfo {
method BackupInfo (line 25) | BackupInfo(@NonNull String packageName, int userId) {
method getAppLabel (line 31) | @NonNull
method setAppLabel (line 36) | public void setAppLabel(@NonNull CharSequence appLabel) {
method getBackupMetadataList (line 40) | @NonNull
method setBackupMetadataList (line 45) | public void setBackupMetadataList(@NonNull List<BackupMetadataV5> back...
method hasBaseBackup (line 49) | public boolean hasBaseBackup() {
method setHasBaseBackup (line 53) | public void setHasBaseBackup(boolean hasBaseBackup) {
method isInstalled (line 57) | public boolean isInstalled() {
method setInstalled (line 61) | public void setInstalled(boolean installed) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupRestoreDialogFragment.java
class BackupRestoreDialogFragment (line 55) | public class BackupRestoreDialogFragment extends CapsuleBottomSheetDialo...
method getInstance (line 62) | @NonNull
method getInstanceWithPref (line 71) | @NonNull
method getInstance (line 81) | @NonNull
type ActionCompleteInterface (line 104) | public interface ActionCompleteInterface {
method onActionComplete (line 105) | void onActionComplete(@ActionMode int mode, @NonNull String[] failed...
type ActionBeginInterface (line 108) | public interface ActionBeginInterface {
method onActionBegin (line 109) | void onActionBegin(@ActionMode int mode);
method onReceive (line 127) | @Override
method setOnActionCompleteListener (line 137) | public void setOnActionCompleteListener(@NonNull ActionCompleteInterfa...
method setOnActionBeginListener (line 141) | public void setOnActionBeginListener(@NonNull ActionBeginInterface act...
method initRootView (line 145) | @NonNull
method displayLoaderByDefault (line 151) | @Override
method onAttach (line 156) | @Override
method onBodyInitialized (line 163) | @Override
method loadBody (line 186) | private void loadBody(@BackupInfoState int state) {
method getRealState (line 215) | @BackupInfoState
method showBackupOptionsUnavailable (line 253) | private void showBackupOptionsUnavailable() {
method getBackupFragment (line 259) | public BackupFragment getBackupFragment() {
method loadMultipleBackupFragment (line 263) | private void loadMultipleBackupFragment() {
method loadMultipleRestoreFragment (line 273) | private void loadMultipleRestoreFragment() {
method loadMultipleBackupRestoreViewPager (line 283) | private void loadMultipleBackupRestoreViewPager() {
method updateMultipleRestoreHeader (line 301) | public void updateMultipleRestoreHeader() {
method loadSingleBackupFragment (line 308) | private void loadSingleBackupFragment() {
method loadSingleRestoreFragment (line 318) | private void loadSingleRestoreFragment() {
method loadSingleBackupRestoreViewPager (line 328) | private void loadSingleBackupRestoreViewPager() {
method updateSingleBackupHeader (line 346) | private void updateSingleBackupHeader() {
method handleCustomUsers (line 351) | public void handleCustomUsers(@NonNull BackupRestoreDialogViewModel.Op...
method handleDeleteBaseBackup (line 377) | private void handleDeleteBaseBackup() {
method startOperation (line 393) | @UiThread
class BackupDialogFragmentPagerAdapter (line 410) | private class BackupDialogFragmentPagerAdapter extends FragmentStateAd...
method BackupDialogFragmentPagerAdapter (line 411) | public BackupDialogFragmentPagerAdapter(@NonNull Fragment fragment) {
method createFragment (line 415) | @NonNull
method getItemCount (line 421) | @Override
class ViewPagerUpdateScrollingChildListener (line 427) | private static class ViewPagerUpdateScrollingChildListener extends Vie...
method ViewPagerUpdateScrollingChildListener (line 431) | private ViewPagerUpdateScrollingChildListener(ViewPager2 viewPager, ...
method onPageSelected (line 436) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupRestoreDialogViewModel.java
class BackupRestoreDialogViewModel (line 40) | public class BackupRestoreDialogViewModel extends AndroidViewModel {
class OperationInfo (line 41) | public static class OperationInfo {
method BackupRestoreDialogViewModel (line 79) | public BackupRestoreDialogViewModel(@NonNull Application application) {
method onCleared (line 83) | @Override
method getBackupInfoStateLiveData (line 94) | public LiveData<Integer> getBackupInfoStateLiveData() {
method getBackupOperationLiveData (line 98) | public LiveData<OperationInfo> getBackupOperationLiveData() {
method getUserSelectionLiveData (line 102) | public MutableLiveData<OperationInfo> getUserSelectionLiveData() {
method getBackupInfoList (line 106) | @NonNull
method getAppsWithoutBackups (line 111) | public Set<CharSequence> getAppsWithoutBackups() {
method getUninstalledApps (line 115) | public Set<CharSequence> getUninstalledApps() {
method getBackupInfo (line 119) | @NonNull
method getWorstBackupFlag (line 124) | @BackupFlags.BackupFlag
method allowCustomUsersInBackup (line 129) | public boolean allowCustomUsersInBackup() {
method setPreferredUserForRestore (line 133) | public void setPreferredUserForRestore(@UserIdInt int preferredUserFor...
method processPackages (line 137) | @AnyThread
method prepareForOperation (line 155) | @AnyThread
method processPackagesInternal (line 171) | private void processPackagesInternal(@NonNull List<UserPackagePair> us...
method handleCustomUsers (line 325) | @WorkerThread
method generatePackageUserIdLists (line 341) | @WorkerThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/FlagsAdapter.java
class FlagsAdapter (line 24) | class FlagsAdapter extends RecyclerView.Adapter<FlagsAdapter.ViewHolder> {
method FlagsAdapter (line 34) | @SuppressLint("RestrictedApi")
method FlagsAdapter (line 40) | @SuppressLint("RestrictedApi")
method getSelectedFlags (line 53) | public int getSelectedFlags() {
method onCreateViewHolder (line 57) | @NonNull
method onBindViewHolder (line 64) | @Override
method getItemCount (line 84) | @Override
class ViewHolder (line 89) | static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 92) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/RestoreMultipleFragment.java
class RestoreMultipleFragment (line 28) | public class RestoreMultipleFragment extends Fragment {
method getInstance (line 29) | @NonNull
method onCreateView (line 37) | @Nullable
method onViewCreated (line 43) | @Override
method handleRestore (line 79) | private void handleRestore(int flags) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/RestoreSingleFragment.java
class RestoreSingleFragment (line 40) | public class RestoreSingleFragment extends Fragment {
method getInstance (line 41) | public static RestoreSingleFragment getInstance() {
method onCreateView (line 48) | @Nullable
method onViewCreated (line 54) | @Override
method handleRestore (line 114) | private void handleRestore(@NonNull BackupMetadataV5 selectedBackup) {
method handleDelete (line 148) | private void handleDelete(List<BackupMetadataV5> selectedBackups) {
class BackupAdapter (line 167) | private static class BackupAdapter extends RecyclerView.Adapter<Backup...
type OnSelectionListener (line 168) | public interface OnSelectionListener {
method onSelectionChanged (line 169) | void onSelectionChanged(@Nullable BackupMetadataV5 metadata, int s...
method BackupAdapter (line 182) | @SuppressLint("RestrictedApi")
method selectionCount (line 203) | public int selectionCount() {
method getFrozenBackupSelectionCount (line 207) | public int getFrozenBackupSelectionCount() {
method getSelectedBackups (line 211) | @NonNull
method onCreateViewHolder (line 220) | @NonNull
method onBindViewHolder (line 227) | @Override
method getItemCount (line 253) | @Override
class ViewHolder (line 258) | static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 261) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupMetadataV2.java
class BackupMetadataV2 (line 26) | public class BackupMetadataV2 implements IJsonSerializer {
method BackupMetadataV2 (line 70) | public BackupMetadataV2() {
method BackupMetadataV2 (line 74) | public BackupMetadataV2(@NonNull BackupMetadataV2 metadata) {
method serializeToJson (line 111) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupMetadataV5.java
class BackupMetadataV5 (line 51) | public class BackupMetadataV5 implements LocalizedString {
class Info (line 52) | public static class Info implements IJsonSerializer {
method Info (line 95) | public Info(long backupTime,
method Info (line 117) | public Info(@NonNull JSONObject rootObject) throws JSONException {
method setBackupItem (line 133) | public void setBackupItem(@NonNull BackupItems.BackupItem backupItem) {
method getBackupItem (line 138) | public BackupItems.BackupItem getBackupItem() {
method getRelativeDir (line 142) | public String getRelativeDir() {
method getCrypto (line 147) | public Crypto getCrypto() throws CryptoException {
method getBackupSize (line 154) | public long getBackupSize() {
method isFrozen (line 159) | public boolean isFrozen() {
method verifyCrypto (line 163) | private void verifyCrypto() {
method getCryptoInternal (line 183) | @NonNull
method serializeToJson (line 225) | @NonNull
class Metadata (line 245) | public static class Metadata implements IJsonSerializer {
method Metadata (line 265) | public Metadata(@Nullable String backupName) {
method Metadata (line 270) | public Metadata(@NonNull Metadata metadata) {
method Metadata (line 292) | public Metadata(@NonNull JSONObject rootObject) throws JSONException {
method serializeToJson (line 310) | @NonNull
method BackupMetadataV5 (line 338) | public BackupMetadataV5(@NonNull Info info, @NonNull Metadata metadata) {
method isBaseBackup (line 343) | public boolean isBaseBackup() {
method toLocalizedString (line 347) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupOpOptions.java
class BackupOpOptions (line 22) | public class BackupOpOptions implements Parcelable, IJsonSerializer {
method BackupOpOptions (line 32) | public BackupOpOptions(@NonNull String packageName, int userId, int fl...
method BackupOpOptions (line 40) | protected BackupOpOptions(@NonNull Parcel in) {
method createFromParcel (line 49) | @Override
method newArray (line 55) | @Override
method describeContents (line 62) | @Override
method writeToParcel (line 67) | @Override
method BackupOpOptions (line 76) | public BackupOpOptions(@NonNull JSONObject jsonObject) throws JSONExce...
method serializeToJson (line 84) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/DeleteOpOptions.java
class DeleteOpOptions (line 20) | public class DeleteOpOptions implements Parcelable, IJsonSerializer {
method DeleteOpOptions (line 28) | public DeleteOpOptions(@NonNull String packageName, @UserIdInt int use...
method DeleteOpOptions (line 34) | protected DeleteOpOptions(@NonNull Parcel in) {
method createFromParcel (line 41) | @Override
method newArray (line 47) | @Override
method describeContents (line 54) | @Override
method writeToParcel (line 59) | @Override
method DeleteOpOptions (line 66) | public DeleteOpOptions(@NonNull JSONObject jsonObject) throws JSONExce...
method serializeToJson (line 72) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/RestoreOpOptions.java
class RestoreOpOptions (line 21) | public class RestoreOpOptions implements Parcelable, IJsonSerializer {
method RestoreOpOptions (line 30) | public RestoreOpOptions(@NonNull String packageName, int userId, @Null...
method RestoreOpOptions (line 37) | protected RestoreOpOptions(@NonNull Parcel in) {
method createFromParcel (line 45) | @Override
method newArray (line 51) | @Override
method describeContents (line 58) | @Override
method writeToParcel (line 63) | @Override
method RestoreOpOptions (line 71) | public RestoreOpOptions(@NonNull JSONObject jsonObject) throws JSONExc...
method serializeToJson (line 78) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsLogger.java
class BatchOpsLogger (line 13) | public class BatchOpsLogger extends Logger {
method BatchOpsLogger (line 16) | protected BatchOpsLogger() throws IOException {
method getAllLogs (line 20) | @NonNull
method clearLogs (line 25) | public static void clearLogs() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsManager.java
class BatchOpsManager (line 81) | @WorkerThread
class BatchOpsInfo (line 142) | public static class BatchOpsInfo {
method fromQueue (line 143) | @NonNull
method fromUserPackagePair (line 149) | @NonNull
method getInstance (line 158) | @NonNull
method BatchOpsInfo (line 175) | private BatchOpsInfo(
method size (line 188) | public int size() {
method getPair (line 192) | @NonNull
method getPairList (line 197) | public List<UserPackagePair> getPairList() {
method BatchOpsManager (line 214) | public BatchOpsManager() {
method BatchOpsManager (line 219) | public BatchOpsManager(@Nullable Logger logger) {
method performOp (line 224) | public Result performOp(@NonNull BatchOpsInfo info, @Nullable Progress...
method performOp (line 229) | @CheckResult
method conclude (line 288) | public void conclude() {
method opBackupApk (line 294) | @NonNull
method opBackupRestore (line 316) | @NonNull
method backup (line 329) | @NonNull
method restoreBackups (line 370) | @NonNull
method deleteBackups (line 415) | @NonNull
method opImportBackups (line 440) | @NonNull
method opBlockComponents (line 483) | @NonNull
method opBlockTrackers (line 503) | @NonNull
method opClearCache (line 522) | @NonNull
method opTrimCaches (line 545) | @NonNull
method opClearData (line 561) | @NonNull
method opFreeze (line 580) | @NonNull
method opFreezeUnfreeze (line 605) | @NonNull
method opDisableBackground (line 628) | @NonNull
method opGrantOrRevokePermissions (line 668) | @NonNull
method opForceStop (line 717) | @NonNull
method opNetPolicy (line 736) | @NonNull
method opSetAppOps (line 757) | @NonNull
method opUnblockComponents (line 802) | @NonNull
method opUnblockTrackers (line 822) | @NonNull
method opUninstall (line 841) | @NonNull
method opPerformDexOpt (line 865) | @RequiresApi(Build.VERSION_CODES.N)
method log (line 930) | private void log(@Nullable String message, @Nullable Throwable th) {
method log (line 936) | private void log(@Nullable String message) {
method updateProgress (line 942) | private void updateProgress(float last, int current) {
method fixProgress (line 950) | private void fixProgress(int appendMax) {
method newSubProgress (line 959) | @Nullable
class Result (line 982) | public static class Result {
method Result (line 991) | public Result(@NonNull List<UserPackagePair> failedUserPackagePairs) {
method Result (line 995) | public Result(@NonNull List<UserPackagePair> failedUserPackagePairs,...
method requiresRestart (line 1005) | public boolean requiresRestart() {
method setRequiresRestart (line 1009) | public void setRequiresRestart(boolean requiresRestart) {
method isSuccessful (line 1013) | public boolean isSuccessful() {
method getFailedPackages (line 1017) | @NonNull
method getAssociatedUsers (line 1022) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsResultsActivity.java
class BatchOpsResultsActivity (line 38) | public class BatchOpsResultsActivity extends BaseActivity {
method onAuthenticated (line 45) | @Override
method onSaveInstanceState (line 69) | @Override
method onNewIntent (line 75) | @Override
method handleIntent (line 84) | private void handleIntent(@NonNull Intent intent) {
method restartIfNeeded (line 102) | private static boolean restartIfNeeded(@NonNull Intent intent) {
method onCreateOptionsMenu (line 110) | @Override
method onOptionsItemSelected (line 116) | @Override
method onDestroy (line 131) | @Override
method getFormattedLogs (line 137) | public CharSequence getFormattedLogs(String logs) {
class RecyclerAdapter (line 151) | static class RecyclerAdapter extends RecyclerView.Adapter<RecyclerAdap...
method RecyclerAdapter (line 155) | public RecyclerAdapter(@Nullable List<CharSequence> appLabels) {
method onCreateViewHolder (line 159) | @NonNull
method onBindViewHolder (line 166) | @Override
method getItemCount (line 171) | @Override
class ViewHolder (line 176) | static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 179) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsService.java
class BatchOpsService (line 37) | public class BatchOpsService extends ForegroundService {
method getServiceIntent (line 85) | @NonNull
method BatchOpsService (line 96) | public BatchOpsService() {
method onCreate (line 100) | @Override
method onStartCommand (line 107) | @Override
method onHandleIntent (line 128) | @Override
method onQueued (line 151) | @Override
method onStartIntent (line 167) | @Override
method onDestroy (line 175) | @Override
method getQueueItem (line 185) | @Nullable
method sendStarted (line 193) | private void sendStarted(@NonNull BatchQueueItem queueItem) {
method sendResults (line 201) | private void sendResults(int result, @Nullable BatchQueueItem queueIte...
method sendNotification (line 211) | private void sendNotification(int result, @Nullable BatchQueueItem que...
method getHeader (line 252) | @NonNull
method getDesiredOpTitle (line 263) | @NonNull
method getDesiredErrorString (line 312) | private String getDesiredErrorString(int op, int failedCount) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchQueueItem.java
class BatchQueueItem (line 30) | public class BatchQueueItem implements Parcelable, IJsonSerializer {
method getBatchOpQueue (line 31) | @NonNull
method getOneClickQueue (line 39) | @NonNull
method BatchQueueItem (line 58) | private BatchQueueItem(@StringRes int titleRes,
method getTitleRes (line 70) | @StringRes
method getTitle (line 75) | @Nullable
method getOp (line 85) | public int getOp() {
method getPackages (line 89) | @NonNull
method setPackages (line 94) | public void setPackages(@NonNull ArrayList<String> packages) {
method getUsers (line 98) | @NonNull
method setUsers (line 113) | public void setUsers(@Nullable ArrayList<Integer> users) {
method getOptions (line 117) | @Nullable
method describeContents (line 122) | @Override
method writeToParcel (line 127) | @Override
method BatchQueueItem (line 136) | protected BatchQueueItem(@NonNull JSONObject jsonObject) throws JSONEx...
method serializeToJson (line 145) | @NonNull
method BatchQueueItem (line 157) | protected BatchQueueItem(@NonNull Parcel in) {
method createFromParcel (line 168) | @NonNull
method newArray (line 174) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchAppOpsOptions.java
class BatchAppOpsOptions (line 17) | public class BatchAppOpsOptions implements IBatchOpOptions {
method BatchAppOpsOptions (line 24) | public BatchAppOpsOptions(@NonNull int[] appOps, int mode) {
method getAppOps (line 29) | @NonNull
method getMode (line 34) | public int getMode() {
method BatchAppOpsOptions (line 38) | protected BatchAppOpsOptions(@NonNull Parcel in) {
method createFromParcel (line 44) | @Override
method newArray (line 50) | @Override
method describeContents (line 57) | @Override
method writeToParcel (line 62) | @Override
method BatchAppOpsOptions (line 68) | protected BatchAppOpsOptions(@NonNull JSONObject jsonObject) throws JS...
method serializeToJson (line 77) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchBackupImportOptions.java
class BatchBackupImportOptions (line 19) | public class BatchBackupImportOptions implements IBatchOpOptions {
method BatchBackupImportOptions (line 28) | public BatchBackupImportOptions(@ImportType int importType, @NonNull U...
method getImportType (line 35) | @ImportType
method getDirectory (line 40) | @NonNull
method isRemoveImportedDirectory (line 45) | public boolean isRemoveImportedDirectory() {
method BatchBackupImportOptions (line 49) | protected BatchBackupImportOptions(@NonNull Parcel in) {
method createFromParcel (line 57) | @Override
method newArray (line 63) | @Override
method describeContents (line 70) | @Override
method writeToParcel (line 75) | @Override
method BatchBackupImportOptions (line 82) | protected BatchBackupImportOptions(@NonNull JSONObject jsonObject) thr...
method serializeToJson (line 92) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchBackupOptions.java
class BatchBackupOptions (line 25) | public class BatchBackupOptions implements IBatchOpOptions {
method BatchBackupOptions (line 35) | public BatchBackupOptions(@BackupFlags.BackupFlag int flags,
method getBackupOpOptions (line 43) | public BackupOpOptions getBackupOpOptions(@NonNull String packageName,...
method getRestoreOpOptions (line 54) | public RestoreOpOptions getRestoreOpOptions(@NonNull String packageNam...
method getDeleteOpOptions (line 76) | public DeleteOpOptions getDeleteOpOptions(@NonNull String packageName,...
method BatchBackupOptions (line 101) | protected BatchBackupOptions(@NonNull Parcel in) {
method createFromParcel (line 108) | @Override
method newArray (line 114) | @Override
method describeContents (line 121) | @Override
method writeToParcel (line 126) | @Override
method BatchBackupOptions (line 133) | public BatchBackupOptions(@NonNull JSONObject jsonObject) throws JSONE...
method serializeToJson (line 143) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchComponentOptions.java
class BatchComponentOptions (line 17) | public class BatchComponentOptions implements IBatchOpOptions {
method BatchComponentOptions (line 23) | public BatchComponentOptions(@NonNull String[] signatures) {
method getSignatures (line 27) | @NonNull
method BatchComponentOptions (line 32) | protected BatchComponentOptions(@NonNull Parcel in) {
method writeToParcel (line 36) | @Override
method BatchComponentOptions (line 41) | protected BatchComponentOptions(@NonNull JSONObject jsonObject) throws...
method serializeToJson (line 49) | @NonNull
method describeContents (line 58) | @Override
method createFromParcel (line 64) | @Override
method newArray (line 70) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchDexOptOptions.java
class BatchDexOptOptions (line 18) | public class BatchDexOptOptions implements IBatchOpOptions {
method BatchDexOptOptions (line 22) | public BatchDexOptOptions(@NonNull DexOptOptions dexOptOptions) {
method getDexOptOptions (line 26) | public DexOptOptions getDexOptOptions() {
method BatchDexOptOptions (line 30) | protected BatchDexOptOptions(@NonNull Parcel in) {
method createFromParcel (line 36) | @Override
method newArray (line 42) | @Override
method describeContents (line 49) | @Override
method writeToParcel (line 54) | @Override
method BatchDexOptOptions (line 59) | protected BatchDexOptOptions(@NonNull JSONObject jsonObject) throws JS...
method serializeToJson (line 67) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchFreezeOptions.java
class BatchFreezeOptions (line 15) | public class BatchFreezeOptions implements IBatchOpOptions {
method BatchFreezeOptions (line 22) | public BatchFreezeOptions(@FreezeUtils.FreezeMethod int type, boolean ...
method getType (line 27) | public int getType() {
method isPreferCustom (line 31) | public boolean isPreferCustom() {
method describeContents (line 35) | @Override
method BatchFreezeOptions (line 40) | protected BatchFreezeOptions(@NonNull JSONObject jsonObject) throws JS...
method BatchFreezeOptions (line 50) | protected BatchFreezeOptions(@NonNull Parcel in) {
method createFromParcel (line 56) | @NonNull
method newArray (line 62) | @NonNull
method writeToParcel (line 69) | @Override
method serializeToJson (line 75) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchNetPolicyOptions.java
class BatchNetPolicyOptions (line 15) | public class BatchNetPolicyOptions implements IBatchOpOptions {
method BatchNetPolicyOptions (line 20) | public BatchNetPolicyOptions(@NetPolicy int policies) {
method getPolicies (line 24) | @NetPolicy
method BatchNetPolicyOptions (line 29) | protected BatchNetPolicyOptions(@NonNull Parcel in) {
method createFromParcel (line 34) | @Override
method newArray (line 40) | @Override
method describeContents (line 47) | @Override
method writeToParcel (line 52) | @Override
method BatchNetPolicyOptions (line 57) | protected BatchNetPolicyOptions(@NonNull JSONObject jsonObject) throws...
method serializeToJson (line 65) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchPermissionOptions.java
class BatchPermissionOptions (line 17) | public class BatchPermissionOptions implements IBatchOpOptions {
method BatchPermissionOptions (line 22) | public BatchPermissionOptions(@NonNull String[] permissions) {
method getPermissions (line 26) | @NonNull
method BatchPermissionOptions (line 31) | protected BatchPermissionOptions(@NonNull Parcel in) {
method writeToParcel (line 35) | @Override
method BatchPermissionOptions (line 40) | protected BatchPermissionOptions(@NonNull JSONObject jsonObject) throw...
method serializeToJson (line 48) | @NonNull
method describeContents (line 57) | @Override
method createFromParcel (line 63) | @Override
method newArray (line 69) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/IBatchOpOptions.java
type IBatchOpOptions (line 13) | public interface IBatchOpOptions extends Parcelable, IJsonSerializer {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/changelog/Changelog.java
class Changelog (line 11) | public class Changelog {
method Changelog (line 17) | public Changelog() {
method addItem (line 21) | public void addItem(@NonNull ChangelogItem row) {
method clearAllRows (line 28) | public void clearAllRows() {
method isBulletedList (line 32) | public boolean isBulletedList() {
method setBulletedList (line 36) | public void setBulletedList(boolean bulletedList) {
method getChangelogItems (line 40) | public LinkedList<ChangelogItem> getChangelogItems() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogHeader.java
class ChangelogHeader (line 11) | public class ChangelogHeader extends ChangelogItem {
method ChangelogHeader (line 20) | public ChangelogHeader(@NonNull String versionName, long versionCode, ...
method getVersionName (line 29) | @NonNull
method getVersionCode (line 34) | public long getVersionCode() {
method getReleaseType (line 38) | @NonNull
method getReleaseDate (line 43) | @NonNull
method parseHeaderText (line 48) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogItem.java
class ChangelogItem (line 15) | public class ChangelogItem {
method ChangelogItem (line 50) | public ChangelogItem(@ChangelogType int type) {
method ChangelogItem (line 55) | public ChangelogItem(@NonNull CharSequence changeText, @ChangelogType ...
method ChangelogItem (line 60) | public ChangelogItem(@NonNull String changeText, @ChangelogType int ty...
method isBulletedList (line 65) | public boolean isBulletedList() {
method setBulletedList (line 69) | public void setBulletedList(boolean bulletedList) {
method isSubtext (line 73) | public boolean isSubtext() {
method setSubtext (line 77) | public void setSubtext(boolean subtext) {
method getChangeText (line 82) | @NonNull
method getChangeTitle (line 87) | @Nullable
method setChangeTitle (line 92) | void setChangeTitle(@Nullable String changeTitle) {
method getChangeTextType (line 96) | @ChangeTextType
method setChangeTextType (line 101) | public void setChangeTextType(@ChangeTextType int changeTextType) {
method parseChangeText (line 105) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogParser.java
class ChangelogParser (line 28) | public class ChangelogParser {
method ChangelogParser (line 72) | public ChangelogParser(@NonNull Context context, @RawRes int changeLog...
method ChangelogParser (line 84) | public ChangelogParser(@NonNull Context context, @RawRes int changeLog...
method parse (line 97) | @NonNull
method readChangelogTag (line 115) | protected void readChangelogTag(@NonNull XmlPullParser parser, @NonNul...
method readReleaseTag (line 144) | private void readReleaseTag(@NonNull XmlPullParser parser, @NonNull Ch...
method readChangelogItemTags (line 191) | private void readChangelogItemTags(@NonNull XmlPullParser parser, @Non...
method getChangeTextType (line 241) | @ChangelogItem.ChangeTextType
FILE: app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogRecyclerAdapter.java
class ChangelogRecyclerAdapter (line 34) | public class ChangelogRecyclerAdapter extends RecyclerView.Adapter<Chang...
method ChangelogRecyclerAdapter (line 37) | public ChangelogRecyclerAdapter() {
method setAdapterList (line 40) | public void setAdapterList(@NonNull List<ChangelogItem> list) {
method getItemViewType (line 46) | @ChangelogItem.ChangelogType
method onCreateViewHolder (line 54) | @NonNull
method onBindViewHolder (line 66) | @Override
method getItemCount (line 94) | @Override
method getChangeText (line 101) | @NonNull
method getChangeTextAppearance (line 167) | @StyleRes
method getTitleTextAppearance (line 180) | @StyleRes
class ViewHolder (line 193) | public static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 198) | public ViewHolder(@NonNull View itemView, @ChangelogItem.ChangelogTy...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ActivityManagerCompat.java
class ActivityManagerCompat (line 51) | public final class ActivityManagerCompat {
type ActivityLaunchUserInteractionRequiredCallback (line 52) | public interface ActivityLaunchUserInteractionRequiredCallback {
method onInteraction (line 53) | @WorkerThread
method startActivityViaAssist (line 57) | @RequiresPermission(allOf = {
method startActivity (line 102) | @SuppressWarnings("deprecation")
method startService (line 129) | @SuppressWarnings("deprecation")
method sendBroadcast (line 145) | public static int sendBroadcast(Intent intent, @UserIdInt int userHandle)
method getContentProviderExternal (line 160) | @Nullable
method getRunningServices (line 177) | @NonNull
method getRunningAppProcesses (line 202) | @NonNull
method killUid (line 216) | @RequiresPermission("android.permission.KILL_UID")
method getActivityManager (line 221) | @SuppressWarnings("deprecation")
method getActivityManagerUnprivileged (line 230) | public static IActivityManager getActivityManagerUnprivileged() {
method getRunningAppProcessesUsingDumpSys (line 243) | @NonNull
method parseRunningAppProcesses (line 252) | @VisibleForTesting
method getRunningServicesUsingDumpSys (line 315) | @NonNull
method parseRunningServices (line 324) | @VisibleForTesting
method canDumpRunningServices (line 400) | @RequiresApi(Build.VERSION_CODES.M)
class IntentReceiver (line 406) | final static class IntentReceiver extends IIntentReceiver.Stub {
method performReceive (line 409) | public void performReceive(Intent intent, int resultCode, String dat...
method waitForFinish (line 421) | public synchronized void waitForFinish() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/AppOpsManagerCompat.java
class AppOpsManagerCompat (line 42) | @SuppressLint("SoonBlockedPrivateApi")
method isMiuiOp (line 208) | public static boolean isMiuiOp(int op) {
method getAllOps (line 216) | @NonNull
method getOpsWithoutPermissions (line 233) | @NonNull
method getModeConstants (line 238) | @NonNull
method modeToName (line 247) | @NonNull
method opToSwitch (line 272) | public static int opToSwitch(int op) {
method opToName (line 276) | @NonNull
method opToPermission (line 284) | @Nullable
method opToDefaultMode (line 292) | public static int opToDefaultMode(int op) {
method permissionToOpCode (line 305) | public static int permissionToOpCode(String permission) {
method permissionToOp (line 327) | @Nullable
class PackageOps (line 340) | public static class PackageOps implements Parcelable {
method PackageOps (line 345) | public PackageOps(String packageName, int uid, List<OpEntry> entries) {
method getPackageName (line 351) | public String getPackageName() {
method getUid (line 355) | public int getUid() {
method getOps (line 359) | public List<OpEntry> getOps() {
method toString (line 363) | @NonNull
method describeContents (line 373) | @Override
method writeToParcel (line 378) | @Override
method PackageOps (line 385) | protected PackageOps(@NonNull Parcel in) {
method createFromParcel (line 393) | @NonNull
method newArray (line 399) | @NonNull
class OpEntry (line 407) | public static class OpEntry implements Parcelable {
method OpEntry (line 410) | public OpEntry(Parcelable opEntry) {
method OpEntry (line 414) | protected OpEntry(Parcel in) {
method createFromParcel (line 421) | @NonNull
method newArray (line 427) | @NonNull
method getOp (line 434) | public int getOp() {
method getName (line 438) | @NonNull
method getPermission (line 443) | @Nullable
method getMode (line 448) | @Mode
method getDefaultMode (line 453) | @Mode
method getTime (line 458) | public long getTime() {
method getLastAccessTime (line 462) | public long getLastAccessTime(@OpFlags int flags) {
method getLastAccessForegroundTime (line 471) | public long getLastAccessForegroundTime(@OpFlags int flags) {
method getLastAccessBackgroundTime (line 479) | public long getLastAccessBackgroundTime(@OpFlags int flags) {
method getLastAccessTime (line 487) | public long getLastAccessTime(@UidState int fromUidState,
method getRejectTime (line 497) | public long getRejectTime() {
method getLastRejectTime (line 501) | public long getLastRejectTime(@OpFlags int flags) {
method getLastRejectForegroundTime (line 509) | public long getLastRejectForegroundTime(@OpFlags int flags) {
method getLastRejectBackgroundTime (line 517) | public long getLastRejectBackgroundTime(@OpFlags int flags) {
method getLastRejectTime (line 525) | public long getLastRejectTime(@UidState int fromUidState,
method isRunning (line 535) | public boolean isRunning() {
method getDuration (line 539) | public long getDuration() {
method getLastDuration (line 543) | @RequiresApi(Build.VERSION_CODES.R)
method getLastForegroundDuration (line 548) | public long getLastForegroundDuration(@OpFlags int flags) {
method getLastBackgroundDuration (line 554) | public long getLastBackgroundDuration(@OpFlags int flags) {
method getLastDuration (line 560) | public long getLastDuration(@UidState int fromUidState,
method getProxyUid (line 569) | @Deprecated
method getProxyUid (line 576) | @Deprecated
method getProxyPackageName (line 586) | @Deprecated
method getProxyPackageName (line 594) | @Deprecated
method describeContents (line 608) | @Override
method writeToParcel (line 613) | @Override
method getModeFromOpEntriesOrDefault (line 619) | public static int getModeFromOpEntriesOrDefault(int op, @Nullable List...
method getConfiguredOpsForPackage (line 631) | @NonNull
method AppOpsManagerCompat (line 644) | public AppOpsManagerCompat() {
method checkOperation (line 657) | @AppOpsManagerCompat.Mode
method checkOpNoThrow (line 665) | @AppOpsManagerCompat.Mode
method getOpsForPackage (line 675) | @RequiresPermission(ManifestCompat.permission.GET_APP_OPS_STATS)
method getPackagesForOps (line 691) | @RequiresPermission(ManifestCompat.permission.GET_APP_OPS_STATS)
method setMode (line 705) | @RequiresPermission("android.permission.MANAGE_APP_OPS_MODES")
method resetAllModes (line 717) | @RequiresPermission("android.permission.MANAGE_APP_OPS_MODES")
method addAllRelevantOpEntriesWithNoOverride (line 724) | private static void addAllRelevantOpEntriesWithNoOverride(final List<A...
method opsConvert (line 738) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ApplicationInfoCompat.java
class ApplicationInfoCompat (line 20) | public final class ApplicationInfoCompat {
method getPrivateFlags (line 290) | @ApplicationInfoPrivateFlags
method getSeInfo (line 298) | @SuppressWarnings("deprecation")
method getPrimaryCpuAbi (line 305) | @Nullable
method getZygotePreloadName (line 310) | @Nullable
method getHiddenApiEnforcementPolicy (line 318) | public static int getHiddenApiEnforcementPolicy(@NonNull ApplicationIn...
method isSystemApp (line 325) | public static boolean isSystemApp(@NonNull ApplicationInfo info) {
method isStopped (line 329) | public static boolean isStopped(@NonNull ApplicationInfo info) {
method isInstalled (line 333) | public static boolean isInstalled(@NonNull ApplicationInfo info) {
method isOnlyDataInstalled (line 339) | public static boolean isOnlyDataInstalled(@NonNull ApplicationInfo inf...
method isTestOnly (line 345) | public static boolean isTestOnly(@NonNull ApplicationInfo info) {
method isSuspended (line 349) | public static boolean isSuspended(@NonNull ApplicationInfo info) {
method isHidden (line 357) | public static boolean isHidden(@NonNull ApplicationInfo info) {
method isStaticSharedLibrary (line 361) | public static boolean isStaticSharedLibrary(@NonNull ApplicationInfo i...
method isPrivileged (line 366) | public static boolean isPrivileged(@NonNull ApplicationInfo info) {
method hasDomainUrls (line 370) | public static boolean hasDomainUrls(@NonNull ApplicationInfo info) {
method loadLabelSafe (line 379) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/BackupCompat.java
class BackupCompat (line 27) | public final class BackupCompat {
method BackupCompat (line 29) | private BackupCompat() {
method setBackupEnabledForUser (line 35) | public static void setBackupEnabledForUser(@UserIdInt int userId, bool...
method isBackupEnabledForUser (line 50) | public static boolean isBackupEnabledForUser(@UserIdInt int userId) {
method setBackupPassword (line 65) | public static boolean setBackupPassword(String currentPw, String newPw) {
method hasBackupPassword (line 73) | public static boolean hasBackupPassword() {
method adbBackup (line 81) | @SuppressWarnings("deprecation")
method adbRestore (line 99) | @SuppressWarnings("deprecation")
method isAppEligibleForBackupForUser (line 113) | @SuppressWarnings("deprecation")
method filterAppsEligibleForBackupForUser (line 134) | @SuppressWarnings("deprecation")
method getBackupManager (line 167) | public static IBackupManager getBackupManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/BinderCompat.java
class BinderCompat (line 20) | public final class BinderCompat {
method shellCommand (line 33) | @SuppressWarnings("deprecation")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/BiometricAuthenticatorsCompat.java
class BiometricAuthenticatorsCompat (line 9) | public class BiometricAuthenticatorsCompat {
class Builder (line 10) | public static final class Builder {
method Builder (line 16) | public Builder() {
method allowEverything (line 19) | public Builder allowEverything(boolean allow) {
method allowWeakBiometric (line 25) | public Builder allowWeakBiometric(boolean allow) {
method allowStrongBiometric (line 30) | public Builder allowStrongBiometric(boolean allow) {
method allowDeviceCredential (line 35) | public Builder allowDeviceCredential(boolean allow) {
method deviceCredentialOnly (line 40) | public Builder deviceCredentialOnly(boolean only) {
method build (line 45) | public int build() {
method getDeviceCredentialOnlyFlags (line 69) | private int getDeviceCredentialOnlyFlags() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ClearDataObserver.java
class ClearDataObserver (line 7) | public class ClearDataObserver extends IPackageDataObserver.Stub {
method onRemoveCompleted (line 11) | @Override
method isCompleted (line 20) | public boolean isCompleted() {
method isSuccessful (line 24) | public boolean isSuccessful() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ConnectivityManagerCompat.java
class ConnectivityManagerCompat (line 20) | public class ConnectivityManagerCompat {
method setUidFirewallRule (line 49) | @RequiresApi(Build.VERSION_CODES.TIRAMISU)
method getUidFirewallRule (line 54) | @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
method setFirewallChainEnabled (line 60) | @RequiresApi(Build.VERSION_CODES.TIRAMISU)
method getFirewallChainEnabled (line 65) | @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
method replaceFirewallChain (line 70) | @RequiresApi(Build.VERSION_CODES.TIRAMISU)
method getConnectivityManager (line 75) | private static IConnectivityManager getConnectivityManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/DeviceIdleManagerCompat.java
class DeviceIdleManagerCompat (line 16) | public final class DeviceIdleManagerCompat {
method disableBatteryOptimization (line 17) | @RequiresPermission(ManifestCompat.permission.DEVICE_POWER)
method enableBatteryOptimization (line 30) | @RequiresPermission(ManifestCompat.permission.DEVICE_POWER)
method isBatteryOptimizedApp (line 46) | public static boolean isBatteryOptimizedApp(@NonNull String packageNam...
method getDeviceIdleController (line 60) | @RequiresApi(Build.VERSION_CODES.M)
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/DomainVerificationManagerCompat.java
class DomainVerificationManagerCompat (line 19) | @RequiresApi(Build.VERSION_CODES.S)
method getDomainVerificationUserState (line 21) | @Nullable
method setDomainVerificationLinkHandlingAllowed (line 30) | @RequiresPermission(ManifestCompat.permission.UPDATE_DOMAIN_VERIFICATI...
method getDomainVerificationManager (line 48) | public static IDomainVerificationManager getDomainVerificationManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/InputManagerCompat.java
class InputManagerCompat (line 23) | public class InputManagerCompat {
method sendKeyEvent (line 24) | @RequiresPermission(ManifestCompat.permission.INJECT_EVENTS)
method injectKeyEvent (line 43) | @RequiresPermission(ManifestCompat.permission.INJECT_EVENTS)
method injectInputEvent (line 48) | @RequiresPermission(ManifestCompat.permission.INJECT_EVENTS)
method sleep (line 65) | private static void sleep(long milliseconds) {
method getInputManager (line 73) | private static IInputManager getInputManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/InstallSourceInfoCompat.java
class InstallSourceInfoCompat (line 17) | public class InstallSourceInfoCompat implements Parcelable {
method InstallSourceInfoCompat (line 39) | @RequiresApi(Build.VERSION_CODES.R)
method InstallSourceInfoCompat (line 53) | public InstallSourceInfoCompat(@Nullable String installingPackageName) {
method describeContents (line 59) | @Override
method writeToParcel (line 67) | @Override
method InstallSourceInfoCompat (line 77) | private InstallSourceInfoCompat(Parcel source) {
method setInitiatingPackageLabel (line 86) | public void setInitiatingPackageLabel(@Nullable CharSequence label) {
method getInitiatingPackageLabel (line 90) | @Nullable
method setOriginatingPackageLabel (line 95) | public void setOriginatingPackageLabel(@Nullable CharSequence label) {
method getOriginatingPackageLabel (line 99) | @Nullable
method setInstallingPackageLabel (line 104) | public void setInstallingPackageLabel(@Nullable CharSequence label) {
method getInstallingPackageLabel (line 108) | @Nullable
method getInitiatingPackageName (line 125) | @Nullable
method getInitiatingPackageSigningInfo (line 133) | @RequiresApi(Build.VERSION_CODES.P)
method getOriginatingPackageName (line 151) | @Nullable
method getInstallingPackageName (line 165) | @Nullable
method createFromParcel (line 172) | @Override
method newArray (line 177) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/IntegerCompat.java
class IntegerCompat (line 7) | public class IntegerCompat {
method toSignedHex (line 11) | @NonNull
method toUnsignedHex (line 22) | @NonNull
method decode (line 30) | public static int decode(@NonNull String nm) throws NumberFormatExcept...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ManifestCompat.java
class ManifestCompat (line 9) | public final class ManifestCompat {
class permission (line 10) | public static final class permission {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/NetworkPolicyManagerCompat.java
class NetworkPolicyManagerCompat (line 25) | public final class NetworkPolicyManagerCompat {
method getUidPolicy (line 90) | @NetPolicy
method setUidPolicy (line 100) | @RequiresPermission(ManifestCompat.permission.MANAGE_NETWORK_POLICY)
method getReadablePolicies (line 113) | @NonNull
method getAllReadablePolicies (line 132) | @NonNull
method getNetPolicyManager (line 144) | private static INetworkPolicyManager getNetPolicyManager() {
method hasPolicy (line 148) | private static boolean hasPolicy(int policies, int policy) {
method getReadablePolicyName (line 152) | private static String getReadablePolicyName(@NonNull Context context, ...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/NetworkStatsCompat.java
class NetworkStatsCompat (line 19) | public class NetworkStatsCompat implements AutoCloseable {
method NetworkStatsCompat (line 32) | NetworkStatsCompat(@NonNull NetworkTemplate template, int flags, long ...
method hasNextEntry (line 48) | public boolean hasNextEntry() {
method getNextEntry (line 52) | @Nullable
method startSummaryEnumeration (line 62) | void startSummaryEnumeration() throws RemoteException {
method close (line 69) | @Override
method finalize (line 82) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/NetworkStatsManagerCompat.java
class NetworkStatsManagerCompat (line 21) | public class NetworkStatsManagerCompat {
method querySummary (line 22) | @NonNull
method createTemplate (line 34) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/OverlayManagerCompact.java
class OverlayManagerCompact (line 11) | @RequiresApi(Build.VERSION_CODES.O)
method getOverlayManager (line 13) | @RequiresPermission(ManifestCompat.permission.CHANGE_OVERLAY_PACKAGES)
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/PackageInfoCompat2.java
class PackageInfoCompat2 (line 17) | public class PackageInfoCompat2 {
method getOverlayTarget (line 18) | @Nullable
method getTargetOverlayableName (line 23) | @Nullable
method getOverlayCategory (line 31) | @Nullable
method getOverlayPriority (line 39) | public static int getOverlayPriority(@NonNull PackageInfo packageInfo) {
method isStaticOverlayPackage (line 46) | public static boolean isStaticOverlayPackage(@NonNull PackageInfo pack...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/PackageManagerCompat.java
class PackageManagerCompat (line 71) | public final class PackageManagerCompat {
method getInstalledPackages (line 125) | @WorkerThread
method getInstalledPackagesInternal (line 169) | @SuppressWarnings("deprecation")
method getInstalledApplications (line 186) | @WorkerThread
method getInstalledApplications (line 192) | @SuppressLint("NewApi")
method getPackageInfo (line 203) | @NonNull
method getPackageInfo (line 209) | @NonNull
method getApplicationInfo (line 278) | @SuppressWarnings("deprecation")
method getInstallerPackageName (line 293) | @Nullable
method getInstallSourceInfo (line 306) | @SuppressWarnings("deprecation")
method getLaunchIntentForPackage (line 329) | @Nullable
method queryIntentActivities (line 366) | @SuppressLint("NewApi")
method getComponentEnabledSetting (line 390) | @EnabledState
method setComponentEnabledSetting (line 400) | @SuppressWarnings("deprecation")
method setApplicationEnabledSetting (line 417) | @RequiresPermission(value = Manifest.permission.CHANGE_COMPONENT_ENABL...
method getApplicationEnabledSetting (line 431) | public static int getApplicationEnabledSetting(String packageName, @Us...
method suspendPackages (line 440) | @SuppressWarnings("deprecation")
method isPackageSuspended (line 463) | public static boolean isPackageSuspended(String packageName, @UserIdIn...
method hidePackage (line 470) | @RequiresPermission(ManifestCompat.permission.MANAGE_USERS)
method isPackageHidden (line 488) | public static boolean isPackageHidden(String packageName, @UserIdInt i...
method installExistingPackageAsUser (line 505) | @SuppressWarnings("deprecation")
method clearApplicationUserData (line 525) | @RequiresPermission(ManifestCompat.permission.CLEAR_APP_USER_DATA)
method clearApplicationUserData (line 545) | @RequiresPermission(ManifestCompat.permission.CLEAR_APP_USER_DATA)
method deleteApplicationCacheFilesAsUser (line 556) | @RequiresPermission(allOf = {
method deleteApplicationCacheFilesAsUser (line 581) | @RequiresPermission(allOf = {
method forceStopPackage (line 595) | @RequiresPermission(ManifestCompat.permission.FORCE_STOP_PACKAGES)
method getPackageInstaller (line 605) | @NonNull
method freeStorageAndNotify (line 610) | @SuppressWarnings("deprecation")
method getPackageInfoInternal (line 668) | @SuppressLint("NewApi")
method getPackageManager (line 678) | public static IPackageManager getPackageManager() {
method getUnprivilegedPackageManager (line 682) | public static IPackageManager getUnprivilegedPackageManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/PermissionCompat.java
class PermissionCompat (line 36) | public final class PermissionCompat {
method getPermissionFlags (line 271) | @SuppressWarnings("deprecation")
method updatePermissionFlags (line 316) | @SuppressWarnings("deprecation")
method grantPermission (line 360) | @SuppressWarnings("deprecation")
method revokePermission (line 392) | @RequiresPermission(ManifestCompat.permission.REVOKE_RUNTIME_PERMISSIONS)
method revokePermission (line 402) | @SuppressWarnings("deprecation")
method checkPermission (line 431) | @SuppressWarnings("deprecation")
method getPermissionInfo (line 447) | @SuppressWarnings({"deprecation", "ConstantConditions"})
method getPermissionGroupInfo (line 459) | @SuppressWarnings("deprecation")
method queryPermissionsByGroup (line 467) | @SuppressWarnings("deprecation")
method getSplitPermissions (line 480) | public static List<SplitPermissionInfoParcelable> getSplitPermissions(...
method getCheckAdjustPolicyFlagPermission (line 489) | public static boolean getCheckAdjustPolicyFlagPermission(@NonNull Appl...
method getPermissionManager (line 493) | @NonNull
method getPermissionFlagsWithString (line 498) | @SuppressLint("WrongConstant")
method permissionFlagToString (line 510) | @SuppressLint("NewApi")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ProcessCompat.java
class ProcessCompat (line 17) | public final class ProcessCompat {
method exec (line 51) | public static Process exec(@Nullable String[] cmd, @Nullable String[] ...
method exec (line 63) | public static Process exec(String[] cmd, String[] env) throws IOExcept...
method exec (line 67) | public static Process exec(String[] cmd) throws IOException {
method isAlive (line 71) | public static boolean isAlive(@NonNull Process process) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/SensorServiceCompat.java
class SensorServiceCompat (line 18) | @RequiresApi(Build.VERSION_CODES.P)
method isSensorEnabled (line 20) | @RequiresPermission(ManifestCompat.permission.MANAGE_SENSORS)
method enableSensor (line 35) | @RequiresPermission(ManifestCompat.permission.MANAGE_SENSORS)
method resetSensor (line 48) | @RequiresPermission(ManifestCompat.permission.MANAGE_SENSORS)
method getSensorService (line 60) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/StorageManagerCompat.java
class StorageManagerCompat (line 33) | public final class StorageManagerCompat {
method from (line 56) | @NonNull
method StorageManagerCompat (line 61) | private StorageManagerCompat() {
method getVolumeList (line 64) | @NonNull
method openProxyFileDescriptor (line 81) | @NonNull
class ProxyFileDescriptorCallbackCompat (line 149) | public static abstract class ProxyFileDescriptorCallbackCompat {
method ProxyFileDescriptorCallbackCompat (line 152) | public ProxyFileDescriptorCallbackCompat(@NonNull Handler callbackHa...
method onGetSize (line 162) | public long onGetSize() throws ErrnoException {
method onRead (line 178) | public int onRead(long offset, int size, byte[] data) throws ErrnoEx...
method onWrite (line 193) | public int onWrite(long offset, int size, byte[] data) throws ErrnoE...
method onFsync (line 204) | public void onFsync() throws ErrnoException {
method onRelease (line 211) | protected void onRelease() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/SubscriptionManagerCompat.java
class SubscriptionManagerCompat (line 23) | public class SubscriptionManagerCompat {
method getActiveSubscriptionInfoList (line 26) | @SuppressWarnings("deprecation")
method getSubscriberIdForSubscriber (line 52) | @SuppressWarnings("deprecation")
method getSub (line 74) | @NonNull
method getPhoneSubInfo (line 79) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/ThumbnailUtilsCompat.java
class ThumbnailUtilsCompat (line 25) | public class ThumbnailUtilsCompat {
method createAudioThumbnail (line 41) | public static @NonNull Bitmap createAudioThumbnail(@NonNull Context co...
method createVideoThumbnail (line 75) | public static @NonNull Bitmap createVideoThumbnail(@NonNull Context co...
method getThumbnail (line 112) | private static Bitmap getThumbnail(@NonNull Bitmap bitmap, @NonNull Si...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/UriCompat.java
class UriCompat (line 9) | public final class UriCompat {
method encodeIfNotEncoded (line 22) | @Nullable
method isEncoded (line 36) | private static boolean isEncoded(@Nullable String value, @Nullable Str...
method isAllowed (line 60) | private static boolean isAllowed(char c, @Nullable String allow) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/UsageStatsManagerCompat.java
class UsageStatsManagerCompat (line 29) | public final class UsageStatsManagerCompat {
method queryEvents (line 42) | @RequiresPermission("android.permission.PACKAGE_USAGE_STATS")
method queryEventsSorted (line 61) | @RequiresPermission("android.permission.PACKAGE_USAGE_STATS")
method setAppInactive (line 79) | public static void setAppInactive(String packageName, @UserIdInt int u...
method isAppInactive (line 92) | @SuppressWarnings("deprecation")
method getUsageStatsManager (line 109) | public static IUsageStatsManager getUsageStatsManager() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/compat/VirtualDeviceManagerCompat.java
class VirtualDeviceManagerCompat (line 10) | @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/AESCrypto.java
class AESCrypto (line 32) | public class AESCrypto implements Crypto {
method AESCrypto (line 48) | public AESCrypto(@NonNull byte[] iv) throws CryptoException {
method getModeName (line 52) | @NonNull
method AESCrypto (line 58) | protected AESCrypto(@NonNull byte[] iv, @NonNull @CryptoUtils.Mode Str...
method setMacSizeBits (line 99) | public void setMacSizeBits(int macSizeBits) {
method getParams (line 105) | @NonNull
method getEncryptedAesKey (line 111) | @CallSuper
method encrypt (line 124) | @WorkerThread
method encrypt (line 130) | @Override
method decrypt (line 142) | @WorkerThread
method decrypt (line 148) | @Override
method handleFiles (line 160) | @WorkerThread
method close (line 194) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/Crypto.java
type Crypto (line 16) | public interface Crypto extends Closeable {
method getModeName (line 17) | @NonNull
method encrypt (line 21) | @WorkerThread
method encrypt (line 24) | @WorkerThread
method decrypt (line 27) | @WorkerThread
method decrypt (line 30) | @WorkerThread
method close (line 33) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/CryptoException.java
class CryptoException (line 5) | public class CryptoException extends Throwable {
method CryptoException (line 6) | public CryptoException() {
method CryptoException (line 10) | public CryptoException(String message) {
method CryptoException (line 14) | public CryptoException(String message, Throwable cause) {
method CryptoException (line 18) | public CryptoException(Throwable cause) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/DummyCrypto.java
class DummyCrypto (line 13) | public class DummyCrypto implements Crypto {
method getModeName (line 14) | @NonNull
method encrypt (line 20) | @Override
method encrypt (line 25) | @Override
method decrypt (line 30) | @Override
method decrypt (line 35) | @Override
method close (line 40) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ECCCrypto.java
class ECCCrypto (line 25) | public class ECCCrypto extends AESCrypto {
method ECCCrypto (line 34) | public ECCCrypto(@NonNull byte[] iv, @Nullable byte[] encryptedAesKey)...
method getEncryptedAesKey (line 38) | @NonNull
method generateAesKey (line 44) | @NonNull
method decryptAesKey (line 52) | @NonNull
method encryptAesKey (line 74) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/OpenPGPCrypto.java
class OpenPGPCrypto (line 42) | public class OpenPGPCrypto implements Crypto {
method onReceive (line 65) | @Override
method OpenPGPCrypto (line 85) | @AnyThread
method getModeName (line 100) | @NonNull
method close (line 106) | @Override
method decrypt (line 114) | @WorkerThread
method decrypt (line 121) | @Override
method encrypt (line 128) | @WorkerThread
method encrypt (line 136) | @Override
method handleFiles (line 144) | @WorkerThread
method handleStreams (line 156) | @WorkerThread
method doAction (line 169) | @WorkerThread
method doActionForFiles (line 178) | @WorkerThread
method doActionForStream (line 207) | @WorkerThread
method bind (line 219) | private void bind() {
method waitForServiceBound (line 240) | @WorkerThread
method waitForResult (line 257) | @WorkerThread
method handleResult (line 269) | @UiThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/OpenPGPCryptoActivity.java
class OpenPGPCryptoActivity (line 21) | public class OpenPGPCryptoActivity extends BaseActivity {
method getTransparentBackground (line 30) | @Override
method onAuthenticated (line 35) | @Override
method onNewIntent (line 41) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/RSACrypto.java
class RSACrypto (line 23) | public class RSACrypto extends AESCrypto {
method RSACrypto (line 32) | public RSACrypto(@NonNull byte[] iv, @Nullable byte[] encryptedAesKey)...
method getEncryptedAesKey (line 37) | @NonNull
method generateAesKey (line 43) | @NonNull
method decryptAesKey (line 51) | @NonNull
method encryptAesKey (line 75) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/RandomChar.java
class RandomChar (line 12) | public class RandomChar {
method RandomChar (line 21) | public RandomChar() {
method RandomChar (line 25) | public RandomChar(@NonNull Random random) {
method RandomChar (line 29) | public RandomChar(@NonNull Random random, @NonNull String symbols) {
method nextChars (line 35) | public void nextChars(@NonNull char[] chars) {
method nextChar (line 41) | public char nextChar() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/auth/AuthFeatureDemultiplexer.java
class AuthFeatureDemultiplexer (line 16) | public class AuthFeatureDemultiplexer extends BaseActivity {
method onAuthenticated (line 19) | @Override
method getTransparentBackground (line 30) | @Override
method handleRequest (line 35) | private void handleRequest(@NonNull Intent intent) {
method launchProfile (line 59) | public void launchProfile(@NonNull Intent intent) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/auth/AuthManager.java
class AuthManager (line 10) | public final class AuthManager {
method getKey (line 13) | @NonNull
method setKey (line 18) | public static void setKey(@NonNull String key) {
method generateKey (line 22) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/auth/AuthManagerActivity.java
class AuthManagerActivity (line 19) | public class AuthManagerActivity extends BaseActivity {
method onAuthenticated (line 23) | @Override
method onOptionsItemSelected (line 43) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/AesEncryptedData.java
class AesEncryptedData (line 7) | class AesEncryptedData extends Pair<byte[], byte[]> {
method AesEncryptedData (line 14) | public AesEncryptedData(byte[] iv, byte[] encryptedData) {
method getIv (line 18) | public byte[] getIv() {
method getEncryptedData (line 22) | public byte[] getEncryptedData() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/CompatUtil.java
class CompatUtil (line 51) | public class CompatUtil {
method getAesGcmLocalProtectionKey (line 77) | @SuppressWarnings({"deprecation", "InlinedApi"})
method readKeyApiL (line 171) | @Nullable
method getPrng (line 191) | @NonNull
method getEncryptedData (line 205) | @NonNull
method decryptData (line 240) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/KeyPair.java
class KeyPair (line 13) | public class KeyPair extends Pair<PrivateKey, Certificate> {
method KeyPair (line 14) | public KeyPair(PrivateKey first, Certificate second) {
method getPrivateKey (line 18) | public PrivateKey getPrivateKey() {
method getPublicKey (line 22) | public PublicKey getPublicKey() {
method getCertificate (line 26) | public Certificate getCertificate() {
method destroy (line 30) | public void destroy() throws DestroyFailedException {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/KeyStoreActivity.java
class KeyStoreActivity (line 23) | public class KeyStoreActivity extends AppCompatActivity {
method onCreate (line 27) | @Override
method onNewIntent (line 40) | @Override
method processIntentAndFinish (line 46) | private void processIntentAndFinish(@Nullable Intent intent) {
method displayInputKeyStoreAliasPassword (line 74) | @Deprecated
method savePass (line 87) | private void savePass(@NonNull String prefKey, @Nullable Editable rawP...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/KeyStoreManager.java
class KeyStoreManager (line 67) | public class KeyStoreManager {
method getInstance (line 90) | public static KeyStoreManager getInstance() throws Exception {
method reloadKeyStore (line 97) | public static void reloadKeyStore() throws Exception {
method generateAndDisplayKeyStorePassword (line 101) | @NonNull
method displayKeyStorePassword (line 111) | @NonNull
method inputKeyStorePassword (line 132) | @NonNull
method hasKeyStore (line 191) | public static boolean hasKeyStore() {
method hasKeyStorePassword (line 195) | public static boolean hasKeyStorePassword() {
method migrateKeyStore (line 204) | @Deprecated // To be removed in v3.0.0
method onReceive (line 237) | @Override
method KeyStoreManager (line 250) | private KeyStoreManager()
method addKeyPair (line 256) | public void addKeyPair(String alias, @NonNull KeyPair keyPair, boolean...
method addSecretKey (line 282) | public void addSecretKey(String alias, @NonNull SecretKey secretKey, b...
method removeItem (line 306) | public void removeItem(String alias)
method removeItemInternal (line 317) | private void removeItemInternal(String alias) throws KeyStoreException {
method getKey (line 325) | @Nullable
method getKey (line 337) | @Deprecated
method getSecretKey (line 349) | @Nullable
method getKeyPair (line 359) | @Nullable
method getKeyPairNoThrow (line 369) | @Nullable
method containsKey (line 378) | public boolean containsKey(String alias) throws KeyStoreException {
method getCertificate (line 388) | private Certificate getCertificate(String alias) throws KeyStoreExcept...
method savePass (line 398) | static void savePass(@NonNull Context context, String prefAlias, char[...
method getDecryptedPassword (line 408) | @CheckResult
method getEncryptedPassword (line 426) | @Nullable
method getAmKeyStore (line 446) | private KeyStore getAmKeyStore() throws KeyStoreException, IOException...
method getAmKeyStorePassword (line 472) | @CheckResult
method getAliasPassword (line 490) | @Deprecated
method getPrefAlias (line 544) | @NonNull
method releaseLock (line 551) | private void releaseLock() {
method acquireLock (line 555) | private void acquireLock() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/KeyStoreUtils.java
class KeyStoreUtils (line 81) | public class KeyStoreUtils {
method listAliases (line 101) | @NonNull
method getKeyPair (line 117) | @NonNull
method getKeyPair (line 140) | @NonNull
method generateRSAKeyPair (line 159) | @NonNull
method getKeyStoreProvider (line 170) | @NonNull
method generateECCKeyPair (line 182) | @NonNull
method generatePrivateKey (line 199) | public static PrivateKey generatePrivateKey(InputStream inputStream) t...
method getPemCertificate (line 289) | public static byte[] getPemCertificate(@NonNull Certificate certificate)
method ASN1Parse (line 319) | private static void ASN1Parse(@NonNull byte[] b, List<BigInteger> inte...
method generateECDSACert (line 346) | private static X509Certificate generateECDSACert(@NonNull PrivateKey p...
method generateRSACert (line 360) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/SecretKeyAndVersion.java
class SecretKeyAndVersion (line 16) | public class SecretKeyAndVersion extends Pair<SecretKey, Integer> {
method SecretKeyAndVersion (line 21) | public SecretKeyAndVersion(@NonNull SecretKey secretKey, int androidVe...
method getSecretKey (line 30) | @NonNull
method getAndroidVersionWhenTheKeyHasBeenGenerated (line 40) | public int getAndroidVersionWhenTheKeyHasBeenGenerated() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/crypto/ks/SecretKeyCompat.java
class SecretKeyCompat (line 17) | @SuppressLint("SoonBlockedPrivateApi")
method destroy (line 33) | public static void destroy(@NonNull SecretKey secretKey) throws Destro...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/AppsDb.java
class AppsDb (line 26) | @Database(entities = {App.class, LogFilter.class, Backup.class, OpHistor...
method migrate (line 31) | @Override
method migrate (line 37) | @Override
method migrate (line 43) | @Override
method migrate (line 49) | @Override
method migrate (line 55) | @Override
method getInstance (line 61) | public static AppsDb getInstance() {
method appDao (line 76) | public abstract AppDao appDao();
method backupDao (line 78) | public abstract BackupDao backupDao();
method logFilterDao (line 80) | public abstract LogFilterDao logFilterDao();
method opHistoryDao (line 82) | public abstract OpHistoryDao opHistoryDao();
method fmFavoriteDao (line 84) | public abstract FmFavoriteDao fmFavoriteDao();
method freezeTypeDao (line 86) | public abstract FreezeTypeDao freezeTypeDao();
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/AppDao.java
type AppDao (line 16) | @Dao
method getAll (line 18) | @Query("SELECT * FROM app")
method getAllInstalled (line 21) | @Query("SELECT * FROM app WHERE is_installed = 1")
method getAll (line 24) | @Query("SELECT * FROM app WHERE package_name = :packageName")
method getAll (line 27) | @Query("SELECT * FROM app WHERE package_name = :packageName AND user_i...
method insert (line 30) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method insert (line 33) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method update (line 36) | @Update
method deleteAll (line 39) | @Query("DELETE FROM app WHERE 1")
method delete (line 42) | @Delete
method delete (line 45) | @Delete
method delete (line 48) | @Query("DELETE FROM app WHERE package_name = :packageName AND user_id ...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/BackupDao.java
type BackupDao (line 16) | @Dao
method getAll (line 18) | @Query("SELECT * FROM backup")
method get (line 21) | @Query("SELECT * FROM backup WHERE package_name = :packageName")
method insert (line 24) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method insert (line 27) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method update (line 30) | @Update
method delete (line 33) | @Delete
method delete (line 36) | @Delete
method delete (line 39) | @Query("DELETE FROM backup WHERE package_name = :packageName AND backu...
method deleteAll (line 42) | @Query("DELETE FROM backup WHERE 1")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/FmFavoriteDao.java
type FmFavoriteDao (line 15) | @Dao
method getAll (line 17) | @Query("SELECT * FROM fm_favorite")
method insert (line 20) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method rename (line 23) | @Query("UPDATE fm_favorite SET name = :newName WHERE id = :id")
method delete (line 26) | @Query("DELETE FROM fm_favorite WHERE id = :id")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/FreezeTypeDao.java
type FreezeTypeDao (line 16) | @Dao
method get (line 18) | @Nullable
method insert (line 22) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method delete (line 25) | @Query("DELETE FROM freeze_type WHERE package_name = :packageName")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/LogFilterDao.java
type LogFilterDao (line 15) | @Dao
method getAll (line 17) | @Query("SELECT * FROM log_filter")
method get (line 20) | @Query("SELECT * FROM log_filter WHERE id = :id LIMIT 1")
method insert (line 23) | @Query("INSERT INTO log_filter (name) VALUES(:filterName)")
method insert (line 26) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method delete (line 29) | @Delete
method delete (line 32) | @Query("DELETE FROM log_filter WHERE id = :id")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/dao/OpHistoryDao.java
type OpHistoryDao (line 14) | @Dao
method getAll (line 16) | @Query("SELECT * FROM op_history")
method insert (line 19) | @Insert(onConflict = OnConflictStrategy.REPLACE)
method delete (line 22) | @Query("DELETE FROM op_history WHERE id = :id")
method deleteAll (line 25) | @Query("DELETE FROM op_history WHERE 1")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/App.java
class App (line 25) | @SuppressWarnings("NotNullFieldNotInitialized")
method isSystemApp (line 123) | public boolean isSystemApp() {
method isDebuggable (line 127) | public boolean isDebuggable() {
method fromPackageInfo (line 131) | @NonNull
method fromBackup (line 160) | @NonNull
method equals (line 190) | @Override
method hashCode (line 198) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/Backup.java
class Backup (line 23) | @SuppressWarnings("NotNullFieldNotInitialized")
method getFlags (line 82) | public BackupFlags getFlags() {
method getItem (line 86) | @NonNull
method equals (line 100) | @Override
method hashCode (line 110) | @Override
method fromBackupMetadata (line 115) | @NonNull
method fromBackupMetadataV5 (line 138) | @NonNull
method fromBackupInfoAndMeta (line 143) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/FmFavorite.java
class FmFavorite (line 11) | @Entity(tableName = "fm_favorite")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/FreezeType.java
class FreezeType (line 12) | @Entity(tableName = "freeze_type")
method FreezeType (line 23) | public FreezeType() {}
method FreezeType (line 25) | public FreezeType(@NonNull String packageName, @FreezeUtils.FreezeMeth...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/LogFilter.java
class LogFilter (line 15) | @Entity(tableName = "log_filter", indices = {@Index(name = "index_name",...
method compareTo (line 27) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/entity/OpHistory.java
class OpHistory (line 11) | @Entity(tableName = "op_history")
FILE: app/src/main/java/io/github/muntashirakon/AppManager/db/utils/AppDb.java
class AppDb (line 57) | public class AppDb {
method AppDb (line 65) | public AppDb() {
method getAllApplications (line 70) | public List<App> getAllApplications() {
method getAllInstalledApplications (line 76) | public List<App> getAllInstalledApplications() {
method getAllApplications (line 82) | public List<App> getAllApplications(String packageName) {
method getAllApplications (line 88) | public List<App> getAllApplications(String packageName, @UserIdInt int...
method getAllBackups (line 94) | public List<Backup> getAllBackups() {
method getAllBackups (line 100) | public List<Backup> getAllBackups(String packageName) {
method getAllBackupsNoLock (line 109) | public List<Backup> getAllBackupsNoLock(String packageName) {
method insert (line 113) | public void insert(App app) {
method insert (line 119) | public void insert(Backup backup) {
method insertBackups (line 125) | public void insertBackups(List<Backup> backups) {
method deleteApplication (line 131) | public void deleteApplication(String packageName, int userId) {
method deleteAllApplications (line 137) | public void deleteAllApplications() {
method deleteAllBackups (line 143) | public void deleteAllBackups() {
method deleteBackup (line 149) | public void deleteBackup(Backup backup) {
method loadInstalledOrBackedUpApplications (line 155) | @WorkerThread
method updateApplications (line 161) | @WorkerThread
method updateApplication (line 175) | @WorkerThread
method updateApplicationInternal (line 186) | @WorkerThread
method updateApplications (line 249) | @WorkerThread
method getBackups (line 345) | @WorkerThread
method updateVariableData (line 356) | private static void updateVariableData(@NonNull Context context, @NonN...
method findIndexOfApp (line 426) | private static int findIndexOfApp(@NonNull List<App> appList, @NonNull...
method findUsage (line 436) | @Nullable
method isUpToDate (line 446) | private static boolean isUpToDate(@NonNull App currentApp, @NonNull Pa...
method isUpToDate (line 456) | private static boolean isUpToDate(@NonNull App currentApp, @NonNull Ba...
method getPackageNamesFromApps (line 470) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/BloatwareDetailsDialog.java
class BloatwareDetailsDialog (line 53) | public class BloatwareDetailsDialog extends CapsuleBottomSheetDialogFrag...
method getInstance (line 58) | @NonNull
method displayLoaderByDefault (line 78) | @Override
method initRootView (line 83) | @NonNull
method onViewCreated (line 102) | @Override
method updateDialog (line 123) | private void updateDialog(@NonNull DebloatObject debloatObject) {
method updateDialog (line 177) | private void updateDialog(@Nullable List<SuggestionObject> suggestionO...
method getDescription (line 186) | @NonNull
method addTag (line 220) | private void addTag(@NonNull ViewGroup parent, @StringRes int titleRes...
method addTag (line 229) | private void addTag(@NonNull ViewGroup parent, @NonNull CharSequence t...
class BloatwareDetailsViewModel (line 235) | public static class BloatwareDetailsViewModel extends AndroidViewModel {
method BloatwareDetailsViewModel (line 238) | public BloatwareDetailsViewModel(@NonNull Application application) {
method findDebloatObject (line 242) | public void findDebloatObject(@NonNull String packageName) {
class SuggestionsAdapter (line 257) | private class SuggestionsAdapter extends RecyclerView.Adapter<Suggesti...
method SuggestionsAdapter (line 260) | public SuggestionsAdapter() {
method setList (line 263) | public void setList(@NonNull List<SuggestionObject> suggestions) {
method onCreateViewHolder (line 267) | @NonNull
method onBindViewHolder (line 274) | @Override
method getItemCount (line 308) | @Override
method getItemId (line 313) | @Override
class SuggestionViewHolder (line 318) | private class SuggestionViewHolder extends RecyclerView.ViewHolder {
method SuggestionViewHolder (line 324) | public SuggestionViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloatObject.java
class DebloatObject (line 31) | public class DebloatObject {
method setId (line 89) | public void setId(int id) {
method getId (line 93) | public int getId() {
method getDependencies (line 97) | @NonNull
method getRequiredBy (line 102) | @NonNull
method getRemoval (line 107) | @Removal
method getWarning (line 122) | @Nullable
method getDescription (line 127) | public String getDescription() {
method getWebRefs (line 131) | @NonNull
method getSuggestionId (line 136) | @Nullable
method getSuggestions (line 141) | @Nullable
method setSuggestions (line 146) | public void setSuggestions(@Nullable List<SuggestionObject> suggestion...
method getLabel (line 150) | @Nullable
method getLabelOrPackageName (line 154) | @NonNull
method getIcon (line 160) | @Nullable
method getUsers (line 165) | @Nullable
method addUser (line 170) | private void addUser(int userId) {
method isInstalled (line 178) | public boolean isInstalled() {
method isSystemApp (line 182) | public boolean isSystemApp() {
method isUserApp (line 186) | public boolean isUserApp() {
method isFrozen (line 190) | public boolean isFrozen() {
method fillInstallInfo (line 194) | public void fillInstallInfo(@NonNull Context context, @NonNull AppDb a...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloaterActivity.java
class DebloaterActivity (line 42) | public class DebloaterActivity extends BaseActivity implements MultiSele...
method onReceive (line 53) | @Override
method handleOnBackPressed (line 61) | @Override
method onAuthenticated (line 72) | @Override
method onResume (line 106) | @Override
method onPause (line 113) | @Override
method onCreateOptionsMenu (line 119) | @Override
method onOptionsItemSelected (line 125) | @Override
method onSelectionModeEnabled (line 139) | @Override
method onSelectionModeDisabled (line 144) | @Override
method onSelectionChange (line 149) | @Override
method onNavigationItemSelected (line 155) | @Override
method onQueryTextChange (line 186) | @Override
method onQueryTextSubmit (line 192) | @Override
method showFreezeUnfreezeDialog (line 197) | private void showFreezeUnfreezeDialog(int freezeType) {
method handleBatchOpWithWarning (line 218) | private void handleBatchOpWithWarning(@BatchOpsManager.OpType int op) {
method handleBatchOp (line 227) | private void handleBatchOp(@BatchOpsManager.OpType int op) {
method handleBatchOp (line 231) | private void handleBatchOp(@BatchOpsManager.OpType int op, @Nullable I...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloaterListOptions.java
class DebloaterListOptions (line 25) | public class DebloaterListOptions extends CapsuleBottomSheetDialogFragme...
method getDefaultFilterFlags (line 97) | @Filter
method initRootView (line 106) | @NonNull
method onViewCreated (line 112) | @Override
method getFilterChip (line 131) | public Chip getFilterChip(@NonNull Context context, @Filter int flag, ...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloaterRecyclerViewAdapter.java
class DebloaterRecyclerViewAdapter (line 34) | public class DebloaterRecyclerViewAdapter extends MultiSelectionView.Ada...
method DebloaterRecyclerViewAdapter (line 54) | public DebloaterRecyclerViewAdapter(DebloaterActivity activity) {
method setAdapterList (line 66) | public void setAdapterList(List<DebloatObject> adapterList) {
method onCreateViewHolder (line 72) | @NonNull
method onBindViewHolder (line 79) | @Override
method getItemId (line 143) | @Override
method getItemCount (line 150) | @Override
method select (line 157) | @Override
method deselect (line 165) | @Override
method cancelSelection (line 173) | @Override
method isSelected (line 179) | @Override
method getSelectedItemCount (line 186) | @Override
method getTotalItemCount (line 191) | @Override
class ViewHolder (line 196) | public static class ViewHolder extends MultiSelectionView.ViewHolder {
method ViewHolder (line 204) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloaterViewModel.java
class DebloaterViewModel (line 33) | public class DebloaterViewModel extends AndroidViewModel {
method DebloaterViewModel (line 46) | public DebloaterViewModel(@NonNull Application application) {
method hasFilterFlag (line 51) | public boolean hasFilterFlag(@DebloaterListOptions.Filter int flag) {
method addFilterFlag (line 55) | public void addFilterFlag(@DebloaterListOptions.Filter int flag) {
method removeFilterFlag (line 61) | public void removeFilterFlag(@DebloaterListOptions.Filter int flag) {
method setQuery (line 67) | public void setQuery(String queryString, @AdvancedSearchView.SearchTyp...
method getDebloatObjectListLiveData (line 73) | public LiveData<List<DebloatObject>> getDebloatObjectListLiveData() {
method getTotalItemCount (line 77) | public int getTotalItemCount() {
method getSelectedItemCount (line 81) | public int getSelectedItemCount() {
method select (line 85) | public void select(@NonNull DebloatObject debloatObject) {
method deselect (line 89) | public void deselect(@NonNull DebloatObject debloatObject) {
method deselectAll (line 93) | public void deselectAll() {
method isSelected (line 97) | public boolean isSelected(@NonNull DebloatObject debloatObject) {
method getSelectedPackages (line 101) | public Map<String, int[]> getSelectedPackages() {
method getSelectedPackagesWithUsers (line 105) | @NonNull
method loadPackages (line 125) | @AnyThread
method loadDebloatObjects (line 203) | @WorkerThread
FILE: app/src/main/java/io/github/muntashirakon/AppManager/debloat/SuggestionObject.java
class SuggestionObject (line 14) | public class SuggestionObject {
method getLabel (line 32) | public String getLabel() {
method getRepo (line 36) | public String getRepo() {
method getReason (line 40) | @Nullable
method isInFDroidMarket (line 45) | public boolean isInFDroidMarket() {
method getMarketLink (line 49) | public Intent getMarketLink() {
method getUsers (line 59) | public int[] getUsers() {
method addUser (line 63) | public void addUser(int userId) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/ActivityLauncherShortcutActivity.java
class ActivityLauncherShortcutActivity (line 39) | public class ActivityLauncherShortcutActivity extends BaseActivity {
method getShortcutIntent (line 45) | @NonNull
method onAuthenticated (line 65) | @Override
method onNewIntent (line 76) | @Override
method getTransparentBackground (line 82) | @Override
method unfreezeAndLaunchActivity (line 87) | private void unfreezeAndLaunchActivity(@NonNull Intent intent) {
method launchActivity (line 133) | private void launchActivity() {
method launchActivityViaAssist (line 151) | private void launchActivityViaAssist() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsActivity.java
class AppDetailsActivity (line 49) | public class AppDetailsActivity extends BaseActivity {
method getIntent (line 57) | @NonNull
method getIntent (line 65) | @NonNull
method getIntent (line 75) | @NonNull
method getIntent (line 83) | @NonNull
method getIntent (line 88) | @NonNull
method onAuthenticated (line 117) | @Override
method getPackageNameFromExtras (line 212) | @Nullable
method getApkSource (line 226) | @Nullable
class SavedState (line 235) | static class SavedState implements Parcelable {
method SavedState (line 245) | protected SavedState() {
method SavedState (line 248) | public SavedState(Parcel source) {
method describeContents (line 256) | @Override
method writeToParcel (line 261) | @Override
method createFromParcel (line 271) | @Override
method createFromParcel (line 276) | @Override
method newArray (line 281) | @Override
method onSaveInstanceState (line 288) | @Override
method onOptionsItemSelected (line 302) | @Override
method loadTabs (line 316) | private void loadTabs() {
class AppDetailsFragmentPagerAdapter (line 323) | private class AppDetailsFragmentPagerAdapter extends FragmentStateAdap...
method AppDetailsFragmentPagerAdapter (line 324) | AppDetailsFragmentPagerAdapter(@NonNull FragmentActivity fragmentAct...
method createFragment (line 328) | @NonNull
method getItemCount (line 376) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsComponentsFragment.java
class AppDetailsComponentsFragment (line 76) | public class AppDetailsComponentsFragment extends AppDetailsFragment {
method onCreate (line 96) | @Override
method onViewCreated (line 102) | @Override
method onRefresh (line 132) | @Override
method onCreateMenu (line 138) | @Override
method onPrepareMenu (line 147) | @Override
method onMenuItemSelected (line 162) | @Override
method onPause (line 192) | @Override
method onResume (line 201) | @Override
method onQueryTextChange (line 219) | @Override
method updateBlockMenuItem (line 227) | private void updateBlockMenuItem(int status) {
method blockUnblockTrackers (line 244) | private void blockUnblockTrackers(boolean block) {
method getNotFoundString (line 268) | private int getNotFoundString(@ComponentProperty int index) {
method setSortBy (line 282) | private void setSortBy(@SortOrder int sortBy) {
method refreshDetails (line 288) | @MainThread
method applyRules (line 295) | private void applyRules(@NonNull AppDetailsComponentItem componentItem...
class AppDetailsRecyclerAdapter (line 302) | @UiThread
method AppDetailsRecyclerAdapter (line 318) | AppDetailsRecyclerAdapter() {
method setDefaultList (line 326) | @UiThread
class ViewHolder (line 354) | class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 370) | public ViewHolder(@NonNull View itemView) {
method onCreateViewHolder (line 414) | @NonNull
method onBindViewHolder (line 421) | @Override
method getItemId (line 435) | @Override
method getItemCount (line 440) | @Override
method handleBlock (line 447) | private void handleBlock(@NonNull ViewHolder holder, @NonNull AppDet...
method getActivityView (line 504) | private void getActivityView(@NonNull ViewHolder holder, int index) {
method getServicesView (line 624) | private void getServicesView(@NonNull Context context, @NonNull View...
method getReceiverView (line 699) | private void getReceiverView(@NonNull ViewHolder holder, int index) {
method getProviderView (line 762) | private void getProviderView(@NonNull ViewHolder holder, int index) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsFragment.java
class AppDetailsFragment (line 35) | public abstract class AppDetailsFragment extends Fragment implements Adv...
method onCreate (line 114) | @CallSuper
method onCreateView (line 124) | @Nullable
method onViewCreated (line 130) | @CallSuper
method onResume (line 151) | @CallSuper
method onPause (line 158) | @CallSuper
method onDestroyView (line 165) | @CallSuper
method onQueryTextSubmit (line 173) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsOtherFragment.java
class AppDetailsOtherFragment (line 61) | public class AppDetailsOtherFragment extends AppDetailsFragment {
method onCreate (line 77) | @Override
method onViewCreated (line 83) | @Override
method onRefresh (line 99) | @Override
method onCreateMenu (line 105) | @Override
method onMenuItemSelected (line 110) | @Override
method onResume (line 120) | @Override
method onQueryTextChange (line 128) | @Override
method refreshDetails (line 136) | private void refreshDetails() {
method getNotFoundString (line 145) | private int getNotFoundString(@OtherProperty int index) {
class AppDetailsRecyclerAdapter (line 160) | @UiThread
method AppDetailsRecyclerAdapter (line 167) | AppDetailsRecyclerAdapter() {
method setDefaultList (line 171) | @UiThread
class ViewHolder (line 189) | class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 199) | public ViewHolder(@NonNull View itemView) {
method onCreateViewHolder (line 230) | @NonNull
method onBindViewHolder (line 254) | @Override
method getItemId (line 275) | @Override
method getItemCount (line 280) | @Override
method getSharedLibsView (line 287) | private void getSharedLibsView(@NonNull Context context, @NonNull Vi...
method getFeaturesView (line 343) | private void getFeaturesView(@NonNull Context context, @NonNull View...
method getConfigurationView (line 378) | private void getConfigurationView(@NonNull ViewHolder holder, int in...
method getSignatureView (line 399) | private void getSignatureView(@NonNull Context context, @NonNull Vie...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsOverlaysFragment.java
class AppDetailsOverlaysFragment (line 44) | public class AppDetailsOverlaysFragment extends AppDetailsFragment {
method onCreate (line 50) | @Override
method onCreateMenu (line 59) | @Override
method onViewCreated (line 65) | @Override
method onMenuItemSelected (line 104) | @Override
method setSortBy (line 119) | private void setSortBy(@SortOrder int sortBy) {
method refreshDetails (line 125) | private void refreshDetails() {
method onRefresh (line 131) | @Override
method onQueryTextChange (line 136) | @Override
class AppDetailsRecyclerAdapter (line 144) | private class AppDetailsRecyclerAdapter extends RecyclerView.Adapter<A...
method setDefaultList (line 151) | @UiThread
method AppDetailsRecyclerAdapter (line 165) | AppDetailsRecyclerAdapter() {
method onCreateViewHolder (line 169) | @NonNull
method onBindViewHolder (line 178) | @Override
method getItemId (line 242) | @Override
method getItemCount (line 247) | @Override
class ViewHolder (line 254) | class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 262) | public ViewHolder(@NonNull View itemView) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsPermissionsFragment.java
class AppDetailsPermissionsFragment (line 69) | public class AppDetailsPermissionsFragment extends AppDetailsFragment {
method onCreate (line 87) | @Override
method onViewCreated (line 93) | @Override
method onRefresh (line 138) | @Override
method onCreateMenu (line 144) | @Override
method onPrepareMenu (line 161) | @Override
method onMenuItemSelected (line 172) | @Override
method onPause (line 288) | @Override
method onResume (line 297) | @Override
method onQueryTextChange (line 315) | @Override
method getNotFoundString (line 323) | private int getNotFoundString(@PermissionProperty int index) {
method getHelpString (line 338) | private int getHelpString(@PermissionProperty int index) {
method setSortBy (line 364) | private void setSortBy(@SortOrder int sortBy) {
method refreshDetails (line 370) | private void refreshDetails() {
class AppDetailsRecyclerAdapter (line 376) | @UiThread
method AppDetailsRecyclerAdapter (line 386) | AppDetailsRecyclerAdapter() {
method setDefaultList (line 390) | @UiThread
class ViewHolder (line 410) | class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 425) | public ViewHolder(@NonNull View itemView) {
method onCreateViewHolder (line 469) | @NonNull
method onBindViewHolder (line 488) | @Override
method getItemId (line 506) | @Override
method getItemCount (line 511) | @Override
method getAppOpsView (line 518) | private void getAppOpsView(@NonNull Context context, @NonNull ViewHo...
method getUsesPermissionsView (line 656) | private void getUsesPermissionsView(@NonNull Context context, @NonNu...
method getPermissionsView (line 753) | private void getPermissionsView(@NonNull Context context, @NonNull V...
method permAppOp (line 797) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/AppDetailsViewModel.java
class AppDetailsViewModel (line 113) | public class AppDetailsViewModel extends AndroidViewModel {
method AppDetailsViewModel (line 156) | public AppDetailsViewModel(@NonNull Application application) {
method onCleared (line 163) | @GuardedBy("blockerLocker")
method getFreezeTypeLiveData (line 189) | public LiveData<Integer> getFreezeTypeLiveData() {
method loadFreezeType (line 193) | public void loadFreezeType() {
method getTagsAlteredLiveData (line 200) | public MutableLiveData<Boolean> getTagsAlteredLiveData() {
method setPackage (line 204) | @UiThread
method setPackage (line 229) | @UiThread
method setUserId (line 254) | @AnyThread
method getUserId (line 259) | @AnyThread
method setPackageName (line 264) | @AnyThread
method getPackageName (line 290) | @AnyThread
method getApkFile (line 295) | @Nullable
method getApkSource (line 300) | @AnyThread
method isTestOnlyApp (line 306) | public boolean isTestOnlyApp() {
method setSortOrder (line 310) | @AnyThread
method getSortOrder (line 336) | @AnyThread
method setSearchQuery (line 356) | @AnyThread
method getSearchQuery (line 364) | @AnyThread
method filterAndSortItems (line 369) | public void filterAndSortItems(@AppDetailsFragment.Property int proper...
method filterAndSortItemsInternal (line 373) | @SuppressLint({"SwitchIntDef", "NewApi"})
method filterAndSortComponents (line 485) | @WorkerThread
method filterAndSortPermissions (line 500) | @WorkerThread
method lowercaseIfNotRegex (line 519) | private String lowercaseIfNotRegex(String s, @AdvancedSearchView.Searc...
method getRuleApplicationStatus (line 530) | @UiThread
method setRuleApplicationStatus (line 538) | @WorkerThread
method updateRulesForComponent (line 554) | @AnyThread
method getComponentRule (line 586) | @Nullable
method addRules (line 596) | @WorkerThread
method removeRules (line 627) | @WorkerThread
method togglePermission (line 656) | @WorkerThread
method revokeDangerousPermissions (line 689) | @WorkerThread
method setAppOp (line 728) | @WorkerThread
method setAppOpMode (line 754) | @WorkerThread
method setAppOpMode (line 784) | @WorkerThread
method resetAppOps (line 810) | @WorkerThread
method ignoreDangerousAppOps (line 838) | @WorkerThread
method applyRules (line 889) | @AnyThread
method get (line 908) | @UiThread
method observeInternal (line 942) | @SuppressWarnings("unchecked")
method load (line 949) | @AnyThread
method getIsPackageExistLiveData (line 1002) | @UiThread
method isPackageExist (line 1009) | @AnyThread
method isPackageChanged (line 1017) | @UiThread
method triggerPackageChange (line 1025) | @AnyThread
method setPackageChanged (line 1030) | @WorkerThread
method isExternalApk (line 1049) | @AnyThread
method getSplitCount (line 1054) | @AnyThread
method waitForBlockerOrExit (line 1062) | @WorkerThread
method reloadComponents (line 1076) | @WorkerThread
method setPackageInfo (line 1089) | @SuppressLint("WrongConstant")
method getPackageInfoInternal (line 1149) | @WorkerThread
method getPackageInfo (line 1160) | @AnyThread
method getInstalledPackageInfo (line 1166) | @AnyThread
method getUserInfo (line 1172) | @NonNull
method loadAppInfo (line 1195) | @WorkerThread
method loadActivities (line 1213) | @WorkerThread
method loadServices (line 1256) | @WorkerThread
method loadReceivers (line 1302) | @WorkerThread
method loadProviders (line 1335) | @WorkerThread
method getComponentLabel (line 1363) | @NonNull
method sortComponents (line 1374) | @SuppressLint("SwitchIntDef")
method isComponentDisabled (line 1396) | public boolean isComponentDisabled(@NonNull ComponentInfo componentInf...
method canLaunchService (line 1418) | private static boolean canLaunchService(@NonNull ServiceInfo info) {
method setAppOp (line 1437) | @WorkerThread
method loadAppOps (line 1449) | @WorkerThread
method setUsesPermission (line 1548) | @WorkerThread
method loadUsesPermissions (line 1562) | @SuppressLint("SwitchIntDef")
method getRawPermissions (line 1588) | @WorkerThread
method getPermissionItem (line 1598) | @Nullable
method loadPermissions (line 1649) | @WorkerThread
method loadFeatures (line 1770) | @WorkerThread
method loadConfigurations (line 1807) | @WorkerThread
method getApkVerifierResult (line 1824) | @AnyThread
method loadSignatures (line 1829) | @WorkerThread
method loadSharedLibraries (line 1886) | @WorkerThread
method loadOverlays (line 1964) | @WorkerThread
class PackageIntentReceiver (line 1985) | public static class PackageIntentReceiver extends PackageChangeReceiver {
method PackageIntentReceiver (line 1990) | public PackageIntentReceiver(@NonNull AppDetailsViewModel model) {
method resumeWatcher (line 1995) | public void resumeWatcher() {
method pauseWatcher (line 2003) | public void pauseWatcher() {
method onPackageChanged (line 2008) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/IconPickerDialogFragment.java
class IconPickerDialogFragment (line 42) | public class IconPickerDialogFragment extends DialogFragment {
method attachIconPickerListener (line 49) | public void attachIconPickerListener(IconPickerListener listener) {
method onCreate (line 53) | @Override
method onCreateDialog (line 64) | @NonNull
type IconPickerListener (line 83) | public interface IconPickerListener {
method iconPicked (line 84) | void iconPicked(PackageItemInfo icon);
class IconListingAdapter (line 87) | static class IconListingAdapter extends BaseAdapter {
method IconListingAdapter (line 91) | public IconListingAdapter(@NonNull FragmentActivity activity) {
method getCount (line 95) | @Override
method getItem (line 100) | @Override
method getItemId (line 105) | @Override
method getView (line 110) | @Override
class IconPickerViewModel (line 127) | public static class IconPickerViewModel extends AndroidViewModel {
method IconPickerViewModel (line 134) | public IconPickerViewModel(@NonNull Application application) {
method onCleared (line 139) | @Override
method getIconsLiveData (line 147) | public LiveData<IconItemInfo[]> getIconsLiveData() {
method resolveIcons (line 151) | public void resolveIcons() {
class IconItemInfo (line 177) | private static class IconItemInfo extends PackageItemInfo implements C...
method IconItemInfo (line 181) | public IconItemInfo(Context context, String packageName, String icon...
method loadIcon (line 187) | @Override
method compareTo (line 199) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/PackageItemShortcutInfo.java
class PackageItemShortcutInfo (line 22) | @SuppressWarnings("rawtypes")
method PackageItemShortcutInfo (line 30) | public PackageItemShortcutInfo(@NonNull T packageItemInfo, @NonNull Cl...
method PackageItemShortcutInfo (line 34) | public PackageItemShortcutInfo(@NonNull T packageItemInfo, @NonNull Cl...
method PackageItemShortcutInfo (line 43) | @SuppressWarnings("unchecked")
method writeToParcel (line 52) | @Override
method toShortcutIntent (line 61) | @Override
method createFromParcel (line 67) | @Override
method newArray (line 72) | @Override
method getIntent (line 79) | @NonNull
method getProxyIntent (line 88) | @NonNull
method requireProxy (line 94) | private boolean requireProxy() {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/ActionItem.java
class ActionItem (line 20) | class ActionItem {
method ActionItem (line 28) | public ActionItem(@StringRes int titleRes, @DrawableRes int iconRes) {
method setOnClickListener (line 33) | public ActionItem setOnClickListener(View.OnClickListener clickListene...
method setOnLongClickListener (line 38) | public ActionItem setOnLongClickListener(View.OnLongClickListener long...
method toActionButton (line 43) | public MaterialButton toActionButton(@NonNull Context context, @NonNul...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/AppInfoFragment.java
class AppInfoFragment (line 177) | public class AppInfoFragment extends Fragment implements SwipeRefreshLay...
method onCreate (line 224) | @Override
method onCreateView (line 231) | @Nullable
method onViewCreated (line 237) | @Override
method onCreateMenu (line 356) | @Override
method onPrepareMenu (line 363) | @Override
method onMenuItemSelected (line 420) | @Override
method onMenuClosed (line 649) | @Override
method onStart (line 656) | @Override
method onRefresh (line 662) | @Override
method onResume (line 668) | @Override
method onDetach (line 674) | @Override
method openInTermux (line 682) | private void openInTermux() {
method runInTermux (line 686) | private void runInTermux() {
method runWithTermux (line 690) | private void runWithTermux(String[] command) {
method install (line 704) | private void install() {
method refreshDetails (line 714) | @UiThread
method setupTagCloud (line 721) | @MainThread
method getTagCloudItems (line 741) | @WorkerThread
method displayRunningServices (line 1159) | private void displayRunningServices(
method displayMagiskHideDialog (line 1214) | @UiThread
method displayMagiskDenyListDialog (line 1236) | @UiThread
method getMagiskProcessDialog (line 1259) | @Nullable
method setupHorizontalActions (line 1292) | @MainThread
method getHorizontalActions (line 1317) | @WorkerThread
method startActivityForSplit (line 1675) | @UiThread
method setPathsAndDirectories (line 1711) | @GuardedBy("mListItems")
method setMoreInfo (line 1763) | @GuardedBy("mListItems")
method getHiddenApiEnforcementPolicy (line 1857) | @NonNull
method setDataUsage (line 1874) | private void setDataUsage(@NonNull AppInfoViewModel.AppInfo appInfo) {
method setupVerticalView (line 1897) | @MainThread
method getSharedPrefs (line 1926) | @Nullable
method getDatabases (line 1938) | @Nullable
method setStorageAndCache (line 1950) | @GuardedBy("mListItems")
method freeze (line 2003) | @MainThread
method showFreezeDialog (line 2014) | private void showFreezeDialog(int freezeType, boolean isCustom) {
method doFreeze (line 2033) | @WorkerThread
method doUnfreeze (line 2048) | @WorkerThread
method createFreezeShortcut (line 2058) | private void createFreezeShortcut(boolean isFrozen) {
method displayInstallerDialog (line 2081) | private void displayInstallerDialog(@NonNull InstallSourceInfoCompat i...
method getTime (line 2128) | @NonNull
method getReadableSize (line 2139) | private String getReadableSize(long size) {
method showProgressIndicator (line 2143) | private void showProgressIndicator(boolean show) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/AppInfoRecyclerAdapter.java
class AppInfoRecyclerAdapter (line 30) | class AppInfoRecyclerAdapter extends RecyclerView.Adapter<AppInfoRecycle...
method AppInfoRecyclerAdapter (line 34) | AppInfoRecyclerAdapter(Context context) {
method setAdapterList (line 39) | void setAdapterList(@NonNull List<ListItem> list) {
method getItemViewType (line 43) | @Override
method onCreateViewHolder (line 49) | @NonNull
method onBindViewHolder (line 79) | @Override
method getItemCount (line 111) | @Override
class ViewHolder (line 116) | static class ViewHolder extends RecyclerView.ViewHolder {
method ViewHolder (line 122) | public ViewHolder(@NonNull View itemView, @ListItem.ListItemType int...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/AppInfoViewModel.java
class AppInfoViewModel (line 83) | public class AppInfoViewModel extends AndroidViewModel {
method AppInfoViewModel (line 94) | public AppInfoViewModel(@NonNull Application application) {
method onCleared (line 98) | @Override
method setMainModel (line 109) | public void setMainModel(@NonNull AppDetailsViewModel mainModel) {
method getAppLabel (line 113) | public LiveData<CharSequence> getAppLabel() {
method getTagCloud (line 117) | public LiveData<TagCloud> getTagCloud() {
method getAppInfo (line 121) | public LiveData<AppInfo> getAppInfo() {
method getInstallExistingResult (line 125) | public LiveData<Pair<Integer, CharSequence>> getInstallExistingResult() {
method loadAppLabel (line 129) | @AnyThread
method loadTagCloud (line 137) | @AnyThread
method loadTagCloudInternal (line 145) | @WorkerThread
method loadAppInfo (line 328) | @AnyThread
method loadAppInfoInternal (line 336) | @WorkerThread
method installExisting (line 425) | public void installExisting(@NonNull String packageName, @UserIdInt in...
class TagCloud (line 449) | public static class TagCloud {
class AppInfo (line 497) | public static class AppInfo {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/ListItem.java
class ListItem (line 15) | class ListItem {
method newGroupStart (line 48) | @NonNull
method newInlineItem (line 55) | @NonNull
method newRegularItem (line 63) | @NonNull
method newSelectableRegularItem (line 71) | @NonNull
method newSelectableRegularItem (line 80) | @NonNull
method ListItem (line 93) | public ListItem(int listType) {
method getTitle (line 97) | @Nullable
method setTitle (line 102) | public void setTitle(@Nullable CharSequence title) {
method getSubtitle (line 106) | @Nullable
method setSubtitle (line 111) | public void setSubtitle(@Nullable CharSequence subtitle) {
method getActionIconRes (line 115) | @DrawableRes
method setActionIcon (line 120) | public void setActionIcon(@DrawableRes int actionIcon) {
method getOnActionClickListener (line 124) | @Nullable
method setOnActionClickListener (line 129) | public void setOnActionClickListener(@Nullable View.OnClickListener on...
method getActionContentDescriptionRes (line 133) | @StringRes
method getActionContentDescription (line 138) | @Nullable
method setActionContentDescription (line 143) | public void setActionContentDescription(@StringRes int contentDescript...
method setActionContentDescription (line 147) | public void setActionContentDescription(@Nullable CharSequence content...
method isMonospace (line 151) | public boolean isMonospace() {
method setMonospace (line 155) | public void setMonospace(boolean monospace) {
method isSelectable (line 159) | public boolean isSelectable() {
method setSelectable (line 163) | public void setSelectable(boolean selectable) {
method toString (line 167) | @NonNull
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/info/TagItem.java
class TagItem (line 22) | class TagItem {
method setTextRes (line 32) | public TagItem setTextRes(@StringRes int textRes) {
method setText (line 37) | public TagItem setText(@Nullable CharSequence text) {
method setColor (line 42) | public TagItem setColor(@ColorInt int color) {
method setOnClickListener (line 48) | public TagItem setOnClickListener(View.OnClickListener clickListener) {
method toChip (line 53) | public Chip toChip(@NonNull Context context, @NonNull ViewGroup parent) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/manifest/ManifestViewerActivity.java
class ManifestViewerActivity (line 25) | public class ManifestViewerActivity extends BaseActivity {
method onAuthenticated (line 30) | @SuppressLint("WrongConstant")
method showErrorAndFinish (line 67) | @UiThread
method onOptionsItemSelected (line 73) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/manifest/ManifestViewerViewModel.java
class ManifestViewerViewModel (line 30) | public class ManifestViewerViewModel extends AndroidViewModel {
method ManifestViewerViewModel (line 40) | public ManifestViewerViewModel(@NonNull Application application) {
method onCleared (line 44) | @Override
method getManifestLiveData (line 54) | public LiveData<Uri> getManifestLiveData() {
method loadApkFile (line 58) | public void loadApkFile(@Nullable ApkSource apkSource, @Nullable Strin...
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/struct/AppDetailsActivityItem.java
class AppDetailsActivityItem (line 9) | public class AppDetailsActivityItem extends AppDetailsComponentItem {
method AppDetailsActivityItem (line 12) | public AppDetailsActivityItem(@NonNull ActivityInfo componentInfo) {
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/struct/AppDetailsAppOpItem.java
class AppDetailsAppOpItem (line 28) | public class AppDetailsAppOpItem extends AppDetailsItem<Integer> {
method AppDetailsAppOpItem (line 43) | public AppDetailsAppOpItem(@NonNull AppOpsManagerCompat.OpEntry opEntr...
method AppDetailsAppOpItem (line 49) | public AppDetailsAppOpItem(int op) {
method AppDetailsAppOpItem (line 60) | public AppDetailsAppOpItem(@NonNull AppOpsManagerCompat.OpEntry opEntr...
method AppDetailsAppOpItem (line 79) | public AppDetailsAppOpItem(int op, @NonNull PermissionInfo permissionI...
method getOp (line 98) | public int getOp() {
method getMode (line 102) | @AppOpsManagerCompat.Mode
method getDuration (line 110) | public long getDuration() {
method getTime (line 117) | public long getTime() {
method getRejectTime (line 124) | public long getRejectTime() {
method isRunning (line 131) | public boolean isRunning() {
method isAllowed (line 135) | public boolean isAllowed() {
method allowAppOp (line 153) | @RequiresPermission(allOf = {
method disallowAppOp (line 173) | @RequiresPermission(allOf = {
method setAppOp (line 193) | @RequiresPermission(allOf = {
method invalidate (line 217) | @RequiresPermission("android.permission.MANAGE_APP_OPS_MODES")
method equals (line 229) | @Override
method hashCode (line 238) | @Override
FILE: app/src/main/java/io/github/muntashirakon/AppManager/details/struct/AppDetailsComponentItem.java
class AppDetailsComponentItem (line 15) | public class AppDetailsComponentItem extends AppDetailsItem<ComponentInf...
method AppDetailsComponentItem (line 24) | public AppDetailsCompo
Copy disabled (too large)
Download .json
Condensed preview — 1869 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (19,070K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 1996,
"preview": "name: Bug report\ndescription: Create a report to help us improve App Manager\nlabels: [Bug]\n\nbody:\n - type: checkboxes\n "
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 376,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: 🐜 android-libraries Repo\n url: https://github.com/MuntashirAkon/"
},
{
"path": ".github/ISSUE_TEMPLATE/documentation.yml",
"chars": 1552,
"preview": "name: Docs improvement\ndescription: Improve Docs and Readme\nlabels: [Documentation]\n\nbody:\n - type: checkboxes\n attr"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"chars": 1432,
"preview": "name: Feature request\ndescription: Suggest an idea for this project\nlabels: [Feature]\n\nbody:\n - type: checkboxes\n at"
},
{
"path": ".github/ISSUE_TEMPLATE/help-wanted.yml",
"chars": 910,
"preview": "name: Help wanted\ndescription: Ask for help regarding a feature\nlabels: [Help Wanted]\n\nbody:\n\n - type: textarea\n att"
},
{
"path": ".github/workflows/codeql.yml",
"chars": 1158,
"preview": "name: \"CodeQL\"\n\non:\n push:\n branches: [ \"master\", \"AppManager-*\" ]\n pull_request:\n branches: [ \"master\" ]\n sche"
},
{
"path": ".github/workflows/lint.yml",
"chars": 941,
"preview": "name: Lint\n\non:\n push:\n branches:\n - 'master'\n - 'AppManager-*'\n paths-ignore:\n - 'fastlane/**'\n "
},
{
"path": ".github/workflows/tests.yml",
"chars": 976,
"preview": "name: Tests\n\non:\n push:\n branches:\n - 'master'\n - 'AppManager-*'\n paths-ignore:\n - 'fastlane/**'\n "
},
{
"path": ".gitignore",
"chars": 361,
"preview": ".gradle/\n.idea/\ncrowdin.properties\nlocal.properties\n.DS_Store\nbuild/\napp/preRelease/\napp/release/\napp/debug/\napp/libs/am"
},
{
"path": ".gitmodules",
"chars": 281,
"preview": "[submodule \"scripts/android-libraries\"]\n\tpath = scripts/android-libraries\n\turl = https://github.com/MuntashirAkon/androi"
},
{
"path": ".run/Documentation.run.xml",
"chars": 1010,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"Documentation\" type=\"LATEX_RUN_"
},
{
"path": ".run/app.run.xml",
"chars": 1968,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"app\" type=\"AndroidRunConfigurat"
},
{
"path": ".run/app_details.run.xml",
"chars": 2082,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"app_details\" type=\"AndroidRunCo"
},
{
"path": ".run/fm.run.xml",
"chars": 2016,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"fm\" type=\"AndroidRunConfigurati"
},
{
"path": ".run/lint.run.xml",
"chars": 903,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"lint\" type=\"GradleRunConfigurat"
},
{
"path": ".run/settings.run.xml",
"chars": 3672,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"settings\" type=\"AndroidRunConfi"
},
{
"path": ".run/test.run.xml",
"chars": 911,
"preview": "<component name=\"ProjectRunConfigurationManager\">\n <configuration default=\"false\" name=\"test\" type=\"GradleRunConfigurat"
},
{
"path": "BUILDING.rst",
"chars": 2641,
"preview": ".. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0\n\n====================\nBuilding App Manager\n================"
},
{
"path": "CONTRIBUTING.rst",
"chars": 4005,
"preview": ".. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0\n\n============\nContributing\n============\n\nYou are welcome co"
},
{
"path": "COPYING",
"chars": 382,
"preview": "App Manager is provided under:\n\n\tSPDX-License-Identifier: GPL-3.0-or-later\n\nBeing under the terms of the GNU General Pub"
},
{
"path": "LICENSES/Apache-2.0",
"chars": 10001,
"preview": "Valid-License-Identifier: Apache-2.0\nSPDX-URL: https://spdx.org/licenses/Apache-2.0.html\nUsage-Guide:\n To use the Apach"
},
{
"path": "LICENSES/BSD-2-Clause",
"chars": 1837,
"preview": "Valid-License-Identifier: BSD-2-Clause\nSPDX-URL: https://spdx.org/licenses/BSD-2-Clause.html\nUsage-Guide:\n To use the B"
},
{
"path": "LICENSES/BSD-3-Clause",
"chars": 1844,
"preview": "Valid-License-Identifier: BSD-3-Clause\nSPDX-URL: https://spdx.org/licenses/BSD-3-Clause.html\nUsage-Guide:\n To use the B"
},
{
"path": "LICENSES/CC-BY-SA-4.0",
"chars": 20713,
"preview": "Valid-License-Identifier: CC-BY-SA-4.0\nSPDX-URL: https://spdx.org/licenses/CC-BY-SA-4.0\nUsage-Guide:\n Do NOT use this l"
},
{
"path": "LICENSES/GPL-2.0",
"chars": 18519,
"preview": "Valid-License-Identifier: GPL-2.0+\nValid-License-Identifier: GPL-2.0-or-later\nSPDX-URL: https://spdx.org/licenses/GPL-2."
},
{
"path": "LICENSES/GPL-3.0",
"chars": 35657,
"preview": "Valid-License-Identifier: GPL-3.0+\nValid-License-Identifier: GPL-3.0-or-later\nSPDX-URL: https://spdx.org/licenses/GPL-3."
},
{
"path": "LICENSES/ISC",
"chars": 1242,
"preview": "Valid-License-Identifier: ISC\nSPDX-URL: https://spdx.org/licenses/ISC.html\nUsage-Guide:\n To use the ISC License put the"
},
{
"path": "LICENSES/MIT",
"chars": 1568,
"preview": "Valid-License-Identifier: MIT\nSPDX-URL: https://spdx.org/licenses/MIT.html\nUsage-Guide:\n To use the MIT License put the"
},
{
"path": "LICENSES/WTFPL",
"chars": 974,
"preview": "Valid-License-Identifier: WTFPL\nSPDX-URL: https://spdx.org/licenses/WTFPL.html\nUsage-Guide:\n To use the WTFPL put the f"
},
{
"path": "PRIVACY_POLICY.rst",
"chars": 5061,
"preview": ".. SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0\n\n==============\nPrivacy Policy\n==============\n(DRAFT REVISI"
},
{
"path": "README.md",
"chars": 5390,
"preview": "<!-- SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0 -->\n\n<p align=\"center\">\n <img src=\"docs/raw/images/icon."
},
{
"path": "app/.gitignore",
"chars": 21,
"preview": "/build\n*.apk\n.cxx\n*~\n"
},
{
"path": "app/build.gradle",
"chars": 7393,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\nplugins {\n id('com.android.application')\n id('dev.rik"
},
{
"path": "app/lint.xml",
"chars": 695,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<lint>\n <issue id=\"MissingTranslation\" severity=\"ignore\" />\n <issue id=\"Imp"
},
{
"path": "app/proguard-rules.pro",
"chars": 2260,
"preview": "# Specify compression level\n-optimizationpasses 5\n# Algorithm for confusion\n-optimizations !code/simplification/arithmet"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/1.json",
"chars": 10725,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 1,\n \"identityHash\": \"d363fa70deeafe04c0457034f211df42\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/2.json",
"chars": 13136,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 2,\n \"identityHash\": \"175f99951d829b88618a0e192ef9bedb\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/3.json",
"chars": 14559,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 3,\n \"identityHash\": \"ac92def333f7b8a38eb1ceab89033e99\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/4.json",
"chars": 16156,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 4,\n \"identityHash\": \"7bb1cd35f0800b965e5a475458918b80\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/5.json",
"chars": 16896,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 5,\n \"identityHash\": \"c692d8d6e1657fb5d1332a3fb631e9d7\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/6.json",
"chars": 17170,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 6,\n \"identityHash\": \"f72fb62329689ce1c1c5cda5c0ede949\",\n \"e"
},
{
"path": "app/schemas/io.github.muntashirakon.AppManager.db.AppsDb/7.json",
"chars": 15741,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 7,\n \"identityHash\": \"3b4a41c98cdc8966b52bd7a0a0f8ad58\",\n \"e"
},
{
"path": "app/src/debug/AndroidManifest.xml",
"chars": 296,
"preview": "<!-- SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later -->\n<manifest xmlns:android=\"http://schemas.android.com/ap"
},
{
"path": "app/src/debug/java/io/github/muntashirakon/AppManager/debug/R.java",
"chars": 677,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.debug;\n\npublic final class R {\n"
},
{
"path": "app/src/main/AndroidManifest.xml",
"chars": 68986,
"preview": "<!-- SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later -->\n<manifest xmlns:android=\"http://schemas.android.com/ap"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/IAMService.aidl",
"chars": 651,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.os.IBinder;\n\ni"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/IRemoteProcess.aidl",
"chars": 455,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\n// Copyright 2"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/IRemoteShell.aidl",
"chars": 305,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport io.github.muntashirako"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/IShellResult.aidl",
"chars": 308,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport aosp.android.content.p"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/ipc/ps/ProcessEntry.aidl",
"chars": 123,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.ipc.ps;\n\nparcelable ProcessEntr"
},
{
"path": "app/src/main/aidl/io/github/muntashirakon/AppManager/ipc/ps/ProcessUsers.aidl",
"chars": 123,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.ipc.ps;\n\nparcelable ProcessUser"
},
{
"path": "app/src/main/annotations/android/content/pm/annotations.xml",
"chars": 724,
"preview": "<!--\n ~ SPDX-License-Identifier: GPL-3.0-or-later\n -->\n\n<root>\n <item name='android.content.pm.PackageInfo activiti"
},
{
"path": "app/src/main/assets/blanks/blank.txt",
"chars": 0,
"preview": ""
},
{
"path": "app/src/main/assets/debloat.json",
"chars": 1063002,
"preview": "[{\"id\":\"android\",\"description\":\"Android System\\nAndroid system framework? Apk file name: framework-res\\nCould be THE cor"
},
{
"path": "app/src/main/assets/editor_themes/dark.tmTheme.json",
"chars": 14111,
"preview": "{\n \"name\": \"darcula\",\n \"settings\": [\n {\n \"settings\": {\n \"background\": \"#1F1A1B\",\n \"foreground\": "
},
{
"path": "app/src/main/assets/editor_themes/light.tmTheme",
"chars": 14162,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "app/src/main/assets/languages/java/language-configuration.json",
"chars": 708,
"preview": "{\n \"comments\": {\n \"lineComment\": \"//\",\n \"blockComment\": [ \"/*\", \"*/\" ]\n },\n \"brackets\": [\n [\"{\", \"}\"],\n ["
},
{
"path": "app/src/main/assets/languages/java/tmLanguage.json",
"chars": 49154,
"preview": "{\n \"information_for_contributors\": [\n \"This file has been converted from https://github.com/atom/language-java/blob/"
},
{
"path": "app/src/main/assets/languages/json/language-configuration.json",
"chars": 489,
"preview": "{\n \"brackets\": [\n [\"{\", \"}\"],\n [\"[\", \"]\"]\n ],\n \"autoClosingPairs\": [\n [\"{\", \"}\"],\n [\"[\", \"]\"],\n { \"ope"
},
{
"path": "app/src/main/assets/languages/json/tmLanguage.json",
"chars": 4191,
"preview": "{\n \"scopeName\": \"source.json\",\n \"name\": \"JSON\",\n \"fileTypes\": [\n \"avsc\",\n \"babelrc\",\n \"bowerrc\",\n \"compos"
},
{
"path": "app/src/main/assets/languages/kotlin/language-configuration.json",
"chars": 749,
"preview": "{\n \"comments\": {\n \"lineComment\": \"//\",\n \"blockComment\": [ \"/*\", \"*/\" ]\n },\n \"brackets\": [\n [\"{\", \"}\"],\n ["
},
{
"path": "app/src/main/assets/languages/kotlin/tmLanguage.json",
"chars": 18079,
"preview": "{\n \"name\": \"Kotlin\",\n \"scopeName\": \"source.kotlin\",\n \"fileTypes\": [\n \"kt\",\n \"kts\"\n ],\n \"patterns\": [\n {\n "
},
{
"path": "app/src/main/assets/languages/properties/language-configuration.json",
"chars": 47,
"preview": "{\n \"comments\": {\n \"lineComment\": \"#\"\n }\n}\n"
},
{
"path": "app/src/main/assets/languages/properties/tmLanguage.json",
"chars": 2753,
"preview": "{\n \"fileTypes\": [\n \"properties\"\n ],\n \"foldingStartMarker\": \"^[a-zA-Z0-9.-_]+=.*\\\\\\n\",\n \"foldingStopMarker\": \"^(.*"
},
{
"path": "app/src/main/assets/languages/sh/language-configuration.json",
"chars": 613,
"preview": "{\n \"comments\": {\n \"lineComment\": \"#\"\n },\n \"brackets\": [\n [\"{\", \"}\"],\n [\"[\", \"]\"],\n [\"(\", \")\"]\n ],\n \"aut"
},
{
"path": "app/src/main/assets/languages/sh/tmLanguage.json",
"chars": 36715,
"preview": "{\n \"information_for_contributors\": [\n \"This file has been converted from https://github.com/atom/language-shellscrip"
},
{
"path": "app/src/main/assets/languages/smali/language-configuration.json",
"chars": 421,
"preview": "{\n \"comments\": {\n \"lineComment\": \"#\"\n },\n \"brackets\": [\n [\"{\", \"}\"],\n [\"(\", \")\"]\n ],\n \"autoClosingPairs\": "
},
{
"path": "app/src/main/assets/languages/smali/tmLanguage.json",
"chars": 44328,
"preview": "{\n \"name\": \"Smali\",\n \"version\": \"https://github.com/QuinnWilton/sublime-smali/commit/36add49df8c7d8dde1d5cf0d68c409818"
},
{
"path": "app/src/main/assets/languages/xml/language-configuration.json",
"chars": 1480,
"preview": "{\n \"comments\": {\n \"blockComment\": [ \"<!--\", \"-->\" ]\n },\n \"brackets\": [\n [\"<!--\", \"-->\"],\n [\"<\", \">\"],\n [\""
},
{
"path": "app/src/main/assets/languages/xml/tmLanguage.json",
"chars": 9800,
"preview": "{\n \"scopeName\": \"text.xml\",\n \"name\": \"XML\",\n \"fileTypes\": [\n \"aiml\",\n \"atom\",\n \"axml\",\n \"bpmn\",\n \"conf"
},
{
"path": "app/src/main/assets/run_server.sh",
"chars": 1425,
"preview": "#!/system/bin/sh\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nif [ $# -lt 2 ]; then\n echo \"USAGE: ./run_server.sh <pa"
},
{
"path": "app/src/main/assets/suggestions.json",
"chars": 7637,
"preview": "[{\"id\":\"com.aurora.store\",\"label\":\"Aurora Store\",\"reason\":\"Alternative Google Play Store client with privacy in mind.\\nh"
},
{
"path": "app/src/main/cpp/AhoCorasick.cpp",
"chars": 2454,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n#include <jni.h>\n#include <string>\n#include <vector>\n#include <queue>\n#incl"
},
{
"path": "app/src/main/cpp/AhoCorasick.h",
"chars": 683,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MUNTASHIRAKON_AHOCORASICK_H\n#define MUNTASHIRAKON_AHOCORASICK_H\n\n#i"
},
{
"path": "app/src/main/cpp/CMakeLists.txt",
"chars": 1314,
"preview": "cmake_minimum_required(VERSION 3.4.1)\n\nset(CMAKE_CXX_STANDARD 17)\n\nset(C_FLAGS \"-Werror=format -fdata-sections -ffunctio"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_AppManager_utils_CpuUtils.cpp",
"chars": 1092,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n#include <jni.h>\n#include <unistd.h>\n#include <cstring>\n\n#include \"io_githu"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_AppManager_utils_CpuUtils.h",
"chars": 859,
"preview": "/* DO NOT EDIT THIS FILE - it is machine generated */\n#include <jni.h>\n/* Header for class io_github_muntashirakon_AppMa"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_algo_AhoCorasick.cpp",
"chars": 2388,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n#include <jni.h>\n#include <string>\n#include <vector>\n#include <queue>\n#incl"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_algo_AhoCorasick.h",
"chars": 1084,
"preview": "/* DO NOT EDIT THIS FILE - it is machine generated */\n#include <jni.h>\n/* Header for class io_github_muntashirakon_algo_"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_compat_system_OsCompat.cpp",
"chars": 11899,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include <jni.h>\n#include <errno.h>\n#include <pwd.h>\n#include <grp.h>\n#inc"
},
{
"path": "app/src/main/cpp/io_github_muntashirakon_compat_system_OsCompat.h",
"chars": 2351,
"preview": "/* DO NOT EDIT THIS FILE - it is machine generated */\n#include <jni.h>\n/* Header for class io_github_muntashirakon_compa"
},
{
"path": "app/src/main/java/androidx/appcompat/app/PublicTwilightManager.java",
"chars": 319,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage androidx.appcompat.app;\n\nimport android.content.Context;\n\nimport a"
},
{
"path": "app/src/main/java/androidx/documentfile/provider/DocumentFileUtils.java",
"chars": 3180,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage androidx.documentfile.provider;\n\nimport android.content.Context;\ni"
},
{
"path": "app/src/main/java/androidx/documentfile/provider/MediaDocumentFile.java",
"chars": 2301,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage androidx.documentfile.provider;\n\nimport android.content.ContentRes"
},
{
"path": "app/src/main/java/androidx/documentfile/provider/VirtualDocumentFile.java",
"chars": 7303,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage androidx.documentfile.provider;\n\nimport android.net.Uri;\nimport an"
},
{
"path": "app/src/main/java/aosp/libcore/util/EmptyArray.java",
"chars": 1127,
"preview": "// SPDX-License-Identifier: Apache-2.0\n\npackage aosp.libcore.util;\n\n// Copyright 2006 The Android Open Source Project\npu"
},
{
"path": "app/src/main/java/aosp/libcore/util/HexEncoding.java",
"chars": 5985,
"preview": "// SPDX-License-Identifier: Apache-2.0\n\npackage aosp.libcore.util;\n\n/**\n * Hexadecimal encoding where each byte is repre"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/AppManager.java",
"chars": 2257,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.app.Applicatio"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/BaseActivity.java",
"chars": 10788,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.Manifest;\nimpo"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/DummyActivity.java",
"chars": 307,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.app.Activity;\n"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/PerProcessActivity.java",
"chars": 1839,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.annotation.Sup"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/StaticDataset.java",
"chars": 6748,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager;\n\nimport android.content.Contex"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/accessibility/AccessibilityMultiplexer.java",
"chars": 3350,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.accessibility;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/accessibility/BaseAccessibilityService.java",
"chars": 8573,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.accessibility;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/accessibility/NoRootAccessibilityService.java",
"chars": 8500,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.accessibility;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/accessibility/activity/LeadingActivityTrackerActivity.java",
"chars": 3977,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.accessibility.activity;\n\nimport"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/accessibility/activity/TrackerWindow.java",
"chars": 14882,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.accessibility.activity;\n\nimport"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbConnectionManager.java",
"chars": 2737,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.adb;\n\nimport android.os.Build;\n"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbPairingService.java",
"chars": 10333,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.adb;\n\nimport static io.github.m"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/adb/AdbUtils.java",
"chars": 5601,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.adb;\n\nimport android.Manifest;\n"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkFile.java",
"chars": 40183,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport static io.github.m"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkSource.java",
"chars": 1879,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport android.content.pm"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/ApkUtils.java",
"chars": 15675,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport static io.github.m"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/ApplicationInfoApkSource.java",
"chars": 3552,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport android.content.pm"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/CachedApkSource.java",
"chars": 5034,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport android.content.Co"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/UriApkSource.java",
"chars": 2938,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk;\n\nimport android.net.Uri;\ni"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreeze.java",
"chars": 7529,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.behavior;\n\nimport android.a"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeActivity.java",
"chars": 9213,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.behavior;\n\nimport static io"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeService.java",
"chars": 9522,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.behavior;\n\nimport static io"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/behavior/FreezeUnfreezeShortcutInfo.java",
"chars": 2403,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.behavior;\n\nimport android.a"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptDialog.java",
"chars": 6626,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.dexopt;\n\nimport android.app"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptOptions.java",
"chars": 4596,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.dexopt;\n\nimport android.os."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/dexopt/DexOptimizer.java",
"chars": 4339,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.dexopt;\n\nimport android.con"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/ApkQueueItem.java",
"chars": 8728,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerDialogFragment.java",
"chars": 2405,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerDialogHelper.java",
"chars": 12115,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerOptions.java",
"chars": 10341,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/InstallerOptionsFragment.java",
"chars": 18725,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerActivity.java",
"chars": 28594,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerBroadcastReceiver.java",
"chars": 6617,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerCompat.java",
"chars": 62173,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerService.java",
"chars": 16845,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/PackageInstallerViewModel.java",
"chars": 9930,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/installer/SupportedAppStores.java",
"chars": 885,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.installer;\n\nimport androidx"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/list/AppListItem.java",
"chars": 2603,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.list;\n\nimport android.graph"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/list/ListExporter.java",
"chars": 12490,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.list;\n\nimport android.conte"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/AndroidBinXmlDecoder.java",
"chars": 5704,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.parser;\n\nimport static org."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/AndroidBinXmlEncoder.java",
"chars": 1049,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.parser;\n\nimport androidx.an"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestComponent.java",
"chars": 443,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.parser;\n\nimport android.con"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestIntentFilter.java",
"chars": 794,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.parser;\n\nimport androidx.co"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/parser/ManifestParser.java",
"chars": 8976,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.parser;\n\nimport android.con"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/SigSchemes.java",
"chars": 1721,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.signing;\n\nimport androidx.a"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/Signer.java",
"chars": 10311,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.signing;\n\nimport android.os"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/SignerInfo.java",
"chars": 7448,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.signing;\n\nimport android.co"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/signing/ZipAlign.java",
"chars": 4717,
"preview": "// SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.signing;\n\nimp"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/ApksMetadata.java",
"chars": 10916,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.splitapk;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/SplitApkChooser.java",
"chars": 13869,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.splitapk;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/splitapk/SplitApkExporter.java",
"chars": 5413,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.splitapk;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/ApkWhatsNewFinder.java",
"chars": 11635,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.whatsnew;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewDialogFragment.java",
"chars": 3439,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.whatsnew;\n\nimport android.a"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewDialogViewModel.java",
"chars": 2096,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.whatsnew;\n\nimport android.a"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewFragment.java",
"chars": 2508,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.whatsnew;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/apk/whatsnew/WhatsNewRecyclerAdapter.java",
"chars": 4065,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.apk.whatsnew;\n\nimport android.c"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/app/AndroidFragment.java",
"chars": 991,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.app;\n\nimport android.content.Co"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupCryptSetupHelper.java",
"chars": 3225,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport androidx.annota"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupDataDirectoryInfo.java",
"chars": 4663,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport android.annotat"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupException.java",
"chars": 609,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport androidx.annota"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupFlags.java",
"chars": 11176,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport static io.githu"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupItems.java",
"chars": 24213,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport static io.githu"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupManager.java",
"chars": 7842,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport androidx.annota"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupOp.java",
"chars": 28353,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport static io.githu"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/BackupUtils.java",
"chars": 19054,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport android.annotat"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/CryptoUtils.java",
"chars": 4005,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\n\nimport android.text.T"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/MetadataManager.java",
"chars": 7389,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport android.text.Te"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/RestoreOp.java",
"chars": 38526,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport static io.githu"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/VerifyOp.java",
"chars": 9036,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup;\n\nimport androidx.annota"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupCreator.java",
"chars": 12351,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.adb;\n\nimport static io.g"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupExtractor.java",
"chars": 14012,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.adb;\n\nimport static io.g"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/AndroidBackupHeader.java",
"chars": 17334,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.adb;\n\nimport static io.g"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/BackupCategories.java",
"chars": 489,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.adb;\n\nimport androidx.an"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/adb/Constants.java",
"chars": 6568,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.adb;\n\nimport android.app"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/ConvertUtils.java",
"chars": 8282,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\nimport android"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/Converter.java",
"chars": 351,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\nimport io.gith"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/ImportType.java",
"chars": 216,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\npublic @interf"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/OABConverter.java",
"chars": 17642,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\nimport static "
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/SBConverter.java",
"chars": 17792,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\nimport static "
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/convert/TBConverter.java",
"chars": 20723,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.convert;\n\nimport static "
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupFragment.java",
"chars": 5854,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupInfo.java",
"chars": 1622,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport androidx"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupInfoState.java",
"chars": 1325,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport androidx"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupRestoreDialogFragment.java",
"chars": 18875,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/BackupRestoreDialogViewModel.java",
"chars": 15224,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/FlagsAdapter.java",
"chars": 3736,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/RestoreMultipleFragment.java",
"chars": 4014,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/dialog/RestoreSingleFragment.java",
"chars": 12391,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.dialog;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupMetadataV2.java",
"chars": 5763,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.struct;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupMetadataV5.java",
"chars": 16272,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.struct;\n\nimport static i"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/BackupOpOptions.java",
"chars": 3052,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.struct;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/DeleteOpOptions.java",
"chars": 2489,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.struct;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/backup/struct/RestoreOpOptions.java",
"chars": 2747,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.backup.struct;\n\nimport android."
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsLogger.java",
"chars": 701,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops;\n\nimport androidx.anno"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsManager.java",
"chars": 44463,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops;\n\nimport android.Manif"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsResultsActivity.java",
"chars": 6489,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops;\n\nimport android.conte"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchOpsService.java",
"chars": 17780,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops;\n\nimport static io.git"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/BatchQueueItem.java",
"chars": 6074,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops;\n\nimport android.conte"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchAppOpsOptions.java",
"chars": 2359,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchBackupImportOptions.java",
"chars": 3263,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchBackupOptions.java",
"chars": 6226,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchComponentOptions.java",
"chars": 2217,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchDexOptOptions.java",
"chars": 2344,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchFreezeOptions.java",
"chars": 2372,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchNetPolicyOptions.java",
"chars": 2078,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/BatchPermissionOptions.java",
"chars": 2241,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/batchops/struct/IBatchOpOptions.java",
"chars": 1736,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.batchops.struct;\n\nimport androi"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/changelog/Changelog.java",
"chars": 977,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.changelog;\n\nimpo"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogHeader.java",
"chars": 1451,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.changelog;\n\nimpo"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogItem.java",
"chars": 3061,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.changelog;\n\nimpo"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogParser.java",
"chars": 9401,
"preview": "// SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.changelog;\n\nimpo"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/changelog/ChangelogRecyclerAdapter.java",
"chars": 8292,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.changelog;\n\nimport android.cont"
},
{
"path": "app/src/main/java/io/github/muntashirakon/AppManager/compat/ActivityManagerCompat.java",
"chars": 20906,
"preview": "// SPDX-License-Identifier: GPL-3.0-or-later\n\npackage io.github.muntashirakon.AppManager.compat;\n\nimport android.Manifes"
}
]
// ... and 1669 more files (download for full content)
About this extraction
This page contains the full source code of the MuntashirAkon/AppManager GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1869 files (17.4 MB), approximately 4.7M tokens, and a symbol index with 12293 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.