Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Jeehut/Permission
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: release
Choose a base ref
...
head repository: gracenoah/Permission
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 12 commits
  • 43 files changed
  • 2 contributors

Commits on Sep 17, 2018

  1. Added missing case in switch statement caused by addition to UNAuthor…

    …izationStatus in iOS 12
    gracenoah committed Sep 17, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    aaronchongth Aaron Chong
    Copy the full SHA
    517d429 View commit details

Commits on Jan 22, 2019

  1. Copy the full SHA
    12d9925 View commit details

Commits on Nov 27, 2019

  1. Copy the full SHA
    0a82a5f View commit details
  2. Copy the full SHA
    72c841b View commit details

Commits on Sep 21, 2020

  1. Copy the full SHA
    a4ea20c View commit details

Commits on Dec 21, 2020

  1. Upgrade to Swift 5.0

    Revert "Upgrade to Swift 5.0"
    
    This reverts commit e688ad1.
    
    Fix missing case
    
    Bump to Swift 5.0
    
    Upgrade to Swift 5
    gracenoah committed Dec 21, 2020
    Copy the full SHA
    ffc825a View commit details

Commits on Apr 28, 2021

  1. Copy the full SHA
    f965f4e View commit details

Commits on Jun 28, 2021

  1. Copy the full SHA
    fd9ff00 View commit details

Commits on Jun 3, 2022

  1. Copy the full SHA
    c563d0b View commit details

Commits on Jun 13, 2022

  1. Update Package.swift

    gracenoah authored Jun 13, 2022
    Copy the full SHA
    e4978c6 View commit details

Commits on Jan 28, 2025

  1. Copy the full SHA
    31af16e View commit details
  2. Merge pull request #1 from guilherme-anchorage/release

    Removing calling location services enabled
    gracenoah authored Jan 28, 2025
    Copy the full SHA
    0ac882b View commit details
Showing with 1,060 additions and 187 deletions.
  1. +28 −0 .gitignore
  2. +7 −0 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
  3. +1 −1 Dschee-Permission.podspec
  4. +383 −0 Example/ExampleApp/ExampleApp.xcodeproj/project.pbxproj
  5. +7 −0 Example/ExampleApp/ExampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  6. +8 −0 Example/ExampleApp/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  7. +78 −0 Example/ExampleApp/ExampleApp.xcodeproj/xcshareddata/xcschemes/ExampleApp.xcscheme
  8. +30 −0 Example/ExampleApp/ExampleApp/AppDelegate.swift
  9. +11 −0 Example/ExampleApp/ExampleApp/Assets.xcassets/AccentColor.colorset/Contents.json
  10. +93 −0 Example/ExampleApp/ExampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  11. +6 −0 Example/ExampleApp/ExampleApp/Assets.xcassets/Contents.json
  12. +25 −0 Example/ExampleApp/ExampleApp/Base.lproj/LaunchScreen.storyboard
  13. +24 −0 Example/ExampleApp/ExampleApp/Base.lproj/Main.storyboard
  14. +27 −0 Example/ExampleApp/ExampleApp/Info.plist
  15. +47 −0 Example/ExampleApp/ExampleApp/SceneDelegate.swift
  16. +34 −0 Example/ExampleApp/ExampleApp/ViewController.swift
  17. +37 −0 Package.swift
  18. +21 −10 Permission.xcodeproj/project.pbxproj
  19. +10 −16 Permission.xcodeproj/xcshareddata/xcschemes/Permission.xcscheme
  20. +1 −7 Permission.xcodeproj/xcshareddata/xcschemes/PermissionTests.xcscheme
  21. +29 −21 Source/Permission.swift
  22. +7 −4 Source/PermissionAlert.swift
  23. +35 −32 Source/PermissionButton.swift
  24. +2 −2 Source/PermissionSet.swift
  25. +5 −2 Source/PermissionType.swift
  26. +3 −0 Source/PermissionTypes/AddressBook.swift
  27. +48 −16 Source/PermissionTypes/Bluetooth.swift
  28. +1 −0 Source/PermissionTypes/Camera.swift
  29. +1 −0 Source/PermissionTypes/Contacts.swift
  30. +1 −0 Source/PermissionTypes/Events.swift
  31. +1 −0 Source/PermissionTypes/LocationAlways.swift
  32. +7 −2 Source/PermissionTypes/LocationWhenInUse.swift
  33. +1 −0 Source/PermissionTypes/MediaLibrary.swift
  34. +4 −4 Source/PermissionTypes/Microphone.swift
  35. +12 −31 Source/PermissionTypes/Motion.swift
  36. +8 −5 Source/PermissionTypes/Notifications.swift
  37. +2 −1 Source/PermissionTypes/Photos.swift
  38. +1 −0 Source/PermissionTypes/Reminders.swift
  39. +1 −0 Source/PermissionTypes/Siri.swift
  40. +1 −0 Source/PermissionTypes/SpeechRecognizer.swift
  41. +8 −0 Source/PermissionTypes/UserNotifications.swift
  42. +0 −26 Source/Supporting Files/Info.plist
  43. +4 −7 Source/Supporting Files/Utilities.swift
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# macOS
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore,
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

2 changes: 1 addition & 1 deletion Dschee-Permission.podspec
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|

s.weak_framework = 'Speech'

s.ios.deployment_target = "8.0"
s.ios.deployment_target = "11.0"

s.requires_arc = true

Loading