Files
SideStore/Pods/Target Support Files/Roxas/Roxas-prefix.pch
Riley Testut 719cea97e8 Replaces frameworks with static libraries
As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
2020-01-29 12:06:26 -08:00

37 lines
587 B
Plaintext

#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
//
// Roxas-Prefix.pch
// Roxas
//
// Created by Riley Testut on 12/6/14.
// Copyright (c) 2014 Riley Testut. All rights reserved.
//
#ifndef Roxas_Roxas_Prefix_pch
#define Roxas_Roxas_Prefix_pch
#import <Availability.h>
#ifndef __IPHONE_8_0
#warning "This project uses features only available in iOS SDK 8.0 and later."
#endif
#ifdef __OBJC__
#import "RSTDefines.h"
#endif
#endif