Skip to content

Commit

Permalink
chore: update version to 1.0.3
Browse files Browse the repository at this point in the history
Migration from jcenter to mavenCentral
  • Loading branch information
mrHerintsoaHasina committed May 26, 2021
1 parent 7e3f581 commit e01e937
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ An Android Library which uses the FlexboxLayout https://github.com/google/flexbo
Add to your app `build.gradle` :
````
dependencies {
implementation 'io.github.mrherintsoahasina:flextools:1.0.1'
implementation 'io.github.mrherintsoahasina:flextools:1.0.3'
}
````
**Starting from 1.0.3, the groupId is changed to `io.github.mrherintsoahasina` due to migration from JCenter to Maven Central.**

## Version 1.0.0
- contains the class FlexRadioGroup which extends the FlexBoxLayout.
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ buildscript {
// Android
ext.compile_sdk_version = 30
ext.min_sdk_version = 17
ext.version_code = 2
ext.version_name = '1.0.1'
ext.version_code = 4
ext.version_name = '1.0.3'

// Dependencies
ext.android_annotation_version = '1.3.0-alpha01'
ext.appcompat_version = '1.4.0-alpha01'
ext.flexbox_version = '1.1.0'
ext.flexbox_version = '3.0.0'
ext.legacy_support_v4_version = '1.0.0'

repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
Expand All @@ -35,7 +35,7 @@ plugins {

allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
Expand Down
6 changes: 3 additions & 3 deletions flextools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

ext {
PUBLISH_GROUP_ID = 'io.github.mrherintsoahasina'
PUBLISH_VERSION = '1.0.1'
PUBLISH_VERSION = '1.0.3'
PUBLISH_ARTIFACT_ID = 'flextools'
}

Expand All @@ -25,8 +25,8 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.google.android:flexbox:$flexbox_version"
implementation "androidx.annotation:annotation:$android_annotation_version"
api "com.google.android.flexbox:flexbox:$flexbox_version"
api "androidx.annotation:annotation:$android_annotation_version"
}

apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"

0 comments on commit e01e937

Please sign in to comment.