FoldRender / Guides / Read a research paper on the Fold 7, without a laptop
FoldRender guide

Read a research paper on the Fold 7, without a laptop

A paper is a long, figure-heavy PDF, and PDF is one of the four formats whose rendering has been verified on a clean device in FoldRender. This is the procedure for getting a paper onto an unfolded Fold and reading it properly — from a browser download, an email attachment or the repository the paper's code lives in — plus a straight account of what a reader-only app does not give you as a researcher.

Get it on Google Playfree See what FoldRender does

Step by step

  1. Install from Google Play

    FoldRender is on the Play Store as FoldRender: Git Repo Reader, package id dev.foldrender.app, free and distributed worldwide. Install it the ordinary way — no allow installs from this source prompt to approve, and updates arrive on their own. The app declares minSdk 30, so it needs Android 11 or newer; Play will tell you if a device is below that rather than letting you install a build that cannot run.

  2. Get the paper onto the phone

    However the PDF arrives — saved from the browser, an email attachment, a file in Drive or Downloads — it lands in ordinary Android storage. Tap it in the Files app and choose Render in the “Open with” list: FoldRender registers for application/pdf by MIME type and for .pdf by extension, so it is offered even by providers that serve the file with a vague content type. From inside the app, the folder icon in the top bar — or Open a file on the empty screen — picks the same file through the system document picker.

  3. Or read the paper next to its code

    If the paper has a public repository — reference implementations live on GitHub all over research — clone it: branch glyph in the top bar, paste the HTTPS URL into Clone an HTTPS repository URL, tap Clone. A public repository clones anonymously, with no account and no token. A PDF checked into that repository opens from the same tree as the source, which is the whole point: the figure on page 7 and the function that produced it, one screen apart.

  4. Pick the PDF out of the tree

    In the Files tab every row carries a type badge, and PDFs are badged PDF in red — easy to spot in a repository of source files. Unfolded, the tree stays on the left and the paper renders on the right; folded, the paper takes the whole screen and the tree becomes a back step.

  5. Know where you are in the paper

    The header above the page strip reads N pages · page M, and M updates live as you scroll. A horizontal strip of page thumbnails sits alongside the document; tapping a thumbnail jumps the main list to that page — the working substitute for skimming back to figure 3, then forward again.

  6. Make the column readable once

    The text-size icon opens the Reading sheet: Theme (System / Light / Dark), a Text size slider from 80% to 160%, a Line width slider from 480 dp to 1200 dp, and a serif switch. Pages re-render at the new width rather than upscaling a stale bitmap — rotating or refolding does not blur the page. One-page-at-a-time rendering behind a mutex keeps memory flat even on a 200-page document.

  7. Read it anywhere

    A PDF opened from local storage needs no connection, and every renderer in the app works on the local file. A paper read on a plane behaves exactly like a paper read at a desk.

How FoldRender handles it

The platform renderer, not a bundled engine

PDF goes through Android's own PdfRenderer — no native libraries added to the APK, and pages look the way the rest of the system renders them. Detection scores name, MIME type and magic bytes together, so a paper whose filename lost its extension still opens as a PDF if its first bytes are %PDF.

Papers in the context of their repo

The same pane renders the Markdown README, the highlighted source, the notebooks and the PDF, from one tree. For a paper with a public implementation, that beats a standalone PDF viewer: the equation and the line of code that implements it are a thumbnail tap apart.

Nothing to configure for offline

Reading a local PDF involves no network, and even inside a cloned repository the only operations that touch the remote are git ones — Pull, for when the authors push a revision.

What does FoldRender not do?

The honest list — shipped-but-unverified behaviour included, so you can tell before installing whether this build does the thing you came for.

How does FoldRender compare with the other ways to read a repo on Android?

Four apps people actually reach for, and the one axis that separates them: whether the repository ends up on the phone, and whether anything renders it once it is there.

ToolDownload priceWhere you get itClones to the deviceRenders PDF / notebook / MarkdownEditor or shell
FoldRender 0.8.2US$0Google Play, worldwideYes — HTTPS, anonymous for public reposYes — native Compose renderersNo, deliberately: a reader, not an IDE
GitHub MobileUS$0Google Play and the App StoreNo — it reads repositories hosted on GitHubOnly what GitHub itself renders, onlineEdits files inside a pull request
Termux + gitUS$0F-Droid or GitHubYes — the real git CLINo — terminal text onlyYes, a full shell and any CLI editor
MGit 1.7.0 (2023)US$0F-Droid onlyYes — clone, pull, push, HTTPS or SSH keysNoNo — its own listing says it ships no text editor

Prices are for the download. GitHub Mobile’s capabilities follow your GitHub plan; Termux and MGit are both free software. MGit’s version and date are from its F-Droid listing.

What are the numbers behind FoldRender?

Every figure here is read out of the shipping build or off a primary source listed at the foot of this page — nothing is rounded up for effect.

FAQ

Can I read academic papers on the Galaxy Z Fold 7 without a laptop?
Yes. PDF rendering is verified on a clean device: page count, live page indicator and tap-to-jump thumbnails all behaved as expected, through Android's own PdfRenderer. Get the PDF onto the phone however you normally would and open it with Render.
How do I jump to a specific page or figure?
Tap the page's thumbnail in the strip alongside the document — the main list jumps there — or scroll and watch the N pages · page M header. That is the whole navigation toolkit for PDFs; there is no in-PDF search.
Can I search inside a paper?
No. The find bar appears only for text-shaped formats. If the paper has a companion repository, the workspace Search tab can grep its text files — but the PDF itself is navigated by position, not by query.
Does it work offline?
Yes. A local PDF renders with no connection, and a cloned repository — including its Markdown, diagrams and equations — renders offline too, because mermaid and KaTeX ship inside the APK with network loads blocked.
Can I highlight or take notes in the paper?
No. FoldRender opens, renders and navigates; there is no annotation surface for any format. You will need a dedicated PDF editor for that.
What happens with a very large paper?
Files over 32 MB are truncated with a visible banner saying so. Pages render one at a time behind a mutex into a bounded LRU cache, so even a long paper does not accumulate memory as you scroll.
How much does FoldRender cost?
US$0. It is free on Google Play, distributed worldwide, with no billing library in the build, no subscription and no paid tier. The current release is version 0.8.2.
Which Android versions does FoldRender run on?
Android 11 and newer. The app declares minSdk 30 — the API level Android 11 shipped with in 2020 — and is compiled and targeted against API 36. It is developed and tested on a Galaxy Z Fold 7, which launched in 2025.
Does FoldRender work offline?
Yes, once a repository is on the device. Cloning and pulling need the network; reading, searching, and rendering Markdown, source, PDFs and notebooks out of a clone or a picked folder do not. Signing in to GitHub is optional and only matters for private repositories.
How is this different from GitHub Mobile, Termux or MGit?
GitHub Mobile reads repositories hosted on GitHub and does not clone to the phone. Termux and MGit both clone and then leave rendering to you — Termux gives you a shell, MGit ships no text editor at all. FoldRender clones over HTTPS and renders what it clones, on the inner screen.

Where can I check these claims?

The primary documents behind the figures above, so you can confirm any of them without taking our word for it.

Page last reviewed 2026-08-27, against FoldRender 0.8.2.

More FoldRender guides