-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cdelouvencourt
committed
Feb 5, 2019
1 parent
5c01929
commit b53300c
Showing
3 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |