Skip to content

Commit

Permalink
update dependencies and release v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Piasy committed Oct 25, 2017
1 parent c7d5514 commit 9eabb87
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change log

+ v1.4.1
- Remove logging;
- Update dependencies;
+ v1.4.0
- Upgrade to Glide 4.x;
- Update min sdk version to 14 according to Glide 4.x;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ allprojects {
}
}
compile 'com.github.piasy:BigImageViewer:1.4.0'
compile 'com.github.piasy:BigImageViewer:1.4.1'
// load with fresco
compile 'com.github.piasy:FrescoImageLoader:1.4.0'
compile 'com.github.piasy:FrescoImageLoader:1.4.1'
// load with glide
compile 'com.github.piasy:GlideImageLoader:1.4.0'
compile 'com.github.piasy:GlideImageLoader:1.4.1'
// progress pie indicator
compile 'com.github.piasy:ProgressPieIndicator:1.4.0'
compile 'com.github.piasy:ProgressPieIndicator:1.4.1'
```

### Initialize
Expand Down
10 changes: 7 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ android {
applicationId "com.github.piasy.biv.example"

vectorDrawables.useSupportLibrary = true

manifestPlaceholders = [
ANDROID_SUPPORT_SDK_VERSION: rootProject.ext.androidSupportSdkVersion
]
}

signingConfigs {
Expand Down Expand Up @@ -74,7 +78,7 @@ dependencies {
compile "com.android.support:appcompat-v7:$rootProject.ext.androidSupportSdkVersion"
compile "com.android.support:recyclerview-v7:$rootProject.ext.androidSupportSdkVersion"

compile('com.afollestad.material-dialogs:core:0.9.4.5') {
compile('com.afollestad.material-dialogs:core:0.9.4.7') {
exclude module: 'support-v4'
exclude module: 'appcompat-v7'
exclude module: 'recyclerview-v7'
Expand All @@ -84,9 +88,9 @@ dependencies {
compile('com.tbruyelle.rxpermissions2:rxpermissions:0.9.4') {
exclude module: 'rxjava'
}
compile 'io.reactivex.rxjava2:rxjava:2.1.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.5'
compile "io.reactivex.rxjava2:rxandroid:2.0.1"
compile "com.github.akarnokd:rxjava2-interop:0.10.1"
compile "com.github.akarnokd:rxjava2-interop:0.10.8"
compile 'com.github.piasy:RxQrCode:1.3.0'
compile 'com.squareup.leakcanary:leakcanary-android:1.5'

Expand Down
14 changes: 12 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,25 @@
~ SOFTWARE.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.piasy.biv.example">
xmlns:tools="http://schemas.android.com/tools"
package="com.github.piasy.biv.example"
>

<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
>

<meta-data
android:name="android.support.VERSION"
android:value="${ANDROID_SUPPORT_SDK_VERSION}"
tools:replace="android:value"
/>

<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ ext {
'usage and full featured image loading choices. Powered by Subsampling Scale ' +
'Image View, Fresco, Glide, and Picasso.'
artifactLabels = ['big', 'image', 'viewer', 'Fresco', 'Glide', 'Picasso']
releaseVersionCode = 19
releaseVersionName = '1.4.0'
releaseVersionCode = 20
releaseVersionName = '1.4.1'

androidCompileSdkVersion = 26
androidBuildToolsVersion = '26.0.1'
androidBuildToolsVersion = '26.0.2'
androidSupportSdkVersion = '26.1.0'
minSdkVersion = 14
targetSdkVersion = 26

frescoVersion = '1.5.0'
glideVersion = '4.1.1'
ssivVersion = '3.6.0'
glideVersion = '4.2.0'
ssivVersion = '3.7.0'
commonsVersion = '2.5'
}

0 comments on commit 9eabb87

Please sign in to comment.