Skip to content

Instantly share code, notes, and snippets.

@wodin
wodin / eas.json
Created August 12, 2022 08:42
Simple EAS Build config with simulator build profiles
{
"cli": {
"version": ">= 0.52.0"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"sim-dev": {
@wodin
wodin / AndroidManifest.xml
Last active January 1, 2023 23:37
Allowing an Android app to be moved to an SD card by the user (untested)
<!-- Need to specify the `installLocation`. Can do this with a config plugin -->
<!-- See `app.json` and `withAndroidManifestAttributes.js` below -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp"
android:installLocation="auto">
...
</manifest>