Config.xcconfig 1.2 KB

1234567891011121314151617181920212223242526272829
  1. // Some of the items can be modified to match the user's preference
  2. APP_DISPLAY_NAME = Trio
  3. APP_ICON = trioBlack
  4. APP_URL_SCHEME = Trio
  5. // DEVELOPER_TEAM will be set to your Apple Developer ID - typically using ConfigOverride.xcconfig
  6. DEVELOPER_TEAM = ##TEAM_ID##
  7. // Typically this is not modified unless you want to create a separate (unique) app using your ID
  8. // It must include $(DEVELOPMENT_TEAM)
  9. // For example: myOwnApp.$(DEVELOPMENT_TEAM).trio
  10. BUNDLE_IDENTIFIER = org.nightscout.$(DEVELOPMENT_TEAM).trio
  11. // Danger zone - do not modify these unless you know what you are doing
  12. // The TRIO_APP_GROUP_ID should not be modified - it is required to have this exact format
  13. // to build with GitHub actions and to work with xDrip4iOS
  14. TRIO_APP_GROUP_ID = group.org.nightscout.$(DEVELOPMENT_TEAM).trio.trio-app-group
  15. // The developers set the version numbers, please leave them alone
  16. APP_VERSION = 0.6.0
  17. APP_DEV_VERSION = 0.6.0.71
  18. APP_BUILD_NUMBER = 1
  19. COPYRIGHT_NOTICE =
  20. // Optional overrides - these can be used to insert your TEAMID into the DEVELOPER_TEAM field
  21. #include? "../../ConfigOverride.xcconfig"
  22. #include? "../ConfigOverride.xcconfig"
  23. #include? "ConfigOverride.xcconfig"