Skip to content

Commit

Permalink
update podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
cdelouvencourt committed Feb 5, 2019
1 parent 5c01929 commit b53300c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
node_modules/
npm-debug.log
yarn-error.log
package-lock.json


# Xcode
Expand All @@ -27,9 +26,9 @@ xcuserdata
*.moved-aside
DerivedData
*.hmap
*.ip
*.ipa
*.xcuserstate
Podfile.lock
project.xcworkspace


# Android/IntelliJ
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="app.nocturne.libs.drift">
package="com.reactlibrary">

</manifest>

20 changes: 10 additions & 10 deletions ios/RNDrift.podspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
require "json"

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "RNDrift"
s.version = "1.0.5"
s.version = package["version"]
s.summary = "RNDrift"
s.description = <<-DESC
A React Native wrapper for Drift.com platform 🔗
A simple React Native wrapper for Drift.com platform
DESC
s.homepage = "https://github.com/nocturneio/react-native-drift"
s.homepage = ""
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
# s.license = { :type => "MIT", :file => "LICENCE.md" }
s.author = { "author" => "[email protected]" }
s.platform = :ios, "7.0"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/nocturneio/react-native-drift", :tag => "master" }
s.source_files = "RNDrift/**/*.{h,m}"
s.requires_arc = true


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

end


s.dependency "Drift" '~> 2.2.7'
end

0 comments on commit b53300c

Please sign in to comment.