1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const config_plugins_1 = require("expo/config-plugins");
4const pkg = require('expo-cellular/package.json');
5const withCellular = (config) => {
6    config = config_plugins_1.AndroidConfig.Permissions.withPermissions(config, [
7        // Required for TelephonyManager and `getNetworkType`
8        'android.permission.READ_PHONE_STATE',
9    ]);
10    return config;
11};
12exports.default = (0, config_plugins_1.createRunOncePlugin)(withCellular, pkg.name, pkg.version);
13