Skip to content

Commit

Permalink
Change podspec deployment_target to 8.0
Browse files Browse the repository at this point in the history
To make xcode warning of "The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to 13.4.99." go away. Should not be breaking unless on iOS < 8.0 (highly unlikely).
  • Loading branch information
xiqi committed Apr 10, 2020
1 parent 66db15c commit 76264b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RNLiveAudioStream.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/xiqi/react-native-live-audio-stream.git' }

s.requires_arc = true
s.platform = :ios, '7.0'
s.ios.deployment_target = '8.0'

s.preserve_paths = 'README.md', 'package.json', 'index.js'
s.source_files = 'iOS/*.{h,m}'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-live-audio-stream",
"version": "1.0.1",
"version": "1.0.2",
"description": "Get live audio stream data for React Native",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 76264b8

Please sign in to comment.