innerr/plugin-media-permissions

NativePHP plugin that contributes iOS Info.plist usage descriptions for camera, microphone, and photo library access (Innerr).

Maintainers

Package info

github.com/voicecode-bv/nativephp-plugin-innerr-media-permissions

Type:nativephp-plugin

pkg:composer/innerr/plugin-media-permissions

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-05-14 19:28 UTC

This package is auto-updated.

Last update: 2026-05-14 19:35:28 UTC


README

Contributes iOS Info.plist usage descriptions required for camera, microphone, and photo library access in the Innerr app.

This is a manifest-only plugin: it has no bridge functions or native code. Its sole purpose is to inject the correct NS*UsageDescription entries into the generated iOS Info.plist via the NativePHP manifest merge process.

Installation

Add this package as a path repository in the consuming app's composer.json:

"repositories": [
    { "type": "path", "url": "./packages/voicecode-bv/nativephp-plugin-innerr-media-permissions" }
]

Then install and register:

composer require voicecode-bv/nativephp-plugin-innerr-media-permissions

# First time only: publish the plugins provider
php artisan vendor:publish --tag=nativephp-plugins-provider

# Register the plugin
php artisan native:plugin:register voicecode-bv/nativephp-plugin-innerr-media-permissions

# Verify
php artisan native:plugin:list

What it contributes

Key Description
NSCameraUsageDescription To upload media to your circles, Innerr requires camera access.
NSMicrophoneUsageDescription To make new recordings, Innerr requires microphone access to record video with audio.
NSPhotoLibraryUsageDescription Before you can post media to your circles, Innerr requires photo library access to select media.
NSPhotoLibraryAddUsageDescription This app needs permission to save photos and videos to your library.

To change the wording, edit nativephp.json in this package and rebuild the iOS app.

License

MIT