[AIR-3][AIS-3][BPC-3][RES-3]
last_updated: 2025-05-30
Cross-Platform Installation Guide¶
Overview¶
Add a brief overview of this document here.
Table of Contents¶
Anya now supports cross-platform installation using the React SDK, making it easier to deploy and run on any operating system. The React SDK is the primary solution for web and desktop. For mobile, use the native Android/iOS SDKs (see platform-specific docs).
Prerequisites¶
Web/Desktop (React SDK)¶
- Node.js (v18+ recommended)
- npm or yarn
Mobile¶
- Android: See Android SDK Guide
- iOS: See iOS SDK Guide
Installing Anya (React SDK)¶
# Install dependencies
npm install anya-react-sdk
# or
yarn add anya-react-sdk
Verifying Installation¶
Import and use the SDK in your React app:
import { AnyaProvider } from 'anya-react-sdk';
function App() {
return (
<AnyaProvider>
{/* your app */}
</AnyaProvider>
);
}
Configuration¶
Refer to the React SDK documentation for configuration options and usage examples.
Running Anya¶
Run your React app as usual:
npm start
# or
yarn start
Development Setup¶
For development, use standard React/Node.js tools. See the React SDK README for details.
Troubleshooting¶
See the React SDK Troubleshooting Guide for common issues and solutions.
Next Steps¶
Last updated: 2025-06-02