Skip to content

Commit

Permalink
Merge pull request #10 from sammacbeth/podspec-fix
Browse files Browse the repository at this point in the history
Fix invalid Podspec
  • Loading branch information
craftzdog authored Aug 3, 2017
2 parents 588c424 + 9eb74a2 commit 32db061
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions ios/RNSqlite2.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,17 @@ Pod::Spec.new do |s|
s.description = <<-DESC
RNSqlite2
DESC
s.homepage = ""
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "author" => "[email protected]" }
s.homepage = "https://github.com/craftzdog/react-native-sqlite-2"
s.license = "Apache 2.0"
s.author = { "author" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/author/RNSqlite2.git", :tag => "master" }
s.source_files = "RNSqlite2/**/*.{h,m}"
s.source = { :git => "https://github.com/craftzdog/RNSqlite2.git", :tag => "master" }
s.source_files = "**/*.{h,m}"
s.requires_arc = true

s.library = "sqlite3"

s.dependency "React"
#s.dependency "others"

end


0 comments on commit 32db061

Please sign in to comment.