Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (35 loc) · 708 Bytes

app.md

File metadata and controls

41 lines (35 loc) · 708 Bytes

Setup app

Change following codes

app/src/constants/values.ts

// line 12
export const SPOTIFY_CLIENT_ID = 'babda1a147134d70b64cb301089cfeaa';
// to 
export const SPOTIFY_CLIENT_ID = 'your client id';

// line 18
return 'https://us-central1-music-shorts.cloudfunctions.net/api';
// to
return 'your server url';

Run Android

# terminal location is ./app
yarn
yarn android

Run Ios

# terminal location is ./app
yarn
yarn pod
yarn ios # or yarn ios

Run test code

# terminal location is ./app
yarn test