Skip to content

Commit dd1b273

Browse files
committed
fix incorrect path
1 parent f0b0bb1 commit dd1b273

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ Android Studio
3030
1) Paste or clone this library into the ``/libs`` folder, in the root directory of your project. Create a new folder: ``/libs`` if not already present. (This step is not required - only for keeping cleaner project structure)
3131
2) Edit ``settings.gradle`` by adding the library. You have also define a project directory for the library. Your ``settings.gradle`` should look like below:
3232
::
33-
34-
include ':app', ':ColorPickerPreference'
35-
project(':ColorPickerPreference').projectDir = new File('libs/ColorPickerPreference')
33+
34+
include ':app', ':ColorPickerPreference'
35+
project(':ColorPickerPreference').projectDir = new File('libs/libs/ColorPickerPreference')
3636

3737
3) In ``app/build.gradle`` add the ColorPickerPreference library as a dependency:
3838
::
39-
40-
dependencies {
41-
compile fileTree(dir: 'libs', include: ['*.jar'])
42-
compile 'com.android.support:appcompat-v7:21.0.3'
43-
compile project(":ColorPickerPreference")
44-
}
45-
39+
40+
dependencies {
41+
compile fileTree(dir: 'libs', include: ['*.jar'])
42+
compile 'com.android.support:appcompat-v7:21.0.3'
43+
compile project(":ColorPickerPreference")
44+
}
45+
4646

4747
4) Sync project, clean and build. You can use the ``ColorPickerPreference`` library as part of your project now.
4848

@@ -61,7 +61,7 @@ You can see some tests inside
6161

6262
::
6363

64-
<com.c0br4.preference.colorpicker.ColorPickerPreference
64+
<net.margaritov.preference.colorpicker.ColorPickerPreference
6565
android:key="color1"
6666
android:title="@string/color1_title"
6767
android:summary="@string/color1_summary"

0 commit comments

Comments
 (0)