-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: iOS apps installing Wendy via cocoapods can install and compile…
… successfully To verify that Wendy can install and compile successfully using cocoapods, compile an example iOS app. commit-id:89139893
- Loading branch information
1 parent
72cbebc
commit ce1e3f5
Showing
7 changed files
with
71 additions
and
17 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 +1,2 @@ | ||
*.xcodeproj/ | ||
*.xcodeproj/ | ||
*.xcworkspace/ |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
target :App do | ||
use_frameworks! | ||
|
||
pod 'Wendy', :git => 'https://github.com/levibostian/Wendy-iOS.git', :branch => 'latest' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
version: 3 | ||
|
||
includes: | ||
app: ../ |
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,11 @@ | ||
include: | ||
- project.yml | ||
|
||
packages: | ||
Wendy: | ||
url: https://github.com/levibostian/Wendy-iOS.git | ||
branch: latest # To verify that the latest changes are always compilable. Dont lock to a specific version. | ||
targets: | ||
App: | ||
dependencies: | ||
- package: Wendy |
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,18 +1,12 @@ | ||
name: App | ||
options: | ||
bundleIdPrefix: earth.levi.wendy | ||
packages: | ||
Wendy: | ||
url: https://github.com/levibostian/Wendy-iOS.git | ||
branch: latest # To verify that the latest changes are always compilable. Dont lock to a specific version. | ||
targets: | ||
App: | ||
type: application | ||
platform: iOS | ||
deploymentTarget: "17.0" | ||
sources: Source | ||
dependencies: | ||
- package: Wendy | ||
settings: | ||
GENERATE_INFOPLIST_FILE: YES | ||
CODE_SIGNING_ALLOWED: NO |