QuickBlox / quickblox-android-sdk-releases

This repository contains binary distributions of Android products released by QuickBlox.
BSD 3-Clause "New" or "Revised" License
31 stars 15 forks source link

The code cannot be copied from the README file #6

Closed Lazza closed 3 years ago

Lazza commented 8 years ago

Hi, I was trying to understand why Gradle would refuse to accept the code provided in the README file. It seemed to refuse the word compile. A very smart answer found on StackOverflow highlighted the problem:

This is a very strange "bug". When you copied and pasted the Gradle lines from Quickblox, you copied a wrong ASCII code of the letter "c" in the word compile and Gradle would not recognize the word "compile".

  • the ASCII code of "c" copied from Quickblox site is 209 129
  • the ASCII code of "c" is 99

That solved the problem indeed. I don't understand why the code in the README contains a "weird" letter c in compile, but I think it should be fixed.