# App Platform | App 平台 ## Instructions This example demonstrates App platform-specific considerations when using uView Pro in UniAppX. ### Key Concepts - App manifest configuration - Native capabilities - Performance optimization - Platform-specific features ### Example: App Configuration ```json // manifest.json { "app-plus": { "usingComponents": true, "nvueStyleCompiler": "uni-app", "compilerVersion": 3, "splashscreen": { "alwaysShowBeforeRender": true, "waiting": true, "autoclose": true, "delay": 0 }, "modules": {}, "distribute": { "android": { "permissions": [ "" ] }, "ios": {} } } } ``` ### Example: App Component Usage ```vue ``` ### Key Points - Configure `usingComponents: true` in manifest.json - Use App-specific APIs when needed - Optimize for native performance - Handle status bar and navigation bar - Test on actual device for best results - Use conditional compilation for App-specific code