This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update rn-indy-sdk references (#14)
Signed-off-by: Timo Glastra <[email protected]>
- Loading branch information
1 parent
4beab7b
commit 7dd05da
Showing
4 changed files
with
13 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ buck-out/ | |
*.keystore | ||
|
||
# NPM package | ||
rn-indy-sdk-*.tgz | ||
indy-sdk-react-native-*.tgz | ||
|
||
# Build output | ||
lib | ||
|
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,4 +1,4 @@ | ||
android/.idea | ||
android/build | ||
rn-indy-sdk-1.0.0.tgz | ||
indy-sdk-react-native-1.0.0.tgz | ||
/src/ |
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 |
---|---|---|
|
@@ -18,18 +18,18 @@ require "json" | |
package = JSON.parse(File.read(File.join(__dir__, "package.json"))) | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "rn-indy-sdk" | ||
s.name = "indy-sdk-react-native" | ||
s.version = package["version"] | ||
s.summary = package["description"] | ||
s.description = <<-DESC | ||
rn-indy-sdk | ||
indy-sdk-react-native | ||
DESC | ||
s.homepage = "https://github.com/AbsaOSS/rn-indy-sdk" | ||
s.homepage = "https://github.com/hyperledger/indy-sdk-react-native" | ||
s.license = "Apache-2.0" | ||
# s.license = { :type => "Apache-2.0", :file => "LICENSE.md" } | ||
s.authors = { "Your Name" => "[email protected]" } | ||
s.platforms = { :ios => "10.0" } | ||
s.source = { :git => "https://github.com/AbsaOSS/rn-indy-sdk.git", :tag => "#{s.version}" } | ||
s.source = { :git => "https://github.com/hyperledger/indy-sdk-react-native.git", :tag => "#{s.version}" } | ||
|
||
s.source_files = "ios/**/*.{h,m,swift}" | ||
s.requires_arc = true | ||
|