Skip to content

Commit

Permalink
Merge branch 'release/v3.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Sep 22, 2018
2 parents 32ec98f + 5da6087 commit 15cc84c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,29 +41,29 @@ 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-rc02'
implementation 'com.mikepenz:fastadapter:3.3.0'
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-rc02'
implementation 'com.mikepenz:fastadapter-commons:3.3.0'
```

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

## v3.3.x
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ dependencies {
// contains util classes to support various android versions, and clean up code
// comes with the awesome "Holder"-Pattern
// https://github.com/mikepenz/Materialize
implementation 'com.mikepenz:materialize:1.2.0-rc01'
implementation 'com.mikepenz:materialize:1.2.0'

// used to provide out of the box icon font support. simplifies development,
// and provides scalable icons. the core is very very light
// https://github.com/mikepenz/Android-Iconics
implementation 'com.mikepenz:iconics-core:3.1.0-rc01'
implementation "com.mikepenz:iconics-views:3.1.0-rc01"
implementation 'com.mikepenz:iconics-core:3.1.0'
implementation "com.mikepenz:iconics-views:3.1.0"

//used to generate the drawer on the left
//https://github.com/mikepenz/MaterialDrawer
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
buildscript {
ext {
release = [
versionName: "3.3.0-rc02",
versionName: "3.3.0",
versionCode: 3300
]

Expand All @@ -14,7 +14,7 @@ buildscript {
]

versions = [
androidX: '1.0.0-rc02'
androidX: '1.0.0'
]
}

Expand All @@ -23,7 +23,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-alpha10'
classpath 'com.android.tools.build:gradle:3.3.0-alpha11'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
Expand Down
2 changes: 1 addition & 1 deletion library-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
implementation "com.google.android.material:material:${versions.androidX}"
implementation "androidx.annotation:annotation:${versions.androidX}"

implementation 'com.mikepenz:materialize:1.2.0-rc01'
implementation 'com.mikepenz:materialize:1.2.0'
}

if (project.hasProperty('pushall') || project.hasProperty('libraryextensiononly')) {
Expand Down

0 comments on commit 15cc84c

Please sign in to comment.