Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from hudl/TCIL-CWT-3141
Browse files Browse the repository at this point in the history
TCIL-CWT-3141: Support library auto linking in React Native >= 0.60
  • Loading branch information
AdamEsgie authored Jan 23, 2020
2 parents 2be950f + 653808f commit dfae755
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
21 changes: 21 additions & 0 deletions IOTWifi.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
require 'json'

package = JSON.parse(File.read('package.json'))

Pod::Spec.new do |s|
s.name = 'IOTWifi'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/tadasr/react-native-iot-wifi.git' }
s.platform = :ios, '10.3'
s.ios.deployment_target = '10.3'
s.source_files = 'ios/**/*.{h,m}'
s.exclude_files = 'android/**/*'
s.exclude_files = 'example/**/*'
s.dependency 'React'
end

6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-iot-wifi",
"version": "1.0.0",
"version": "1.1.0",
"description": "Connect to WiFi with React Native on Android and iOS.",
"main": "index.js",
"types": "index.d.ts",
Expand All @@ -23,9 +23,7 @@
"wifi",
"iot"
],
"authors": [
"tadasr"
],
"author": "tadasr",
"license": "MIT",
"bugs": {
"url": "https://github.com/tadasr/react-native-iot-wifi/issues"
Expand Down

0 comments on commit dfae755

Please sign in to comment.