-
Notifications
You must be signed in to change notification settings - Fork 49
/
edge-core-js.podspec
38 lines (33 loc) · 1.1 KB
/
edge-core-js.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = package['name']
s.version = package['version']
s.summary = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.authors = package['author']
s.platform = :ios, "9.0"
s.requires_arc = true
s.source = {
:git => "https://github.com/EdgeApp/edge-core-js.git",
:tag => "v#{s.version}"
}
s.source_files =
"android/src/main/cpp/scrypt/crypto_scrypt.c",
"android/src/main/cpp/scrypt/crypto_scrypt.h",
"android/src/main/cpp/scrypt/sha256.c",
"android/src/main/cpp/scrypt/sha256.h",
"android/src/main/cpp/scrypt/sysendian.h",
"ios/Disklet.swift",
"ios/edge-core-js-Bridging-Header.h",
"ios/EdgeCoreWebView.swift",
"ios/EdgeCoreWebViewManager.m",
"ios/EdgeCoreWebViewManager.swift",
"ios/EdgeNative.swift",
"ios/PendingCall.swift"
s.resource_bundles = {
"edge-core-js" => "android/src/main/assets/edge-core-js/edge-core.js"
}
s.dependency "React-Core"
end