Who we are

Our Technologies

Our Company

Developers

Developers

Developers

If you have an idea for a new feature or have found a bug, please open an issue on a repository, or if you would like to contribute code, please fork a repository and create a pull request with your changes.

If you have an idea for a new feature or have found a bug, please open an issue on a repository, or if you would like to contribute code, please fork a repository and create a pull request with your changes.

Build better apps with Oxy

Build better apps with Oxy

Build better apps with Oxy

SDKs powered by Oxy services are backward compatible and always up to date.

SDKs powered by Oxy services are backward compatible and always up to date.

Set up Oxy Services

Learn how to develop your app with Oxy Services APIs, and set up your project with the relevant SDKs.

API Reference

View the Oxy Services package index.

Beta program

The Oxy Services beta program gives you early access to new versions of Google Play services, allowing you to test apps on your own devices.

Explore SDKs

Oxy Services powers a broad set of APIs and services on Android to help you build your app, enhance privacy and security, engage users, and grow your business.

Oxy Auth at your fingertips.

Oxy Auth at your fingertips.

Oxy Auth at your fingertips.

Implement Oxy Auth in any application in just five minutes

Implement Oxy Auth in any application in just five minutes

Implement Oxy Auth in any application in just five minutes

npm install @oxyhq/services

OxyServices init

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

// Importing required libraries and components

// Sign-In button from OxyHQ services


import React from 'react';

import { SignInButton } from '@oxyhq/services';

const App = () => {

return (

<div>

<SignInButton />

</div>

);

};