forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "chore!: Remove podspec support from framework tag (apache#1340)"
This reverts commit 76e33d9.
- Loading branch information
Showing
7 changed files
with
158 additions
and
5 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
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
14 changes: 14 additions & 0 deletions
14
tests/spec/unit/fixtures/sample-cocoapod-plugin-no-spec-overlapping-dependency/plugin.xml
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,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
id="sample-cocoapod-plugin-no-spec-overlapping-dependency" | ||
version="1.1.3-dev"> | ||
|
||
<name>Test Plugin</name> | ||
|
||
<asset src="www/test.js" target="test.js" /> | ||
<platform name="ios"> | ||
<framework src="AFNetworking" weak="false" type="podspec"/> | ||
</platform> | ||
</plugin> | ||
|
Empty file.
14 changes: 14 additions & 0 deletions
14
tests/spec/unit/fixtures/sample-cordova-plugin-with-spec/plugin.xml
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,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
id="sample-cordova-plugin-with-spec" | ||
version="1.1.3-dev"> | ||
|
||
<name>Test Plugin</name> | ||
|
||
<asset src="www/test.js" target="test.js" /> | ||
<platform name="ios"> | ||
<framework src="AFNetworking" spec="~> 2.0" weak="false" type="podspec"/> | ||
</platform> | ||
</plugin> | ||
|
Empty file.