├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── .gitignore ├── APKInstaller.sln ├── APKInstaller ├── AAPTForNet │ ├── AAPTForNet.csproj │ ├── AAPTool.cs │ ├── ApkExtractor.cs │ ├── ApkParser.cs │ ├── Filters │ │ ├── ABIFilter.cs │ │ ├── ApplicationFilter.cs │ │ ├── BaseFilter.cs │ │ ├── PackageFilter.cs │ │ ├── PermissionFilter.cs │ │ ├── SDKFilter.cs │ │ └── SupportScrFilter.cs │ ├── Models │ │ ├── ApkInfo.cs │ │ ├── Configs.cs │ │ ├── DumpModel.cs │ │ ├── Icon.cs │ │ └── SDKInfo.cs │ ├── ResourceDetector.cs │ └── tool │ │ └── aapt.exe ├── APKInstaller (Package) │ ├── APKInstaller (Package).wapproj │ ├── Images │ │ ├── 256x256.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ └── Package.appxmanifest ├── APKInstaller │ ├── ADB │ │ ├── AdbWinApi.dll │ │ ├── AdbWinUsbApi.dll │ │ └── adb.exe │ ├── APKInstaller.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Assets │ │ └── 256x256.png │ ├── Controls │ │ ├── CapabilitiesInfoControl.xaml │ │ ├── CapabilitiesInfoControl.xaml.cs │ │ ├── Dialogs │ │ │ ├── MarkdownDialog.xaml │ │ │ └── MarkdownDialog.xaml.cs │ │ ├── ImageEx.cs │ │ ├── Setting │ │ │ ├── Setting.cs │ │ │ └── Setting.xaml │ │ ├── SettingsGroup │ │ │ ├── SettingsGroup.cs │ │ │ └── SettingsGroup.xaml │ │ ├── TitleBar │ │ │ ├── TitleBar.Properties.cs │ │ │ ├── TitleBar.cs │ │ │ ├── TitleBar.xaml │ │ │ ├── TitleBarTemplateSettings.Properties.cs │ │ │ ├── TitleBarTemplateSettings.cs │ │ │ └── TitleBar_themeresources.xaml │ │ ├── WebXAML.xaml │ │ └── WebXAML.xaml.cs │ ├── FodyWeavers.xml │ ├── Helpers │ │ ├── AddressHelper.cs │ │ ├── CachesHelper.cs │ │ ├── ClipboardHelper.cs │ │ ├── CommandHelper.cs │ │ ├── Converter │ │ │ ├── BoolNegationConverter.cs │ │ │ ├── BoolToObjectConverter.cs │ │ │ ├── BoolToVisibilityConverter.cs │ │ │ ├── ConverterTools.cs │ │ │ ├── EmptyObjectToObjectConverter.cs │ │ │ ├── EmptyStringToObjectConverter.cs │ │ │ ├── IsEqualToObjectConverter.cs │ │ │ ├── IsEqualToVisibilityConverter.cs │ │ │ └── StringVisibilityConverter.cs │ │ ├── DownloadHelper.cs │ │ ├── LanguageHelper.cs │ │ ├── NetworkHelper.cs │ │ ├── PackageHelper.cs │ │ ├── ProgressHelper.cs │ │ ├── SettingsHelper.cs │ │ ├── ThemeHelper.cs │ │ ├── UIHelper.cs │ │ ├── UpdateHelper.cs │ │ └── WindowHelper.cs │ ├── Interop │ │ └── ShObjIdl.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ ├── ConnectionInformation.cs │ │ ├── ConnectionType.cs │ │ ├── GitInfo.cs │ │ ├── SystemVersionInfo.cs │ │ └── UpdateInfo.cs │ ├── Pages │ │ ├── InstallPage.xaml │ │ ├── InstallPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── SettingsPages │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── TestPage.xaml │ │ │ └── TestPage.xaml.cs │ │ └── ToolPages │ │ │ ├── ApplicationsPage.xaml │ │ │ ├── ApplicationsPage.xaml.cs │ │ │ ├── ProcessesPage.xaml │ │ │ └── ProcessesPage.xaml.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── win-AnyCPU.pubxml │ │ │ ├── win-x64.pubxml │ │ │ └── win-x86.pubxml │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Strings │ │ ├── ApplicationsPage │ │ │ ├── ApplicationsStrings.Designer.cs │ │ │ ├── ApplicationsStrings.af-ZA.resx │ │ │ ├── ApplicationsStrings.ar-SA.resx │ │ │ ├── ApplicationsStrings.ca-ES.resx │ │ │ ├── ApplicationsStrings.cs-CZ.resx │ │ │ ├── ApplicationsStrings.da-DK.resx │ │ │ ├── ApplicationsStrings.de-DE.resx │ │ │ ├── ApplicationsStrings.el-GR.resx │ │ │ ├── ApplicationsStrings.en-US.resx │ │ │ ├── ApplicationsStrings.es-ES.resx │ │ │ ├── ApplicationsStrings.fi-FI.resx │ │ │ ├── ApplicationsStrings.fr-FR.resx │ │ │ ├── ApplicationsStrings.he-IL.resx │ │ │ ├── ApplicationsStrings.hu-HU.resx │ │ │ ├── ApplicationsStrings.it-IT.resx │ │ │ ├── ApplicationsStrings.ja-JP.resx │ │ │ ├── ApplicationsStrings.ko-KR.resx │ │ │ ├── ApplicationsStrings.nl-NL.resx │ │ │ ├── ApplicationsStrings.no-NO.resx │ │ │ ├── ApplicationsStrings.pl-PL.resx │ │ │ ├── ApplicationsStrings.pt-BR.resx │ │ │ ├── ApplicationsStrings.pt-PT.resx │ │ │ ├── ApplicationsStrings.resx │ │ │ ├── ApplicationsStrings.ro-RO.resx │ │ │ ├── ApplicationsStrings.ru-RU.resx │ │ │ ├── ApplicationsStrings.sr-SP.resx │ │ │ ├── ApplicationsStrings.sv-SE.resx │ │ │ ├── ApplicationsStrings.tr-TR.resx │ │ │ ├── ApplicationsStrings.uk-UA.resx │ │ │ ├── ApplicationsStrings.vi-VN.resx │ │ │ ├── ApplicationsStrings.zh-CN.resx │ │ │ └── ApplicationsStrings.zh-TW.resx │ │ ├── CapabilitiesInfoControl │ │ │ ├── CapabilitiesInfoStrings.Designer.cs │ │ │ ├── CapabilitiesInfoStrings.af-ZA.resx │ │ │ ├── CapabilitiesInfoStrings.ar-SA.resx │ │ │ ├── CapabilitiesInfoStrings.ca-ES.resx │ │ │ ├── CapabilitiesInfoStrings.cs-CZ.resx │ │ │ ├── CapabilitiesInfoStrings.da-DK.resx │ │ │ ├── CapabilitiesInfoStrings.de-DE.resx │ │ │ ├── CapabilitiesInfoStrings.el-GR.resx │ │ │ ├── CapabilitiesInfoStrings.en-US.resx │ │ │ ├── CapabilitiesInfoStrings.es-ES.resx │ │ │ ├── CapabilitiesInfoStrings.fi-FI.resx │ │ │ ├── CapabilitiesInfoStrings.fr-FR.resx │ │ │ ├── CapabilitiesInfoStrings.he-IL.resx │ │ │ ├── CapabilitiesInfoStrings.hu-HU.resx │ │ │ ├── CapabilitiesInfoStrings.it-IT.resx │ │ │ ├── CapabilitiesInfoStrings.ja-JP.resx │ │ │ ├── CapabilitiesInfoStrings.ko-KR.resx │ │ │ ├── CapabilitiesInfoStrings.nl-NL.resx │ │ │ ├── CapabilitiesInfoStrings.no-NO.resx │ │ │ ├── CapabilitiesInfoStrings.pl-PL.resx │ │ │ ├── CapabilitiesInfoStrings.pt-BR.resx │ │ │ ├── CapabilitiesInfoStrings.pt-PT.resx │ │ │ ├── CapabilitiesInfoStrings.resx │ │ │ ├── CapabilitiesInfoStrings.ro-RO.resx │ │ │ ├── CapabilitiesInfoStrings.ru-RU.resx │ │ │ ├── CapabilitiesInfoStrings.sr-SP.resx │ │ │ ├── CapabilitiesInfoStrings.sv-SE.resx │ │ │ ├── CapabilitiesInfoStrings.tr-TR.resx │ │ │ ├── CapabilitiesInfoStrings.uk-UA.resx │ │ │ ├── CapabilitiesInfoStrings.vi-VN.resx │ │ │ ├── CapabilitiesInfoStrings.zh-CN.resx │ │ │ └── CapabilitiesInfoStrings.zh-TW.resx │ │ ├── InstallPage │ │ │ ├── InstallStrings.Designer.cs │ │ │ ├── InstallStrings.af-ZA.resx │ │ │ ├── InstallStrings.ar-SA.resx │ │ │ ├── InstallStrings.ca-ES.resx │ │ │ ├── InstallStrings.cs-CZ.resx │ │ │ ├── InstallStrings.da-DK.resx │ │ │ ├── InstallStrings.de-DE.resx │ │ │ ├── InstallStrings.el-GR.resx │ │ │ ├── InstallStrings.en-US.resx │ │ │ ├── InstallStrings.es-ES.resx │ │ │ ├── InstallStrings.fi-FI.resx │ │ │ ├── InstallStrings.fr-FR.resx │ │ │ ├── InstallStrings.he-IL.resx │ │ │ ├── InstallStrings.hu-HU.resx │ │ │ ├── InstallStrings.it-IT.resx │ │ │ ├── InstallStrings.ja-JP.resx │ │ │ ├── InstallStrings.ko-KR.resx │ │ │ ├── InstallStrings.nl-NL.resx │ │ │ ├── InstallStrings.no-NO.resx │ │ │ ├── InstallStrings.pl-PL.resx │ │ │ ├── InstallStrings.pt-BR.resx │ │ │ ├── InstallStrings.pt-PT.resx │ │ │ ├── InstallStrings.resx │ │ │ ├── InstallStrings.ro-RO.resx │ │ │ ├── InstallStrings.ru-RU.resx │ │ │ ├── InstallStrings.sr-SP.resx │ │ │ ├── InstallStrings.sv-SE.resx │ │ │ ├── InstallStrings.tr-TR.resx │ │ │ ├── InstallStrings.uk-UA.resx │ │ │ ├── InstallStrings.vi-VN.resx │ │ │ ├── InstallStrings.zh-CN.resx │ │ │ └── InstallStrings.zh-TW.resx │ │ ├── Permissions │ │ │ ├── Permissions.Designer.cs │ │ │ ├── Permissions.af-ZA.resx │ │ │ ├── Permissions.ar-SA.resx │ │ │ ├── Permissions.ca-ES.resx │ │ │ ├── Permissions.cs-CZ.resx │ │ │ ├── Permissions.da-DK.resx │ │ │ ├── Permissions.de-DE.resx │ │ │ ├── Permissions.el-GR.resx │ │ │ ├── Permissions.en-US.resx │ │ │ ├── Permissions.es-ES.resx │ │ │ ├── Permissions.fi-FI.resx │ │ │ ├── Permissions.fr-FR.resx │ │ │ ├── Permissions.he-IL.resx │ │ │ ├── Permissions.hu-HU.resx │ │ │ ├── Permissions.it-IT.resx │ │ │ ├── Permissions.ja-JP.resx │ │ │ ├── Permissions.ko-KR.resx │ │ │ ├── Permissions.nl-NL.resx │ │ │ ├── Permissions.no-NO.resx │ │ │ ├── Permissions.pl-PL.resx │ │ │ ├── Permissions.pt-BR.resx │ │ │ ├── Permissions.pt-PT.resx │ │ │ ├── Permissions.resx │ │ │ ├── Permissions.ro-RO.resx │ │ │ ├── Permissions.ru-RU.resx │ │ │ ├── Permissions.sr-SP.resx │ │ │ ├── Permissions.sv-SE.resx │ │ │ ├── Permissions.tr-TR.resx │ │ │ ├── Permissions.uk-UA.resx │ │ │ ├── Permissions.vi-VN.resx │ │ │ ├── Permissions.zh-CN.resx │ │ │ └── Permissions.zh-TW.resx │ │ ├── ProcessesPage │ │ │ ├── ProcessesStrings.Designer.cs │ │ │ ├── ProcessesStrings.af-ZA.resx │ │ │ ├── ProcessesStrings.ar-SA.resx │ │ │ ├── ProcessesStrings.ca-ES.resx │ │ │ ├── ProcessesStrings.cs-CZ.resx │ │ │ ├── ProcessesStrings.da-DK.resx │ │ │ ├── ProcessesStrings.de-DE.resx │ │ │ ├── ProcessesStrings.el-GR.resx │ │ │ ├── ProcessesStrings.en-US.resx │ │ │ ├── ProcessesStrings.es-ES.resx │ │ │ ├── ProcessesStrings.fi-FI.resx │ │ │ ├── ProcessesStrings.fr-FR.resx │ │ │ ├── ProcessesStrings.he-IL.resx │ │ │ ├── ProcessesStrings.hu-HU.resx │ │ │ ├── ProcessesStrings.it-IT.resx │ │ │ ├── ProcessesStrings.ja-JP.resx │ │ │ ├── ProcessesStrings.ko-KR.resx │ │ │ ├── ProcessesStrings.nl-NL.resx │ │ │ ├── ProcessesStrings.no-NO.resx │ │ │ ├── ProcessesStrings.pl-PL.resx │ │ │ ├── ProcessesStrings.pt-BR.resx │ │ │ ├── ProcessesStrings.pt-PT.resx │ │ │ ├── ProcessesStrings.resx │ │ │ ├── ProcessesStrings.ro-RO.resx │ │ │ ├── ProcessesStrings.ru-RU.resx │ │ │ ├── ProcessesStrings.sr-SP.resx │ │ │ ├── ProcessesStrings.sv-SE.resx │ │ │ ├── ProcessesStrings.tr-TR.resx │ │ │ ├── ProcessesStrings.uk-UA.resx │ │ │ ├── ProcessesStrings.vi-VN.resx │ │ │ ├── ProcessesStrings.zh-CN.resx │ │ │ └── ProcessesStrings.zh-TW.resx │ │ ├── SettingsPage │ │ │ ├── SettingsStrings.Designer.cs │ │ │ ├── SettingsStrings.af-ZA.resx │ │ │ ├── SettingsStrings.ar-SA.resx │ │ │ ├── SettingsStrings.ca-ES.resx │ │ │ ├── SettingsStrings.cs-CZ.resx │ │ │ ├── SettingsStrings.da-DK.resx │ │ │ ├── SettingsStrings.de-DE.resx │ │ │ ├── SettingsStrings.el-GR.resx │ │ │ ├── SettingsStrings.en-US.resx │ │ │ ├── SettingsStrings.es-ES.resx │ │ │ ├── SettingsStrings.fi-FI.resx │ │ │ ├── SettingsStrings.fr-FR.resx │ │ │ ├── SettingsStrings.he-IL.resx │ │ │ ├── SettingsStrings.hu-HU.resx │ │ │ ├── SettingsStrings.it-IT.resx │ │ │ ├── SettingsStrings.ja-JP.resx │ │ │ ├── SettingsStrings.ko-KR.resx │ │ │ ├── SettingsStrings.nl-NL.resx │ │ │ ├── SettingsStrings.no-NO.resx │ │ │ ├── SettingsStrings.pl-PL.resx │ │ │ ├── SettingsStrings.pt-BR.resx │ │ │ ├── SettingsStrings.pt-PT.resx │ │ │ ├── SettingsStrings.resx │ │ │ ├── SettingsStrings.ro-RO.resx │ │ │ ├── SettingsStrings.ru-RU.resx │ │ │ ├── SettingsStrings.sr-SP.resx │ │ │ ├── SettingsStrings.sv-SE.resx │ │ │ ├── SettingsStrings.tr-TR.resx │ │ │ ├── SettingsStrings.uk-UA.resx │ │ │ ├── SettingsStrings.vi-VN.resx │ │ │ ├── SettingsStrings.zh-CN.resx │ │ │ └── SettingsStrings.zh-TW.resx │ │ ├── TestPage │ │ │ ├── TestStrings.Designer.cs │ │ │ ├── TestStrings.af-ZA.resx │ │ │ ├── TestStrings.ar-SA.resx │ │ │ ├── TestStrings.ca-ES.resx │ │ │ ├── TestStrings.cs-CZ.resx │ │ │ ├── TestStrings.da-DK.resx │ │ │ ├── TestStrings.de-DE.resx │ │ │ ├── TestStrings.el-GR.resx │ │ │ ├── TestStrings.en-US.resx │ │ │ ├── TestStrings.es-ES.resx │ │ │ ├── TestStrings.fi-FI.resx │ │ │ ├── TestStrings.fr-FR.resx │ │ │ ├── TestStrings.he-IL.resx │ │ │ ├── TestStrings.hu-HU.resx │ │ │ ├── TestStrings.it-IT.resx │ │ │ ├── TestStrings.ja-JP.resx │ │ │ ├── TestStrings.ko-KR.resx │ │ │ ├── TestStrings.nl-NL.resx │ │ │ ├── TestStrings.no-NO.resx │ │ │ ├── TestStrings.pl-PL.resx │ │ │ ├── TestStrings.pt-BR.resx │ │ │ ├── TestStrings.pt-PT.resx │ │ │ ├── TestStrings.resx │ │ │ ├── TestStrings.ro-RO.resx │ │ │ ├── TestStrings.ru-RU.resx │ │ │ ├── TestStrings.sr-SP.resx │ │ │ ├── TestStrings.sv-SE.resx │ │ │ ├── TestStrings.tr-TR.resx │ │ │ ├── TestStrings.uk-UA.resx │ │ │ ├── TestStrings.vi-VN.resx │ │ │ ├── TestStrings.zh-CN.resx │ │ │ └── TestStrings.zh-TW.resx │ │ └── TitleBar │ │ │ ├── TitleBarStrings.Designer.cs │ │ │ ├── TitleBarStrings.af-ZA.resx │ │ │ ├── TitleBarStrings.ar-SA.resx │ │ │ ├── TitleBarStrings.ca-ES.resx │ │ │ ├── TitleBarStrings.cs-CZ.resx │ │ │ ├── TitleBarStrings.da-DK.resx │ │ │ ├── TitleBarStrings.de-DE.resx │ │ │ ├── TitleBarStrings.el-GR.resx │ │ │ ├── TitleBarStrings.en-US.resx │ │ │ ├── TitleBarStrings.es-ES.resx │ │ │ ├── TitleBarStrings.fi-FI.resx │ │ │ ├── TitleBarStrings.fr-FR.resx │ │ │ ├── TitleBarStrings.he-IL.resx │ │ │ ├── TitleBarStrings.hu-HU.resx │ │ │ ├── TitleBarStrings.it-IT.resx │ │ │ ├── TitleBarStrings.ja-JP.resx │ │ │ ├── TitleBarStrings.ko-KR.resx │ │ │ ├── TitleBarStrings.nl-NL.resx │ │ │ ├── TitleBarStrings.no-NO.resx │ │ │ ├── TitleBarStrings.pl-PL.resx │ │ │ ├── TitleBarStrings.pt-BR.resx │ │ │ ├── TitleBarStrings.pt-PT.resx │ │ │ ├── TitleBarStrings.resx │ │ │ ├── TitleBarStrings.ro-RO.resx │ │ │ ├── TitleBarStrings.ru-RU.resx │ │ │ ├── TitleBarStrings.sr-SP.resx │ │ │ ├── TitleBarStrings.sv-SE.resx │ │ │ ├── TitleBarStrings.tr-TR.resx │ │ │ ├── TitleBarStrings.uk-UA.resx │ │ │ ├── TitleBarStrings.vi-VN.resx │ │ │ ├── TitleBarStrings.zh-CN.resx │ │ │ └── TitleBarStrings.zh-TW.resx │ ├── Styles │ │ ├── Button.xaml │ │ ├── Common.xaml │ │ ├── SettingButton.xaml │ │ ├── SettingExpander.xaml │ │ └── TextBlock.xaml │ ├── Themes │ │ ├── Dark │ │ │ └── Color.xaml │ │ ├── Generic.xaml │ │ ├── HighContrast │ │ │ └── Color.xaml │ │ ├── Light │ │ │ └── Color.xaml │ │ └── SettingsUI.xaml │ ├── ViewModel │ │ ├── InstallViewModel.cs │ │ ├── SettingsPages │ │ │ └── SettingsViewModel.cs │ │ └── ToolPages │ │ │ ├── ApplicationsViewModel.cs │ │ │ └── ProcessesViewModel.cs │ └── favicon.ico └── Installer │ ├── APKInstaller.Bootstrapper.wixproj │ ├── APKInstaller.Installer.wixproj │ ├── Bundle.wxs │ ├── Images │ ├── logo256.ico │ └── logo44.png │ ├── License.rtf │ └── Product.wxs ├── Images ├── Guides │ ├── Snipaste_2019-10-12_22-46-37.png │ ├── Snipaste_2019-10-12_22-49-11.png │ ├── Snipaste_2019-10-13_12-42-40.png │ ├── Snipaste_2019-10-13_15-51-33.png │ ├── Snipaste_2019-10-13_16-01-09.png │ ├── Snipaste_2019-10-19_15-28-58.png │ ├── Snipaste_2019-10-20_23-36-44.png │ └── Snipaste_2021-03-05_22-26-31.png └── Screenshots │ └── Snipaste_2022-01-03_01-07-53.png ├── LICENSE ├── Privacy.md ├── README.md ├── azure-pipelines.yml ├── crowdin.yml └── logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/.gitignore -------------------------------------------------------------------------------- /APKInstaller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller.sln -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/AAPTForNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/AAPTForNet.csproj -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/AAPTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/AAPTool.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/ApkExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/ApkExtractor.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/ApkParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/ApkParser.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/ABIFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/ABIFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/ApplicationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/ApplicationFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/BaseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/BaseFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/PackageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/PackageFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/PermissionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/PermissionFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/SDKFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/SDKFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Filters/SupportScrFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Filters/SupportScrFilter.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Models/ApkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Models/ApkInfo.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Models/Configs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Models/Configs.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Models/DumpModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Models/DumpModel.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Models/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Models/Icon.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/Models/SDKInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/Models/SDKInfo.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/ResourceDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/ResourceDetector.cs -------------------------------------------------------------------------------- /APKInstaller/AAPTForNet/tool/aapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/AAPTForNet/tool/aapt.exe -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/APKInstaller (Package).wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/APKInstaller (Package).wapproj -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/256x256.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ADB/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ADB/AdbWinApi.dll -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ADB/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ADB/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ADB/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ADB/adb.exe -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/APKInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/APKInstaller.csproj -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/App.config -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/App.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/App.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/AssemblyInfo.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Assets/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Assets/256x256.png -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/CapabilitiesInfoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/CapabilitiesInfoControl.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/CapabilitiesInfoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/CapabilitiesInfoControl.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/Dialogs/MarkdownDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/Dialogs/MarkdownDialog.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/Dialogs/MarkdownDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/Dialogs/MarkdownDialog.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/ImageEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/ImageEx.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/Setting/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/Setting/Setting.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/Setting/Setting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/Setting/Setting.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/SettingsGroup/SettingsGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/SettingsGroup/SettingsGroup.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/SettingsGroup/SettingsGroup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/SettingsGroup/SettingsGroup.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.Properties.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBar.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBarTemplateSettings.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBarTemplateSettings.Properties.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBarTemplateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBarTemplateSettings.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/TitleBar/TitleBar_themeresources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/TitleBar/TitleBar_themeresources.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/WebXAML.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/WebXAML.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Controls/WebXAML.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Controls/WebXAML.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/FodyWeavers.xml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/AddressHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/AddressHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/CachesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/CachesHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/ClipboardHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/CommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/CommandHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/BoolNegationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/BoolNegationConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/BoolToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/BoolToObjectConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/ConverterTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/ConverterTools.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/EmptyObjectToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/EmptyObjectToObjectConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/EmptyStringToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/EmptyStringToObjectConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/IsEqualToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/IsEqualToObjectConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/IsEqualToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/IsEqualToVisibilityConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/Converter/StringVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/Converter/StringVisibilityConverter.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/DownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/DownloadHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/LanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/LanguageHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/NetworkHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/PackageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/PackageHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/ProgressHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/ProgressHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/SettingsHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/ThemeHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/UIHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/UpdateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/UpdateHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Helpers/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Helpers/WindowHelper.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Interop/ShObjIdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Interop/ShObjIdl.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/MainWindow.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/MainWindow.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Models/ConnectionInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Models/ConnectionInformation.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Models/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Models/ConnectionType.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Models/GitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Models/GitInfo.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Models/SystemVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Models/SystemVersionInfo.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Models/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Models/UpdateInfo.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/InstallPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/InstallPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/InstallPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/InstallPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/MainPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/SettingsPages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/SettingsPages/SettingsPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/SettingsPages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/SettingsPages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/SettingsPages/TestPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/SettingsPages/TestPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/SettingsPages/TestPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/SettingsPages/TestPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/ToolPages/ApplicationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/ToolPages/ApplicationsPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/ToolPages/ApplicationsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/ToolPages/ApplicationsPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/ToolPages/ProcessesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/ToolPages/ProcessesPage.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Pages/ToolPages/ProcessesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Pages/ToolPages/ProcessesPage.xaml.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/PublishProfiles/win-AnyCPU.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/PublishProfiles/win-AnyCPU.pubxml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ApplicationsPage/ApplicationsStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/CapabilitiesInfoControl/CapabilitiesInfoStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/InstallPage/InstallStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/Permissions/Permissions.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/Permissions/Permissions.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/ProcessesPage/ProcessesStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/SettingsPage/SettingsStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TestPage/TestStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TestPage/TestStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.Designer.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.af-ZA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.af-ZA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ar-SA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ca-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ca-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.cs-CZ.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.da-DK.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.de-DE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.el-GR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.en-US.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.es-ES.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.fi-FI.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.fr-FR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.he-IL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.hu-HU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.it-IT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ja-JP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ko-KR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.nl-NL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.no-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.no-NO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pl-PL.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pt-BR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pt-PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.pt-PT.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ro-RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ro-RO.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.ru-RU.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.sr-SP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.sr-SP.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.sv-SE.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.tr-TR.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.uk-UA.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.vi-VN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.zh-CN.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Strings/TitleBar/TitleBarStrings.zh-TW.resx -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Styles/Button.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Styles/Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Styles/Common.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Styles/SettingButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Styles/SettingButton.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Styles/SettingExpander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Styles/SettingExpander.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Themes/Dark/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Themes/Dark/Color.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Themes/Generic.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Themes/HighContrast/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Themes/HighContrast/Color.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Themes/Light/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Themes/Light/Color.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/Themes/SettingsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/Themes/SettingsUI.xaml -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ViewModel/InstallViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ViewModel/InstallViewModel.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ViewModel/SettingsPages/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ViewModel/SettingsPages/SettingsViewModel.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ViewModel/ToolPages/ApplicationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ViewModel/ToolPages/ApplicationsViewModel.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/ViewModel/ToolPages/ProcessesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/ViewModel/ToolPages/ProcessesViewModel.cs -------------------------------------------------------------------------------- /APKInstaller/APKInstaller/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/APKInstaller/favicon.ico -------------------------------------------------------------------------------- /APKInstaller/Installer/APKInstaller.Bootstrapper.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/APKInstaller.Bootstrapper.wixproj -------------------------------------------------------------------------------- /APKInstaller/Installer/APKInstaller.Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/APKInstaller.Installer.wixproj -------------------------------------------------------------------------------- /APKInstaller/Installer/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/Bundle.wxs -------------------------------------------------------------------------------- /APKInstaller/Installer/Images/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/Images/logo256.ico -------------------------------------------------------------------------------- /APKInstaller/Installer/Images/logo44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/Images/logo44.png -------------------------------------------------------------------------------- /APKInstaller/Installer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/License.rtf -------------------------------------------------------------------------------- /APKInstaller/Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/APKInstaller/Installer/Product.wxs -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-12_22-46-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-12_22-46-37.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-12_22-49-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-12_22-49-11.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-13_12-42-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-13_12-42-40.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-13_15-51-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-13_15-51-33.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-13_16-01-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-13_16-01-09.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-19_15-28-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-19_15-28-58.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2019-10-20_23-36-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2019-10-20_23-36-44.png -------------------------------------------------------------------------------- /Images/Guides/Snipaste_2021-03-05_22-26-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Guides/Snipaste_2021-03-05_22-26-31.png -------------------------------------------------------------------------------- /Images/Screenshots/Snipaste_2022-01-03_01-07-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Images/Screenshots/Snipaste_2022-01-03_01-07-53.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/LICENSE -------------------------------------------------------------------------------- /Privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/Privacy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/crowdin.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paving-Base/APK-Installer-Classic/HEAD/logo.png --------------------------------------------------------------------------------