google client ID for iOS project

Multi tool use
Multi tool use








up vote
1
down vote

favorite












I am building an iOS with AWS integrated. I have enabled Facebook & Google Sign in.



this is the error I am getting at run time:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Google Client ID is not set correctly in Info.plist or **awsconfiguration.json**. You need to set it before using AWSGoogleSignInProvider.



it seems straightforward, although I have not been able to fix the info.plist as required.



in the console, Google Sign in, I have added the google client id.



enter image description here



  • in my info.plist, I have updated as follow, as per the AWS docs : User Sign-in (AWS developer guide)

this is my info.plist



<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
</array>
<!-- facebook sign in -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>FacebookAppID</key>
<string>158953918243134</string>
<key>FacebookDisplayName</key>
<string>AWSDemoApp</string>
<!-- google sign in -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
</array>
</dict>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>


  • I also have a GoogleInfo.plist in my project (with the client ID) :

this is my GoogleInfo.plist



<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
</array>
<!-- facebook sign in -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>FacebookAppID</key>
<string>158953918243134</string>
<key>FacebookDisplayName</key>
<string>AWSDemoApp</string>
<!-- google sign in -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
</array>
</dict>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>









share|improve this question

























    up vote
    1
    down vote

    favorite












    I am building an iOS with AWS integrated. I have enabled Facebook & Google Sign in.



    this is the error I am getting at run time:
    Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Google Client ID is not set correctly in Info.plist or **awsconfiguration.json**. You need to set it before using AWSGoogleSignInProvider.



    it seems straightforward, although I have not been able to fix the info.plist as required.



    in the console, Google Sign in, I have added the google client id.



    enter image description here



    • in my info.plist, I have updated as follow, as per the AWS docs : User Sign-in (AWS developer guide)

    this is my info.plist



    <dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>$(DEVELOPMENT_LANGUAGE)</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
    </array>
    <!-- facebook sign in -->
    <key>CFBundleURLTypes</key>
    <array>
    <dict>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
    </array>
    </dict>
    </array>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>FacebookAppID</key>
    <string>158953918243134</string>
    <key>FacebookDisplayName</key>
    <string>AWSDemoApp</string>
    <!-- google sign in -->
    <key>CFBundleURLTypes</key>
    <array>
    <dict>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
    </array>
    </dict>
    </array>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
    <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    </dict>


    • I also have a GoogleInfo.plist in my project (with the client ID) :

    this is my GoogleInfo.plist



    <dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>$(DEVELOPMENT_LANGUAGE)</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
    </array>
    <!-- facebook sign in -->
    <key>CFBundleURLTypes</key>
    <array>
    <dict>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
    </array>
    </dict>
    </array>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>FacebookAppID</key>
    <string>158953918243134</string>
    <key>FacebookDisplayName</key>
    <string>AWSDemoApp</string>
    <!-- google sign in -->
    <key>CFBundleURLTypes</key>
    <array>
    <dict>
    <key>CFBundleURLSchemes</key>
    <array>
    <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
    </array>
    </dict>
    </array>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
    <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    </dict>









    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I am building an iOS with AWS integrated. I have enabled Facebook & Google Sign in.



      this is the error I am getting at run time:
      Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Google Client ID is not set correctly in Info.plist or **awsconfiguration.json**. You need to set it before using AWSGoogleSignInProvider.



      it seems straightforward, although I have not been able to fix the info.plist as required.



      in the console, Google Sign in, I have added the google client id.



      enter image description here



      • in my info.plist, I have updated as follow, as per the AWS docs : User Sign-in (AWS developer guide)

      this is my info.plist



      <dict>
      <key>CFBundleDevelopmentRegion</key>
      <string>$(DEVELOPMENT_LANGUAGE)</string>
      <key>CFBundleExecutable</key>
      <string>$(EXECUTABLE_NAME)</string>
      <key>CFBundleIdentifier</key>
      <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
      <key>CFBundleInfoDictionaryVersion</key>
      <string>6.0</string>
      <key>CFBundleName</key>
      <string>$(PRODUCT_NAME)</string>
      <key>CFBundlePackageType</key>
      <string>APPL</string>
      <key>CFBundleShortVersionString</key>
      <string>1.0</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      <!-- facebook sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleTypeRole</key>
      <string>Editor</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      </dict>
      </array>
      <key>CFBundleVersion</key>
      <string>1</string>
      <key>FacebookAppID</key>
      <string>158953918243134</string>
      <key>FacebookDisplayName</key>
      <string>AWSDemoApp</string>
      <!-- google sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
      </array>
      </dict>
      </array>
      <key>LSRequiresIPhoneOS</key>
      <true/>
      <key>UILaunchStoryboardName</key>
      <string>LaunchScreen</string>
      <key>UIMainStoryboardFile</key>
      <string>Main</string>
      <key>UIRequiredDeviceCapabilities</key>
      <array>
      <string>armv7</string>
      </array>
      <key>UISupportedInterfaceOrientations</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      <key>UISupportedInterfaceOrientations~ipad</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationPortraitUpsideDown</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      </dict>


      • I also have a GoogleInfo.plist in my project (with the client ID) :

      this is my GoogleInfo.plist



      <dict>
      <key>CFBundleDevelopmentRegion</key>
      <string>$(DEVELOPMENT_LANGUAGE)</string>
      <key>CFBundleExecutable</key>
      <string>$(EXECUTABLE_NAME)</string>
      <key>CFBundleIdentifier</key>
      <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
      <key>CFBundleInfoDictionaryVersion</key>
      <string>6.0</string>
      <key>CFBundleName</key>
      <string>$(PRODUCT_NAME)</string>
      <key>CFBundlePackageType</key>
      <string>APPL</string>
      <key>CFBundleShortVersionString</key>
      <string>1.0</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      <!-- facebook sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleTypeRole</key>
      <string>Editor</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      </dict>
      </array>
      <key>CFBundleVersion</key>
      <string>1</string>
      <key>FacebookAppID</key>
      <string>158953918243134</string>
      <key>FacebookDisplayName</key>
      <string>AWSDemoApp</string>
      <!-- google sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
      </array>
      </dict>
      </array>
      <key>LSRequiresIPhoneOS</key>
      <true/>
      <key>UILaunchStoryboardName</key>
      <string>LaunchScreen</string>
      <key>UIMainStoryboardFile</key>
      <string>Main</string>
      <key>UIRequiredDeviceCapabilities</key>
      <array>
      <string>armv7</string>
      </array>
      <key>UISupportedInterfaceOrientations</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      <key>UISupportedInterfaceOrientations~ipad</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationPortraitUpsideDown</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      </dict>









      share|improve this question













      I am building an iOS with AWS integrated. I have enabled Facebook & Google Sign in.



      this is the error I am getting at run time:
      Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Google Client ID is not set correctly in Info.plist or **awsconfiguration.json**. You need to set it before using AWSGoogleSignInProvider.



      it seems straightforward, although I have not been able to fix the info.plist as required.



      in the console, Google Sign in, I have added the google client id.



      enter image description here



      • in my info.plist, I have updated as follow, as per the AWS docs : User Sign-in (AWS developer guide)

      this is my info.plist



      <dict>
      <key>CFBundleDevelopmentRegion</key>
      <string>$(DEVELOPMENT_LANGUAGE)</string>
      <key>CFBundleExecutable</key>
      <string>$(EXECUTABLE_NAME)</string>
      <key>CFBundleIdentifier</key>
      <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
      <key>CFBundleInfoDictionaryVersion</key>
      <string>6.0</string>
      <key>CFBundleName</key>
      <string>$(PRODUCT_NAME)</string>
      <key>CFBundlePackageType</key>
      <string>APPL</string>
      <key>CFBundleShortVersionString</key>
      <string>1.0</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      <!-- facebook sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleTypeRole</key>
      <string>Editor</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      </dict>
      </array>
      <key>CFBundleVersion</key>
      <string>1</string>
      <key>FacebookAppID</key>
      <string>158953918243134</string>
      <key>FacebookDisplayName</key>
      <string>AWSDemoApp</string>
      <!-- google sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
      </array>
      </dict>
      </array>
      <key>LSRequiresIPhoneOS</key>
      <true/>
      <key>UILaunchStoryboardName</key>
      <string>LaunchScreen</string>
      <key>UIMainStoryboardFile</key>
      <string>Main</string>
      <key>UIRequiredDeviceCapabilities</key>
      <array>
      <string>armv7</string>
      </array>
      <key>UISupportedInterfaceOrientations</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      <key>UISupportedInterfaceOrientations~ipad</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationPortraitUpsideDown</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      </dict>


      • I also have a GoogleInfo.plist in my project (with the client ID) :

      this is my GoogleInfo.plist



      <dict>
      <key>CFBundleDevelopmentRegion</key>
      <string>$(DEVELOPMENT_LANGUAGE)</string>
      <key>CFBundleExecutable</key>
      <string>$(EXECUTABLE_NAME)</string>
      <key>CFBundleIdentifier</key>
      <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
      <key>CFBundleInfoDictionaryVersion</key>
      <string>6.0</string>
      <key>CFBundleName</key>
      <string>$(PRODUCT_NAME)</string>
      <key>CFBundlePackageType</key>
      <string>APPL</string>
      <key>CFBundleShortVersionString</key>
      <string>1.0</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      <!-- facebook sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleTypeRole</key>
      <string>Editor</string>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>com.googleusercontent.apps.837706836074-lnk2mvk86onna7nke2lvpeic8117jdka</string>
      </array>
      </dict>
      </array>
      <key>CFBundleVersion</key>
      <string>1</string>
      <key>FacebookAppID</key>
      <string>158953918243134</string>
      <key>FacebookDisplayName</key>
      <string>AWSDemoApp</string>
      <!-- google sign in -->
      <key>CFBundleURLTypes</key>
      <array>
      <dict>
      <key>CFBundleURLSchemes</key>
      <array>
      <string>837706836074-lnk2mvk86onna7nke2lvpeic8117jdka.apps.googleusercontent.com</string>
      </array>
      </dict>
      </array>
      <key>LSRequiresIPhoneOS</key>
      <true/>
      <key>UILaunchStoryboardName</key>
      <string>LaunchScreen</string>
      <key>UIMainStoryboardFile</key>
      <string>Main</string>
      <key>UIRequiredDeviceCapabilities</key>
      <array>
      <string>armv7</string>
      </array>
      <key>UISupportedInterfaceOrientations</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      <key>UISupportedInterfaceOrientations~ipad</key>
      <array>
      <string>UIInterfaceOrientationPortrait</string>
      <string>UIInterfaceOrientationPortraitUpsideDown</string>
      <string>UIInterfaceOrientationLandscapeLeft</string>
      <string>UIInterfaceOrientationLandscapeRight</string>
      </array>
      </dict>






      swift amazon-web-services aws-sdk google-signin






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 20 at 12:05







      user4422315


































          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48884942%2fgoogle-client-id-for-ios-project%23new-answer', 'question_page');

          );

          Post as a guest


































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48884942%2fgoogle-client-id-for-ios-project%23new-answer', 'question_page');

          );

          Post as a guest














































































          3tgkEY2I5 SZYRtE73HTA,FgwXWV gpkJ85cHZb7kHr6ab,Xr3cy7ox3YSNsOkbjH8GMN yhkMit7y8,3n1Q7POR zcBWGN
          kU,j7q,7

          Popular posts from this blog

          Old paper Canadian currency

          𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

          ữḛḳṊẴ ẋ,Ẩṙ,ỹḛẪẠứụỿṞṦ,Ṉẍừ,ứ Ị,Ḵ,ṏ ṇỪḎḰṰọửḊ ṾḨḮữẑỶṑỗḮṣṉẃ Ữẩụ,ṓ,ḹẕḪḫỞṿḭ ỒṱṨẁṋṜ ḅẈ ṉ ứṀḱṑỒḵ,ḏ,ḊḖỹẊ Ẻḷổ,ṥ ẔḲẪụḣể Ṱ ḭỏựẶ Ồ Ṩ,ẂḿṡḾồ ỗṗṡịṞẤḵṽẃ ṸḒẄẘ,ủẞẵṦṟầṓế