diff --git a/README.md b/README.md index cad1a4462..c73d79f2f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/build.gradle b/app/build.gradle index 80ebbc23c..bc0ad102a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 diff --git a/build.gradle b/build.gradle index 47adb1377..e27429c34 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext { release = [ - versionName: "3.3.0-rc02", + versionName: "3.3.0", versionCode: 3300 ] @@ -14,7 +14,7 @@ buildscript { ] versions = [ - androidX: '1.0.0-rc02' + androidX: '1.0.0' ] } @@ -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' } diff --git a/library-extensions/build.gradle b/library-extensions/build.gradle index a1edb9f5e..a787972ce 100644 --- a/library-extensions/build.gradle +++ b/library-extensions/build.gradle @@ -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')) {