Skip to content

Commit

Permalink
Release v2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
massivemadness committed Jun 19, 2022
1 parent 3030bbb commit 9aad1be
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ assignees: 'massivemadness'
*Please consider making a Pull Request if you are capable of doing so.*

**Library Version:**
2.3
2.4

**Affected Device(s):**
Google Pixel 3 XL with Android 9.0
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
**Fragula** is a swipe-to-dismiss extension for [navigation component](https://developer.android.com/guide/navigation/navigation-getting-started) library for Android.
It is an adaptation of an earlier version created by **@shikleev** and now maintained in this repository.

![Android CI](https://github.com/massivemadness/Fragula/workflows/Android%20CI/badge.svg) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Fragula-orange.svg?style=flat)](https://android-arsenal.com/details/1/8405)
![Android CI](https://github.com/massivemadness/Fragula/workflows/Android%20CI/badge.svg) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Fragula-red.svg?style=flat)](https://android-arsenal.com/details/1/8405)

| Dark Theme | Light Theme |
| :---------------: | :---------------: |
| <img src="https://raw.githubusercontent.com/massivemadness/Fragula/develop/.github/images/showcase.gif" align="center" width="70%"/> | <img src="https://raw.githubusercontent.com/massivemadness/Fragula/develop/.github/images/showcase_light.gif" align="center" width="70%"/> |
| <img src="https://raw.githubusercontent.com/massivemadness/Fragula/master/.github/images/showcase.gif" align="center" width="70%"/> | <img src="https://raw.githubusercontent.com/massivemadness/Fragula/master/.github/images/showcase_light.gif" align="center" width="70%"/> |

---

Expand All @@ -18,18 +18,18 @@ It is an adaptation of an earlier version created by **@shikleev** and now maint
1. [Gradle Dependency](#gradle-dependency)
2. [The Basics](#the-basics)
3. [More Options](#more-options)
1. [Navigate with arguments](#navigate-with-arguments)
2. [Multiple BackStacks](#multiple-backstacks)
1. [Navigate with arguments](#navigate-with-arguments)
2. [Multiple BackStacks](#multiple-backstacks)
4. [Swipe Direction](#swipe-direction)
5. [Swipe Transitions](#swipe-transitions)
6. [Theming](#theming)

## Jetpack Compose
1. [Gradle Dependency](#gradle-dependency-1)
2. [The Basics](#the-basics-1)
1. [More Options](#more-options-1)
2. [Navigate with arguments](#navigate-with-arguments-1)
3. [Multiple BackStacks](#multiple-backstacks)
3. [More Options](#more-options-1)
1. [Navigate with arguments](#navigate-with-arguments-1)
2. [Multiple BackStacks](#multiple-backstacks)
4. [Customization](#customization)

---
Expand All @@ -50,7 +50,7 @@ Add this to your module’s `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.fragula2:fragula-core:2.3'
implementation 'com.fragula2:fragula-core:2.4'
}
```

Expand Down Expand Up @@ -298,7 +298,7 @@ Add this to your module’s `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.fragula2:fragula-compose:2.3'
implementation 'com.fragula2:fragula-compose:2.4'
}
```

Expand Down
10 changes: 10 additions & 0 deletions fragula-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@ plugins {
id 'kotlin-android'
}

ext.libraryGroupId = "com.fragula2"
ext.libraryArtifactId = "fragula-common"

apply from: rootProject.file("gradle/publish.gradle")

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools

group libraryGroupId
version versions.publishVersionName

defaultConfig {
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk

consumerProguardFiles 'consumer-rules.pro'

archivesBaseName = libraryArtifactId
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
Expand Down
8 changes: 4 additions & 4 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ext {
buildTools: '31.0.0',

// Library
publishVersionName: '2.3',
publishVersionCode: 11
publishVersionName: '2.4',
publishVersionCode: 12
]

// Plugins
Expand All @@ -28,8 +28,8 @@ ext {
coil_version = '2.1.0'

// Compose
compose_version = '1.1.0'
compose_activity_version = '1.3.1'
compose_version = '1.1.1'
compose_activity_version = '1.4.0'

// AAC
lifecycle_version = '2.4.1'
Expand Down

0 comments on commit 9aad1be

Please sign in to comment.