Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-feature android:name="android.hardware.camera.front" android:required="false" />

<!-- Play Services base libraries (transitive via bundled ML Kit face detection) merge
INTERNET and ACCESS_NETWORK_STATE into the final manifest. The bundled model needs
no network, so strip both to keep the merged manifest at exactly the two declared
runtime permissions and preserve the no network egress privacy posture. -->
<uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" tools:node="remove" />

<application
android:name=".BaselineMSApp"
android:allowBackup="false"
Expand Down
1 change: 1 addition & 0 deletions web/app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export function Footer() {
<div className="flex gap-5">
<a href="https://github.com/MustafaNazeer/BaselineMS">GitHub</a>
<a href="/methodology">Methodology</a>
<a href="/privacy-policy">Privacy policy</a>
</div>
</div>
</footer>
Expand Down
Loading
Loading