├── app.json ├── babel.config.js ├── android ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Webfont.ttf │ │ │ │ │ ├── bebas-neue.ttf │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── musicstudio │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ │ └── debug │ │ │ └── AndroidManifest.xml │ ├── build_defs.bzl │ ├── proguard-rules.pro │ ├── BUCK │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── gradle.properties ├── build.gradle ├── settings.gradle ├── gradlew.bat └── gradlew ├── ios ├── MusicStudio │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── MusicStudioTests │ ├── Info.plist │ └── MusicStudioTests.m ├── MusicStudio-tvOSTests │ └── Info.plist ├── MusicStudio-tvOS │ └── Info.plist └── MusicStudio.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── MusicStudio.xcscheme │ │ └── MusicStudio-tvOS.xcscheme │ └── project.pbxproj ├── assets ├── fonts │ ├── Webfont.ttf │ ├── Roboto-Bold.ttf │ ├── bebas-neue.ttf │ ├── Roboto-Medium.ttf │ └── Roboto-Regular.ttf └── icons │ ├── ic_check.png │ ├── ic_close.png │ ├── ic_like.png │ ├── ic_more.png │ ├── ic_play.png │ ├── ic_search.png │ ├── ic_back_btn.png │ ├── ic_dislike.png │ ├── ic_next_btn.png │ ├── ic_refresh.png │ ├── ic_shuffle.png │ ├── ic_expand_more.png │ ├── ic_music_logo.png │ ├── ic_pause_white.png │ ├── ic_play_circle.png │ ├── ic_play_white.png │ ├── ic_skip_next.png │ ├── ic_pause_circle.png │ ├── ic_search_black.png │ ├── ic_skip_previous.png │ ├── ic_outline_thumb_up.png │ └── ic_outline_thumb_down.png ├── screenshots └── MusicApp.jpg ├── index.js ├── src ├── reducers │ ├── index.js │ ├── trackReducer.js │ └── playerReducer.js ├── store │ └── index.js ├── components │ ├── tracks │ │ ├── TrackProvider.js │ │ ├── TrackContainer.js │ │ └── Tracks.js │ └── player │ │ └── PlayerContainer.js ├── actions │ ├── constants.js │ └── index.js ├── utils │ └── utils.js ├── styles │ ├── MusicDashboardStyles.js │ ├── TrackStyles.js │ └── PlayerStyles.js └── MusicDashboard.js ├── __tests__ └── App-test.js ├── metro.config.js ├── App.js ├── README.md └── package.json /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MusicStudio", 3 | "displayName": "MusicStudio" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MusicStudio 3 | 4 | -------------------------------------------------------------------------------- /ios/MusicStudio/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /assets/fonts/Webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/fonts/Webfont.ttf -------------------------------------------------------------------------------- /assets/icons/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_check.png -------------------------------------------------------------------------------- /assets/icons/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_close.png -------------------------------------------------------------------------------- /assets/icons/ic_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_like.png -------------------------------------------------------------------------------- /assets/icons/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_more.png -------------------------------------------------------------------------------- /assets/icons/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_play.png -------------------------------------------------------------------------------- /assets/icons/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_search.png -------------------------------------------------------------------------------- /screenshots/MusicApp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/screenshots/MusicApp.jpg -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/bebas-neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/fonts/bebas-neue.ttf -------------------------------------------------------------------------------- /assets/icons/ic_back_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_back_btn.png -------------------------------------------------------------------------------- /assets/icons/ic_dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_dislike.png -------------------------------------------------------------------------------- /assets/icons/ic_next_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_next_btn.png -------------------------------------------------------------------------------- /assets/icons/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_refresh.png -------------------------------------------------------------------------------- /assets/icons/ic_shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_shuffle.png -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/icons/ic_expand_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_expand_more.png -------------------------------------------------------------------------------- /assets/icons/ic_music_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_music_logo.png -------------------------------------------------------------------------------- /assets/icons/ic_pause_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_pause_white.png -------------------------------------------------------------------------------- /assets/icons/ic_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_play_circle.png -------------------------------------------------------------------------------- /assets/icons/ic_play_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_play_white.png -------------------------------------------------------------------------------- /assets/icons/ic_skip_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_skip_next.png -------------------------------------------------------------------------------- /assets/icons/ic_pause_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_pause_circle.png -------------------------------------------------------------------------------- /assets/icons/ic_search_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_search_black.png -------------------------------------------------------------------------------- /assets/icons/ic_skip_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_skip_previous.png -------------------------------------------------------------------------------- /assets/icons/ic_outline_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_outline_thumb_up.png -------------------------------------------------------------------------------- /assets/icons/ic_outline_thumb_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/assets/icons/ic_outline_thumb_down.png -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/assets/fonts/Webfont.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/bebas-neue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/assets/fonts/bebas-neue.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/react-native-redux-music-player/master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | 3 | import trackReducer from './trackReducer'; 4 | import playerReducer from './playerReducer'; 5 | 6 | const rootReducer = combineReducers({ 7 | tracks: trackReducer, 8 | player: playerReducer 9 | }) 10 | 11 | export default rootReducer; -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from "redux"; 2 | import thunk from 'redux-thunk'; 3 | import logger from 'redux-logger'; 4 | 5 | import rootReducer from '../reducers'; 6 | 7 | const middle = applyMiddleware(thunk, logger); 8 | const store = createStore(rootReducer, middle); 9 | 10 | export default store; -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /src/components/tracks/TrackProvider.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | import TrackContainer from './TrackContainer'; 4 | 5 | class TrackProvider extends Component { 6 | constructor(props) { 7 | super(props) 8 | } 9 | render() { 10 | return ( 11 | 12 | ); 13 | } 14 | } 15 | 16 | export default TrackProvider; -------------------------------------------------------------------------------- /src/reducers/trackReducer.js: -------------------------------------------------------------------------------- 1 | import { 2 | FETCH_TRACKS 3 | } from '../actions/constants'; 4 | 5 | const trackReducer = (state = [], action) => { 6 | switch (action.type) { 7 | case FETCH_TRACKS: { 8 | const newState = action.payload; 9 | return newState; 10 | } 11 | default: 12 | return state 13 | } 14 | } 15 | 16 | export default trackReducer; -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/actions/constants.js: -------------------------------------------------------------------------------- 1 | export const BASE_URL = 'https://api.soundcloud.com'; 2 | export const CLIENT_ID = 'YOUR_SOUND_CLOUD_CLIENT_ID'; 3 | export const FETCH_TRACKS = 'FETCH_TRACKS'; 4 | export const SELECT_SONGS = 'SELECT_SONGS'; 5 | export const PLAY_SONGS = 'PLAY_SONGS'; 6 | export const PAUSE_SONGS = 'PAUSE_SONGS'; 7 | export const STOP_SONGS = 'STOP_SONGS'; 8 | export const NEXT_SONGS = 'NEXT_SONGS'; 9 | export const PREV_SONGS = 'PREV_SONGS'; 10 | -------------------------------------------------------------------------------- /ios/MusicStudio/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/MusicStudio/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/musicstudio/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.musicstudio; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "MusicStudio"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- 1 | export function getSongDuration (duration) { 2 | var ms = duration; 3 | var min = ms / 1000 / 60; 4 | var r = min % 1; 5 | var sec = Math.floor(r * 60); 6 | 7 | if (sec < 10) { 8 | sec = '0'+sec; 9 | } 10 | min = Math.floor(min); 11 | return min+':'+sec; 12 | } 13 | 14 | export function getAudioTimeString(seconds){ 15 | const h = parseInt(seconds/(60*60)); 16 | const m = parseInt(seconds%(60*60)/60); 17 | const s = parseInt(seconds%60); 18 | return ((m<10?'0'+m:m) + ':' + (s<10?'0'+s:s)); 19 | } -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {Platform, StyleSheet, Text, View} from 'react-native'; 3 | 4 | import {createSwitchNavigator, createAppContainer} from 'react-navigation'; 5 | 6 | import MusicDashboard from './src/MusicDashboard'; 7 | 8 | const MainNavigator = createSwitchNavigator({ 9 | MusicDashboard: { screen: MusicDashboard}, 10 | },{ 11 | headerMode: 'none', 12 | navigationOptions: { 13 | headerVisible: false, 14 | } 15 | }) 16 | 17 | const AppContainer = createAppContainer(MainNavigator); 18 | 19 | export default class App extends Component { 20 | render() { 21 | return ; 22 | } 23 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-redux-music-player 2 | 3 | This music application is a sample demonstration to react-native-redux 4 | 5 | # Demo 6 |
7 | IMAGE ALT TEXT 8 |
9 | 10 | ## Installation 11 | 12 | 1. git clone https://github.com/anshumanpattnaik/react-native-redux-music-player.git 13 | 2. cd react-native-redux-music-player 14 | 3. npm install 15 | 4. react-native run-android 16 | 17 | ## More information on ReactNative & Redux 18 | 19 | 1. [https://facebook.github.io/react-native/](https://facebook.github.io/react-native/). 20 | 2. [https://redux.js.org/](https://redux.js.org/) 21 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /src/components/tracks/TrackContainer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | } from 'react-native'; 5 | import { connect } from 'react-redux'; 6 | 7 | import { fetchTracks } from '../../actions'; 8 | 9 | import Styles from '../../styles/TrackStyles'; 10 | 11 | import Tracks from './Tracks'; 12 | 13 | class TrackContainer extends Component { 14 | constructor(props) { 15 | super(props) 16 | } 17 | 18 | componentDidMount(){ 19 | this.props.fetchTracks(); 20 | } 21 | 22 | render(){ 23 | return( 24 | 25 | ); 26 | } 27 | } 28 | 29 | const dispatchProps = dispatch => ({ 30 | fetchTracks: () => dispatch(fetchTracks()), 31 | }) 32 | 33 | export default connect(null, dispatchProps)(TrackContainer); -------------------------------------------------------------------------------- /ios/MusicStudio/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/MusicStudioTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/MusicStudio-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:3.4.0") 17 | 18 | // NOTE: Do not place your application dependencies here; they belong 19 | // in the individual module build.gradle files 20 | } 21 | } 22 | 23 | allprojects { 24 | repositories { 25 | mavenLocal() 26 | google() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'MusicStudio' 2 | include ':react-native-reanimated' 3 | project(':react-native-reanimated').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-reanimated/android') 4 | include ':react-native-text-gradient' 5 | project(':react-native-text-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-text-gradient/android') 6 | include ':@react-native-community_slider' 7 | project(':@react-native-community_slider').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/slider/android') 8 | include ':react-native-sound' 9 | project(':react-native-sound').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sound/android') 10 | include ':react-native-cardview' 11 | project(':react-native-cardview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-cardview/android') 12 | include ':react-native-gesture-handler' 13 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') 14 | 15 | include ':app' 16 | -------------------------------------------------------------------------------- /src/styles/MusicDashboardStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native'; 2 | import {widthPercentageToDP as wp, heightPercentageToDP as hp} from 'react-native-responsive-screen'; 3 | 4 | const { width, height } = Dimensions.get("window"); 5 | 6 | export default StyleSheet.create({ 7 | container:{ 8 | flex: 1, 9 | flexDirection: 'column' 10 | }, 11 | headerContainer:{ 12 | height: hp('12%'), 13 | flexDirection: 'row', 14 | backgroundColor: '#FFFFFF' 15 | }, 16 | appLabelView:{ 17 | width: wp('80%'), 18 | justifyContent: 'flex-end', 19 | }, 20 | appLabel:{ 21 | fontFamily: 'bebas-neue', 22 | fontSize: 35, 23 | color: '#D81F26', 24 | marginBottom: 10, 25 | marginLeft: 20 26 | }, 27 | appSearchView:{ 28 | width: wp('20%'), 29 | justifyContent: 'flex-end', 30 | alignItems: 'center', 31 | }, 32 | appSearchIcon:{ 33 | width: 28, 34 | height: 28, 35 | marginBottom: 15, 36 | }, 37 | tabIndicatorStyle:{ 38 | backgroundColor: '#D81F26' 39 | }, 40 | tabBarStyles:{ 41 | backgroundColor: '#FFF', 42 | height: 50, 43 | }, 44 | tabLabelStyle:{ 45 | fontFamily: 'Roboto-Bold', 46 | fontSize: 12, 47 | color: '#000', 48 | } 49 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MusicStudio", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "@react-native-community/slider": "^1.1.4", 11 | "react": "16.8.3", 12 | "react-native": "0.59.9", 13 | "react-native-cardview": "^2.0.2", 14 | "react-native-gesture-handler": "^1.3.0", 15 | "react-native-marquee": "^0.3.2", 16 | "react-native-material-tabs": "^4.0.0", 17 | "react-native-reanimated": "^1.1.0", 18 | "react-native-responsive-screen": "^1.2.2", 19 | "react-native-sound": "^0.10.12", 20 | "react-native-tab-view": "^2.7.3", 21 | "react-native-text-gradient": "^0.1.6", 22 | "react-navigation": "^3.11.0", 23 | "react-redux": "^7.1.0", 24 | "react-thunk": "^1.0.0", 25 | "redux": "^4.0.1", 26 | "redux-logger": "^3.0.6", 27 | "redux-thunk": "^2.3.0" 28 | }, 29 | "devDependencies": { 30 | "@babel/core": "^7.5.0", 31 | "@babel/runtime": "^7.5.0", 32 | "babel-jest": "^24.8.0", 33 | "jest": "^24.8.0", 34 | "metro-react-native-babel-preset": "^0.55.0", 35 | "react-test-renderer": "16.8.3" 36 | }, 37 | "jest": { 38 | "preset": "react-native" 39 | }, 40 | "rnpm": { 41 | "assets": [ 42 | "./assets/fonts" 43 | ] 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/MusicDashboard.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text, 5 | Image, 6 | StatusBar, 7 | StyleSheet, 8 | Dimensions 9 | } from 'react-native'; 10 | 11 | import { Provider } from 'react-redux'; 12 | import store from './store'; 13 | 14 | import Styles from './styles/MusicDashboardStyles'; 15 | 16 | import TrackProvider from './components/tracks/TrackProvider'; 17 | import PlayerContainer from './components/player/PlayerContainer'; 18 | 19 | import CardView from 'react-native-cardview'; 20 | 21 | export default class MusicDashboard extends Component { 22 | constructor(props) { 23 | super(props) 24 | } 25 | 26 | render() { 27 | return ( 28 | 29 | 33 | 34 | 38 | 39 | 40 | MUSIC 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | ); 49 | } 50 | } -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.musicstudio", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.musicstudio", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /ios/MusicStudio/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"MusicStudio" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /src/styles/TrackStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native'; 2 | import {widthPercentageToDP as wp, heightPercentageToDP as hp} from 'react-native-responsive-screen'; 3 | 4 | const { width, height } = Dimensions.get("window"); 5 | 6 | export default StyleSheet.create({ 7 | trackContainer: { 8 | width: wp('100%'), 9 | height: hp('10%'), 10 | }, 11 | trackCardContainerView:{ 12 | width: wp('100%'), 13 | height: hp('10%'), 14 | flexDirection: 'row', 15 | }, 16 | trackCardContainerSelectedView:{ 17 | width: wp('100%'), 18 | height: hp('10%'), 19 | flexDirection: 'row', 20 | backgroundColor: '#E5E5E5' 21 | }, 22 | trackThumbCardView:{ 23 | width: wp('20%'), 24 | height: hp('10%'), 25 | justifyContent: 'center', 26 | alignItems: 'center', 27 | }, 28 | trackThumb:{ 29 | width: 50, 30 | height: 50, 31 | borderRadius: 3 32 | }, 33 | trackTileView:{ 34 | width: wp('60%'), 35 | height: hp('10%'), 36 | justifyContent: 'center', 37 | flexDirection: 'column', 38 | marginLeft: 5 39 | }, 40 | tracksTitle:{ 41 | width: 250, 42 | fontFamily: 'Roboto-Bold', 43 | fontSize: 14, 44 | color: '#000', 45 | textAlign: 'left' 46 | }, 47 | tracksGenre:{ 48 | fontFamily: 'Roboto-Regular', 49 | fontSize: 14, 50 | color: '#808080', 51 | textAlign: 'left', 52 | marginTop: 3 53 | }, 54 | trackDurationView:{ 55 | width: wp('20%'), 56 | height: hp('10%'), 57 | justifyContent: 'center', 58 | alignItems: 'center' 59 | }, 60 | tracksDurationTxt:{ 61 | fontFamily: 'Roboto-Regular', 62 | fontSize: 12, 63 | color: '#000', 64 | } 65 | }); -------------------------------------------------------------------------------- /ios/MusicStudio-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/musicstudio/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.musicstudio; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.swmansion.reanimated.ReanimatedPackage; 7 | import iyegoroff.RNTextGradient.RNTextGradientPackage; 8 | import com.reactnativecommunity.slider.ReactSliderPackage; 9 | import com.zmxv.RNSound.RNSoundPackage; 10 | import com.kishanjvaghela.cardview.RNCardViewPackage; 11 | import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; 12 | import com.facebook.react.ReactNativeHost; 13 | import com.facebook.react.ReactPackage; 14 | import com.facebook.react.shell.MainReactPackage; 15 | import com.facebook.soloader.SoLoader; 16 | 17 | import java.util.Arrays; 18 | import java.util.List; 19 | 20 | public class MainApplication extends Application implements ReactApplication { 21 | 22 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 23 | @Override 24 | public boolean getUseDeveloperSupport() { 25 | return BuildConfig.DEBUG; 26 | } 27 | 28 | @Override 29 | protected List getPackages() { 30 | return Arrays.asList( 31 | new MainReactPackage(), 32 | new ReanimatedPackage(), 33 | new RNTextGradientPackage(), 34 | new ReactSliderPackage(), 35 | new RNSoundPackage(), 36 | new RNCardViewPackage(), 37 | new RNGestureHandlerPackage() 38 | ); 39 | } 40 | 41 | @Override 42 | protected String getJSMainModuleName() { 43 | return "index"; 44 | } 45 | }; 46 | 47 | @Override 48 | public ReactNativeHost getReactNativeHost() { 49 | return mReactNativeHost; 50 | } 51 | 52 | @Override 53 | public void onCreate() { 54 | super.onCreate(); 55 | SoLoader.init(this, /* native exopackage */ false); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/reducers/playerReducer.js: -------------------------------------------------------------------------------- 1 | import { 2 | SELECT_SONGS, 3 | PLAY_SONGS, 4 | PAUSE_SONGS, 5 | STOP_SONGS, 6 | NEXT_SONGS, 7 | PREV_SONGS 8 | } from '../actions/constants'; 9 | 10 | const initialState = { 11 | statusPlaying: false, 12 | track: null, 13 | msg: '', 14 | playList: [] 15 | } 16 | 17 | const playerReducer = (state = initialState, action) => { 18 | switch(action.type) { 19 | case SELECT_SONGS:{ 20 | const newState = { 21 | ...state, 22 | statusPlaying: true, 23 | track: action.payload.track, 24 | playList: action.payload.tracks 25 | } 26 | return newState; 27 | } 28 | case PAUSE_SONGS: { 29 | const newState = { 30 | ...state, 31 | statusPlaying: false, 32 | msg: action.payload, 33 | } 34 | return newState 35 | } 36 | case STOP_SONGS: { 37 | const newState = { 38 | ...initialState, 39 | msg:'stopped' 40 | } 41 | return newState 42 | } 43 | case PLAY_SONGS: { 44 | const newState = { 45 | ...state, 46 | statusPlaying: true, 47 | msg: action.payload, 48 | } 49 | return newState 50 | } 51 | case NEXT_SONGS: { 52 | const newState = { 53 | ...state, 54 | track: action.payload, 55 | statusPlaying: true, 56 | msg: 'next', 57 | } 58 | return newState; 59 | } 60 | case PREV_SONGS: { 61 | const newState = { 62 | ...state, 63 | track: action.payload, 64 | statusPlaying: true, 65 | msg: 'prev', 66 | } 67 | return newState; 68 | } 69 | default: return state 70 | } 71 | } 72 | 73 | export default playerReducer; -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- 1 | import { 2 | BASE_URL, 3 | CLIENT_ID, 4 | FETCH_TRACKS, 5 | SELECT_SONGS, 6 | PAUSE_SONGS, 7 | PLAY_SONGS, 8 | STOP_SONGS, 9 | NEXT_SONGS, 10 | PREV_SONGS 11 | } from './constants'; 12 | 13 | 14 | export const fetchTracksSuccess = data => ({ 15 | type: FETCH_TRACKS, 16 | payload: data, 17 | }); 18 | 19 | export const fetchTracks = () => dispatch => { 20 | fetch(BASE_URL+'/tracks?client_id='+CLIENT_ID+'&filter=public') 21 | .then(res => res.json()) 22 | .then(data => dispatch(fetchTracksSuccess(data))) 23 | .catch(err => {console.log(err)}) 24 | } 25 | 26 | export const selectSongs = (track, tracks) => ({ 27 | type: SELECT_SONGS, 28 | payload: {track, tracks} 29 | }) 30 | 31 | export const pauseSongs = () => ({ 32 | type: PAUSE_SONGS, 33 | payload: 'paused', 34 | }) 35 | 36 | export const stopSongs = () => ({ 37 | type: STOP_SONGS, 38 | payload: 'stopped', 39 | }) 40 | 41 | export const playSongs = () => ({ 42 | type: PLAY_SONGS, 43 | payload: 'played', 44 | }) 45 | 46 | export const nextSongsPlaying = (track) => ({ 47 | type: NEXT_SONGS, 48 | payload: track, 49 | }) 50 | 51 | export const nextSongs = () => ( 52 | (dispatch, getState) => { 53 | const { player } = getState(); 54 | const currentIdx = player.playList.findIndex( x => player.track.id === x.id); 55 | const nextSong = player.playList[currentIdx + 1]; 56 | if(nextSong!=null){ 57 | return dispatch(nextSongsPlaying(nextSong)); 58 | } 59 | } 60 | ) 61 | 62 | export const prevSongsPlaying = (track) => ({ 63 | type: PREV_SONGS, 64 | payload: track, 65 | }) 66 | 67 | export const prevSongs = () => ( 68 | (dispatch, getState) => { 69 | const { player } = getState(); 70 | const currentIdx = player.playList.findIndex( x => player.track.id === x.id); 71 | const prevSong = player.playList[currentIdx - 1]; 72 | if(prevSong!=null){ 73 | return dispatch(prevSongsPlaying(prevSong)); 74 | } 75 | } 76 | ) 77 | -------------------------------------------------------------------------------- /ios/MusicStudio/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | MusicStudio 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | bebas-neue.ttf 59 | Roboto-Bold.ttf 60 | Roboto-Medium.ttf 61 | Roboto-Regular.ttf 62 | Webfont.ttf 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /ios/MusicStudioTests/MusicStudioTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface MusicStudioTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation MusicStudioTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windows variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | 69 | :win9xME_args 70 | @rem Slurp the command line arguments. 71 | set CMD_LINE_ARGS= 72 | set _SKIP=2 73 | 74 | :win9xME_args_slurp 75 | if "x%~1" == "x" goto execute 76 | 77 | set CMD_LINE_ARGS=%* 78 | 79 | :execute 80 | @rem Setup the command line 81 | 82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 83 | 84 | @rem Execute Gradle 85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 86 | 87 | :end 88 | @rem End local scope for the variables with windows NT shell 89 | if "%ERRORLEVEL%"=="0" goto mainEnd 90 | 91 | :fail 92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 93 | rem the _cmd.exe /c_ return code! 94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 95 | exit /b 1 96 | 97 | :mainEnd 98 | if "%OS%"=="Windows_NT" endlocal 99 | 100 | :omega 101 | -------------------------------------------------------------------------------- /ios/MusicStudio/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /src/styles/PlayerStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native'; 2 | import {widthPercentageToDP as wp, heightPercentageToDP as hp} from 'react-native-responsive-screen'; 3 | 4 | const { width, height } = Dimensions.get("window"); 5 | 6 | export default StyleSheet.create({ 7 | miniPlayerContainer: { 8 | position: 'absolute', 9 | bottom: 0, 10 | width: wp('100%'), 11 | height: hp('15%'), 12 | justifyContent: 'center', 13 | flexDirection: 'column', 14 | backgroundColor: '#D81F26' 15 | }, 16 | miniPlayerMusicTitleView:{ 17 | width: wp('100%'), 18 | height: hp('3%'), 19 | justifyContent: 'center', 20 | alignItems: 'center', 21 | }, 22 | miniPlayerMusicTitleTxt:{ 23 | marginLeft: 70, 24 | marginRight: 70, 25 | fontFamily: 'Roboto-Bold', 26 | fontSize: 12, 27 | color: '#FFF', 28 | }, 29 | miniPlayerSliderControllerView:{ 30 | height: hp('3%'), 31 | flexDirection: 'row', 32 | }, 33 | miniPlayerSliderCurrentTimeView:{ 34 | width: wp('15%'), 35 | justifyContent: 'center', 36 | alignItems: 'center', 37 | }, 38 | miniPlayerSliderCurrentTimeTxt:{ 39 | fontFamily: 'Roboto-Regular', 40 | fontSize: 13, 41 | color: '#FFF', 42 | }, 43 | miniPlayerSliderView:{ 44 | width: wp('70%'), 45 | justifyContent: 'center', 46 | alignItems: 'center', 47 | }, 48 | miniPlayerSliderDurationView:{ 49 | width: wp('15%'), 50 | justifyContent: 'center', 51 | alignItems: 'center', 52 | }, 53 | miniPlayerSliderDurationTxt:{ 54 | fontFamily: 'Roboto-Regular', 55 | fontSize: 13, 56 | color: '#FFF', 57 | }, 58 | miniPlayerControllerView:{ 59 | height: hp('8%'), 60 | flexDirection: 'row', 61 | }, 62 | miniPlayerThumbsDownView:{ 63 | width: wp('20%'), 64 | justifyContent: 'center', 65 | alignItems: 'center', 66 | flexDirection: 'row', 67 | }, 68 | miniPlayerThumbsDownCardView:{ 69 | width: 25, 70 | height: 25, 71 | justifyContent: 'center', 72 | alignItems: 'center', 73 | flexDirection: 'row', 74 | backgroundColor:'#FFF' 75 | }, 76 | miniPlayerThumbsDown:{ 77 | width: 15, 78 | height: 15 79 | }, 80 | miniPlayerPrevView:{ 81 | width: wp('20%'), 82 | justifyContent: 'center', 83 | alignItems: 'center', 84 | flexDirection: 'row', 85 | }, 86 | miniPlayerPrevCardView:{ 87 | width: 30, 88 | height: 30, 89 | justifyContent: 'center', 90 | alignItems: 'center', 91 | flexDirection: 'row', 92 | backgroundColor:'#FFF' 93 | }, 94 | miniPlayerPrevImage:{ 95 | width: 20, 96 | height: 20 97 | }, 98 | miniPlayerPlayView:{ 99 | width: wp('20%'), 100 | justifyContent: 'center', 101 | alignItems: 'center', 102 | flexDirection: 'row', 103 | }, 104 | miniPlayerPlayCardView:{ 105 | width: 45, 106 | height: 45, 107 | alignItems: 'center', 108 | justifyContent: 'center', 109 | flexDirection: 'row', 110 | backgroundColor:'#FFF' 111 | }, 112 | miniPlayerPlayImage:{ 113 | width: 25, 114 | height: 25 115 | }, 116 | miniPlayerNextView:{ 117 | width: wp('20%'), 118 | justifyContent: 'center', 119 | alignItems: 'center', 120 | flexDirection: 'row', 121 | }, 122 | miniPlayerNextCardView:{ 123 | width: 30, 124 | height: 30, 125 | justifyContent: 'center', 126 | alignItems: 'center', 127 | flexDirection: 'row', 128 | backgroundColor:'#FFF' 129 | }, 130 | miniPlayerNextImage:{ 131 | width: 25, 132 | height: 25 133 | }, 134 | miniPlayerThumbsUpView:{ 135 | width: wp('20%'), 136 | justifyContent: 'center', 137 | alignItems: 'center', 138 | flexDirection: 'row', 139 | }, 140 | miniPlayerThumbsUpCardView:{ 141 | width: 25, 142 | height: 25, 143 | justifyContent: 'center', 144 | alignItems: 'center', 145 | flexDirection: 'row', 146 | backgroundColor:'#FFF' 147 | }, 148 | miniPlayerThumbsUp:{ 149 | width: 15, 150 | height: 15 151 | } 152 | }); -------------------------------------------------------------------------------- /src/components/tracks/Tracks.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text, 5 | Image, 6 | ImageBackground, 7 | TouchableOpacity, 8 | FlatList 9 | } from 'react-native'; 10 | import { connect } from 'react-redux'; 11 | 12 | import CardView from 'react-native-cardview'; 13 | 14 | import Styles from '../../styles/TrackStyles'; 15 | 16 | import { selectSongs,nextSongs, prevSongs } from '../../actions'; 17 | 18 | import {getSongDuration} from '../../utils/utils'; 19 | 20 | import Slider from '@react-native-community/slider'; 21 | 22 | class Tracks extends Component { 23 | constructor(props) { 24 | super(props) 25 | this.state = { 26 | selectedTitle: null 27 | } 28 | } 29 | 30 | componentDidMount(){ 31 | 32 | } 33 | 34 | renderSeparator = () => ( 35 | 41 | ); 42 | 43 | onSelectSong(track){ 44 | console.log('FlatList Selected Songs : onSelectSong....') 45 | this.setState({ 46 | selectedTitle: track.title 47 | }) 48 | this.props.selectSongs(track, this.props.tracks); 49 | } 50 | 51 | renderTrackItems(item){ 52 | if(this.props.player.track!=null){ 53 | console.log('FlatList Selected Songs : renderTrackItems....'+this.props.player.track.title+" == "+this.state.selectedTitle) 54 | } 55 | return( 56 | 57 | 58 | 62 | 63 | 69 | 70 | 71 | 74 | {item.title} 75 | 76 | 79 | {item.genre!=""?item.genre:item.user.username} 80 | 81 | 82 | 83 | 85 | {getSongDuration(item.duration)} 86 | 87 | 88 | 89 | 90 | 91 | ) 92 | } 93 | 94 | render(){ 95 | return( 96 | 102 | this.renderTrackItems(item) 103 | } 104 | keyExtractor={item => ""+item.id} 105 | /> 106 | ); 107 | } 108 | } 109 | 110 | const stateProps = state => ({ 111 | tracks: state.tracks, 112 | player: state.player 113 | }); 114 | 115 | const dispatchToProps = dispatch => ({ 116 | selectSongs: (track,tracks) => dispatch(selectSongs(track,tracks)), 117 | }) 118 | 119 | export default connect(stateProps,dispatchToProps)(Tracks); -------------------------------------------------------------------------------- /ios/MusicStudio.xcodeproj/xcshareddata/xcschemes/MusicStudio.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/MusicStudio.xcodeproj/xcshareddata/xcschemes/MusicStudio-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | # Determine the Java command to use to start the JVM. 86 | if [ -n "$JAVA_HOME" ] ; then 87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 88 | # IBM's JDK on AIX uses strange locations for the executables 89 | JAVACMD="$JAVA_HOME/jre/sh/java" 90 | else 91 | JAVACMD="$JAVA_HOME/bin/java" 92 | fi 93 | if [ ! -x "$JAVACMD" ] ; then 94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 95 | 96 | Please set the JAVA_HOME variable in your environment to match the 97 | location of your Java installation." 98 | fi 99 | else 100 | JAVACMD="java" 101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 102 | 103 | Please set the JAVA_HOME variable in your environment to match the 104 | location of your Java installation." 105 | fi 106 | 107 | # Increase the maximum file descriptors if we can. 108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 109 | MAX_FD_LIMIT=`ulimit -H -n` 110 | if [ $? -eq 0 ] ; then 111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 112 | MAX_FD="$MAX_FD_LIMIT" 113 | fi 114 | ulimit -n $MAX_FD 115 | if [ $? -ne 0 ] ; then 116 | warn "Could not set maximum file descriptor limit: $MAX_FD" 117 | fi 118 | else 119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 120 | fi 121 | fi 122 | 123 | # For Darwin, add options to specify how the application appears in the dock 124 | if $darwin; then 125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 126 | fi 127 | 128 | # For Cygwin, switch paths to Windows format before running java 129 | if $cygwin ; then 130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 132 | JAVACMD=`cygpath --unix "$JAVACMD"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Escape application args 174 | save () { 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 176 | echo " " 177 | } 178 | APP_ARGS=$(save "$@") 179 | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 182 | 183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 185 | cd "$(dirname "$0")" 186 | fi 187 | 188 | exec "$JAVACMD" "$@" 189 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | 99 | compileOptions { 100 | sourceCompatibility JavaVersion.VERSION_1_8 101 | targetCompatibility JavaVersion.VERSION_1_8 102 | } 103 | 104 | defaultConfig { 105 | applicationId "com.musicstudio" 106 | minSdkVersion rootProject.ext.minSdkVersion 107 | targetSdkVersion rootProject.ext.targetSdkVersion 108 | versionCode 1 109 | versionName "1.0" 110 | } 111 | splits { 112 | abi { 113 | reset() 114 | enable enableSeparateBuildPerCPUArchitecture 115 | universalApk false // If true, also generate a universal APK 116 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 117 | } 118 | } 119 | buildTypes { 120 | release { 121 | minifyEnabled enableProguardInReleaseBuilds 122 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 123 | } 124 | } 125 | // applicationVariants are e.g. debug, release 126 | applicationVariants.all { variant -> 127 | variant.outputs.each { output -> 128 | // For each separate APK per architecture, set a unique version code as described here: 129 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 130 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 131 | def abi = output.getFilter(OutputFile.ABI) 132 | if (abi != null) { // null for the universal-debug, universal-release variants 133 | output.versionCodeOverride = 134 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 135 | } 136 | } 137 | } 138 | } 139 | 140 | dependencies { 141 | implementation project(':react-native-reanimated') 142 | implementation project(':react-native-text-gradient') 143 | implementation project(':@react-native-community_slider') 144 | implementation project(':react-native-sound') 145 | implementation project(':react-native-cardview') 146 | implementation project(':react-native-gesture-handler') 147 | implementation fileTree(dir: "libs", include: ["*.jar"]) 148 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 149 | implementation "com.facebook.react:react-native:+" // From node_modules 150 | } 151 | 152 | // Run this once to be able to run the application with BUCK 153 | // puts all compile dependencies into folder libs for BUCK to use 154 | task copyDownloadableDepsToLibs(type: Copy) { 155 | from configurations.compile 156 | into 'libs' 157 | } 158 | -------------------------------------------------------------------------------- /src/components/player/PlayerContainer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text, 5 | Image, 6 | TouchableOpacity, 7 | Animated 8 | } from 'react-native'; 9 | import { connect } from 'react-redux'; 10 | 11 | import { 12 | pauseSongs, 13 | stopSongs, 14 | playSongs, 15 | nextSongs, 16 | prevSongs 17 | } from '../../actions'; 18 | 19 | import Styles from '../../styles/PlayerStyles'; 20 | 21 | import CardView from 'react-native-cardview'; 22 | 23 | import Sound from 'react-native-sound'; 24 | 25 | import MarqueeText from 'react-native-marquee'; 26 | import { LinearTextGradient } from "react-native-text-gradient"; 27 | 28 | import Slider from '@react-native-community/slider'; 29 | import { CLIENT_ID } from '../../actions/constants'; 30 | 31 | import {getSongDuration, getAudioTimeString} from '../../utils/utils'; 32 | 33 | class PlayerContainer extends Component { 34 | constructor(props) { 35 | super(props) 36 | this.state = { 37 | songCurrentTime: 0, 38 | songDuration: 0, 39 | playerBounceValue: new Animated.Value(1000), 40 | miniPlayerBounceValue: new Animated.Value(1000), 41 | } 42 | this.play = this.play.bind(this) 43 | this.pause = this.pause.bind(this) 44 | this.stop = this.stop.bind(this) 45 | this.nextSongs = this.nextSongs.bind(this); 46 | this.prevSongs = this.prevSongs.bind(this); 47 | } 48 | 49 | componentWillMount(){ 50 | 51 | } 52 | 53 | componentDidMount(){ 54 | 55 | } 56 | 57 | componentWillUnmount(){ 58 | if(this.sound){ 59 | this.sound.release(); 60 | this.sound = null; 61 | } 62 | if(this.timeout){ 63 | clearInterval(this.timeout); 64 | } 65 | } 66 | 67 | componentDidUpdate(prevProps) { 68 | if(this.props.player.track !== null && prevProps.player.track !== this.props.player.track) { 69 | this.startSong(); 70 | } 71 | } 72 | 73 | play() { 74 | this.props.playSongs(); 75 | if(this.sound){ 76 | this.sound.play(this.playComplete); 77 | } 78 | } 79 | 80 | pause() { 81 | this.props.pauseSongs(); 82 | if(this.sound){ 83 | this.sound.pause(); 84 | } 85 | } 86 | 87 | stop() { 88 | this.props.stopSongs(); 89 | if(this.sound){ 90 | this.sound.stop(); 91 | } 92 | } 93 | 94 | nextSongs() { 95 | this.props.nextSongs(); 96 | } 97 | 98 | prevSongs() { 99 | this.props.prevSongs(); 100 | } 101 | 102 | startSong() { 103 | if(this.sound){ 104 | this.sound.stop(); 105 | } 106 | const {track} = this.props.player; 107 | const songUrl = track.stream_url+'?client_id='+CLIENT_ID; 108 | console.log('SongUrl : '+songUrl); 109 | 110 | this.sound = new Sound(songUrl, Sound.MAIN_BUNDLE, (error) => { 111 | if (error) { 112 | console.log('failed to load the sound', error); 113 | }else{ 114 | this.sound.play(this.playComplete); 115 | this.timeout = setInterval(() => { 116 | console.log('SongInterVal : '+ this.sound+" === "+this.sound.isLoaded()); 117 | if(this.sound && this.sound.isLoaded()){ 118 | this.sound.getCurrentTime((seconds, isPlaying) => { 119 | console.log('SongInterVal : getCurrentTime....'+seconds+" -- "+this.sound.getDuration()); 120 | this.setState({ 121 | songDuration: this.sound.getDuration(), 122 | songCurrentTime: seconds 123 | }) 124 | }) 125 | } 126 | }, 500); 127 | } 128 | }); 129 | } 130 | 131 | hideMiniPlayerControllerPopUp() { 132 | Animated.spring( 133 | this.state.miniPlayerBounceValue,{ 134 | toValue: 1000, 135 | velocity: 3, 136 | tension: 2, 137 | friction: 8, 138 | } 139 | ).start(); 140 | } 141 | 142 | enabledMiniPlayerControllerPopUp() { 143 | Animated.spring( 144 | this.state.miniPlayerBounceValue,{ 145 | toValue: 0, 146 | velocity: 3, 147 | tension: 2, 148 | friction: 8, 149 | } 150 | ).start(); 151 | } 152 | 153 | songController(isPlaying){ 154 | if(isPlaying){ 155 | this.pause(); 156 | }else{ 157 | this.play(); 158 | } 159 | } 160 | 161 | hidePlayerControllerPopUp() { 162 | Animated.spring( 163 | this.state.playerBounceValue,{ 164 | toValue: 1000, 165 | velocity: 3, 166 | tension: 2, 167 | friction: 8, 168 | } 169 | ).start(); 170 | } 171 | 172 | enabledPlayerControllerPopUp() { 173 | Animated.spring( 174 | this.state.playerBounceValue,{ 175 | toValue: 0, 176 | velocity: 3, 177 | tension: 2, 178 | friction: 8, 179 | } 180 | ).start(); 181 | this.onSetPlayerFullScreen(); 182 | } 183 | 184 | onSliderEditStart = () => { 185 | this.sliderEditing = true; 186 | } 187 | onSliderEditEnd = () => { 188 | this.sliderEditing = false; 189 | } 190 | onSliderEditing = value => { 191 | if(this.sound){ 192 | this.sound.setCurrentTime(value); 193 | this.setState({songCurrentTime:value}); 194 | } 195 | } 196 | 197 | onSongPausePlayControl(isPlaying){ 198 | if(isPlaying){ 199 | this.pause(); 200 | }else{ 201 | this.play(); 202 | } 203 | } 204 | 205 | playComplete = (success) => { 206 | if(this.sound){ 207 | if (success) { 208 | console.log('successfully finished playing'); 209 | this.props.nextSongs(); 210 | } else { 211 | console.log('playback failed due to audio decoding errors'); 212 | } 213 | this.setState({songCurrentTime:0}); 214 | this.sound.setCurrentTime(0); 215 | } 216 | } 217 | 218 | onSetMiniPlayer(){ 219 | const { player } = this.props; 220 | const currentSongTime = getAudioTimeString(this.state.songCurrentTime); 221 | 222 | return( 223 | 225 | 229 | 230 | 233 | {player.track.title} 234 | 235 | 236 | 237 | 238 | 239 | {currentSongTime} 240 | 241 | 242 | 243 | 253 | 254 | 255 | 256 | {getSongDuration(player.track.duration)} 257 | 258 | 259 | 260 | 261 | 262 | 266 | 271 | 272 | 273 | 274 | 275 | 279 | 284 | 285 | 286 | 287 | 288 | 289 | 293 | 299 | 300 | 301 | 302 | 303 | 304 | 308 | 313 | 314 | 315 | 316 | 317 | 321 | 326 | 327 | 328 | 329 | 330 | 331 | ) 332 | } 333 | 334 | render(){ 335 | const { player } = this.props; 336 | return( 337 | 338 | {player.track !== null && player.track.title != null ? 339 | this.onSetMiniPlayer() 340 | :null} 341 | 342 | ); 343 | } 344 | } 345 | 346 | const playerState = state => ({ 347 | player: state.player, 348 | }) 349 | 350 | const dispatchProps = dispatch => ({ 351 | pauseSongs: () => dispatch(pauseSongs()), 352 | stopSongs: () => dispatch(stopSongs()), 353 | playSongs: () => dispatch(playSongs()), 354 | nextSongs: () => dispatch(nextSongs()), 355 | prevSongs: () => dispatch(prevSongs()) 356 | }) 357 | 358 | export default connect(playerState, dispatchProps)(PlayerContainer); -------------------------------------------------------------------------------- /ios/MusicStudio.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* MusicStudioTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MusicStudioTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* MusicStudioTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MusicStudioTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 41 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 42 | 6022069AE1A8481BA06DE028 /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F0D672AFF5DA4952AED13499 /* libRNGestureHandler.a */; }; 43 | 0943453AFB634658AE9C1B45 /* libRNGestureHandler-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28BF17DA3CB64F20B5DB19F4 /* libRNGestureHandler-tvOS.a */; }; 44 | 3970C1FDAA664F3DBCD18832 /* bebas-neue.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 39BE9B77ABC04F9D8F75A08B /* bebas-neue.ttf */; }; 45 | C3545C9B5BEC45F99EFDDF50 /* Roboto-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B9BC178298B4559878521FF /* Roboto-Bold.ttf */; }; 46 | B588A76C941D4C4291B73FF8 /* Roboto-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 909A092AD719400A886BD236 /* Roboto-Medium.ttf */; }; 47 | 77C4B1CFDC8940BC8E786116 /* Roboto-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9093BE867EB84F748DFBB3AF /* Roboto-Regular.ttf */; }; 48 | 7B5FF24BE869434289AEA118 /* Webfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8A7B550B018D4735A266EA8B /* Webfont.ttf */; }; 49 | 85DE1CB2EB3043D0BB0482D1 /* libRNSound.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BFCCCCF863A48F4BC7254C1 /* libRNSound.a */; }; 50 | F144E18243624C49869914F9 /* libRNCSlider.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FDED5367DF64F0980D07DAD /* libRNCSlider.a */; }; 51 | 843CF3C7844D4C62B3EEFEFD /* libRNTextGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E77F31DF71E464D824D482B /* libRNTextGradient.a */; }; 52 | EACA421A743444E39A4D400B /* libRNReanimated.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C5CC94D173FB4E6FA8D60DE1 /* libRNReanimated.a */; }; 53 | 030F2063B5AC4E62AA52FC55 /* libRNReanimated-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 60D1710889864D6B89A3ADBD /* libRNReanimated-tvOS.a */; }; 54 | /* End PBXBuildFile section */ 55 | 56 | /* Begin PBXContainerItemProxy section */ 57 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 58 | isa = PBXContainerItemProxy; 59 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 60 | proxyType = 2; 61 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 62 | remoteInfo = RCTActionSheet; 63 | }; 64 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 69 | remoteInfo = RCTGeolocation; 70 | }; 71 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 76 | remoteInfo = RCTImage; 77 | }; 78 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 83 | remoteInfo = RCTNetwork; 84 | }; 85 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 90 | remoteInfo = RCTVibration; 91 | }; 92 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 95 | proxyType = 1; 96 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 97 | remoteInfo = MusicStudio; 98 | }; 99 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 104 | remoteInfo = RCTSettings; 105 | }; 106 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 109 | proxyType = 2; 110 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 111 | remoteInfo = RCTWebSocket; 112 | }; 113 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 118 | remoteInfo = React; 119 | }; 120 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 123 | proxyType = 1; 124 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 125 | remoteInfo = "MusicStudio-tvOS"; 126 | }; 127 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 130 | proxyType = 2; 131 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 132 | remoteInfo = "RCTBlob-tvOS"; 133 | }; 134 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 137 | proxyType = 2; 138 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 139 | remoteInfo = fishhook; 140 | }; 141 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 146 | remoteInfo = "fishhook-tvOS"; 147 | }; 148 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 153 | remoteInfo = jsinspector; 154 | }; 155 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 160 | remoteInfo = "jsinspector-tvOS"; 161 | }; 162 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 167 | remoteInfo = "third-party"; 168 | }; 169 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 174 | remoteInfo = "third-party-tvOS"; 175 | }; 176 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 181 | remoteInfo = "double-conversion"; 182 | }; 183 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 188 | remoteInfo = "double-conversion-tvOS"; 189 | }; 190 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 195 | remoteInfo = privatedata; 196 | }; 197 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 202 | remoteInfo = "privatedata-tvOS"; 203 | }; 204 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 209 | remoteInfo = "RCTImage-tvOS"; 210 | }; 211 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 216 | remoteInfo = "RCTLinking-tvOS"; 217 | }; 218 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 223 | remoteInfo = "RCTNetwork-tvOS"; 224 | }; 225 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 230 | remoteInfo = "RCTSettings-tvOS"; 231 | }; 232 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 237 | remoteInfo = "RCTText-tvOS"; 238 | }; 239 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 244 | remoteInfo = "RCTWebSocket-tvOS"; 245 | }; 246 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 251 | remoteInfo = "React-tvOS"; 252 | }; 253 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 258 | remoteInfo = yoga; 259 | }; 260 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 261 | isa = PBXContainerItemProxy; 262 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 263 | proxyType = 2; 264 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 265 | remoteInfo = "yoga-tvOS"; 266 | }; 267 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 268 | isa = PBXContainerItemProxy; 269 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 270 | proxyType = 2; 271 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 272 | remoteInfo = cxxreact; 273 | }; 274 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 275 | isa = PBXContainerItemProxy; 276 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 277 | proxyType = 2; 278 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 279 | remoteInfo = "cxxreact-tvOS"; 280 | }; 281 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 282 | isa = PBXContainerItemProxy; 283 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 284 | proxyType = 2; 285 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 286 | remoteInfo = jschelpers; 287 | }; 288 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 289 | isa = PBXContainerItemProxy; 290 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 291 | proxyType = 2; 292 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 293 | remoteInfo = "jschelpers-tvOS"; 294 | }; 295 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 296 | isa = PBXContainerItemProxy; 297 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 298 | proxyType = 2; 299 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 300 | remoteInfo = RCTAnimation; 301 | }; 302 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 303 | isa = PBXContainerItemProxy; 304 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 305 | proxyType = 2; 306 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 307 | remoteInfo = "RCTAnimation-tvOS"; 308 | }; 309 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 310 | isa = PBXContainerItemProxy; 311 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 312 | proxyType = 2; 313 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 314 | remoteInfo = RCTLinking; 315 | }; 316 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 317 | isa = PBXContainerItemProxy; 318 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 319 | proxyType = 2; 320 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 321 | remoteInfo = RCTText; 322 | }; 323 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 324 | isa = PBXContainerItemProxy; 325 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 326 | proxyType = 2; 327 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 328 | remoteInfo = RCTBlob; 329 | }; 330 | /* End PBXContainerItemProxy section */ 331 | 332 | /* Begin PBXFileReference section */ 333 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 334 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 335 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 336 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 337 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 338 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 339 | 00E356EE1AD99517003FC87E /* MusicStudioTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicStudioTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 340 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 341 | 00E356F21AD99517003FC87E /* MusicStudioTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicStudioTests.m; sourceTree = ""; }; 342 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 343 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 344 | 13B07F961A680F5B00A75B9A /* MusicStudio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MusicStudio.app; sourceTree = BUILT_PRODUCTS_DIR; }; 345 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MusicStudio/AppDelegate.h; sourceTree = ""; }; 346 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = MusicStudio/AppDelegate.m; sourceTree = ""; }; 347 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 348 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MusicStudio/Images.xcassets; sourceTree = ""; }; 349 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MusicStudio/Info.plist; sourceTree = ""; }; 350 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MusicStudio/main.m; sourceTree = ""; }; 351 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 352 | 2D02E47B1E0B4A5D006451C7 /* MusicStudio-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "MusicStudio-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 353 | 2D02E4901E0B4A5D006451C7 /* MusicStudio-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "MusicStudio-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 354 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 355 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 356 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 357 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 358 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 359 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 360 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 361 | 493B6107FD454C48824DC9AC /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; name = "RNGestureHandler.xcodeproj"; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 362 | F0D672AFF5DA4952AED13499 /* libRNGestureHandler.a */ = {isa = PBXFileReference; name = "libRNGestureHandler.a"; path = "libRNGestureHandler.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 363 | 28BF17DA3CB64F20B5DB19F4 /* libRNGestureHandler-tvOS.a */ = {isa = PBXFileReference; name = "libRNGestureHandler-tvOS.a"; path = "libRNGestureHandler-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 364 | 39BE9B77ABC04F9D8F75A08B /* bebas-neue.ttf */ = {isa = PBXFileReference; name = "bebas-neue.ttf"; path = "../assets/fonts/bebas-neue.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 365 | 2B9BC178298B4559878521FF /* Roboto-Bold.ttf */ = {isa = PBXFileReference; name = "Roboto-Bold.ttf"; path = "../assets/fonts/Roboto-Bold.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 366 | 909A092AD719400A886BD236 /* Roboto-Medium.ttf */ = {isa = PBXFileReference; name = "Roboto-Medium.ttf"; path = "../assets/fonts/Roboto-Medium.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 367 | 9093BE867EB84F748DFBB3AF /* Roboto-Regular.ttf */ = {isa = PBXFileReference; name = "Roboto-Regular.ttf"; path = "../assets/fonts/Roboto-Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 368 | 8A7B550B018D4735A266EA8B /* Webfont.ttf */ = {isa = PBXFileReference; name = "Webfont.ttf"; path = "../assets/fonts/Webfont.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 369 | 0E991DB2D2B54F5781C28DBB /* RNSound.xcodeproj */ = {isa = PBXFileReference; name = "RNSound.xcodeproj"; path = "../node_modules/react-native-sound/RNSound.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 370 | 4BFCCCCF863A48F4BC7254C1 /* libRNSound.a */ = {isa = PBXFileReference; name = "libRNSound.a"; path = "libRNSound.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 371 | 08DB66EFA2DD42278780CD84 /* RNCSlider.xcodeproj */ = {isa = PBXFileReference; name = "RNCSlider.xcodeproj"; path = "../node_modules/@react-native-community/slider/ios/RNCSlider.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 372 | 0FDED5367DF64F0980D07DAD /* libRNCSlider.a */ = {isa = PBXFileReference; name = "libRNCSlider.a"; path = "libRNCSlider.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 373 | 7694616E96F64177A9E64CEF /* RNTextGradient.xcodeproj */ = {isa = PBXFileReference; name = "RNTextGradient.xcodeproj"; path = "../node_modules/react-native-text-gradient/ios/RNTextGradient.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 374 | 5E77F31DF71E464D824D482B /* libRNTextGradient.a */ = {isa = PBXFileReference; name = "libRNTextGradient.a"; path = "libRNTextGradient.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 375 | 3AAE8825EE8D4131B44AD197 /* RNReanimated.xcodeproj */ = {isa = PBXFileReference; name = "RNReanimated.xcodeproj"; path = "../node_modules/react-native-reanimated/ios/RNReanimated.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 376 | C5CC94D173FB4E6FA8D60DE1 /* libRNReanimated.a */ = {isa = PBXFileReference; name = "libRNReanimated.a"; path = "libRNReanimated.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 377 | 60D1710889864D6B89A3ADBD /* libRNReanimated-tvOS.a */ = {isa = PBXFileReference; name = "libRNReanimated-tvOS.a"; path = "libRNReanimated-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 378 | /* End PBXFileReference section */ 379 | 380 | /* Begin PBXFrameworksBuildPhase section */ 381 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 382 | isa = PBXFrameworksBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 390 | isa = PBXFrameworksBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 394 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 395 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 396 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 397 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 398 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 399 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 400 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 401 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 402 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 403 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 404 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 405 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 406 | 6022069AE1A8481BA06DE028 /* libRNGestureHandler.a in Frameworks */, 407 | 85DE1CB2EB3043D0BB0482D1 /* libRNSound.a in Frameworks */, 408 | F144E18243624C49869914F9 /* libRNCSlider.a in Frameworks */, 409 | 843CF3C7844D4C62B3EEFEFD /* libRNTextGradient.a in Frameworks */, 410 | EACA421A743444E39A4D400B /* libRNReanimated.a in Frameworks */, 411 | ); 412 | runOnlyForDeploymentPostprocessing = 0; 413 | }; 414 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 415 | isa = PBXFrameworksBuildPhase; 416 | buildActionMask = 2147483647; 417 | files = ( 418 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 419 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 420 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 421 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 422 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 423 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 424 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 425 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 426 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 427 | 0943453AFB634658AE9C1B45 /* libRNGestureHandler-tvOS.a in Frameworks */, 428 | 030F2063B5AC4E62AA52FC55 /* libRNReanimated-tvOS.a in Frameworks */, 429 | ); 430 | runOnlyForDeploymentPostprocessing = 0; 431 | }; 432 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 433 | isa = PBXFrameworksBuildPhase; 434 | buildActionMask = 2147483647; 435 | files = ( 436 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 437 | ); 438 | runOnlyForDeploymentPostprocessing = 0; 439 | }; 440 | /* End PBXFrameworksBuildPhase section */ 441 | 442 | /* Begin PBXGroup section */ 443 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 444 | isa = PBXGroup; 445 | children = ( 446 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 447 | ); 448 | name = Products; 449 | sourceTree = ""; 450 | }; 451 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 452 | isa = PBXGroup; 453 | children = ( 454 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 455 | ); 456 | name = Products; 457 | sourceTree = ""; 458 | }; 459 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 460 | isa = PBXGroup; 461 | children = ( 462 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 463 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 464 | ); 465 | name = Products; 466 | sourceTree = ""; 467 | }; 468 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 469 | isa = PBXGroup; 470 | children = ( 471 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 472 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 473 | ); 474 | name = Products; 475 | sourceTree = ""; 476 | }; 477 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 478 | isa = PBXGroup; 479 | children = ( 480 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 481 | ); 482 | name = Products; 483 | sourceTree = ""; 484 | }; 485 | 00E356EF1AD99517003FC87E /* MusicStudioTests */ = { 486 | isa = PBXGroup; 487 | children = ( 488 | 00E356F21AD99517003FC87E /* MusicStudioTests.m */, 489 | 00E356F01AD99517003FC87E /* Supporting Files */, 490 | ); 491 | path = MusicStudioTests; 492 | sourceTree = ""; 493 | }; 494 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 495 | isa = PBXGroup; 496 | children = ( 497 | 00E356F11AD99517003FC87E /* Info.plist */, 498 | ); 499 | name = "Supporting Files"; 500 | sourceTree = ""; 501 | }; 502 | 139105B71AF99BAD00B5F7CC /* Products */ = { 503 | isa = PBXGroup; 504 | children = ( 505 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 506 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 507 | ); 508 | name = Products; 509 | sourceTree = ""; 510 | }; 511 | 139FDEE71B06529A00C62182 /* Products */ = { 512 | isa = PBXGroup; 513 | children = ( 514 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 515 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 516 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 517 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 518 | ); 519 | name = Products; 520 | sourceTree = ""; 521 | }; 522 | 13B07FAE1A68108700A75B9A /* MusicStudio */ = { 523 | isa = PBXGroup; 524 | children = ( 525 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 526 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 527 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 528 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 529 | 13B07FB61A68108700A75B9A /* Info.plist */, 530 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 531 | 13B07FB71A68108700A75B9A /* main.m */, 532 | ); 533 | name = MusicStudio; 534 | sourceTree = ""; 535 | }; 536 | 146834001AC3E56700842450 /* Products */ = { 537 | isa = PBXGroup; 538 | children = ( 539 | 146834041AC3E56700842450 /* libReact.a */, 540 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 541 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 542 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 543 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 544 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 545 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 546 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 547 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 548 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 549 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 550 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 551 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 552 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 553 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 554 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 555 | ); 556 | name = Products; 557 | sourceTree = ""; 558 | }; 559 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 560 | isa = PBXGroup; 561 | children = ( 562 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 563 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 564 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 565 | ); 566 | name = Frameworks; 567 | sourceTree = ""; 568 | }; 569 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 570 | isa = PBXGroup; 571 | children = ( 572 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 573 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 574 | ); 575 | name = Products; 576 | sourceTree = ""; 577 | }; 578 | 78C398B11ACF4ADC00677621 /* Products */ = { 579 | isa = PBXGroup; 580 | children = ( 581 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 582 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 583 | ); 584 | name = Products; 585 | sourceTree = ""; 586 | }; 587 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 588 | isa = PBXGroup; 589 | children = ( 590 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 591 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 592 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 593 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 594 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 595 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 596 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 597 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 598 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 599 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 600 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 601 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 602 | 493B6107FD454C48824DC9AC /* RNGestureHandler.xcodeproj */, 603 | 0E991DB2D2B54F5781C28DBB /* RNSound.xcodeproj */, 604 | 08DB66EFA2DD42278780CD84 /* RNCSlider.xcodeproj */, 605 | 7694616E96F64177A9E64CEF /* RNTextGradient.xcodeproj */, 606 | 3AAE8825EE8D4131B44AD197 /* RNReanimated.xcodeproj */, 607 | ); 608 | name = Libraries; 609 | sourceTree = ""; 610 | }; 611 | 832341B11AAA6A8300B99B32 /* Products */ = { 612 | isa = PBXGroup; 613 | children = ( 614 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 615 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 616 | ); 617 | name = Products; 618 | sourceTree = ""; 619 | }; 620 | 83CBB9F61A601CBA00E9B192 = { 621 | isa = PBXGroup; 622 | children = ( 623 | 13B07FAE1A68108700A75B9A /* MusicStudio */, 624 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 625 | 00E356EF1AD99517003FC87E /* MusicStudioTests */, 626 | 83CBBA001A601CBA00E9B192 /* Products */, 627 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 628 | 33A93BC9D1FA431C9B2A1162 /* Resources */, 629 | ); 630 | indentWidth = 2; 631 | sourceTree = ""; 632 | tabWidth = 2; 633 | usesTabs = 0; 634 | }; 635 | 83CBBA001A601CBA00E9B192 /* Products */ = { 636 | isa = PBXGroup; 637 | children = ( 638 | 13B07F961A680F5B00A75B9A /* MusicStudio.app */, 639 | 00E356EE1AD99517003FC87E /* MusicStudioTests.xctest */, 640 | 2D02E47B1E0B4A5D006451C7 /* MusicStudio-tvOS.app */, 641 | 2D02E4901E0B4A5D006451C7 /* MusicStudio-tvOSTests.xctest */, 642 | ); 643 | name = Products; 644 | sourceTree = ""; 645 | }; 646 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 647 | isa = PBXGroup; 648 | children = ( 649 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 650 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 651 | ); 652 | name = Products; 653 | sourceTree = ""; 654 | }; 655 | 33A93BC9D1FA431C9B2A1162 /* Resources */ = { 656 | isa = "PBXGroup"; 657 | children = ( 658 | 39BE9B77ABC04F9D8F75A08B /* bebas-neue.ttf */, 659 | 2B9BC178298B4559878521FF /* Roboto-Bold.ttf */, 660 | 909A092AD719400A886BD236 /* Roboto-Medium.ttf */, 661 | 9093BE867EB84F748DFBB3AF /* Roboto-Regular.ttf */, 662 | 8A7B550B018D4735A266EA8B /* Webfont.ttf */, 663 | ); 664 | name = Resources; 665 | sourceTree = ""; 666 | path = ""; 667 | }; 668 | /* End PBXGroup section */ 669 | 670 | /* Begin PBXNativeTarget section */ 671 | 00E356ED1AD99517003FC87E /* MusicStudioTests */ = { 672 | isa = PBXNativeTarget; 673 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MusicStudioTests" */; 674 | buildPhases = ( 675 | 00E356EA1AD99517003FC87E /* Sources */, 676 | 00E356EB1AD99517003FC87E /* Frameworks */, 677 | 00E356EC1AD99517003FC87E /* Resources */, 678 | ); 679 | buildRules = ( 680 | ); 681 | dependencies = ( 682 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 683 | ); 684 | name = MusicStudioTests; 685 | productName = MusicStudioTests; 686 | productReference = 00E356EE1AD99517003FC87E /* MusicStudioTests.xctest */; 687 | productType = "com.apple.product-type.bundle.unit-test"; 688 | }; 689 | 13B07F861A680F5B00A75B9A /* MusicStudio */ = { 690 | isa = PBXNativeTarget; 691 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MusicStudio" */; 692 | buildPhases = ( 693 | 13B07F871A680F5B00A75B9A /* Sources */, 694 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 695 | 13B07F8E1A680F5B00A75B9A /* Resources */, 696 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 697 | ); 698 | buildRules = ( 699 | ); 700 | dependencies = ( 701 | ); 702 | name = MusicStudio; 703 | productName = "Hello World"; 704 | productReference = 13B07F961A680F5B00A75B9A /* MusicStudio.app */; 705 | productType = "com.apple.product-type.application"; 706 | }; 707 | 2D02E47A1E0B4A5D006451C7 /* MusicStudio-tvOS */ = { 708 | isa = PBXNativeTarget; 709 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MusicStudio-tvOS" */; 710 | buildPhases = ( 711 | 2D02E4771E0B4A5D006451C7 /* Sources */, 712 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 713 | 2D02E4791E0B4A5D006451C7 /* Resources */, 714 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 715 | ); 716 | buildRules = ( 717 | ); 718 | dependencies = ( 719 | ); 720 | name = "MusicStudio-tvOS"; 721 | productName = "MusicStudio-tvOS"; 722 | productReference = 2D02E47B1E0B4A5D006451C7 /* MusicStudio-tvOS.app */; 723 | productType = "com.apple.product-type.application"; 724 | }; 725 | 2D02E48F1E0B4A5D006451C7 /* MusicStudio-tvOSTests */ = { 726 | isa = PBXNativeTarget; 727 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MusicStudio-tvOSTests" */; 728 | buildPhases = ( 729 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 730 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 731 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 732 | ); 733 | buildRules = ( 734 | ); 735 | dependencies = ( 736 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 737 | ); 738 | name = "MusicStudio-tvOSTests"; 739 | productName = "MusicStudio-tvOSTests"; 740 | productReference = 2D02E4901E0B4A5D006451C7 /* MusicStudio-tvOSTests.xctest */; 741 | productType = "com.apple.product-type.bundle.unit-test"; 742 | }; 743 | /* End PBXNativeTarget section */ 744 | 745 | /* Begin PBXProject section */ 746 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 747 | isa = PBXProject; 748 | attributes = { 749 | LastUpgradeCheck = 940; 750 | ORGANIZATIONNAME = Facebook; 751 | TargetAttributes = { 752 | 00E356ED1AD99517003FC87E = { 753 | CreatedOnToolsVersion = 6.2; 754 | TestTargetID = 13B07F861A680F5B00A75B9A; 755 | }; 756 | 2D02E47A1E0B4A5D006451C7 = { 757 | CreatedOnToolsVersion = 8.2.1; 758 | ProvisioningStyle = Automatic; 759 | }; 760 | 2D02E48F1E0B4A5D006451C7 = { 761 | CreatedOnToolsVersion = 8.2.1; 762 | ProvisioningStyle = Automatic; 763 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 764 | }; 765 | }; 766 | }; 767 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MusicStudio" */; 768 | compatibilityVersion = "Xcode 3.2"; 769 | developmentRegion = English; 770 | hasScannedForEncodings = 0; 771 | knownRegions = ( 772 | en, 773 | Base, 774 | ); 775 | mainGroup = 83CBB9F61A601CBA00E9B192; 776 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 777 | projectDirPath = ""; 778 | projectReferences = ( 779 | { 780 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 781 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 782 | }, 783 | { 784 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 785 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 786 | }, 787 | { 788 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 789 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 790 | }, 791 | { 792 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 793 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 794 | }, 795 | { 796 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 797 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 798 | }, 799 | { 800 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 801 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 802 | }, 803 | { 804 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 805 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 806 | }, 807 | { 808 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 809 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 810 | }, 811 | { 812 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 813 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 814 | }, 815 | { 816 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 817 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 818 | }, 819 | { 820 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 821 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 822 | }, 823 | { 824 | ProductGroup = 146834001AC3E56700842450 /* Products */; 825 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 826 | }, 827 | ); 828 | projectRoot = ""; 829 | targets = ( 830 | 13B07F861A680F5B00A75B9A /* MusicStudio */, 831 | 00E356ED1AD99517003FC87E /* MusicStudioTests */, 832 | 2D02E47A1E0B4A5D006451C7 /* MusicStudio-tvOS */, 833 | 2D02E48F1E0B4A5D006451C7 /* MusicStudio-tvOSTests */, 834 | ); 835 | }; 836 | /* End PBXProject section */ 837 | 838 | /* Begin PBXReferenceProxy section */ 839 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 840 | isa = PBXReferenceProxy; 841 | fileType = archive.ar; 842 | path = libRCTActionSheet.a; 843 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 844 | sourceTree = BUILT_PRODUCTS_DIR; 845 | }; 846 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 847 | isa = PBXReferenceProxy; 848 | fileType = archive.ar; 849 | path = libRCTGeolocation.a; 850 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 851 | sourceTree = BUILT_PRODUCTS_DIR; 852 | }; 853 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 854 | isa = PBXReferenceProxy; 855 | fileType = archive.ar; 856 | path = libRCTImage.a; 857 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 858 | sourceTree = BUILT_PRODUCTS_DIR; 859 | }; 860 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 861 | isa = PBXReferenceProxy; 862 | fileType = archive.ar; 863 | path = libRCTNetwork.a; 864 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 865 | sourceTree = BUILT_PRODUCTS_DIR; 866 | }; 867 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 868 | isa = PBXReferenceProxy; 869 | fileType = archive.ar; 870 | path = libRCTVibration.a; 871 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 872 | sourceTree = BUILT_PRODUCTS_DIR; 873 | }; 874 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 875 | isa = PBXReferenceProxy; 876 | fileType = archive.ar; 877 | path = libRCTSettings.a; 878 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 879 | sourceTree = BUILT_PRODUCTS_DIR; 880 | }; 881 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 882 | isa = PBXReferenceProxy; 883 | fileType = archive.ar; 884 | path = libRCTWebSocket.a; 885 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 886 | sourceTree = BUILT_PRODUCTS_DIR; 887 | }; 888 | 146834041AC3E56700842450 /* libReact.a */ = { 889 | isa = PBXReferenceProxy; 890 | fileType = archive.ar; 891 | path = libReact.a; 892 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 893 | sourceTree = BUILT_PRODUCTS_DIR; 894 | }; 895 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 896 | isa = PBXReferenceProxy; 897 | fileType = archive.ar; 898 | path = "libRCTBlob-tvOS.a"; 899 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 900 | sourceTree = BUILT_PRODUCTS_DIR; 901 | }; 902 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 903 | isa = PBXReferenceProxy; 904 | fileType = archive.ar; 905 | path = libfishhook.a; 906 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 907 | sourceTree = BUILT_PRODUCTS_DIR; 908 | }; 909 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 910 | isa = PBXReferenceProxy; 911 | fileType = archive.ar; 912 | path = "libfishhook-tvOS.a"; 913 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 914 | sourceTree = BUILT_PRODUCTS_DIR; 915 | }; 916 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 917 | isa = PBXReferenceProxy; 918 | fileType = archive.ar; 919 | path = libjsinspector.a; 920 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 921 | sourceTree = BUILT_PRODUCTS_DIR; 922 | }; 923 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 924 | isa = PBXReferenceProxy; 925 | fileType = archive.ar; 926 | path = "libjsinspector-tvOS.a"; 927 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 928 | sourceTree = BUILT_PRODUCTS_DIR; 929 | }; 930 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 931 | isa = PBXReferenceProxy; 932 | fileType = archive.ar; 933 | path = "libthird-party.a"; 934 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 935 | sourceTree = BUILT_PRODUCTS_DIR; 936 | }; 937 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 938 | isa = PBXReferenceProxy; 939 | fileType = archive.ar; 940 | path = "libthird-party.a"; 941 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 942 | sourceTree = BUILT_PRODUCTS_DIR; 943 | }; 944 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 945 | isa = PBXReferenceProxy; 946 | fileType = archive.ar; 947 | path = "libdouble-conversion.a"; 948 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 949 | sourceTree = BUILT_PRODUCTS_DIR; 950 | }; 951 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 952 | isa = PBXReferenceProxy; 953 | fileType = archive.ar; 954 | path = "libdouble-conversion.a"; 955 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 956 | sourceTree = BUILT_PRODUCTS_DIR; 957 | }; 958 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 959 | isa = PBXReferenceProxy; 960 | fileType = archive.ar; 961 | path = libprivatedata.a; 962 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 963 | sourceTree = BUILT_PRODUCTS_DIR; 964 | }; 965 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 966 | isa = PBXReferenceProxy; 967 | fileType = archive.ar; 968 | path = "libprivatedata-tvOS.a"; 969 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 970 | sourceTree = BUILT_PRODUCTS_DIR; 971 | }; 972 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 973 | isa = PBXReferenceProxy; 974 | fileType = archive.ar; 975 | path = "libRCTImage-tvOS.a"; 976 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 977 | sourceTree = BUILT_PRODUCTS_DIR; 978 | }; 979 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 980 | isa = PBXReferenceProxy; 981 | fileType = archive.ar; 982 | path = "libRCTLinking-tvOS.a"; 983 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 984 | sourceTree = BUILT_PRODUCTS_DIR; 985 | }; 986 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 987 | isa = PBXReferenceProxy; 988 | fileType = archive.ar; 989 | path = "libRCTNetwork-tvOS.a"; 990 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 991 | sourceTree = BUILT_PRODUCTS_DIR; 992 | }; 993 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 994 | isa = PBXReferenceProxy; 995 | fileType = archive.ar; 996 | path = "libRCTSettings-tvOS.a"; 997 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 998 | sourceTree = BUILT_PRODUCTS_DIR; 999 | }; 1000 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1001 | isa = PBXReferenceProxy; 1002 | fileType = archive.ar; 1003 | path = "libRCTText-tvOS.a"; 1004 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1005 | sourceTree = BUILT_PRODUCTS_DIR; 1006 | }; 1007 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1008 | isa = PBXReferenceProxy; 1009 | fileType = archive.ar; 1010 | path = "libRCTWebSocket-tvOS.a"; 1011 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1012 | sourceTree = BUILT_PRODUCTS_DIR; 1013 | }; 1014 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1015 | isa = PBXReferenceProxy; 1016 | fileType = archive.ar; 1017 | path = libReact.a; 1018 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1019 | sourceTree = BUILT_PRODUCTS_DIR; 1020 | }; 1021 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1022 | isa = PBXReferenceProxy; 1023 | fileType = archive.ar; 1024 | path = libyoga.a; 1025 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1026 | sourceTree = BUILT_PRODUCTS_DIR; 1027 | }; 1028 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1029 | isa = PBXReferenceProxy; 1030 | fileType = archive.ar; 1031 | path = libyoga.a; 1032 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1033 | sourceTree = BUILT_PRODUCTS_DIR; 1034 | }; 1035 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1036 | isa = PBXReferenceProxy; 1037 | fileType = archive.ar; 1038 | path = libcxxreact.a; 1039 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1040 | sourceTree = BUILT_PRODUCTS_DIR; 1041 | }; 1042 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1043 | isa = PBXReferenceProxy; 1044 | fileType = archive.ar; 1045 | path = libcxxreact.a; 1046 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1047 | sourceTree = BUILT_PRODUCTS_DIR; 1048 | }; 1049 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1050 | isa = PBXReferenceProxy; 1051 | fileType = archive.ar; 1052 | path = libjschelpers.a; 1053 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1054 | sourceTree = BUILT_PRODUCTS_DIR; 1055 | }; 1056 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1057 | isa = PBXReferenceProxy; 1058 | fileType = archive.ar; 1059 | path = libjschelpers.a; 1060 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1061 | sourceTree = BUILT_PRODUCTS_DIR; 1062 | }; 1063 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1064 | isa = PBXReferenceProxy; 1065 | fileType = archive.ar; 1066 | path = libRCTAnimation.a; 1067 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1068 | sourceTree = BUILT_PRODUCTS_DIR; 1069 | }; 1070 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1071 | isa = PBXReferenceProxy; 1072 | fileType = archive.ar; 1073 | path = libRCTAnimation.a; 1074 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1075 | sourceTree = BUILT_PRODUCTS_DIR; 1076 | }; 1077 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1078 | isa = PBXReferenceProxy; 1079 | fileType = archive.ar; 1080 | path = libRCTLinking.a; 1081 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1082 | sourceTree = BUILT_PRODUCTS_DIR; 1083 | }; 1084 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1085 | isa = PBXReferenceProxy; 1086 | fileType = archive.ar; 1087 | path = libRCTText.a; 1088 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1089 | sourceTree = BUILT_PRODUCTS_DIR; 1090 | }; 1091 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1092 | isa = PBXReferenceProxy; 1093 | fileType = archive.ar; 1094 | path = libRCTBlob.a; 1095 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1096 | sourceTree = BUILT_PRODUCTS_DIR; 1097 | }; 1098 | /* End PBXReferenceProxy section */ 1099 | 1100 | /* Begin PBXResourcesBuildPhase section */ 1101 | 00E356EC1AD99517003FC87E /* Resources */ = { 1102 | isa = PBXResourcesBuildPhase; 1103 | buildActionMask = 2147483647; 1104 | files = ( 1105 | ); 1106 | runOnlyForDeploymentPostprocessing = 0; 1107 | }; 1108 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1109 | isa = PBXResourcesBuildPhase; 1110 | buildActionMask = 2147483647; 1111 | files = ( 1112 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1113 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1114 | 3970C1FDAA664F3DBCD18832 /* bebas-neue.ttf in Resources */, 1115 | C3545C9B5BEC45F99EFDDF50 /* Roboto-Bold.ttf in Resources */, 1116 | B588A76C941D4C4291B73FF8 /* Roboto-Medium.ttf in Resources */, 1117 | 77C4B1CFDC8940BC8E786116 /* Roboto-Regular.ttf in Resources */, 1118 | 7B5FF24BE869434289AEA118 /* Webfont.ttf in Resources */, 1119 | ); 1120 | runOnlyForDeploymentPostprocessing = 0; 1121 | }; 1122 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1123 | isa = PBXResourcesBuildPhase; 1124 | buildActionMask = 2147483647; 1125 | files = ( 1126 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1127 | ); 1128 | runOnlyForDeploymentPostprocessing = 0; 1129 | }; 1130 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1131 | isa = PBXResourcesBuildPhase; 1132 | buildActionMask = 2147483647; 1133 | files = ( 1134 | ); 1135 | runOnlyForDeploymentPostprocessing = 0; 1136 | }; 1137 | /* End PBXResourcesBuildPhase section */ 1138 | 1139 | /* Begin PBXShellScriptBuildPhase section */ 1140 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1141 | isa = PBXShellScriptBuildPhase; 1142 | buildActionMask = 2147483647; 1143 | files = ( 1144 | ); 1145 | inputPaths = ( 1146 | ); 1147 | name = "Bundle React Native code and images"; 1148 | outputPaths = ( 1149 | ); 1150 | runOnlyForDeploymentPostprocessing = 0; 1151 | shellPath = /bin/sh; 1152 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1153 | }; 1154 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1155 | isa = PBXShellScriptBuildPhase; 1156 | buildActionMask = 2147483647; 1157 | files = ( 1158 | ); 1159 | inputPaths = ( 1160 | ); 1161 | name = "Bundle React Native Code And Images"; 1162 | outputPaths = ( 1163 | ); 1164 | runOnlyForDeploymentPostprocessing = 0; 1165 | shellPath = /bin/sh; 1166 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1167 | }; 1168 | /* End PBXShellScriptBuildPhase section */ 1169 | 1170 | /* Begin PBXSourcesBuildPhase section */ 1171 | 00E356EA1AD99517003FC87E /* Sources */ = { 1172 | isa = PBXSourcesBuildPhase; 1173 | buildActionMask = 2147483647; 1174 | files = ( 1175 | 00E356F31AD99517003FC87E /* MusicStudioTests.m in Sources */, 1176 | ); 1177 | runOnlyForDeploymentPostprocessing = 0; 1178 | }; 1179 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1180 | isa = PBXSourcesBuildPhase; 1181 | buildActionMask = 2147483647; 1182 | files = ( 1183 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1184 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1185 | ); 1186 | runOnlyForDeploymentPostprocessing = 0; 1187 | }; 1188 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1189 | isa = PBXSourcesBuildPhase; 1190 | buildActionMask = 2147483647; 1191 | files = ( 1192 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1193 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1194 | ); 1195 | runOnlyForDeploymentPostprocessing = 0; 1196 | }; 1197 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1198 | isa = PBXSourcesBuildPhase; 1199 | buildActionMask = 2147483647; 1200 | files = ( 1201 | 2DCD954D1E0B4F2C00145EB5 /* MusicStudioTests.m in Sources */, 1202 | ); 1203 | runOnlyForDeploymentPostprocessing = 0; 1204 | }; 1205 | /* End PBXSourcesBuildPhase section */ 1206 | 1207 | /* Begin PBXTargetDependency section */ 1208 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1209 | isa = PBXTargetDependency; 1210 | target = 13B07F861A680F5B00A75B9A /* MusicStudio */; 1211 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1212 | }; 1213 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1214 | isa = PBXTargetDependency; 1215 | target = 2D02E47A1E0B4A5D006451C7 /* MusicStudio-tvOS */; 1216 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1217 | }; 1218 | /* End PBXTargetDependency section */ 1219 | 1220 | /* Begin PBXVariantGroup section */ 1221 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1222 | isa = PBXVariantGroup; 1223 | children = ( 1224 | 13B07FB21A68108700A75B9A /* Base */, 1225 | ); 1226 | name = LaunchScreen.xib; 1227 | path = MusicStudio; 1228 | sourceTree = ""; 1229 | }; 1230 | /* End PBXVariantGroup section */ 1231 | 1232 | /* Begin XCBuildConfiguration section */ 1233 | 00E356F61AD99517003FC87E /* Debug */ = { 1234 | isa = XCBuildConfiguration; 1235 | buildSettings = { 1236 | BUNDLE_LOADER = "$(TEST_HOST)"; 1237 | GCC_PREPROCESSOR_DEFINITIONS = ( 1238 | "DEBUG=1", 1239 | "$(inherited)", 1240 | ); 1241 | INFOPLIST_FILE = MusicStudioTests/Info.plist; 1242 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1243 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1244 | OTHER_LDFLAGS = ( 1245 | "-ObjC", 1246 | "-lc++", 1247 | ); 1248 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1249 | PRODUCT_NAME = "$(TARGET_NAME)"; 1250 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicStudio.app/MusicStudio"; 1251 | LIBRARY_SEARCH_PATHS = ( 1252 | "$(inherited)", 1253 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1254 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1255 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1256 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1257 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1258 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1259 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1260 | ); 1261 | HEADER_SEARCH_PATHS = ( 1262 | "$(inherited)", 1263 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1264 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1265 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1266 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1267 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1268 | ); 1269 | }; 1270 | name = Debug; 1271 | }; 1272 | 00E356F71AD99517003FC87E /* Release */ = { 1273 | isa = XCBuildConfiguration; 1274 | buildSettings = { 1275 | BUNDLE_LOADER = "$(TEST_HOST)"; 1276 | COPY_PHASE_STRIP = NO; 1277 | INFOPLIST_FILE = MusicStudioTests/Info.plist; 1278 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1279 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1280 | OTHER_LDFLAGS = ( 1281 | "-ObjC", 1282 | "-lc++", 1283 | ); 1284 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1285 | PRODUCT_NAME = "$(TARGET_NAME)"; 1286 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicStudio.app/MusicStudio"; 1287 | LIBRARY_SEARCH_PATHS = ( 1288 | "$(inherited)", 1289 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1290 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1291 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1292 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1293 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1294 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1295 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1296 | ); 1297 | HEADER_SEARCH_PATHS = ( 1298 | "$(inherited)", 1299 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1300 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1301 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1302 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1303 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1304 | ); 1305 | }; 1306 | name = Release; 1307 | }; 1308 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1309 | isa = XCBuildConfiguration; 1310 | buildSettings = { 1311 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1312 | CURRENT_PROJECT_VERSION = 1; 1313 | DEAD_CODE_STRIPPING = NO; 1314 | INFOPLIST_FILE = MusicStudio/Info.plist; 1315 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1316 | OTHER_LDFLAGS = ( 1317 | "$(inherited)", 1318 | "-ObjC", 1319 | "-lc++", 1320 | ); 1321 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1322 | PRODUCT_NAME = MusicStudio; 1323 | VERSIONING_SYSTEM = "apple-generic"; 1324 | HEADER_SEARCH_PATHS = ( 1325 | "$(inherited)", 1326 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1327 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1328 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1329 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1330 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1331 | ); 1332 | }; 1333 | name = Debug; 1334 | }; 1335 | 13B07F951A680F5B00A75B9A /* Release */ = { 1336 | isa = XCBuildConfiguration; 1337 | buildSettings = { 1338 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1339 | CURRENT_PROJECT_VERSION = 1; 1340 | INFOPLIST_FILE = MusicStudio/Info.plist; 1341 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1342 | OTHER_LDFLAGS = ( 1343 | "$(inherited)", 1344 | "-ObjC", 1345 | "-lc++", 1346 | ); 1347 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1348 | PRODUCT_NAME = MusicStudio; 1349 | VERSIONING_SYSTEM = "apple-generic"; 1350 | HEADER_SEARCH_PATHS = ( 1351 | "$(inherited)", 1352 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1353 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1354 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1355 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1356 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1357 | ); 1358 | }; 1359 | name = Release; 1360 | }; 1361 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1362 | isa = XCBuildConfiguration; 1363 | buildSettings = { 1364 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1365 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1366 | CLANG_ANALYZER_NONNULL = YES; 1367 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1368 | CLANG_WARN_INFINITE_RECURSION = YES; 1369 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1370 | DEBUG_INFORMATION_FORMAT = dwarf; 1371 | ENABLE_TESTABILITY = YES; 1372 | GCC_NO_COMMON_BLOCKS = YES; 1373 | INFOPLIST_FILE = "MusicStudio-tvOS/Info.plist"; 1374 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1375 | OTHER_LDFLAGS = ( 1376 | "-ObjC", 1377 | "-lc++", 1378 | ); 1379 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.MusicStudio-tvOS"; 1380 | PRODUCT_NAME = "$(TARGET_NAME)"; 1381 | SDKROOT = appletvos; 1382 | TARGETED_DEVICE_FAMILY = 3; 1383 | TVOS_DEPLOYMENT_TARGET = 9.2; 1384 | LIBRARY_SEARCH_PATHS = ( 1385 | "$(inherited)", 1386 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1387 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1388 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1389 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1390 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1391 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1392 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1393 | ); 1394 | HEADER_SEARCH_PATHS = ( 1395 | "$(inherited)", 1396 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1397 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1398 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1399 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1400 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1401 | ); 1402 | }; 1403 | name = Debug; 1404 | }; 1405 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1406 | isa = XCBuildConfiguration; 1407 | buildSettings = { 1408 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1409 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1410 | CLANG_ANALYZER_NONNULL = YES; 1411 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1412 | CLANG_WARN_INFINITE_RECURSION = YES; 1413 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1414 | COPY_PHASE_STRIP = NO; 1415 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1416 | GCC_NO_COMMON_BLOCKS = YES; 1417 | INFOPLIST_FILE = "MusicStudio-tvOS/Info.plist"; 1418 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1419 | OTHER_LDFLAGS = ( 1420 | "-ObjC", 1421 | "-lc++", 1422 | ); 1423 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.MusicStudio-tvOS"; 1424 | PRODUCT_NAME = "$(TARGET_NAME)"; 1425 | SDKROOT = appletvos; 1426 | TARGETED_DEVICE_FAMILY = 3; 1427 | TVOS_DEPLOYMENT_TARGET = 9.2; 1428 | LIBRARY_SEARCH_PATHS = ( 1429 | "$(inherited)", 1430 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1431 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1432 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1433 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1434 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1435 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1436 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1437 | ); 1438 | HEADER_SEARCH_PATHS = ( 1439 | "$(inherited)", 1440 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1441 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1442 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1443 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1444 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1445 | ); 1446 | }; 1447 | name = Release; 1448 | }; 1449 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1450 | isa = XCBuildConfiguration; 1451 | buildSettings = { 1452 | BUNDLE_LOADER = "$(TEST_HOST)"; 1453 | CLANG_ANALYZER_NONNULL = YES; 1454 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1455 | CLANG_WARN_INFINITE_RECURSION = YES; 1456 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1457 | DEBUG_INFORMATION_FORMAT = dwarf; 1458 | ENABLE_TESTABILITY = YES; 1459 | GCC_NO_COMMON_BLOCKS = YES; 1460 | INFOPLIST_FILE = "MusicStudio-tvOSTests/Info.plist"; 1461 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1462 | OTHER_LDFLAGS = ( 1463 | "-ObjC", 1464 | "-lc++", 1465 | ); 1466 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.MusicStudio-tvOSTests"; 1467 | PRODUCT_NAME = "$(TARGET_NAME)"; 1468 | SDKROOT = appletvos; 1469 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicStudio-tvOS.app/MusicStudio-tvOS"; 1470 | TVOS_DEPLOYMENT_TARGET = 10.1; 1471 | LIBRARY_SEARCH_PATHS = ( 1472 | "$(inherited)", 1473 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1474 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1475 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1476 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1477 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1478 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1479 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1480 | ); 1481 | HEADER_SEARCH_PATHS = ( 1482 | "$(inherited)", 1483 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1484 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1485 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1486 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1487 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1488 | ); 1489 | }; 1490 | name = Debug; 1491 | }; 1492 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1493 | isa = XCBuildConfiguration; 1494 | buildSettings = { 1495 | BUNDLE_LOADER = "$(TEST_HOST)"; 1496 | CLANG_ANALYZER_NONNULL = YES; 1497 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1498 | CLANG_WARN_INFINITE_RECURSION = YES; 1499 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1500 | COPY_PHASE_STRIP = NO; 1501 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1502 | GCC_NO_COMMON_BLOCKS = YES; 1503 | INFOPLIST_FILE = "MusicStudio-tvOSTests/Info.plist"; 1504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1505 | OTHER_LDFLAGS = ( 1506 | "-ObjC", 1507 | "-lc++", 1508 | ); 1509 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.MusicStudio-tvOSTests"; 1510 | PRODUCT_NAME = "$(TARGET_NAME)"; 1511 | SDKROOT = appletvos; 1512 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicStudio-tvOS.app/MusicStudio-tvOS"; 1513 | TVOS_DEPLOYMENT_TARGET = 10.1; 1514 | LIBRARY_SEARCH_PATHS = ( 1515 | "$(inherited)", 1516 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1517 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1518 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1519 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1520 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1521 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1522 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1523 | ); 1524 | HEADER_SEARCH_PATHS = ( 1525 | "$(inherited)", 1526 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1527 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1528 | "$(SRCROOT)/../node_modules/@react-native-community/slider/ios", 1529 | "$(SRCROOT)/../node_modules/react-native-text-gradient/ios/**", 1530 | "$(SRCROOT)/../node_modules/react-native-reanimated/ios/**", 1531 | ); 1532 | }; 1533 | name = Release; 1534 | }; 1535 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1536 | isa = XCBuildConfiguration; 1537 | buildSettings = { 1538 | ALWAYS_SEARCH_USER_PATHS = NO; 1539 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1540 | CLANG_CXX_LIBRARY = "libc++"; 1541 | CLANG_ENABLE_MODULES = YES; 1542 | CLANG_ENABLE_OBJC_ARC = YES; 1543 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1544 | CLANG_WARN_BOOL_CONVERSION = YES; 1545 | CLANG_WARN_COMMA = YES; 1546 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1547 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1548 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1549 | CLANG_WARN_EMPTY_BODY = YES; 1550 | CLANG_WARN_ENUM_CONVERSION = YES; 1551 | CLANG_WARN_INFINITE_RECURSION = YES; 1552 | CLANG_WARN_INT_CONVERSION = YES; 1553 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1554 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1555 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1556 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1557 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1558 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1559 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1560 | CLANG_WARN_UNREACHABLE_CODE = YES; 1561 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1562 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1563 | COPY_PHASE_STRIP = NO; 1564 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1565 | ENABLE_TESTABILITY = YES; 1566 | GCC_C_LANGUAGE_STANDARD = gnu99; 1567 | GCC_DYNAMIC_NO_PIC = NO; 1568 | GCC_NO_COMMON_BLOCKS = YES; 1569 | GCC_OPTIMIZATION_LEVEL = 0; 1570 | GCC_PREPROCESSOR_DEFINITIONS = ( 1571 | "DEBUG=1", 1572 | "$(inherited)", 1573 | ); 1574 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1575 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1576 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1577 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1578 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1579 | GCC_WARN_UNUSED_FUNCTION = YES; 1580 | GCC_WARN_UNUSED_VARIABLE = YES; 1581 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1582 | MTL_ENABLE_DEBUG_INFO = YES; 1583 | ONLY_ACTIVE_ARCH = YES; 1584 | SDKROOT = iphoneos; 1585 | }; 1586 | name = Debug; 1587 | }; 1588 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1589 | isa = XCBuildConfiguration; 1590 | buildSettings = { 1591 | ALWAYS_SEARCH_USER_PATHS = NO; 1592 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1593 | CLANG_CXX_LIBRARY = "libc++"; 1594 | CLANG_ENABLE_MODULES = YES; 1595 | CLANG_ENABLE_OBJC_ARC = YES; 1596 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1597 | CLANG_WARN_BOOL_CONVERSION = YES; 1598 | CLANG_WARN_COMMA = YES; 1599 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1600 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1601 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1602 | CLANG_WARN_EMPTY_BODY = YES; 1603 | CLANG_WARN_ENUM_CONVERSION = YES; 1604 | CLANG_WARN_INFINITE_RECURSION = YES; 1605 | CLANG_WARN_INT_CONVERSION = YES; 1606 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1607 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1608 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1609 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1610 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1611 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1612 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1613 | CLANG_WARN_UNREACHABLE_CODE = YES; 1614 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1615 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1616 | COPY_PHASE_STRIP = YES; 1617 | ENABLE_NS_ASSERTIONS = NO; 1618 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1619 | GCC_C_LANGUAGE_STANDARD = gnu99; 1620 | GCC_NO_COMMON_BLOCKS = YES; 1621 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1622 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1623 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1624 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1625 | GCC_WARN_UNUSED_FUNCTION = YES; 1626 | GCC_WARN_UNUSED_VARIABLE = YES; 1627 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1628 | MTL_ENABLE_DEBUG_INFO = NO; 1629 | SDKROOT = iphoneos; 1630 | VALIDATE_PRODUCT = YES; 1631 | }; 1632 | name = Release; 1633 | }; 1634 | /* End XCBuildConfiguration section */ 1635 | 1636 | /* Begin XCConfigurationList section */ 1637 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MusicStudioTests" */ = { 1638 | isa = XCConfigurationList; 1639 | buildConfigurations = ( 1640 | 00E356F61AD99517003FC87E /* Debug */, 1641 | 00E356F71AD99517003FC87E /* Release */, 1642 | ); 1643 | defaultConfigurationIsVisible = 0; 1644 | defaultConfigurationName = Release; 1645 | }; 1646 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MusicStudio" */ = { 1647 | isa = XCConfigurationList; 1648 | buildConfigurations = ( 1649 | 13B07F941A680F5B00A75B9A /* Debug */, 1650 | 13B07F951A680F5B00A75B9A /* Release */, 1651 | ); 1652 | defaultConfigurationIsVisible = 0; 1653 | defaultConfigurationName = Release; 1654 | }; 1655 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MusicStudio-tvOS" */ = { 1656 | isa = XCConfigurationList; 1657 | buildConfigurations = ( 1658 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1659 | 2D02E4981E0B4A5E006451C7 /* Release */, 1660 | ); 1661 | defaultConfigurationIsVisible = 0; 1662 | defaultConfigurationName = Release; 1663 | }; 1664 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MusicStudio-tvOSTests" */ = { 1665 | isa = XCConfigurationList; 1666 | buildConfigurations = ( 1667 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1668 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1669 | ); 1670 | defaultConfigurationIsVisible = 0; 1671 | defaultConfigurationName = Release; 1672 | }; 1673 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MusicStudio" */ = { 1674 | isa = XCConfigurationList; 1675 | buildConfigurations = ( 1676 | 83CBBA201A601CBA00E9B192 /* Debug */, 1677 | 83CBBA211A601CBA00E9B192 /* Release */, 1678 | ); 1679 | defaultConfigurationIsVisible = 0; 1680 | defaultConfigurationName = Release; 1681 | }; 1682 | /* End XCConfigurationList section */ 1683 | }; 1684 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1685 | } 1686 | --------------------------------------------------------------------------------