Skip to content

Junepark678/more capabilities #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ jobs:
--report html --output build/reports/html

- name: Upload Test Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: Test Results
path: build/reports

- name: Upload Coverage Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: Coverage Results
path: build/coverage

- name: Upload Logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: Logs
Expand Down
1 change: 1 addition & 0 deletions Sources/CAltSign/Capabilities/ALTCapabilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ extern ALTEntitlement const ALTEntitlementAppGroups;
extern ALTEntitlement const ALTEntitlementGetTaskAllow;
extern ALTEntitlement const ALTEntitlementTeamIdentifier;
extern ALTEntitlement const ALTEntitlementInterAppAudio;
extern ALTEntitlement const ALTEntitlementIncreasedDebuggingMemoryLimit;

// Features
typedef NSString *ALTFeature NS_TYPED_EXTENSIBLE_ENUM;
Expand Down
1 change: 1 addition & 0 deletions Sources/CAltSign/Capabilities/ALTCapabilities.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
ALTEntitlement const ALTEntitlementGetTaskAllow = @"get-task-allow";
ALTEntitlement const ALTEntitlementTeamIdentifier = @"com.apple.developer.team-identifier";
ALTEntitlement const ALTEntitlementInterAppAudio = @"inter-app-audio";
ALTEntitlement const ALTEntitlementIncreasedDebuggingMemoryLimit = @"com.apple.developer.kernel.increased-debugging-memory-limit";

// Features
ALTFeature const ALTFeatureGameCenter = @"gameCenter";
Expand Down