diff --git a/README.md b/README.md index ec0a949d..574c4e56 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Using Fetch is easy! Just add the Gradle dependency to your application's build. file. ```java -compile 'com.tonyodev:fetch:1.0' +compile 'com.tonyodev.fetch:fetch:1.0.0' ``` Next, get an instance of Fetch and request a download. A unique ID will be returned diff --git a/app/build.gradle b/app/build.gradle index c95ed801..15506370 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,9 +24,10 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.1.0' testCompile 'junit:junit:4.12' - compile 'com.android.support:recyclerview-v7:25.1.0' + + compile 'com.android.support:appcompat-v7:25.1.1' + compile 'com.android.support:recyclerview-v7:25.1.1' + compile 'com.android.support:design:25.1.1' compile project(':fetch') - compile 'com.android.support:design:25.1.0' } diff --git a/fetch/build.gradle b/fetch/build.gradle index e7ee8866..4e16af9a 100644 --- a/fetch/build.gradle +++ b/fetch/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 9 targetSdkVersion 25 versionCode 1 - versionName "1.0" + versionName "1.0.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -26,6 +26,6 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.1.0' + compile 'com.android.support:appcompat-v7:25.1.1' testCompile 'junit:junit:4.12' }