Skip to content

Commit 32db061

Browse files
authored
Merge pull request #10 from sammacbeth/podspec-fix
Fix invalid Podspec
2 parents 588c424 + 9eb74a2 commit 32db061

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

ios/RNSqlite2.podspec

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ Pod::Spec.new do |s|
66
s.description = <<-DESC
77
RNSqlite2
88
DESC
9-
s.homepage = ""
10-
s.license = "MIT"
11-
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
12-
s.author = { "author" => "[email protected]" }
9+
s.homepage = "https://github.com/craftzdog/react-native-sqlite-2"
10+
s.license = "Apache 2.0"
11+
s.author = { "author" => "[email protected]" }
1312
s.platform = :ios, "7.0"
14-
s.source = { :git => "https://github.com/author/RNSqlite2.git", :tag => "master" }
15-
s.source_files = "RNSqlite2/**/*.{h,m}"
13+
s.source = { :git => "https://github.com/craftzdog/RNSqlite2.git", :tag => "master" }
14+
s.source_files = "**/*.{h,m}"
1615
s.requires_arc = true
17-
16+
s.library = "sqlite3"
1817

1918
s.dependency "React"
2019
#s.dependency "others"
2120

2221
end
2322

24-

0 commit comments

Comments
 (0)