RocketPSStore.FdroidParser 1.0.6

dotnet add package RocketPSStore.FdroidParser --version 1.0.6
                    
NuGet\Install-Package RocketPSStore.FdroidParser -Version 1.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RocketPSStore.FdroidParser" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RocketPSStore.FdroidParser" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="RocketPSStore.FdroidParser" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RocketPSStore.FdroidParser --version 1.0.6
                    
#r "nuget: RocketPSStore.FdroidParser, 1.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RocketPSStore.FdroidParser@1.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RocketPSStore.FdroidParser&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=RocketPSStore.FdroidParser&version=1.0.6
                    
Install as a Cake Tool

🚀 RocketPSStore.FdroidParser

NuGet version Build Status License: LGPL-2.1

The high-performance core of the Rocket PSStore ecosystem.

RocketPSStore.FdroidParser is a modern, strongly-typed .NET library specifically engineered to handle massive F-Droid index-v2.json repositories. Designed for speed and memory efficiency, it brings "Rocket-class" repository management to the C# and .NET ecosystem.


✨ Features

  • ⚡ Zero-Footprint Streaming: Processes the 30MB+ F-Droid index entry-by-entry. No more OutOfMemoryException on mobile devices.
  • 📦 Native GZIP Support: Automatic decompression handling using modern HttpClient protocols.
  • 🌍 Intelligent Localization: Built-in logic to prioritize your preferred language (e.g., en-US) with smart fallbacks.
  • 🔗 Async-First: Fully utilizes IAsyncEnumerable for non-blocking UI updates.
  • 🛡️ Battle-Tested: Integrated unit tests ensure data integrity across all .NET 8+ runtimes.

🚀 Getting Started

Installation

Install via the NuGet Package Manager:

dotnet add package RocketPSStore.FdroidParser

Basic Usage

Processing a repository index is as simple as a few lines of code. The parser streams data directly from the source, allowing you to stop whenever you find what you need.

using RocketPSStore.FdroidParser;

// Initialize the Rocket Client
using var client = new FdroidClient();
const string repoUrl = "[https://f-droid.org/repo/index-v2.json](https://f-droid.org/repo/index-v2.json)";

// Stream apps one by one to keep memory usage low
await foreach (var app in client.StreamAppsAsync(repoUrl))
{
    Console.WriteLine($"Found App: {app.DisplayName}");
    
    // Efficiently exit the stream early
    if (app.PackageName == "org.fdroid.fdroid") 
    {
        Console.WriteLine("Found the official F-Droid app!");
        break; 
    }
}

🛠 Development & Contribution

We welcome contributions to the Rocket engine! Whether it's fixing a bug or suggesting a new feature, your help makes the Rocket fly higher.

Local Setup

  1. Clone the repository.
  2. Build the project:
    dotnet build --configuration Release
    
  3. Run the test suite:
    dotnet test
    

Star History

<a href="https://www.star-history.com/?repos=Rocket-PSStore%2FRocketPSStore.FdroidParser&type=date&legend=top-left"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=Rocket-PSStore/RocketPSStore.FdroidParser&type=date&theme=dark&legend=top-left" /> <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=Rocket-PSStore/RocketPSStore.FdroidParser&type=date&legend=top-left" /> <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=Rocket-PSStore/RocketPSStore.FdroidParser&type=date&legend=top-left" /> </picture> </a>

Roadmap

  • High-performance GZIP streaming.
  • Initial NuGet Release.
  • .NET MAUI Integration Samples.
  • Multi-repository support (v3 index format).

📄 License

This project is licensed under the LGPL-2.1 License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.6 42 5/30/2026
1.0.5 43 5/29/2026
1.0.4 90 5/16/2026
1.0.3 102 5/9/2026
1.0.2 93 5/1/2026
1.0.1 94 5/1/2026
1.0.0 104 4/14/2026