diff --git a/package.json b/package.json index 8bd6663150265c817b784e6f2f8e5ce9997a503d..19d0e0fecf9ec7cc674f1db4c7516c449a7aaba3 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,8 @@ }, "harmony": { "alias": "react-native-background-timer" + }, + "publishConfig": { + "access": "public" } - } diff --git a/react-native-background-timer.podspec b/react-native-background-timer.podspec deleted file mode 100644 index 5c3c50f592a1e27c8ef57938a39b31b462e5c1b0..0000000000000000000000000000000000000000 --- a/react-native-background-timer.podspec +++ /dev/null @@ -1,24 +0,0 @@ -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['repository']['url'] - s.license = package['license'] - s.author = package['author'] - s.source = { :git => s.homepage, :tag => 'v#{s.version}' } - - s.requires_arc = true - s.ios.deployment_target = '8.0' - s.tvos.deployment_target = '9.0' - - s.preserve_paths = 'README.md', 'package.json', 'index.js' - s.source_files = 'ios/*.{h,m}' - - s.dependency 'React-Core' - -end