These are the canonical Inter v4.1 static TTFs (Regular, Medium, SemiBold, Bold) used by SSP Key.
- iOS: linked manually — listed in
ios/SSPKey/Info.plistunderUIAppFontsand referenced as plain file resources inios/SSPKey.xcodeproj/project.pbxproj(paths point at this directory). - Android: NOT sourced from here at build time. Android uses the XML font family at
android/app/src/main/res/font/inter.xml(withinter_*.ttfcopies in the same directory), registered inMainApplication.ktviaReactFontManager.addCustomFont(this, "Inter", R.font.inter).
There is no assets entry in react-native.config.js on purpose. react-native-asset used to copy
these TTFs into android/app/src/main/assets/fonts/, duplicating the res/font/ copies (~1.6 MB of
dead weight in the APK — Android resolves the Inter family exclusively through res/font/inter.xml).
Do not re-add an assets config or run npx react-native-asset — it would reintroduce the
duplicates. This directory exists to document provenance and to serve as the source for the iOS
resource references and any future re-generation of the Android res/font copies.