Reusing artifact version variable. Bumped version to 2.4.0

This commit is contained in:
Dima Zaytsev
2018-09-09 22:10:17 +02:00
parent b67ee40be2
commit 245d74fb46
5 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ fotoapparat.switchTo(
Add dependency to your `build.gradle`
```groovy
implementation 'io.fotoapparat:fotoapparat:2.3.3'
implementation 'io.fotoapparat:fotoapparat:2.4.0'
```
Camera permission will be automatically added to your `AndroidManifest.xml`. Do not forget to request this permission on Marshmallow and higher.
+4 -2
View File
@@ -1,7 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
artifactVersion = '2.3.1'
subprojects {
ext {
artifactVersion = '2.4.0'
}
}
buildscript {
+1 -1
View File
@@ -31,7 +31,7 @@ ext {
libraryName = 'Fotoapparat Adapters - RxJava'
artifact = 'adapter-rxjava'
libraryVersion = '2.3.3'
libraryVersion = artifactVersion
libraryDescription = 'RxJava1 adapter for Fotoapparat.'
}
+1 -1
View File
@@ -31,7 +31,7 @@ ext {
libraryName = 'Fotoapparat Adapters - RxJava2'
artifact = 'adapter-rxjava2'
libraryVersion = '2.3.3'
libraryVersion = artifactVersion
libraryDescription = 'RxJava2 adapter for Fotoapparat.'
}
+1 -1
View File
@@ -42,7 +42,7 @@ ext {
libraryName = 'Fotoapparat'
artifact = 'fotoapparat'
libraryVersion = '2.3.3'
libraryVersion = artifactVersion
libraryDescription = 'Camera library for Android with a more user-friendly API.'
}