From e617c50cd6c6ad7f0dc4846279b66cae621d57c9 Mon Sep 17 00:00:00 2001 From: Leaking Date: Tue, 29 Mar 2016 22:28:59 +0800 Subject: [PATCH] update readme --- .idea/.name | 1 + .idea/compiler.xml | 22 +++ .idea/copyright/profiles_settings.xml | 3 + .idea/libraries/android_support_v4.xml | 9 + .idea/libraries/android_support_v41.xml | 9 + .idea/misc.xml | 39 ++++ .idea/modules.xml | 9 + .idea/vcs.xml | 6 + .idea/workspace.xml | 250 ++++++++++++++++++++++++ Example/TestLibs/TestLibs.iml | 18 ++ README.md | 19 +- SlideSwitch/SlideSwitch.iml | 21 ++ 12 files changed, 402 insertions(+), 4 deletions(-) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/libraries/android_support_v4.xml create mode 100644 .idea/libraries/android_support_v41.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 Example/TestLibs/TestLibs.iml create mode 100644 SlideSwitch/SlideSwitch.iml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..12de530 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +SlideSwitch \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..43b000d --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/libraries/android_support_v4.xml b/.idea/libraries/android_support_v4.xml new file mode 100644 index 0000000..6ed05b3 --- /dev/null +++ b/.idea/libraries/android_support_v4.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/android_support_v41.xml b/.idea/libraries/android_support_v41.xml new file mode 100644 index 0000000..551eca3 --- /dev/null +++ b/.idea/libraries/android_support_v41.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..47095a6 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ae9a036 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..6564d52 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..ae0ed7b --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1455873639209 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Example/TestLibs/TestLibs.iml b/Example/TestLibs/TestLibs.iml new file mode 100644 index 0000000..51b0426 --- /dev/null +++ b/Example/TestLibs/TestLibs.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 27f5811..c9503ed 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,23 @@ use gradle. Gradle dependency: -```groovy +Add the below codes in the module gradle file, which module use this widget. -dependencies { - compile 'com.leaking.slideswitch:app:1.0.0' -} +```gradle +compile 'com.leaking.slideswitch:slideswitch:1.0.0' +``` +Add the below codes in you project gradle file + +```gradle +allprojects { + repositories { + jcenter() + maven { + url 'https://dl.bintray.com/leaking/maven' + } + } +} ``` diff --git a/SlideSwitch/SlideSwitch.iml b/SlideSwitch/SlideSwitch.iml new file mode 100644 index 0000000..601e6a0 --- /dev/null +++ b/SlideSwitch/SlideSwitch.iml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file