UNPKG

expo-game-center

Version:

A comprehensive Expo module for iOS Game Center integration, providing authentication, leaderboards, achievements, and native UI presentation.

13 lines (10 loc) 437 B
import { ConfigPlugin, createRunOncePlugin, withEntitlementsPlist } from '@expo/config-plugins'; const withExpoGameCenter: ConfigPlugin = (config) => { // Add Game Center entitlement config = withEntitlementsPlist(config, (config) => { config.modResults['com.apple.developer.game-center'] = true; return config; }); return config; }; export default createRunOncePlugin(withExpoGameCenter, 'expo-game-center', '1.0.0');