├── app ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── my-release-key.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── react_native_config.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── krea8iv │ │ │ │ └── soundkit │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-ldpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-mdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xhdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xxhdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── launch_screen.png │ │ │ ├── layout │ │ │ └── launch_screen.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 │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── babel_config.js ├── documentation │ ├── assets │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ └── logo.png │ ├── index.html │ └── logo.png ├── index.js ├── ios │ ├── FBSDKCoreKit.framework │ │ ├── FBSDKCoreKit │ │ ├── Headers │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKCopying.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ ├── FBSDKMacros.h │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKProfile.h │ │ │ ├── FBSDKProfilePictureView.h │ │ │ ├── FBSDKSettings.h │ │ │ ├── FBSDKTestUsersManager.h │ │ │ └── FBSDKUtility.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── PrivateHeaders │ │ │ ├── FBSDKAccessTokenCacheV4.h │ │ │ ├── FBSDKBridgeAPICrypto.h │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.h │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.h │ │ │ ├── FBSDKError.h │ │ │ ├── FBSDKGraphRequestBody.h │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ ├── FBSDKURLConnection.h │ │ │ └── FBSDKWebDialogView.h │ ├── FBSDKLoginKit.framework │ │ ├── FBSDKLoginKit │ │ ├── Headers │ │ │ ├── FBSDKLoginButton.h │ │ │ ├── FBSDKLoginConstants.h │ │ │ ├── FBSDKLoginKit.h │ │ │ ├── FBSDKLoginManager.h │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ └── FBSDKTooltipView.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ ├── FBSDKShareKit.framework │ │ ├── FBSDKShareKit │ │ ├── Headers │ │ │ ├── FBSDKAppGroupAddDialog.h │ │ │ ├── FBSDKAppGroupContent.h │ │ │ ├── FBSDKAppGroupJoinDialog.h │ │ │ ├── FBSDKAppInviteContent.h │ │ │ ├── FBSDKAppInviteDialog.h │ │ │ ├── FBSDKGameRequestContent.h │ │ │ ├── FBSDKGameRequestDialog.h │ │ │ ├── FBSDKLikeButton.h │ │ │ ├── FBSDKLikeControl.h │ │ │ ├── FBSDKLikeObjectType.h │ │ │ ├── FBSDKLiking.h │ │ │ ├── FBSDKMessageDialog.h │ │ │ ├── FBSDKSendButton.h │ │ │ ├── FBSDKShareAPI.h │ │ │ ├── FBSDKShareButton.h │ │ │ ├── FBSDKShareConstants.h │ │ │ ├── FBSDKShareDialog.h │ │ │ ├── FBSDKShareDialogMode.h │ │ │ ├── FBSDKShareKit.h │ │ │ ├── FBSDKShareLinkContent.h │ │ │ ├── FBSDKShareOpenGraphAction.h │ │ │ ├── FBSDKShareOpenGraphContent.h │ │ │ ├── FBSDKShareOpenGraphObject.h │ │ │ ├── FBSDKShareOpenGraphValueContainer.h │ │ │ ├── FBSDKSharePhoto.h │ │ │ ├── FBSDKSharePhotoContent.h │ │ │ ├── FBSDKShareVideo.h │ │ │ ├── FBSDKShareVideoContent.h │ │ │ ├── FBSDKSharing.h │ │ │ ├── FBSDKSharingButton.h │ │ │ └── FBSDKSharingContent.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ ├── GoogleMobileAds.framework │ │ ├── Headers │ │ │ ├── DFPBannerView.h │ │ │ ├── DFPBannerViewOptions.h │ │ │ ├── DFPCustomRenderedAd.h │ │ │ ├── DFPCustomRenderedBannerViewDelegate.h │ │ │ ├── DFPCustomRenderedInterstitialDelegate.h │ │ │ ├── DFPInterstitial.h │ │ │ ├── DFPRequest.h │ │ │ ├── GADAdChoicesView.h │ │ │ ├── GADAdLoader.h │ │ │ ├── GADAdLoaderAdTypes.h │ │ │ ├── GADAdLoaderDelegate.h │ │ │ ├── GADAdNetworkExtras.h │ │ │ ├── GADAdReward.h │ │ │ ├── GADAdSize.h │ │ │ ├── GADAdSizeDelegate.h │ │ │ ├── GADAppEventDelegate.h │ │ │ ├── GADAudioVideoManager.h │ │ │ ├── GADAudioVideoManagerDelegate.h │ │ │ ├── GADBannerView.h │ │ │ ├── GADBannerViewDelegate.h │ │ │ ├── GADCorrelator.h │ │ │ ├── GADCorrelatorAdLoaderOptions.h │ │ │ ├── GADCustomEventBanner.h │ │ │ ├── GADCustomEventBannerDelegate.h │ │ │ ├── GADCustomEventExtras.h │ │ │ ├── GADCustomEventInterstitial.h │ │ │ ├── GADCustomEventInterstitialDelegate.h │ │ │ ├── GADCustomEventNativeAd.h │ │ │ ├── GADCustomEventNativeAdDelegate.h │ │ │ ├── GADCustomEventParameters.h │ │ │ ├── GADCustomEventRequest.h │ │ │ ├── GADDebugOptionsViewController.h │ │ │ ├── GADDynamicHeightSearchRequest.h │ │ │ ├── GADExtras.h │ │ │ ├── GADInAppPurchase.h │ │ │ ├── GADInAppPurchaseDelegate.h │ │ │ ├── GADInterstitial.h │ │ │ ├── GADInterstitialDelegate.h │ │ │ ├── GADMediaContent.h │ │ │ ├── GADMediaView.h │ │ │ ├── GADMobileAds.h │ │ │ ├── GADMultipleAdsAdLoaderOptions.h │ │ │ ├── GADMuteThisAdReason.h │ │ │ ├── GADNativeAd.h │ │ │ ├── GADNativeAdDelegate.h │ │ │ ├── GADNativeAdImage+Mediation.h │ │ │ ├── GADNativeAdImage.h │ │ │ ├── GADNativeAdImageAdLoaderOptions.h │ │ │ ├── GADNativeAdViewAdOptions.h │ │ │ ├── GADNativeAppInstallAd.h │ │ │ ├── GADNativeAppInstallAdAssetIDs.h │ │ │ ├── GADNativeContentAd.h │ │ │ ├── GADNativeContentAdAssetIDs.h │ │ │ ├── GADNativeCustomTemplateAd.h │ │ │ ├── GADNativeExpressAdView.h │ │ │ ├── GADNativeExpressAdViewDelegate.h │ │ │ ├── GADNativeMuteThisAdLoaderOptions.h │ │ │ ├── GADRequest.h │ │ │ ├── GADRequestConfiguration.h │ │ │ ├── GADRequestError.h │ │ │ ├── GADRewardBasedVideoAd.h │ │ │ ├── GADRewardBasedVideoAdDelegate.h │ │ │ ├── GADSearchBannerView.h │ │ │ ├── GADSearchRequest.h │ │ │ ├── GADUnifiedNativeAd+ConfirmationClick.h │ │ │ ├── GADUnifiedNativeAd+CustomClickGesture.h │ │ │ ├── GADUnifiedNativeAd.h │ │ │ ├── GADUnifiedNativeAdAssetIdentifiers.h │ │ │ ├── GADUnifiedNativeAdDelegate.h │ │ │ ├── GADUnifiedNativeAdUnconfirmedClickDelegate.h │ │ │ ├── GADVideoController.h │ │ │ ├── GADVideoControllerDelegate.h │ │ │ ├── GADVideoOptions.h │ │ │ ├── GoogleMobileAds.h │ │ │ ├── GoogleMobileAdsDefines.h │ │ │ └── Mediation │ │ │ │ ├── GADMAdNetworkAdapterProtocol.h │ │ │ │ ├── GADMAdNetworkConnectorProtocol.h │ │ │ │ ├── GADMEnums.h │ │ │ │ ├── GADMRewardBasedVideoAdNetworkAdapterProtocol.h │ │ │ │ ├── GADMRewardBasedVideoAdNetworkConnectorProtocol.h │ │ │ │ ├── GADMediatedNativeAd.h │ │ │ │ ├── GADMediatedNativeAdDelegate.h │ │ │ │ ├── GADMediatedNativeAdNotificationSource.h │ │ │ │ ├── GADMediatedNativeAppInstallAd.h │ │ │ │ ├── GADMediatedNativeContentAd.h │ │ │ │ ├── GADMediatedUnifiedNativeAd.h │ │ │ │ ├── GADMediatedUnifiedNativeAdNotificationSource.h │ │ │ │ ├── GADMediationAdRequest.h │ │ │ │ └── GADMediationAdSize.h │ │ └── Modules │ │ │ └── module.modulemap │ ├── RNPlaceholder.swift │ ├── Soundkit-tvOS │ │ └── Info.plist │ ├── Soundkit-tvOSTests │ │ └── Info.plist │ ├── Soundkit.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Soundkit-tvOS.xcscheme │ │ │ └── Soundkit.xcscheme │ ├── Soundkit │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── thumbnail-1024.png │ │ │ │ ├── thumbnail-20@2x.png │ │ │ │ ├── thumbnail-20@3x.png │ │ │ │ ├── thumbnail-29@2x.png │ │ │ │ ├── thumbnail-29@3x.png │ │ │ │ ├── thumbnail-40.png │ │ │ │ ├── thumbnail-40@3x.png │ │ │ │ ├── thumbnail-60@2x.png │ │ │ │ └── thumbnail-60@3x.png │ │ │ ├── Contents.json │ │ │ └── Splashscreen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── thumbnail-60@2x.png │ │ │ │ ├── thumbnail-60@3x.png │ │ │ │ └── thumbnail-76.png │ │ ├── Info.plist │ │ └── main.m │ ├── SoundkitTests │ │ ├── Info.plist │ │ └── SoundkitTests.m │ ├── dummy.swift │ ├── frameworks │ │ ├── FBSDKCoreKit.framework │ │ │ ├── FBSDKCoreKit │ │ │ ├── Headers │ │ │ │ ├── FBSDKAccessToken.h │ │ │ │ ├── FBSDKAppEvents.h │ │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ │ ├── FBSDKButton.h │ │ │ │ ├── FBSDKConstants.h │ │ │ │ ├── FBSDKCopying.h │ │ │ │ ├── FBSDKCoreKit.h │ │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ │ ├── FBSDKGraphRequest.h │ │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ │ ├── FBSDKMacros.h │ │ │ │ ├── FBSDKMutableCopying.h │ │ │ │ ├── FBSDKProfile.h │ │ │ │ ├── FBSDKProfilePictureView.h │ │ │ │ ├── FBSDKSettings.h │ │ │ │ ├── FBSDKTestUsersManager.h │ │ │ │ └── FBSDKUtility.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── PrivateHeaders │ │ │ │ ├── FBSDKAccessTokenCacheV4.h │ │ │ │ ├── FBSDKBridgeAPICrypto.h │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.h │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.h │ │ │ │ ├── FBSDKError.h │ │ │ │ ├── FBSDKGraphRequestBody.h │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ ├── FBSDKURLConnection.h │ │ │ │ └── FBSDKWebDialogView.h │ │ ├── FBSDKLoginKit.framework │ │ │ ├── FBSDKLoginKit │ │ │ ├── Headers │ │ │ │ ├── FBSDKLoginButton.h │ │ │ │ ├── FBSDKLoginConstants.h │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ ├── FBSDKLoginManager.h │ │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ │ └── FBSDKTooltipView.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── FBSDKShareKit.framework │ │ │ ├── FBSDKShareKit │ │ │ ├── Headers │ │ │ ├── FBSDKAppGroupAddDialog.h │ │ │ ├── FBSDKAppGroupContent.h │ │ │ ├── FBSDKAppGroupJoinDialog.h │ │ │ ├── FBSDKAppInviteContent.h │ │ │ ├── FBSDKAppInviteDialog.h │ │ │ ├── FBSDKGameRequestContent.h │ │ │ ├── FBSDKGameRequestDialog.h │ │ │ ├── FBSDKLikeButton.h │ │ │ ├── FBSDKLikeControl.h │ │ │ ├── FBSDKLikeObjectType.h │ │ │ ├── FBSDKLiking.h │ │ │ ├── FBSDKMessageDialog.h │ │ │ ├── FBSDKSendButton.h │ │ │ ├── FBSDKShareAPI.h │ │ │ ├── FBSDKShareButton.h │ │ │ ├── FBSDKShareConstants.h │ │ │ ├── FBSDKShareDialog.h │ │ │ ├── FBSDKShareDialogMode.h │ │ │ ├── FBSDKShareKit.h │ │ │ ├── FBSDKShareLinkContent.h │ │ │ ├── FBSDKShareOpenGraphAction.h │ │ │ ├── FBSDKShareOpenGraphContent.h │ │ │ ├── FBSDKShareOpenGraphObject.h │ │ │ ├── FBSDKShareOpenGraphValueContainer.h │ │ │ ├── FBSDKSharePhoto.h │ │ │ ├── FBSDKSharePhotoContent.h │ │ │ ├── FBSDKShareVideo.h │ │ │ ├── FBSDKShareVideoContent.h │ │ │ ├── FBSDKSharing.h │ │ │ ├── FBSDKSharingButton.h │ │ │ └── FBSDKSharingContent.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── images.xcassets │ │ └── icon.png │ ├── musicEngine-Bridging-Header.h │ └── musicEngine │ │ └── Images.xcassets │ │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024.png │ │ ├── icon-20@2x.png │ │ ├── icon-20@3x.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ └── icon-60@3x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── icon-1.png │ │ └── icon.png │ │ └── Splashcreen.imageset │ │ ├── Contents.json │ │ ├── icon-1.png │ │ ├── icon-2.png │ │ └── icon.png ├── metro.config.js ├── my-release-key.keystore ├── native-base-theme │ ├── components │ │ ├── Badge.js │ │ ├── Body.js │ │ ├── Button.js │ │ ├── Card.js │ │ ├── CardItem.js │ │ ├── CheckBox.js │ │ ├── Container.js │ │ ├── Content.js │ │ ├── Fab.js │ │ ├── Footer.js │ │ ├── FooterTab.js │ │ ├── Form.js │ │ ├── H1.js │ │ ├── H2.js │ │ ├── H3.js │ │ ├── Header.js │ │ ├── Icon.js │ │ ├── Input.js │ │ ├── InputGroup.js │ │ ├── Item.js │ │ ├── Label.js │ │ ├── Left.js │ │ ├── ListItem.js │ │ ├── Picker.android.js │ │ ├── Picker.ios.js │ │ ├── Picker.js │ │ ├── Radio.js │ │ ├── Right.js │ │ ├── Segment.js │ │ ├── Separator.js │ │ ├── Spinner.js │ │ ├── Subtitle.js │ │ ├── SwipeRow.js │ │ ├── Switch.js │ │ ├── Tab.js │ │ ├── TabBar.js │ │ ├── TabContainer.js │ │ ├── TabHeading.js │ │ ├── Text.js │ │ ├── Textarea.js │ │ ├── Thumbnail.js │ │ ├── Title.js │ │ ├── Toast.js │ │ ├── View.js │ │ └── index.js │ └── variables │ │ ├── commonColor.js │ │ ├── material.js │ │ └── platform.js ├── package-lock.json ├── package.json ├── service.js ├── src │ ├── api.js │ ├── components │ │ ├── AlbumComponent.js │ │ ├── CommentComponent.js │ │ ├── DisplayComponent.js │ │ ├── PeopleComponent.js │ │ ├── PlaylistAddComponent.js │ │ ├── RadioComponent.js │ │ ├── TrackProgressComponent.js │ │ ├── VideoComponent.js │ │ └── VideoPlayerComponent.js │ ├── config.js │ ├── images │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ ├── it.png │ │ │ ├── ja.png │ │ │ ├── nl.png │ │ │ ├── pl.png │ │ │ ├── pt.png │ │ │ └── ru.png │ │ ├── icon.png │ │ ├── logo.png │ │ ├── microphone.png │ │ ├── pattern.png │ │ ├── peoplemusic.png │ │ ├── topo1.png │ │ ├── topo2.png │ │ └── topo3.png │ ├── languages │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ └── ru.js │ ├── routes.js │ ├── screens │ │ ├── AccountScreen.js │ │ ├── AlbumProfileScreen.js │ │ ├── AuthScreen.js │ │ ├── BlogScreen.js │ │ ├── ChatScreen.js │ │ ├── CollectionScreen.js │ │ ├── ExploreScreen.js │ │ ├── FeedScreen.js │ │ ├── HomeScreen.js │ │ ├── MessagesScreen.js │ │ ├── NotificationScreen.js │ │ ├── PlayerScreen.js │ │ ├── PricingScreen.js │ │ ├── ProScreen.js │ │ ├── RadioScreen.js │ │ ├── SettingsScreen.js │ │ ├── StoreScreen.js │ │ ├── UserProfileScreen.js │ │ ├── VideoScreen.js │ │ └── WelcomeScreen.js │ ├── store │ │ ├── index.js │ │ ├── realmSchema.js │ │ ├── reducers │ │ │ ├── auth.js │ │ │ └── index.js │ │ ├── sagas │ │ │ └── index.js │ │ └── storage.js │ ├── themes │ │ ├── dark.js │ │ └── light.js │ └── utils │ │ ├── BaseComponent.js │ │ ├── BaseScreen.js │ │ ├── DummyData.js │ │ ├── EmptyComponent.js │ │ ├── Player.js │ │ ├── PleaseLoginComponent.js │ │ ├── Time.js │ │ ├── Util.js │ │ ├── lang.js │ │ └── statusbar.js └── yarn.lock └── documentation ├── assets ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── bootstrap.min.css ├── bootstrap.min.js └── logo.png ├── index.html └── logo.png /app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/.babelrc -------------------------------------------------------------------------------- /app/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/.buckconfig -------------------------------------------------------------------------------- /app/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/.flowconfig -------------------------------------------------------------------------------- /app/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/App.js -------------------------------------------------------------------------------- /app/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/BUCK -------------------------------------------------------------------------------- /app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/build.gradle -------------------------------------------------------------------------------- /app/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/build_defs.bzl -------------------------------------------------------------------------------- /app/android/app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/my-release-key.keystore -------------------------------------------------------------------------------- /app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/debug/res/xml/react_native_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/debug/res/xml/react_native_config.xml -------------------------------------------------------------------------------- /app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /app/android/app/src/main/java/com/krea8iv/soundkit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/java/com/krea8iv/soundkit/MainActivity.java -------------------------------------------------------------------------------- /app/android/app/src/main/java/com/krea8iv/soundkit/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/java/com/krea8iv/soundkit/MainApplication.java -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-hdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-hdpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-ldpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-ldpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-mdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-mdpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-xhdpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-xxhdpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/drawable-xxxhdpi/launch_screen.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/build.gradle -------------------------------------------------------------------------------- /app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/gradle.properties -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/gradlew -------------------------------------------------------------------------------- /app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/gradlew.bat -------------------------------------------------------------------------------- /app/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/keystores/BUCK -------------------------------------------------------------------------------- /app/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/android/settings.gradle -------------------------------------------------------------------------------- /app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/app.json -------------------------------------------------------------------------------- /app/babel_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/babel_config.js -------------------------------------------------------------------------------- /app/documentation/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/1.png -------------------------------------------------------------------------------- /app/documentation/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/2.png -------------------------------------------------------------------------------- /app/documentation/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/3.png -------------------------------------------------------------------------------- /app/documentation/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/4.png -------------------------------------------------------------------------------- /app/documentation/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/5.png -------------------------------------------------------------------------------- /app/documentation/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/6.png -------------------------------------------------------------------------------- /app/documentation/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/7.png -------------------------------------------------------------------------------- /app/documentation/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/8.png -------------------------------------------------------------------------------- /app/documentation/assets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/bootstrap.min.css -------------------------------------------------------------------------------- /app/documentation/assets/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/bootstrap.min.js -------------------------------------------------------------------------------- /app/documentation/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/assets/logo.png -------------------------------------------------------------------------------- /app/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/index.html -------------------------------------------------------------------------------- /app/documentation/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/documentation/logo.png -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/index.js -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/FBSDKCoreKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/FBSDKCoreKit -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKConstants.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKCopying.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKMacros.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKProfile.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKProfilePictureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKProfilePictureView.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKSettings.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKTestUsersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKTestUsersManager.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Headers/FBSDKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Headers/FBSDKUtility.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKAccessTokenCacheV4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKAccessTokenCacheV4.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPICrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPICrypto.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocol.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolNativeV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolNativeV1.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolWebV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolWebV1.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKError.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestBody.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestMetadata.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKURLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKURLConnection.h -------------------------------------------------------------------------------- /app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKWebDialogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKCoreKit.framework/PrivateHeaders/FBSDKWebDialogView.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/FBSDKLoginKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/FBSDKLoginKit -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginConstants.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginManager.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Headers/FBSDKTooltipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Headers/FBSDKTooltipView.h -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/FBSDKLoginKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKLoginKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/FBSDKShareKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/FBSDKShareKit -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupAddDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupAddDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupJoinDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKAppGroupJoinDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKGameRequestContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKGameRequestContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKGameRequestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKGameRequestDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKLikeObjectType.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKLiking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKLiking.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKMessageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKMessageDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSendButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSendButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareDialogMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareDialogMode.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareKit.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphAction.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphValueContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphValueContainer.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSharePhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSharePhoto.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKShareVideoContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKShareVideoContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSharing.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Headers/FBSDKSharingContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Headers/FBSDKSharingContent.h -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/FBSDKShareKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/FBSDKShareKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPBannerView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPBannerViewOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPBannerViewOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedBannerViewDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPCustomRenderedInterstitialDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPInterstitial.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/DFPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/DFPRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdChoicesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdChoicesView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdLoader.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdLoaderAdTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdLoaderAdTypes.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdLoaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdLoaderDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdNetworkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdNetworkExtras.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdReward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdReward.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdSize.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAdSizeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAdSizeDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAppEventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAppEventDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAudioVideoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAudioVideoManager.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADBannerView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADBannerViewDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCorrelator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCorrelator.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCorrelatorAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCorrelatorAdLoaderOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventBanner.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventBannerDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventExtras.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventInterstitial.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventInterstitialDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventNativeAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventNativeAdDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventParameters.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADCustomEventRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADCustomEventRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADDebugOptionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADDebugOptionsViewController.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADDynamicHeightSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADDynamicHeightSearchRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADExtras.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADInAppPurchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADInAppPurchase.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADInAppPurchaseDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADInAppPurchaseDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADInterstitial.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADInterstitialDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADMediaContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADMediaContent.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADMediaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADMediaView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADMobileAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADMobileAds.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADMultipleAdsAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADMultipleAdsAdLoaderOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADMuteThisAdReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADMuteThisAdReason.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAdDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImage+Mediation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImage+Mediation.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImage.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImageAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAdImageAdLoaderOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAdViewAdOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAdViewAdOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAppInstallAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAppInstallAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeAppInstallAdAssetIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeAppInstallAdAssetIDs.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeContentAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeContentAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeContentAdAssetIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeContentAdAssetIDs.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeCustomTemplateAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeCustomTemplateAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeExpressAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeExpressAdView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeExpressAdViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeExpressAdViewDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADNativeMuteThisAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADNativeMuteThisAdLoaderOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADRequestConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADRequestConfiguration.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADRequestError.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADRewardBasedVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADRewardBasedVideoAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADRewardBasedVideoAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADRewardBasedVideoAdDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADSearchBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADSearchBannerView.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADSearchRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd+ConfirmationClick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd+ConfirmationClick.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd+CustomClickGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd+CustomClickGesture.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdAssetIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdAssetIdentifiers.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdUnconfirmedClickDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADUnifiedNativeAdUnconfirmedClickDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADVideoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADVideoController.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADVideoControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADVideoControllerDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GADVideoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GADVideoOptions.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GoogleMobileAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GoogleMobileAds.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/GoogleMobileAdsDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/GoogleMobileAdsDefines.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMEnums.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMRewardBasedVideoAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMRewardBasedVideoAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMRewardBasedVideoAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMRewardBasedVideoAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAdDelegate.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAdNotificationSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAdNotificationSource.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAppInstallAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeAppInstallAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeContentAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedNativeContentAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedUnifiedNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedUnifiedNativeAd.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedUnifiedNativeAdNotificationSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediatedUnifiedNativeAdNotificationSource.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediationAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediationAdRequest.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediationAdSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Headers/Mediation/GADMediationAdSize.h -------------------------------------------------------------------------------- /app/ios/GoogleMobileAds.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/GoogleMobileAds.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/RNPlaceholder.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ios/Soundkit-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit-tvOS/Info.plist -------------------------------------------------------------------------------- /app/ios/Soundkit-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit-tvOSTests/Info.plist -------------------------------------------------------------------------------- /app/ios/Soundkit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/ios/Soundkit.xcodeproj/xcshareddata/xcschemes/Soundkit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit.xcodeproj/xcshareddata/xcschemes/Soundkit-tvOS.xcscheme -------------------------------------------------------------------------------- /app/ios/Soundkit.xcodeproj/xcshareddata/xcschemes/Soundkit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit.xcodeproj/xcshareddata/xcschemes/Soundkit.xcscheme -------------------------------------------------------------------------------- /app/ios/Soundkit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/AppDelegate.h -------------------------------------------------------------------------------- /app/ios/Soundkit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/AppDelegate.m -------------------------------------------------------------------------------- /app/ios/Soundkit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-1024.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-20@2x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-20@3x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-29@2x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-29@3x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-40.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-40@3x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-60@2x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/AppIcon.appiconset/thumbnail-60@3x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/Contents.json -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-60@2x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-60@3x.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Images.xcassets/Splashscreen.imageset/thumbnail-76.png -------------------------------------------------------------------------------- /app/ios/Soundkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/Info.plist -------------------------------------------------------------------------------- /app/ios/Soundkit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/Soundkit/main.m -------------------------------------------------------------------------------- /app/ios/SoundkitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/SoundkitTests/Info.plist -------------------------------------------------------------------------------- /app/ios/SoundkitTests/SoundkitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/SoundkitTests/SoundkitTests.m -------------------------------------------------------------------------------- /app/ios/dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/dummy.swift -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKConstants.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMacros.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKProfile.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKProfilePictureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKProfilePictureView.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKTestUsersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKTestUsersManager.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKAccessTokenCacheV4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKAccessTokenCacheV4.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPICrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPICrypto.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocol.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolNativeV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolNativeV1.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolWebV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKBridgeAPIProtocolWebV1.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKError.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestBody.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKGraphRequestMetadata.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKURLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKURLConnection.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKWebDialogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKCoreKit.framework/PrivateHeaders/FBSDKWebDialogView.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginConstants.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManager.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKTooltipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Headers/FBSDKTooltipView.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKLoginKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKLoginKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/FBSDKShareKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/FBSDKShareKit -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupAddDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupAddDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupJoinDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppGroupJoinDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKGameRequestContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKGameRequestContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKGameRequestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKGameRequestDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeObjectType.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKMessageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKMessageDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSendButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSendButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialogMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialogMode.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareKit.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphAction.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphValueContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphValueContainer.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhoto.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideoContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideoContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharing.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingContent.h -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Info.plist -------------------------------------------------------------------------------- /app/ios/frameworks/FBSDKShareKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/frameworks/FBSDKShareKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /app/ios/images.xcassets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/images.xcassets/icon.png -------------------------------------------------------------------------------- /app/ios/musicEngine-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine-Bridging-Header.h -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/icon-1.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/LaunchImage.launchimage/icon.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/Contents.json -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon-1.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon-2.png -------------------------------------------------------------------------------- /app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/ios/musicEngine/Images.xcassets/Splashcreen.imageset/icon.png -------------------------------------------------------------------------------- /app/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/metro.config.js -------------------------------------------------------------------------------- /app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/my-release-key.keystore -------------------------------------------------------------------------------- /app/native-base-theme/components/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Badge.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Body.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Button.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Card.js -------------------------------------------------------------------------------- /app/native-base-theme/components/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/CardItem.js -------------------------------------------------------------------------------- /app/native-base-theme/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/CheckBox.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Container.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Content.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Fab.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Footer.js -------------------------------------------------------------------------------- /app/native-base-theme/components/FooterTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/FooterTab.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Form.js -------------------------------------------------------------------------------- /app/native-base-theme/components/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/H1.js -------------------------------------------------------------------------------- /app/native-base-theme/components/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/H2.js -------------------------------------------------------------------------------- /app/native-base-theme/components/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/H3.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Header.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Icon.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Input.js -------------------------------------------------------------------------------- /app/native-base-theme/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/InputGroup.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Item.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Label.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Left.js -------------------------------------------------------------------------------- /app/native-base-theme/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/ListItem.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Picker.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Picker.android.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Picker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Picker.ios.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Picker.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Radio.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Right.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Right.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Segment.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Separator.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Spinner.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Subtitle.js -------------------------------------------------------------------------------- /app/native-base-theme/components/SwipeRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/SwipeRow.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Switch.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Tab.js -------------------------------------------------------------------------------- /app/native-base-theme/components/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/TabBar.js -------------------------------------------------------------------------------- /app/native-base-theme/components/TabContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/TabContainer.js -------------------------------------------------------------------------------- /app/native-base-theme/components/TabHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/TabHeading.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Text.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Textarea.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Thumbnail.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Title.js -------------------------------------------------------------------------------- /app/native-base-theme/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/Toast.js -------------------------------------------------------------------------------- /app/native-base-theme/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/View.js -------------------------------------------------------------------------------- /app/native-base-theme/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/components/index.js -------------------------------------------------------------------------------- /app/native-base-theme/variables/commonColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/variables/commonColor.js -------------------------------------------------------------------------------- /app/native-base-theme/variables/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/variables/material.js -------------------------------------------------------------------------------- /app/native-base-theme/variables/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/native-base-theme/variables/platform.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/package.json -------------------------------------------------------------------------------- /app/service.js: -------------------------------------------------------------------------------- 1 | module.exports = async function() { 2 | // ... 3 | } -------------------------------------------------------------------------------- /app/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/api.js -------------------------------------------------------------------------------- /app/src/components/AlbumComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/AlbumComponent.js -------------------------------------------------------------------------------- /app/src/components/CommentComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/CommentComponent.js -------------------------------------------------------------------------------- /app/src/components/DisplayComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/DisplayComponent.js -------------------------------------------------------------------------------- /app/src/components/PeopleComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/PeopleComponent.js -------------------------------------------------------------------------------- /app/src/components/PlaylistAddComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/PlaylistAddComponent.js -------------------------------------------------------------------------------- /app/src/components/RadioComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/RadioComponent.js -------------------------------------------------------------------------------- /app/src/components/TrackProgressComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/TrackProgressComponent.js -------------------------------------------------------------------------------- /app/src/components/VideoComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/VideoComponent.js -------------------------------------------------------------------------------- /app/src/components/VideoPlayerComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/components/VideoPlayerComponent.js -------------------------------------------------------------------------------- /app/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/config.js -------------------------------------------------------------------------------- /app/src/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/de.png -------------------------------------------------------------------------------- /app/src/images/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/en.png -------------------------------------------------------------------------------- /app/src/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/es.png -------------------------------------------------------------------------------- /app/src/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/fr.png -------------------------------------------------------------------------------- /app/src/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/it.png -------------------------------------------------------------------------------- /app/src/images/flags/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/ja.png -------------------------------------------------------------------------------- /app/src/images/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/nl.png -------------------------------------------------------------------------------- /app/src/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/pl.png -------------------------------------------------------------------------------- /app/src/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/pt.png -------------------------------------------------------------------------------- /app/src/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/flags/ru.png -------------------------------------------------------------------------------- /app/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/icon.png -------------------------------------------------------------------------------- /app/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/logo.png -------------------------------------------------------------------------------- /app/src/images/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/microphone.png -------------------------------------------------------------------------------- /app/src/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/pattern.png -------------------------------------------------------------------------------- /app/src/images/peoplemusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/peoplemusic.png -------------------------------------------------------------------------------- /app/src/images/topo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/topo1.png -------------------------------------------------------------------------------- /app/src/images/topo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/topo2.png -------------------------------------------------------------------------------- /app/src/images/topo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/images/topo3.png -------------------------------------------------------------------------------- /app/src/languages/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/de.js -------------------------------------------------------------------------------- /app/src/languages/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/en.js -------------------------------------------------------------------------------- /app/src/languages/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/es.js -------------------------------------------------------------------------------- /app/src/languages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/fr.js -------------------------------------------------------------------------------- /app/src/languages/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/it.js -------------------------------------------------------------------------------- /app/src/languages/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/ja.js -------------------------------------------------------------------------------- /app/src/languages/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/nl.js -------------------------------------------------------------------------------- /app/src/languages/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/pl.js -------------------------------------------------------------------------------- /app/src/languages/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/pt.js -------------------------------------------------------------------------------- /app/src/languages/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/languages/ru.js -------------------------------------------------------------------------------- /app/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/routes.js -------------------------------------------------------------------------------- /app/src/screens/AccountScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/AccountScreen.js -------------------------------------------------------------------------------- /app/src/screens/AlbumProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/AlbumProfileScreen.js -------------------------------------------------------------------------------- /app/src/screens/AuthScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/AuthScreen.js -------------------------------------------------------------------------------- /app/src/screens/BlogScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/BlogScreen.js -------------------------------------------------------------------------------- /app/src/screens/ChatScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/ChatScreen.js -------------------------------------------------------------------------------- /app/src/screens/CollectionScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/CollectionScreen.js -------------------------------------------------------------------------------- /app/src/screens/ExploreScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/ExploreScreen.js -------------------------------------------------------------------------------- /app/src/screens/FeedScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/FeedScreen.js -------------------------------------------------------------------------------- /app/src/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/HomeScreen.js -------------------------------------------------------------------------------- /app/src/screens/MessagesScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/MessagesScreen.js -------------------------------------------------------------------------------- /app/src/screens/NotificationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/NotificationScreen.js -------------------------------------------------------------------------------- /app/src/screens/PlayerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/PlayerScreen.js -------------------------------------------------------------------------------- /app/src/screens/PricingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/PricingScreen.js -------------------------------------------------------------------------------- /app/src/screens/ProScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/ProScreen.js -------------------------------------------------------------------------------- /app/src/screens/RadioScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/RadioScreen.js -------------------------------------------------------------------------------- /app/src/screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/SettingsScreen.js -------------------------------------------------------------------------------- /app/src/screens/StoreScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/StoreScreen.js -------------------------------------------------------------------------------- /app/src/screens/UserProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/UserProfileScreen.js -------------------------------------------------------------------------------- /app/src/screens/VideoScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/VideoScreen.js -------------------------------------------------------------------------------- /app/src/screens/WelcomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/screens/WelcomeScreen.js -------------------------------------------------------------------------------- /app/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/index.js -------------------------------------------------------------------------------- /app/src/store/realmSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/realmSchema.js -------------------------------------------------------------------------------- /app/src/store/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/reducers/auth.js -------------------------------------------------------------------------------- /app/src/store/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/reducers/index.js -------------------------------------------------------------------------------- /app/src/store/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/sagas/index.js -------------------------------------------------------------------------------- /app/src/store/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/store/storage.js -------------------------------------------------------------------------------- /app/src/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/themes/dark.js -------------------------------------------------------------------------------- /app/src/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/themes/light.js -------------------------------------------------------------------------------- /app/src/utils/BaseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/BaseComponent.js -------------------------------------------------------------------------------- /app/src/utils/BaseScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/BaseScreen.js -------------------------------------------------------------------------------- /app/src/utils/DummyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/DummyData.js -------------------------------------------------------------------------------- /app/src/utils/EmptyComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/EmptyComponent.js -------------------------------------------------------------------------------- /app/src/utils/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/Player.js -------------------------------------------------------------------------------- /app/src/utils/PleaseLoginComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/PleaseLoginComponent.js -------------------------------------------------------------------------------- /app/src/utils/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/Time.js -------------------------------------------------------------------------------- /app/src/utils/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/Util.js -------------------------------------------------------------------------------- /app/src/utils/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/lang.js -------------------------------------------------------------------------------- /app/src/utils/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/src/utils/statusbar.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /documentation/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/1.png -------------------------------------------------------------------------------- /documentation/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/2.png -------------------------------------------------------------------------------- /documentation/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/3.png -------------------------------------------------------------------------------- /documentation/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/4.png -------------------------------------------------------------------------------- /documentation/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/5.png -------------------------------------------------------------------------------- /documentation/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/6.png -------------------------------------------------------------------------------- /documentation/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/7.png -------------------------------------------------------------------------------- /documentation/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/8.png -------------------------------------------------------------------------------- /documentation/assets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/assets/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/bootstrap.min.js -------------------------------------------------------------------------------- /documentation/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/assets/logo.png -------------------------------------------------------------------------------- /documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/index.html -------------------------------------------------------------------------------- /documentation/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/SoundKit_ReactNative/HEAD/documentation/logo.png --------------------------------------------------------------------------------