@depup/react-native-fast-image 8.6.3-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +25 -0
- package/RNFastImage.podspec +21 -0
- package/android/build.gradle +68 -0
- package/android/src/main/AndroidManifest.xml +2 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageCacheControl.java +8 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageGlideModule.java +9 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageOkHttpProgressGlideModule.java +176 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageProgressListener.java +14 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageRequestListener.java +60 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageSource.java +112 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageViewConverter.java +153 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageViewManager.java +183 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageViewModule.java +89 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageViewPackage.java +25 -0
- package/android/src/main/java/com/dylanvann/fastimage/FastImageViewWithUrl.java +159 -0
- package/changes.json +5 -0
- package/dist/index.cjs.js +144 -0
- package/dist/index.cjs.js.flow +75 -0
- package/dist/index.d.ts +103 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +137 -0
- package/dist/index.js.flow +75 -0
- package/dist/index.test.d.ts +2 -0
- package/dist/index.test.d.ts.map +1 -0
- package/ios/FastImage/FFFastImageSource.h +33 -0
- package/ios/FastImage/FFFastImageSource.m +20 -0
- package/ios/FastImage/FFFastImageView.h +24 -0
- package/ios/FastImage/FFFastImageView.m +244 -0
- package/ios/FastImage/FFFastImageViewManager.h +5 -0
- package/ios/FastImage/FFFastImageViewManager.m +52 -0
- package/ios/FastImage/RCTConvert+FFFastImage.h +9 -0
- package/ios/FastImage/RCTConvert+FFFastImage.m +53 -0
- package/ios/FastImage.xcodeproj/project.pbxproj +479 -0
- package/ios/FastImage.xcodeproj/xcshareddata/xcschemes/FastImage-tvOS.xcscheme +80 -0
- package/package.json +98 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
#import "FFFastImageViewManager.h"
|
|
2
|
+
#import "FFFastImageView.h"
|
|
3
|
+
|
|
4
|
+
#import <SDWebImage/SDImageCache.h>
|
|
5
|
+
#import <SDWebImage/SDWebImagePrefetcher.h>
|
|
6
|
+
|
|
7
|
+
@implementation FFFastImageViewManager
|
|
8
|
+
|
|
9
|
+
RCT_EXPORT_MODULE(FastImageView)
|
|
10
|
+
|
|
11
|
+
- (FFFastImageView*)view {
|
|
12
|
+
return [[FFFastImageView alloc] init];
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
RCT_EXPORT_VIEW_PROPERTY(source, FFFastImageSource)
|
|
16
|
+
RCT_EXPORT_VIEW_PROPERTY(defaultSource, UIImage)
|
|
17
|
+
RCT_EXPORT_VIEW_PROPERTY(resizeMode, RCTResizeMode)
|
|
18
|
+
RCT_EXPORT_VIEW_PROPERTY(onFastImageLoadStart, RCTDirectEventBlock)
|
|
19
|
+
RCT_EXPORT_VIEW_PROPERTY(onFastImageProgress, RCTDirectEventBlock)
|
|
20
|
+
RCT_EXPORT_VIEW_PROPERTY(onFastImageError, RCTDirectEventBlock)
|
|
21
|
+
RCT_EXPORT_VIEW_PROPERTY(onFastImageLoad, RCTDirectEventBlock)
|
|
22
|
+
RCT_EXPORT_VIEW_PROPERTY(onFastImageLoadEnd, RCTDirectEventBlock)
|
|
23
|
+
RCT_REMAP_VIEW_PROPERTY(tintColor, imageColor, UIColor)
|
|
24
|
+
|
|
25
|
+
RCT_EXPORT_METHOD(preload:(nonnull NSArray<FFFastImageSource *> *)sources)
|
|
26
|
+
{
|
|
27
|
+
NSMutableArray *urls = [NSMutableArray arrayWithCapacity:sources.count];
|
|
28
|
+
|
|
29
|
+
[sources enumerateObjectsUsingBlock:^(FFFastImageSource * _Nonnull source, NSUInteger idx, BOOL * _Nonnull stop) {
|
|
30
|
+
[source.headers enumerateKeysAndObjectsUsingBlock:^(NSString *key, NSString* header, BOOL *stop) {
|
|
31
|
+
[[SDWebImageDownloader sharedDownloader] setValue:header forHTTPHeaderField:key];
|
|
32
|
+
}];
|
|
33
|
+
[urls setObject:source.url atIndexedSubscript:idx];
|
|
34
|
+
}];
|
|
35
|
+
|
|
36
|
+
[[SDWebImagePrefetcher sharedImagePrefetcher] prefetchURLs:urls];
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
RCT_EXPORT_METHOD(clearMemoryCache:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject)
|
|
40
|
+
{
|
|
41
|
+
[SDImageCache.sharedImageCache clearMemory];
|
|
42
|
+
resolve(NULL);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
RCT_EXPORT_METHOD(clearDiskCache:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject)
|
|
46
|
+
{
|
|
47
|
+
[SDImageCache.sharedImageCache clearDiskOnCompletion:^(){
|
|
48
|
+
resolve(NULL);
|
|
49
|
+
}];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
#import "RCTConvert+FFFastImage.h"
|
|
2
|
+
#import "FFFastImageSource.h"
|
|
3
|
+
|
|
4
|
+
@implementation RCTConvert (FFFastImage)
|
|
5
|
+
|
|
6
|
+
RCT_ENUM_CONVERTER(FFFPriority, (@{
|
|
7
|
+
@"low": @(FFFPriorityLow),
|
|
8
|
+
@"normal": @(FFFPriorityNormal),
|
|
9
|
+
@"high": @(FFFPriorityHigh),
|
|
10
|
+
}), FFFPriorityNormal, integerValue);
|
|
11
|
+
|
|
12
|
+
RCT_ENUM_CONVERTER(FFFCacheControl, (@{
|
|
13
|
+
@"immutable": @(FFFCacheControlImmutable),
|
|
14
|
+
@"web": @(FFFCacheControlWeb),
|
|
15
|
+
@"cacheOnly": @(FFFCacheControlCacheOnly),
|
|
16
|
+
}), FFFCacheControlImmutable, integerValue);
|
|
17
|
+
|
|
18
|
+
+ (FFFastImageSource *)FFFastImageSource:(id)json {
|
|
19
|
+
if (!json) {
|
|
20
|
+
return nil;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
NSString *uriString = json[@"uri"];
|
|
24
|
+
NSURL *uri = [self NSURL:uriString];
|
|
25
|
+
|
|
26
|
+
FFFPriority priority = [self FFFPriority:json[@"priority"]];
|
|
27
|
+
FFFCacheControl cacheControl = [self FFFCacheControl:json[@"cache"]];
|
|
28
|
+
|
|
29
|
+
NSDictionary *headers = [self NSDictionary:json[@"headers"]];
|
|
30
|
+
if (headers) {
|
|
31
|
+
__block BOOL allHeadersAreStrings = YES;
|
|
32
|
+
[headers enumerateKeysAndObjectsUsingBlock:^(NSString *key, id header, BOOL *stop) {
|
|
33
|
+
if (![header isKindOfClass:[NSString class]]) {
|
|
34
|
+
RCTLogError(@"Values of HTTP headers passed must be of type string. "
|
|
35
|
+
"Value of header '%@' is not a string.", key);
|
|
36
|
+
allHeadersAreStrings = NO;
|
|
37
|
+
*stop = YES;
|
|
38
|
+
}
|
|
39
|
+
}];
|
|
40
|
+
if (!allHeadersAreStrings) {
|
|
41
|
+
// Set headers to nil here to avoid crashing later.
|
|
42
|
+
headers = nil;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
FFFastImageSource *imageSource = [[FFFastImageSource alloc] initWithURL:uri priority:priority headers:headers cacheControl:cacheControl];
|
|
47
|
+
|
|
48
|
+
return imageSource;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
RCT_ARRAY_CONVERTER(FFFastImageSource);
|
|
52
|
+
|
|
53
|
+
@end
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
FCC6D1391EB3912D0065F944 /* libSDWebImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FCC6D0D01EB38D2F0065F944 /* libSDWebImage.a */; };
|
|
11
|
+
FCFB253F1EA5562700F59778 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB25381EA5562700F59778 /* FFFastImageSource.m */; };
|
|
12
|
+
FCFB25401EA5562700F59778 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253A1EA5562700F59778 /* FFFastImageView.m */; };
|
|
13
|
+
FCFB25411EA5562700F59778 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253C1EA5562700F59778 /* FFFastImageViewManager.m */; };
|
|
14
|
+
FCFB25421EA5562700F59778 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253E1EA5562700F59778 /* RCTConvert+FFFastImage.m */; };
|
|
15
|
+
FD751C43229EB44C002BE1F4 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253C1EA5562700F59778 /* FFFastImageViewManager.m */; };
|
|
16
|
+
FD751C44229EB44C002BE1F4 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253E1EA5562700F59778 /* RCTConvert+FFFastImage.m */; };
|
|
17
|
+
FD751C45229EB44C002BE1F4 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB253A1EA5562700F59778 /* FFFastImageView.m */; };
|
|
18
|
+
FD751C46229EB44C002BE1F4 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = FCFB25381EA5562700F59778 /* FFFastImageSource.m */; };
|
|
19
|
+
FD751C48229EB44C002BE1F4 /* libSDWebImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FCC6D0D01EB38D2F0065F944 /* libSDWebImage.a */; };
|
|
20
|
+
/* End PBXBuildFile section */
|
|
21
|
+
|
|
22
|
+
/* Begin PBXContainerItemProxy section */
|
|
23
|
+
3236AC0D226EC00400425AA3 /* PBXContainerItemProxy */ = {
|
|
24
|
+
isa = PBXContainerItemProxy;
|
|
25
|
+
containerPortal = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
26
|
+
proxyType = 2;
|
|
27
|
+
remoteGlobalIDString = 80B6DFEE2142B71600BCB334;
|
|
28
|
+
remoteInfo = SDWebImageMapKit;
|
|
29
|
+
};
|
|
30
|
+
FCC6D0CF1EB38D2F0065F944 /* PBXContainerItemProxy */ = {
|
|
31
|
+
isa = PBXContainerItemProxy;
|
|
32
|
+
containerPortal = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
33
|
+
proxyType = 2;
|
|
34
|
+
remoteGlobalIDString = 53761325155AD0D5005750A4;
|
|
35
|
+
remoteInfo = "SDWebImage iOS static";
|
|
36
|
+
};
|
|
37
|
+
FCC6D0D31EB38D2F0065F944 /* PBXContainerItemProxy */ = {
|
|
38
|
+
isa = PBXContainerItemProxy;
|
|
39
|
+
containerPortal = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
40
|
+
proxyType = 2;
|
|
41
|
+
remoteGlobalIDString = 4A2CADFF1AB4BB5300B6BC39;
|
|
42
|
+
remoteInfo = "SDWebImage iOS";
|
|
43
|
+
};
|
|
44
|
+
FCC6D1281EB3908E0065F944 /* PBXContainerItemProxy */ = {
|
|
45
|
+
isa = PBXContainerItemProxy;
|
|
46
|
+
containerPortal = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
47
|
+
proxyType = 1;
|
|
48
|
+
remoteGlobalIDString = 53761307155AD0D5005750A4;
|
|
49
|
+
remoteInfo = "SDWebImage iOS static";
|
|
50
|
+
};
|
|
51
|
+
FD751C41229EB44C002BE1F4 /* PBXContainerItemProxy */ = {
|
|
52
|
+
isa = PBXContainerItemProxy;
|
|
53
|
+
containerPortal = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
54
|
+
proxyType = 1;
|
|
55
|
+
remoteGlobalIDString = 53761307155AD0D5005750A4;
|
|
56
|
+
remoteInfo = "SDWebImage iOS static";
|
|
57
|
+
};
|
|
58
|
+
/* End PBXContainerItemProxy section */
|
|
59
|
+
|
|
60
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
61
|
+
A287971B1DE0C0A60081BDFA /* CopyFiles */ = {
|
|
62
|
+
isa = PBXCopyFilesBuildPhase;
|
|
63
|
+
buildActionMask = 2147483647;
|
|
64
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
65
|
+
dstSubfolderSpec = 16;
|
|
66
|
+
files = (
|
|
67
|
+
);
|
|
68
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
69
|
+
};
|
|
70
|
+
FD751C49229EB44C002BE1F4 /* CopyFiles */ = {
|
|
71
|
+
isa = PBXCopyFilesBuildPhase;
|
|
72
|
+
buildActionMask = 2147483647;
|
|
73
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
74
|
+
dstSubfolderSpec = 16;
|
|
75
|
+
files = (
|
|
76
|
+
);
|
|
77
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
78
|
+
};
|
|
79
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
80
|
+
|
|
81
|
+
/* Begin PBXFileReference section */
|
|
82
|
+
A287971D1DE0C0A60081BDFA /* libFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
83
|
+
FCFB25371EA5562700F59778 /* FFFastImageSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FFFastImageSource.h; sourceTree = "<group>"; };
|
|
84
|
+
FCFB25381EA5562700F59778 /* FFFastImageSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FFFastImageSource.m; sourceTree = "<group>"; };
|
|
85
|
+
FCFB25391EA5562700F59778 /* FFFastImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FFFastImageView.h; sourceTree = "<group>"; };
|
|
86
|
+
FCFB253A1EA5562700F59778 /* FFFastImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FFFastImageView.m; sourceTree = "<group>"; };
|
|
87
|
+
FCFB253B1EA5562700F59778 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FFFastImageViewManager.h; sourceTree = "<group>"; };
|
|
88
|
+
FCFB253C1EA5562700F59778 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FFFastImageViewManager.m; sourceTree = "<group>"; };
|
|
89
|
+
FCFB253D1EA5562700F59778 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+FFFastImage.h"; sourceTree = "<group>"; };
|
|
90
|
+
FCFB253E1EA5562700F59778 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+FFFastImage.m"; sourceTree = "<group>"; };
|
|
91
|
+
FD751C4D229EB44C002BE1F4 /* libFastImage-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libFastImage-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
92
|
+
/* End PBXFileReference section */
|
|
93
|
+
|
|
94
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
95
|
+
A287971A1DE0C0A60081BDFA /* Frameworks */ = {
|
|
96
|
+
isa = PBXFrameworksBuildPhase;
|
|
97
|
+
buildActionMask = 2147483647;
|
|
98
|
+
files = (
|
|
99
|
+
FCC6D1391EB3912D0065F944 /* libSDWebImage.a in Frameworks */,
|
|
100
|
+
);
|
|
101
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
102
|
+
};
|
|
103
|
+
FD751C47229EB44C002BE1F4 /* Frameworks */ = {
|
|
104
|
+
isa = PBXFrameworksBuildPhase;
|
|
105
|
+
buildActionMask = 2147483647;
|
|
106
|
+
files = (
|
|
107
|
+
FD751C48229EB44C002BE1F4 /* libSDWebImage.a in Frameworks */,
|
|
108
|
+
);
|
|
109
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
110
|
+
};
|
|
111
|
+
/* End PBXFrameworksBuildPhase section */
|
|
112
|
+
|
|
113
|
+
/* Begin PBXGroup section */
|
|
114
|
+
A28797141DE0C0A60081BDFA = {
|
|
115
|
+
isa = PBXGroup;
|
|
116
|
+
children = (
|
|
117
|
+
FCFB25361EA5562700F59778 /* FastImage */,
|
|
118
|
+
A287971E1DE0C0A60081BDFA /* Products */,
|
|
119
|
+
);
|
|
120
|
+
sourceTree = "<group>";
|
|
121
|
+
};
|
|
122
|
+
A287971E1DE0C0A60081BDFA /* Products */ = {
|
|
123
|
+
isa = PBXGroup;
|
|
124
|
+
children = (
|
|
125
|
+
A287971D1DE0C0A60081BDFA /* libFastImage.a */,
|
|
126
|
+
FD751C4D229EB44C002BE1F4 /* libFastImage-tvOS.a */,
|
|
127
|
+
);
|
|
128
|
+
name = Products;
|
|
129
|
+
sourceTree = "<group>";
|
|
130
|
+
};
|
|
131
|
+
FCC6D0C71EB38D2F0065F944 /* Products */ = {
|
|
132
|
+
isa = PBXGroup;
|
|
133
|
+
children = (
|
|
134
|
+
FCC6D0D01EB38D2F0065F944 /* libSDWebImage.a */,
|
|
135
|
+
FCC6D0D41EB38D2F0065F944 /* SDWebImage.framework */,
|
|
136
|
+
3236AC0E226EC00400425AA3 /* SDWebImageMapKit.framework */,
|
|
137
|
+
);
|
|
138
|
+
name = Products;
|
|
139
|
+
sourceTree = "<group>";
|
|
140
|
+
};
|
|
141
|
+
FCFB25361EA5562700F59778 /* FastImage */ = {
|
|
142
|
+
isa = PBXGroup;
|
|
143
|
+
children = (
|
|
144
|
+
FCFB25371EA5562700F59778 /* FFFastImageSource.h */,
|
|
145
|
+
FCFB25381EA5562700F59778 /* FFFastImageSource.m */,
|
|
146
|
+
FCFB25391EA5562700F59778 /* FFFastImageView.h */,
|
|
147
|
+
FCFB253A1EA5562700F59778 /* FFFastImageView.m */,
|
|
148
|
+
FCFB253B1EA5562700F59778 /* FFFastImageViewManager.h */,
|
|
149
|
+
FCFB253C1EA5562700F59778 /* FFFastImageViewManager.m */,
|
|
150
|
+
FCFB253D1EA5562700F59778 /* RCTConvert+FFFastImage.h */,
|
|
151
|
+
FCFB253E1EA5562700F59778 /* RCTConvert+FFFastImage.m */,
|
|
152
|
+
);
|
|
153
|
+
path = FastImage;
|
|
154
|
+
sourceTree = "<group>";
|
|
155
|
+
};
|
|
156
|
+
/* End PBXGroup section */
|
|
157
|
+
|
|
158
|
+
/* Begin PBXNativeTarget section */
|
|
159
|
+
A287971C1DE0C0A60081BDFA /* FastImage */ = {
|
|
160
|
+
isa = PBXNativeTarget;
|
|
161
|
+
buildConfigurationList = A28797261DE0C0A60081BDFA /* Build configuration list for PBXNativeTarget "FastImage" */;
|
|
162
|
+
buildPhases = (
|
|
163
|
+
A28797191DE0C0A60081BDFA /* Sources */,
|
|
164
|
+
A287971A1DE0C0A60081BDFA /* Frameworks */,
|
|
165
|
+
A287971B1DE0C0A60081BDFA /* CopyFiles */,
|
|
166
|
+
);
|
|
167
|
+
buildRules = (
|
|
168
|
+
);
|
|
169
|
+
dependencies = (
|
|
170
|
+
FCC6D1291EB3908E0065F944 /* PBXTargetDependency */,
|
|
171
|
+
);
|
|
172
|
+
name = FastImage;
|
|
173
|
+
productName = FastImage;
|
|
174
|
+
productReference = A287971D1DE0C0A60081BDFA /* libFastImage.a */;
|
|
175
|
+
productType = "com.apple.product-type.library.static";
|
|
176
|
+
};
|
|
177
|
+
FD751C3F229EB44C002BE1F4 /* FastImage-tvOS */ = {
|
|
178
|
+
isa = PBXNativeTarget;
|
|
179
|
+
buildConfigurationList = FD751C4A229EB44C002BE1F4 /* Build configuration list for PBXNativeTarget "FastImage-tvOS" */;
|
|
180
|
+
buildPhases = (
|
|
181
|
+
FD751C42229EB44C002BE1F4 /* Sources */,
|
|
182
|
+
FD751C47229EB44C002BE1F4 /* Frameworks */,
|
|
183
|
+
FD751C49229EB44C002BE1F4 /* CopyFiles */,
|
|
184
|
+
);
|
|
185
|
+
buildRules = (
|
|
186
|
+
);
|
|
187
|
+
dependencies = (
|
|
188
|
+
FD751C40229EB44C002BE1F4 /* PBXTargetDependency */,
|
|
189
|
+
);
|
|
190
|
+
name = "FastImage-tvOS";
|
|
191
|
+
productName = FastImage;
|
|
192
|
+
productReference = FD751C4D229EB44C002BE1F4 /* libFastImage-tvOS.a */;
|
|
193
|
+
productType = "com.apple.product-type.library.static";
|
|
194
|
+
};
|
|
195
|
+
/* End PBXNativeTarget section */
|
|
196
|
+
|
|
197
|
+
/* Begin PBXProject section */
|
|
198
|
+
A28797151DE0C0A60081BDFA /* Project object */ = {
|
|
199
|
+
isa = PBXProject;
|
|
200
|
+
attributes = {
|
|
201
|
+
LastUpgradeCheck = 0810;
|
|
202
|
+
ORGANIZATIONNAME = vovkasm;
|
|
203
|
+
TargetAttributes = {
|
|
204
|
+
A287971C1DE0C0A60081BDFA = {
|
|
205
|
+
CreatedOnToolsVersion = 8.1;
|
|
206
|
+
ProvisioningStyle = Automatic;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
buildConfigurationList = A28797181DE0C0A60081BDFA /* Build configuration list for PBXProject "FastImage" */;
|
|
211
|
+
compatibilityVersion = "Xcode 3.2";
|
|
212
|
+
developmentRegion = English;
|
|
213
|
+
hasScannedForEncodings = 0;
|
|
214
|
+
knownRegions = (
|
|
215
|
+
English,
|
|
216
|
+
en,
|
|
217
|
+
);
|
|
218
|
+
mainGroup = A28797141DE0C0A60081BDFA;
|
|
219
|
+
productRefGroup = A287971E1DE0C0A60081BDFA /* Products */;
|
|
220
|
+
projectDirPath = "";
|
|
221
|
+
projectReferences = (
|
|
222
|
+
{
|
|
223
|
+
ProductGroup = FCC6D0C71EB38D2F0065F944 /* Products */;
|
|
224
|
+
ProjectRef = FCC6D0C61EB38D2F0065F944 /* SDWebImage.xcodeproj */;
|
|
225
|
+
},
|
|
226
|
+
);
|
|
227
|
+
projectRoot = "";
|
|
228
|
+
targets = (
|
|
229
|
+
A287971C1DE0C0A60081BDFA /* FastImage */,
|
|
230
|
+
FD751C3F229EB44C002BE1F4 /* FastImage-tvOS */,
|
|
231
|
+
);
|
|
232
|
+
};
|
|
233
|
+
/* End PBXProject section */
|
|
234
|
+
|
|
235
|
+
/* Begin PBXReferenceProxy section */
|
|
236
|
+
3236AC0E226EC00400425AA3 /* SDWebImageMapKit.framework */ = {
|
|
237
|
+
isa = PBXReferenceProxy;
|
|
238
|
+
fileType = wrapper.framework;
|
|
239
|
+
path = SDWebImageMapKit.framework;
|
|
240
|
+
remoteRef = 3236AC0D226EC00400425AA3 /* PBXContainerItemProxy */;
|
|
241
|
+
sourceTree = BUILT_PRODUCTS_DIR;
|
|
242
|
+
};
|
|
243
|
+
FCC6D0D01EB38D2F0065F944 /* libSDWebImage.a */ = {
|
|
244
|
+
isa = PBXReferenceProxy;
|
|
245
|
+
fileType = archive.ar;
|
|
246
|
+
path = libSDWebImage.a;
|
|
247
|
+
remoteRef = FCC6D0CF1EB38D2F0065F944 /* PBXContainerItemProxy */;
|
|
248
|
+
sourceTree = BUILT_PRODUCTS_DIR;
|
|
249
|
+
};
|
|
250
|
+
FCC6D0D41EB38D2F0065F944 /* SDWebImage.framework */ = {
|
|
251
|
+
isa = PBXReferenceProxy;
|
|
252
|
+
fileType = wrapper.framework;
|
|
253
|
+
path = SDWebImage.framework;
|
|
254
|
+
remoteRef = FCC6D0D31EB38D2F0065F944 /* PBXContainerItemProxy */;
|
|
255
|
+
sourceTree = BUILT_PRODUCTS_DIR;
|
|
256
|
+
};
|
|
257
|
+
/* End PBXReferenceProxy section */
|
|
258
|
+
|
|
259
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
260
|
+
A28797191DE0C0A60081BDFA /* Sources */ = {
|
|
261
|
+
isa = PBXSourcesBuildPhase;
|
|
262
|
+
buildActionMask = 2147483647;
|
|
263
|
+
files = (
|
|
264
|
+
FCFB25411EA5562700F59778 /* FFFastImageViewManager.m in Sources */,
|
|
265
|
+
FCFB25421EA5562700F59778 /* RCTConvert+FFFastImage.m in Sources */,
|
|
266
|
+
FCFB25401EA5562700F59778 /* FFFastImageView.m in Sources */,
|
|
267
|
+
FCFB253F1EA5562700F59778 /* FFFastImageSource.m in Sources */,
|
|
268
|
+
);
|
|
269
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
270
|
+
};
|
|
271
|
+
FD751C42229EB44C002BE1F4 /* Sources */ = {
|
|
272
|
+
isa = PBXSourcesBuildPhase;
|
|
273
|
+
buildActionMask = 2147483647;
|
|
274
|
+
files = (
|
|
275
|
+
FD751C43229EB44C002BE1F4 /* FFFastImageViewManager.m in Sources */,
|
|
276
|
+
FD751C44229EB44C002BE1F4 /* RCTConvert+FFFastImage.m in Sources */,
|
|
277
|
+
FD751C45229EB44C002BE1F4 /* FFFastImageView.m in Sources */,
|
|
278
|
+
FD751C46229EB44C002BE1F4 /* FFFastImageSource.m in Sources */,
|
|
279
|
+
);
|
|
280
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
281
|
+
};
|
|
282
|
+
/* End PBXSourcesBuildPhase section */
|
|
283
|
+
|
|
284
|
+
/* Begin PBXTargetDependency section */
|
|
285
|
+
FCC6D1291EB3908E0065F944 /* PBXTargetDependency */ = {
|
|
286
|
+
isa = PBXTargetDependency;
|
|
287
|
+
name = "SDWebImage iOS static";
|
|
288
|
+
targetProxy = FCC6D1281EB3908E0065F944 /* PBXContainerItemProxy */;
|
|
289
|
+
};
|
|
290
|
+
FD751C40229EB44C002BE1F4 /* PBXTargetDependency */ = {
|
|
291
|
+
isa = PBXTargetDependency;
|
|
292
|
+
name = "SDWebImage iOS static";
|
|
293
|
+
targetProxy = FD751C41229EB44C002BE1F4 /* PBXContainerItemProxy */;
|
|
294
|
+
};
|
|
295
|
+
/* End PBXTargetDependency section */
|
|
296
|
+
|
|
297
|
+
/* Begin XCBuildConfiguration section */
|
|
298
|
+
A28797241DE0C0A60081BDFA /* Debug */ = {
|
|
299
|
+
isa = XCBuildConfiguration;
|
|
300
|
+
buildSettings = {
|
|
301
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
302
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
303
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
304
|
+
CLANG_ENABLE_MODULES = YES;
|
|
305
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
306
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
307
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
308
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
309
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
310
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
311
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
312
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
313
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
314
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
315
|
+
CLANG_WARN_SUSPICIOUS_MOVES = YES;
|
|
316
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
317
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
318
|
+
COPY_PHASE_STRIP = NO;
|
|
319
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
320
|
+
ENABLE_TESTABILITY = YES;
|
|
321
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
322
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
323
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
324
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
325
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
326
|
+
"DEBUG=1",
|
|
327
|
+
"$(inherited)",
|
|
328
|
+
);
|
|
329
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
330
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
331
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
332
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
333
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
334
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
335
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
336
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
337
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
338
|
+
SDKROOT = iphoneos;
|
|
339
|
+
SKIP_INSTALL = YES;
|
|
340
|
+
};
|
|
341
|
+
name = Debug;
|
|
342
|
+
};
|
|
343
|
+
A28797251DE0C0A60081BDFA /* Release */ = {
|
|
344
|
+
isa = XCBuildConfiguration;
|
|
345
|
+
buildSettings = {
|
|
346
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
347
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
348
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
349
|
+
CLANG_ENABLE_MODULES = YES;
|
|
350
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
351
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
352
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
353
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
354
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
355
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
356
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
357
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
358
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
359
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
360
|
+
CLANG_WARN_SUSPICIOUS_MOVES = YES;
|
|
361
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
362
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
363
|
+
COPY_PHASE_STRIP = YES;
|
|
364
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
365
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
366
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
367
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
368
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
369
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
370
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
371
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
372
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
373
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
374
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
375
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
376
|
+
SDKROOT = iphoneos;
|
|
377
|
+
SKIP_INSTALL = YES;
|
|
378
|
+
VALIDATE_PRODUCT = YES;
|
|
379
|
+
};
|
|
380
|
+
name = Release;
|
|
381
|
+
};
|
|
382
|
+
A28797271DE0C0A60081BDFA /* Debug */ = {
|
|
383
|
+
isa = XCBuildConfiguration;
|
|
384
|
+
buildSettings = {
|
|
385
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
386
|
+
HEADER_SEARCH_PATHS = (
|
|
387
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
388
|
+
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
389
|
+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
|
|
390
|
+
);
|
|
391
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
392
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
393
|
+
SKIP_INSTALL = YES;
|
|
394
|
+
};
|
|
395
|
+
name = Debug;
|
|
396
|
+
};
|
|
397
|
+
A28797281DE0C0A60081BDFA /* Release */ = {
|
|
398
|
+
isa = XCBuildConfiguration;
|
|
399
|
+
buildSettings = {
|
|
400
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
401
|
+
HEADER_SEARCH_PATHS = (
|
|
402
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
403
|
+
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
404
|
+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
|
|
405
|
+
);
|
|
406
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
407
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
408
|
+
SKIP_INSTALL = YES;
|
|
409
|
+
};
|
|
410
|
+
name = Release;
|
|
411
|
+
};
|
|
412
|
+
FD751C4B229EB44C002BE1F4 /* Debug */ = {
|
|
413
|
+
isa = XCBuildConfiguration;
|
|
414
|
+
buildSettings = {
|
|
415
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
416
|
+
HEADER_SEARCH_PATHS = (
|
|
417
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
418
|
+
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
419
|
+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
|
|
420
|
+
);
|
|
421
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
422
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
423
|
+
SDKROOT = appletvos;
|
|
424
|
+
SKIP_INSTALL = YES;
|
|
425
|
+
SUPPORTED_PLATFORMS = "appletvsimulator appletvos";
|
|
426
|
+
};
|
|
427
|
+
name = Debug;
|
|
428
|
+
};
|
|
429
|
+
FD751C4C229EB44C002BE1F4 /* Release */ = {
|
|
430
|
+
isa = XCBuildConfiguration;
|
|
431
|
+
buildSettings = {
|
|
432
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
433
|
+
HEADER_SEARCH_PATHS = (
|
|
434
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
435
|
+
"$(SRCROOT)/../../react-native/Libraries/Image",
|
|
436
|
+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
|
|
437
|
+
);
|
|
438
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
439
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
440
|
+
SDKROOT = appletvos;
|
|
441
|
+
SKIP_INSTALL = YES;
|
|
442
|
+
SUPPORTED_PLATFORMS = "appletvsimulator appletvos";
|
|
443
|
+
};
|
|
444
|
+
name = Release;
|
|
445
|
+
};
|
|
446
|
+
/* End XCBuildConfiguration section */
|
|
447
|
+
|
|
448
|
+
/* Begin XCConfigurationList section */
|
|
449
|
+
A28797181DE0C0A60081BDFA /* Build configuration list for PBXProject "FastImage" */ = {
|
|
450
|
+
isa = XCConfigurationList;
|
|
451
|
+
buildConfigurations = (
|
|
452
|
+
A28797241DE0C0A60081BDFA /* Debug */,
|
|
453
|
+
A28797251DE0C0A60081BDFA /* Release */,
|
|
454
|
+
);
|
|
455
|
+
defaultConfigurationIsVisible = 0;
|
|
456
|
+
defaultConfigurationName = Release;
|
|
457
|
+
};
|
|
458
|
+
A28797261DE0C0A60081BDFA /* Build configuration list for PBXNativeTarget "FastImage" */ = {
|
|
459
|
+
isa = XCConfigurationList;
|
|
460
|
+
buildConfigurations = (
|
|
461
|
+
A28797271DE0C0A60081BDFA /* Debug */,
|
|
462
|
+
A28797281DE0C0A60081BDFA /* Release */,
|
|
463
|
+
);
|
|
464
|
+
defaultConfigurationIsVisible = 0;
|
|
465
|
+
defaultConfigurationName = Release;
|
|
466
|
+
};
|
|
467
|
+
FD751C4A229EB44C002BE1F4 /* Build configuration list for PBXNativeTarget "FastImage-tvOS" */ = {
|
|
468
|
+
isa = XCConfigurationList;
|
|
469
|
+
buildConfigurations = (
|
|
470
|
+
FD751C4B229EB44C002BE1F4 /* Debug */,
|
|
471
|
+
FD751C4C229EB44C002BE1F4 /* Release */,
|
|
472
|
+
);
|
|
473
|
+
defaultConfigurationIsVisible = 0;
|
|
474
|
+
defaultConfigurationName = Release;
|
|
475
|
+
};
|
|
476
|
+
/* End XCConfigurationList section */
|
|
477
|
+
};
|
|
478
|
+
rootObject = A28797151DE0C0A60081BDFA /* Project object */;
|
|
479
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1020"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "FD751C3F229EB44C002BE1F4"
|
|
18
|
+
BuildableName = "libFastImage-tvOS.a"
|
|
19
|
+
BlueprintName = "FastImage-tvOS"
|
|
20
|
+
ReferencedContainer = "container:FastImage.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
</Testables>
|
|
32
|
+
<AdditionalOptions>
|
|
33
|
+
</AdditionalOptions>
|
|
34
|
+
</TestAction>
|
|
35
|
+
<LaunchAction
|
|
36
|
+
buildConfiguration = "Debug"
|
|
37
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
+
launchStyle = "0"
|
|
40
|
+
useCustomWorkingDirectory = "NO"
|
|
41
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
+
debugDocumentVersioning = "YES"
|
|
43
|
+
debugServiceExtension = "internal"
|
|
44
|
+
allowLocationSimulation = "YES">
|
|
45
|
+
<MacroExpansion>
|
|
46
|
+
<BuildableReference
|
|
47
|
+
BuildableIdentifier = "primary"
|
|
48
|
+
BlueprintIdentifier = "FD751C3F229EB44C002BE1F4"
|
|
49
|
+
BuildableName = "libFastImage-tvOS.a"
|
|
50
|
+
BlueprintName = "FastImage-tvOS"
|
|
51
|
+
ReferencedContainer = "container:FastImage.xcodeproj">
|
|
52
|
+
</BuildableReference>
|
|
53
|
+
</MacroExpansion>
|
|
54
|
+
<AdditionalOptions>
|
|
55
|
+
</AdditionalOptions>
|
|
56
|
+
</LaunchAction>
|
|
57
|
+
<ProfileAction
|
|
58
|
+
buildConfiguration = "Release"
|
|
59
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
+
savedToolIdentifier = ""
|
|
61
|
+
useCustomWorkingDirectory = "NO"
|
|
62
|
+
debugDocumentVersioning = "YES">
|
|
63
|
+
<MacroExpansion>
|
|
64
|
+
<BuildableReference
|
|
65
|
+
BuildableIdentifier = "primary"
|
|
66
|
+
BlueprintIdentifier = "FD751C3F229EB44C002BE1F4"
|
|
67
|
+
BuildableName = "libFastImage-tvOS.a"
|
|
68
|
+
BlueprintName = "FastImage-tvOS"
|
|
69
|
+
ReferencedContainer = "container:FastImage.xcodeproj">
|
|
70
|
+
</BuildableReference>
|
|
71
|
+
</MacroExpansion>
|
|
72
|
+
</ProfileAction>
|
|
73
|
+
<AnalyzeAction
|
|
74
|
+
buildConfiguration = "Debug">
|
|
75
|
+
</AnalyzeAction>
|
|
76
|
+
<ArchiveAction
|
|
77
|
+
buildConfiguration = "Release"
|
|
78
|
+
revealArchiveInOrganizer = "YES">
|
|
79
|
+
</ArchiveAction>
|
|
80
|
+
</Scheme>
|