diff --git a/README.md b/README.md
index 128ec8e..23b37bf 100644
--- a/README.md
+++ b/README.md
@@ -12,11 +12,9 @@ This CircularProgressView is a (surprisingly) circular progress bar Android View
To use CircularProgressView you must add it as a dependency in your Gradle build:
-(The project is not yet set up in the maven central repo so wait until I do that)
-
```groovy
dependencies {
- compile 'com.freek:materialcircularprogressview:1.0.0+'
+ compile 'com.github.rahatarmanahmed:circularprogressview:1.0.0'
}
```
diff --git a/circularprogressview/build.gradle b/circularprogressview/build.gradle
index 2c29a16..c6965cd 100644
--- a/circularprogressview/build.gradle
+++ b/circularprogressview/build.gradle
@@ -17,6 +17,10 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
+
+ lintOptions {
+ abortOnError false
+ }
}
dependencies {
diff --git a/circularprogressview/circularprogressview.iml b/circularprogressview/circularprogressview.iml
index 3d48add..bbc5fbc 100644
--- a/circularprogressview/circularprogressview.iml
+++ b/circularprogressview/circularprogressview.iml
@@ -58,6 +58,7 @@
+
@@ -77,6 +78,7 @@
+
diff --git a/example/build.gradle b/example/build.gradle
index 3c352e4..1a667c1 100644
--- a/example/build.gradle
+++ b/example/build.gradle
@@ -17,10 +17,14 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
+
+ lintOptions {
+ abortOnError false
+ }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':circularprogressview')
- compile 'com.android.support:appcompat-v7:21.0.+'
+ compile 'com.android.support:appcompat-v7:21.0.0'
}
diff --git a/gradle.properties b/gradle.properties
index 24edb56..f54e9d1 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
-VERSION_NAME=1.0.0-SNAPSHOT
+VERSION_NAME=1.0.0
VERSION_CODE=100
GROUP=com.github.rahatarmanahmed