@@ -20,27 +20,8 @@ Here are some examples how these progressbars could look like:
 
 ![three examples](https://mkvhhw.bn1.livefilestore.com/y2mmRAmVz8BzkLSYLSqV0yM6HCLh9uMMrQ4VqVJ0ocJTR5pUtc-b5ruBF6-XFOWzdKkxv1WbeVj15fefu0g0NEB60KUvbm6xwOEnBkbR_YwkmYF-Z808sqpgtGH4nhRs6ru/squareprogressbarexample_140.png?psid=1)
 
-### How to use it?
-
-After you included the library as a library project to your project, add the following xml code to your layout:
-
-    <net.yscs.android.square_progressbar.SquareProgressBar
-        android:id="@+id/subi"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_alignParentTop="true"
-        android:layout_centerHorizontal="true"
-        android:paddingTop="20dp" >
-    </net.yscs.android.square_progressbar.SquareProgressBar>
-    
-Then you use the following code to set some inital settings:
-
-    SquareProgressBar squareProgressBar = (SquareProgressBar) findViewById(R.id.subi);
-    squareProgressBar.setImage(R.drawable.city);
-    squareProgressBar.setColor("#C9C9C9");
-    squareProgressBar.setProgress(32);
-    squareProgressBar.setWidth(8);
-    
+### How to use it? / How to install? / How to contribute?
+Check the wiki for more information about [how to use](https://github.com/mrwonderman/android-square-progressbar/wiki/Usage), [how to install](https://github.com/mrwonderman/android-square-progressbar/wiki/Use-with-an-Eclipse-Setup) or [how to contribute](https://github.com/mrwonderman/android-square-progressbar/wiki/How-To-Contribute).
 
 ## Gradle
 A big thank you to [@elodieferrais](https://github.com/elodieferrais) who made it possible that this library is accessible for gradle builds. See her [fork](https://github.com/elodieferrais/android-square-progressbar) for more information. Also check out her repository about [useful dependancies](https://github.com/elodieferrais/wonder-libraries).