Platform Support
iOS / Swift
Native Swift SDK with Keychain storage and biometric support.
Coming SoonAndroid / Kotlin
Native Kotlin SDK with encrypted SharedPreferences.
Coming SoonReact Native
Use our React SDK with React Native. Works with Expo and bare React Native projects.
npm install @zalt/core @zalt/react-native
import { ZaltProvider, useAuth } from '@zalt/react-native';
function App() {
return (
<ZaltProvider
realmId="your-realm-id"
storage="secureStore" // Uses expo-secure-store
>
<YourApp />
</ZaltProvider>
);
}REST API
For any platform, you can use our REST API directly:
POST https://api.zalt.io/login
Content-Type: application/json
{
"realm_id": "your-realm-id",
"email": "user@example.com",
"password": "secure-password"
}