forked from react-native-share/react-native-share
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNShare.podspec
More file actions
Latest commit
20 lines (15 loc) · 641 Bytes
/
Copy pathRNShare.podspec
File metadata and controls
20 lines (15 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require"json"
package=JSON.parse(File.read(File.join(__dir__,"package.json")))
Pod::Spec.newdo |s|
s.name="RNShare"
s.version=package["version"]
s.summary=package["description"]
s.homepage=package["homepage"]
s.license=package["license"]
s.author={package["author"]["name"]=>package["author"]["email"]}
s.platform=:ios,"8.0"
s.source={:git=>"https://github.com/react-native-community/react-native-share.git",:tag=>"v#{s.version}"}
s.source_files="ios/**/*.{h,m}"
s.dependency"React-Core"
s.ios.weak_framework='LinkPresentation'
end