Skip to content

Commit

Permalink
Merge branch 'release/v3.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Sep 27, 2018
2 parents 15cc84c + 1a527b2 commit 0207019
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,26 @@ You can try it out here [Google Play](https://play.google.com/store/apps/details

The library is split up into core, commons, and extensions. The core functions are included in the following dependency.
```gradle
implementation 'com.mikepenz:fastadapter:3.3.0'
implementation 'com.mikepenz:fastadapter:3.3.1'
implementation "androidx.appcompat:appcompat:${androidX}"
implementation "androidx.recyclerview:recyclerview:${androidX}"
```

The commons package comes with some useful helpers (which are not needed in all cases) This one for example includes the `FastItemAdapter`
```gradle
implementation 'com.mikepenz:fastadapter-commons:3.3.0'
implementation 'com.mikepenz:fastadapter-commons:3.3.1'
```

Expandable support is included and can be added via this
```gradle
implementation 'com.mikepenz:fastadapter-extensions-expandable:3.3.0'
implementation 'com.mikepenz:fastadapter-extensions-expandable:3.3.1'
//The tiny Materialize library used for its useful helper classes
implementation 'com.mikepenz:materialize:${latestVersion}' // at least 1.2.0
```

Many helper classes are included in the following dependency. (This functionality also needs the `Expandable` extension
```gradle
implementation 'com.mikepenz:fastadapter-extensions:3.3.0'
implementation 'com.mikepenz:fastadapter-extensions:3.3.1'
implementation "com.google.android.material:material:${androidX}"
//The tiny Materialize library used for its useful helper classes
implementation 'com.mikepenz:materialize:${latestVersion}' // at least 1.2.0
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ dependencies {

//used to generate the drawer on the left
//https://github.com/mikepenz/MaterialDrawer
implementation('com.mikepenz:materialdrawer:6.1.0-rc01') {
implementation('com.mikepenz:materialdrawer:6.1.0') {
transitive = true
exclude group: "com.mikepenz"
}
//used to provide different itemAnimators for the RecyclerView
//https://github.com/mikepenz/ItemAnimators
implementation 'com.mikepenz:itemanimators:1.1.0-rc01'
implementation 'com.mikepenz:itemanimators:1.1.0'
//used to generate the Open Source section
//https://github.com/mikepenz/AboutLibraries
implementation('com.mikepenz:aboutlibraries:6.2.0-rc01') {
implementation('com.mikepenz:aboutlibraries:6.2.0') {
transitive = true
exclude group: "com.mikepenz"
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
buildscript {
ext {
release = [
versionName: "3.3.0",
versionCode: 3300
versionName: "3.3.1",
versionCode: 3301
]

setup = [
Expand All @@ -23,7 +23,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-alpha11'
classpath 'com.android.tools.build:gradle:3.3.0-alpha12'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Sep 15 11:46:33 CEST 2018
#Thu Sep 27 10:29:17 CEST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ public static <Item extends IItem> Item getHolderAdapterItem(@Nullable RecyclerV
public static <Item extends IItem> Item getHolderAdapterItemTag(@Nullable RecyclerView.ViewHolder holder) {
if (holder != null) {
Object item = holder.itemView.getTag(com.mikepenz.fastadapter.R.id.fastadapter_item);
if (item instanceof FastAdapter) {
if (item instanceof IItem) {
return (Item) item;
}
}
Expand Down

0 comments on commit 0207019

Please sign in to comment.