Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vestrel00 committed Jul 1, 2023
1 parent 376922c commit 60e6f90
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ as the AOSP Android Contacts app and Google Contacts app, this library is for yo
## Quick links

- 📜 [Documentation][github-pages]
- 🚉 [Current Release - 0.2.4](https://github.com/vestrel00/contacts-android/releases/tag/0.2.4)
- 🚂 [Upcoming Release - 0.3.0](https://github.com/vestrel00/contacts-android/discussions/218)
- 🚉 [Current Release - 0.3.0](https://github.com/vestrel00/contacts-android/releases/tag/0.3.0)
- 🚂 [Upcoming Release - 0.3.1](https://github.com/vestrel00/contacts-android/discussions/288)
- ℹ️ [Project Status][project-status]
- 🗺 [Project Roadmap][project-roadmap]
- 💌 [Why use this library?][why-use-this]
Expand Down Expand Up @@ -133,18 +133,18 @@ To install individual modules,

```groovy
dependencies {
implementation 'com.github.vestrel00.contacts-android:core:0.2.4'
implementation 'com.github.vestrel00.contacts-android:core:0.3.0'
implementation 'com.github.vestrel00.contacts-android:async:0.2.4'
implementation 'com.github.vestrel00.contacts-android:customdata-gender:0.2.4'
implementation 'com.github.vestrel00.contacts-android:customdata-googlecontacts:0.2.4'
implementation 'com.github.vestrel00.contacts-android:customdata-handlename:0.2.4'
implementation 'com.github.vestrel00.contacts-android:customdata-pokemon:0.2.4'
implementation 'com.github.vestrel00.contacts-android:customdata-rpg:0.2.4'
implementation 'com.github.vestrel00.contacts-android:debug:0.2.4'
implementation 'com.github.vestrel00.contacts-android:permissions:0.2.4'
implementation 'com.github.vestrel00.contacts-android:test:0.2.4'
implementation 'com.github.vestrel00.contacts-android:ui:0.2.4'
implementation 'com.github.vestrel00.contacts-android:async:0.3.0'
implementation 'com.github.vestrel00.contacts-android:customdata-gender:0.3.0'
implementation 'com.github.vestrel00.contacts-android:customdata-googlecontacts:0.3.0'
implementation 'com.github.vestrel00.contacts-android:customdata-handlename:0.3.0'
implementation 'com.github.vestrel00.contacts-android:customdata-pokemon:0.3.0'
implementation 'com.github.vestrel00.contacts-android:customdata-rpg:0.3.0'
implementation 'com.github.vestrel00.contacts-android:debug:0.3.0'
implementation 'com.github.vestrel00.contacts-android:permissions:0.3.0'
implementation 'com.github.vestrel00.contacts-android:test:0.3.0'
implementation 'com.github.vestrel00.contacts-android:ui:0.3.0'
// Notice that when importing specific modules/subprojects, the first ":" comes after "contacts-android".
}
```
Expand All @@ -155,7 +155,7 @@ To install all modules in a single line,

```groovy
dependencies {
implementation 'com.github.vestrel00:contacts-android:0.2.4'
implementation 'com.github.vestrel00:contacts-android:0.3.0'
// Notice that when importing all modules, the first ":" comes after "vestrel00".
}
```
Expand Down
4 changes: 4 additions & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ android {
}

dependencies {
// When testing if the current main branch is ready to be tagged and released in Jitpack,
// uncomment this next line and comment out all "implementation project" lines
// implementation 'com.github.vestrel00:contacts-android:main-SNAPSHOT'

implementation project(':async')
implementation project(':core')
implementation project(':customdata-gender')
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
// Only required when using published binaries from Jitpack in the sample app..
maven { url "https://jitpack.io" }
}
}

Expand Down

0 comments on commit 60e6f90

Please sign in to comment.