Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## macOS

.DS_Store

## Xcode

### Build generated
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

* Set `APPLICATION_EXTENSION_API_ONLY` build setting on built frameworks.
[@AliSoftware](https://github.com/AliSoftware)
[#98](https://github.com/AliSoftware/Reusable/pull/98)
[@nahung89](https://github.com/nahung89)
[#88](https://github.com/AliSoftware/Reusable/pull/88)

* Update tools used by the project (Xcode, CocoaPods, CI, Carthage).
Also SPM builds are now tested by CI.
[@AliSoftware](https://github.com/AliSoftware)
Expand Down
8 changes: 8 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ target 'ReusableDemo tvOS' do
platform :tvos, '9.0'
pod 'Reusable', :path => '../'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
end
end
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Reusable: 8f13830abd1a7a90c0177a0b82066365fdd59485

PODFILE CHECKSUM: 2e4cfd412f90711e15fcfa281c33e3b31f1e90b8
PODFILE CHECKSUM: 0bd0b2356bb3b5810dfd8bef84ec4a18a8f93156

COCOAPODS: 1.8.4
2 changes: 1 addition & 1 deletion Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@
"scale" : "2x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Logo.png",
"scale" : "1x"
}
],
Expand Down