diff --git a/CHANGELOG.md b/CHANGELOG.md index f414593..6d78b8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog + +### v1.4.2 + +* `finishAfterTransition` on activities, instead of `finish` + ### v1.4.1 * Update dependencies @@ -51,4 +56,4 @@ * Works with `RecyclerView` and normal `Activity` layouts * Custom color support * Theme support (light, dark, and day/night) - * Hide the toolbar \ No newline at end of file + * Hide the toolbar diff --git a/README.md b/README.md index 17ca0d2..389f458 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To include it in your project, add this to your module's `build.gradle` file: ```groovy dependencies { ... - compile 'com.klinkerapps:drag-dismiss-activity:1.4.1' + compile 'com.klinkerapps:drag-dismiss-activity:1.4.2' } ``` @@ -40,9 +40,9 @@ This library is meant to replace your `AppCompatActivity`. I will set up all the protected View onCreateContent(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) { View v = inflater.inflate(R.layout.activity_scrollable, parent, false); - // do your normal view setup and Activity#onCreate lifecycle actions here, + // do your normal view setup and Activity#onCreate lifecycle actions here, // instead of within the Activity#onCreate. - + return v; } ``` @@ -64,7 +64,7 @@ If you are using an `Activity` that just has a `RecyclerView` in it, then this l protected void setupRecyclerView(RecyclerView recyclerView) { recyclerView.setLayoutManager(new LinearLayoutManager(this)); recyclerView.setAdapter(new SampleAdapter()); - + // do any other RecyclerView or Activity setup that needs to be done } ``` diff --git a/gradle.properties b/gradle.properties index d2fabaf..d6acf20 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ # limitations under the License. # -GRADLE_PLUGIN_VERSION=3.0.0-alpha3 +GRADLE_PLUGIN_VERSION=2.3.1 BUILD_TOOLS_VERSION=25.0.2 ANDROID_SUPPORT_VERSION=26.0.0-beta2 @@ -23,7 +23,7 @@ MIN_SDK=15 TARGET_SDK=26 COMPILE_SDK=26 -VERSION_NAME=1.4.1 +VERSION_NAME=1.4.2 VERSION_CODE=1 GROUP=com.klinkerapps