Skip to content

Commit 400b6d9

Browse files
committed
[IOS] Fix remove'InstantiateViewControllerError' class ref from plugin.xml
1 parent 2727f23 commit 400b6d9

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
// See http://go.microsoft.com/fwlink/?LinkId=827846
33
// for the documentation about the extensions.json format
44
"recommendations": [
5-
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
6-
"vsmobile.cordova-tools"
7-
5+
"vsmobile.cordova-tools",
6+
"agenric.cocoapods-snippets"
87
]
98
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Make sure that `config.xml` file contains the `<feature>` tag below:
4141

4242
```ruby
4343
# Objective-C version (Default)
44-
pod 'cordova-plugin-nativeview', '~> 0.0.2'
44+
pod 'cordova-plugin-nativeview', '~> 0.0.8'
4545

4646
# Swift version (work in progress)
4747
pod 'cordova-plugin-nativeview', :git => 'https://github.com/mfdeveloper/cordova-plugin-nativeview.git', :branch => 'swift'
@@ -60,7 +60,7 @@ allprojects {
6060
}
6161
}
6262
63-
implementation ('com.github.mfdeveloper:cordova-plugin-nativeview:0.0.5')
63+
implementation ('com.github.mfdeveloper:cordova-plugin-nativeview:0.0.8')
6464
```
6565
> This dependency is added using [jitpack](https://jitpack.io)
6666

cordova-plugin-nativeview.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

1818
s.name = "cordova-plugin-nativeview"
19-
s.version = "0.0.6"
19+
s.version = "0.0.8"
2020
s.summary = "Start or Back to a native screen/page"
2121

2222
# This description is used to generate tags and improve search results.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-nativeview",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"types": "./types/index.d.ts",
55
"description": "Start or Back to a native screen/page",
66
"author": {

plugin.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
44
id="cordova-plugin-nativeview"
5-
version="0.0.4">
5+
version="0.0.8">
66
<name>Cordova NativeView Plugin</name>
77
<description>
88
Start or Back to a UIViewController(ios)/Activity(Android)
@@ -47,7 +47,5 @@
4747

4848
<header-file src="src/ios/CDVNativeView.h" />
4949
<source-file src="src/ios/CDVNativeView.m" />
50-
<header-file src="src/ios/InstantiateViewControllerError.h" />
51-
<source-file src="src/ios/InstantiateViewControllerError.m" />
5250
</platform>
5351
</plugin>

0 commit comments

Comments
 (0)