diff --git a/docs/Guide-Installation-Setup-Advanced-template.md b/docs/Guide-Installation-Setup-Advanced-template.md
index 8b2f59b384..d17ebc2d03 100644
--- a/docs/Guide-Installation-Setup-Advanced-template.md
+++ b/docs/Guide-Installation-Setup-Advanced-template.md
@@ -70,6 +70,8 @@ If you need support for iOS 3.x, please check out [HockeyKit](http://support.hoc
14. Create a new `Project.xcconfig` file, if you don't already have one (You can give it any name)
+ **Note:** You can also add the required frameworks manually to your targets `Build Phases` an continue with step `17.` instead.
+
a. Select your project.
b. Select the tab `Info`.
@@ -140,7 +142,7 @@ If you only want crash reporting, you can skip this step. If you want to use Hoc
return nil;
}
-The method only returns the UDID when the build is not targeted to the App Sore. This assumes that a preprocessor macro name CONFIGURATION_AppStore exists and is set for App Store builds. The macros are already defined in `HockeySDK.xcconfig`.
+The method only returns the UDID when the build is not targeted to the App Sore. This assumes that a preprocessor macro name CONFIGURATION_AppStore exists and is set for App Store builds. The macros are already defined in `HockeySDK.xcconfig` or can be set manually by setting `GCC_PREPROCESSOR_DEFINITIONS` in your build configurations to `CONFIGURATION_$(CONFIGURATION)`.
## Mac Desktop Uploader
diff --git a/docs/Guide-Installation-Setup-template.md b/docs/Guide-Installation-Setup-template.md
index 2e7c19c78a..6671015f5d 100644
--- a/docs/Guide-Installation-Setup-template.md
+++ b/docs/Guide-Installation-Setup-template.md
@@ -53,6 +53,8 @@ If you need support for iOS 3.x, please check out [HockeyKit](http://support.hoc
8. Select `HockeySDK.xcconfig` for all your configurations (if you don't already use a `.xcconfig` file)
+
+ **Note:** You can also add the required frameworks manually to your targets `Build Phases` an continue with step `10.` instead.
9. If you are already using a `.xcconfig` file, simply add the following line to it
@@ -112,7 +114,7 @@ If you only want crash reporting, you can skip this step. If you want to use Hoc
return nil;
}
-The method only returns the UDID when the build is not targeted to the App Sore. This assumes that a preprocessor macro name CONFIGURATION_AppStore exists and is set for App Store builds. The macros are already defined in `HockeySDK.xcconfig`.
+The method only returns the UDID when the build is not targeted to the App Sore. This assumes that a preprocessor macro name CONFIGURATION_AppStore exists and is set for App Store builds. The macros are already defined in `HockeySDK.xcconfig` or can be set manually by setting `GCC_PREPROCESSOR_DEFINITIONS` in your build configurations to `CONFIGURATION_$(CONFIGURATION)`.
## Mac Desktop Uploader