Skip to content

React Native library for selecting tracks from apple music library.

Notifications You must be signed in to change notification settings

LRonHubs/react-native-apple-music

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-apple-music

Getting started

$ npm install react-native-apple-music --save

Mostly automatic installation

$ react-native link react-native-apple-music

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-apple-music and add RNAppleMusic.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNAppleMusic.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNAppleMusicPackage; to the imports at the top of the file
  • Add new RNAppleMusicPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-apple-music'
    project(':react-native-apple-music').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-apple-music/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-apple-music')
    

Windows

Read it! :D

  1. In Visual Studio add the RNAppleMusic.sln in node_modules/react-native-apple-music/windows/RNAppleMusic.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using Com.Reactlibrary.RNAppleMusic; to the usings at the top of the file
  • Add new RNAppleMusicPackage() to the List<IReactPackage> returned by the Packages method

Usage

import RNAppleMusic from 'react-native-apple-music';

// TODO: What to do with the module?
RNAppleMusic;

About

React Native library for selecting tracks from apple music library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 95.8%
  • Ruby 3.5%
  • JavaScript 0.7%