-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop'
- Loading branch information
Showing
80 changed files
with
2,967 additions
and
1,636 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 |
---|---|---|
|
@@ -33,3 +33,10 @@ Pods | |
*/*/bin/ | ||
*/*/gen/ | ||
*/*/build/ | ||
|
||
# Web | ||
.idea | ||
|
||
# Development | ||
node_modules | ||
bower_components |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Hybridge" | ||
s.version = "1.2.0" | ||
s.summary = "Yet another javascript / mobile native simple bridge for hybrid apps, back and forth..." | ||
|
||
s.description = <<-DESC | ||
When developing hybrid apps surely you'll need to access different native features and resources. | ||
Out there are plenty of bridge solutions. Hybridge tries to make easy communication and data | ||
exchanging between native (iOS & Android) and Javascript worlds, avoiding too much overhead. | ||
DESC | ||
s.homepage = "https://github.com/telefonicaid/tdigital-hybridge" | ||
|
||
s.license = { :type => "Affero GNU GPL v3", :file => "LICENSE.txt" } | ||
|
||
s.authors = { 'David Garcia' => 'davidgarsan@gmail.com', 'Guillermo Gonzalez' => 'gonzalezreal@icloud.com' } | ||
|
||
s.platform = :ios | ||
s.ios.deployment_target = "6.0" | ||
s.source = { :git => "https://github.com/telefonicaid/tdigital-hybridge.git", :tag => "1.2.0" } | ||
|
||
s.source_files = "ios/Hybridge/Hybridge/*.{h,m}" | ||
s.private_header_files = "ios/Hybridge/Hybridge/HYBURLProtocol.h", "ios/Hybridge/Hybridge/NSString+Hybridge.h" | ||
|
||
s.frameworks = "Foundation", "UIKit" | ||
s.requires_arc = true | ||
end |
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,9 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.pdi.hybridge" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
android:versionCode="120" | ||
android:versionName="1.2.0" > | ||
|
||
<uses-sdk android:minSdkVersion="12" /> | ||
|
||
</manifest> | ||
</manifest> |
Oops, something went wrong.