IRONSOFTWAREHOME

Language Pack Not Found in .NET MAUI Android

Curtis Chau
Curtis Chau
Updated: July 21, 2026

Loading a non-English language (for example Chinese) in a .NET MAUI Android project can fail at runtime, even when the trained data sits in Assets/tessdata and is marked as an AndroidAsset.

System.IO.FileNotFoundException: Language Pack Not Found: chi_sim.traineddata
Text

Building a MAUI Android project from Visual Studio Code or the CLI can skip resolving the language data files IronOCR needs. The *.traineddata files never make it into the APK, so the engine cannot find them at runtime.

Solution

1. Build in Visual Studio 2022

Open and build the project in the full Visual Studio 2022 IDE (v17.10 or later). The full IDE includes the dependencies in the Android APK during the build, which the CLI and VS Code paths can miss.

2. Relocate the OcrData folder

After the build, move the OcrData folder out of bin and into the project root, for example OcrData/chi_sim.traineddata.

ProjectRoot/
├── OcrData/
│   └── chi_sim.traineddata
├── Resources/
│   └── Fonts/
│       └── NotoSansSC-Regular.ttf
├── MyMauiApp.csproj
Text

3. Register the trained data as Android assets

Add the relocated files to your .csproj so they ship with the APK:

<ItemGroup>
  <AndroidAsset Include="OcrData\chi_sim.traineddata" />
  <AndroidAsset Include="ocrData\chi_tra.traineddata" />
</ItemGroup>
XML

4. Add a font that supports your characters

Recognized text still needs a font that can render it in the app UI. Drop a font such as Noto Sans SC into Resources/Fonts and register it in MauiProgram.cs:

using Microsoft.Extensions.Logging;
namespace MauiApp2
{
    public static class MauiProgram
    {
        public static MauiApp CreateMauiApp()
        {
            var builder = MauiApp.CreateBuilder();
            builder
                .UseMauiApp<App>()
                .ConfigureFonts(fonts =>
                {
                    fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                    fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
                });
#if DEBUG
            builder.Logging.AddDebug();
#endif
            return builder.Build();
        }
    }
}
C#

Debug Tips

  • Confirm the NuGet package: make sure IronOcr.Android is installed and restored.
  • Turn on logging to see the search paths IronOCR uses for language files:
IronOcr.Installation.LoggingMode = IronOcr.Installation.LoggingModes.All;
IronOcr.Installation.LogFilePath = "OcrMaui.log";
C#
Warning: A .tessdata folder under Assets/ can fail silently on CLI or VS Code builds, which is why relocating the .traineddata files manually is sometimes required.
Curtis Chau
Technical Writer

Curtis Chau holds a Bachelor’s degree in Computer Science (Carleton University) and specializes in front-end development with expertise in Node.js, TypeScript, JavaScript, and React. Passionate about crafting intuitive and aesthetically pleasing user interfaces, Curtis enjoys working with modern frameworks and creating well-structured, visually appealing manuals.

...
Read More

Ready to Get Started?

Nuget Downloads 6,236,385Version:2026.9just released

Get your free 30-day Trial Key instantly.
No credit card or account creation required
C# NuGet Library for PDF
Install with NuGet

Version: 2026.9

PM > Install-Package IronOcr
nuget.org/packages/IronOcr/
  1. In Solution Explorer, right-click References, Manage NuGet Packages
  2. Select Browse and search "IronOCR"
  3. Select the package and install
C# PDF DLL
Download DLL

Version: 2026.9

or download Windows Installer here.

  1. Download and unzip IronOCR to a location such as ~/Libs within your Solution directory
  2. In Visual Studio Solution Explorer, right click References. Select Browse, "IronOCR.dll"

Licenses from $999

Key in blue circle

Get your free 30-day Trial Key instantly.

Your trial license will be sent to your email address

No limitations. 100% unlocked. No credit card.

bullet_checkedNo credit card or account creation requiredNo limitations. 100% unlocked. No credit card.
  • Logo Aetna
  • Logo NASA
  • Logo GE
  • Logo Porsche
  • Logo USDA
  • Logo Qatar
Join Millions of Engineers who’ve tried IronPDF
Get Your No-Obligation Consult
Complete the form below or email sales@ironsoftware.com
Your details will always be kept confidential.
Trusted by Millions of Engineers Worldwide
Iron Software's customer logos
Get your free 30-day Trial Key instantly.
No credit card or account creation required