Skip to content

Commit

Permalink
[*] Updated library version to 3.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
VicMikhailau committed Nov 5, 2019
1 parent d759d3f commit bed90e4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
12 changes: 8 additions & 4 deletions MaskedEditText/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

ext {
bintrayRepo = 'maven'
Expand All @@ -15,7 +15,7 @@ ext {
siteUrl = 'https://github.com/VicMikhailau/MaskedEditText'
gitUrl = 'https://github.com/VicMikhailau/MaskedEditText.git'

libraryVersion = '2.0.4'
libraryVersion = '3.0.1'

developerId = 'VicMikhailau'
developerName = 'Vic Mikhailau'
Expand All @@ -32,8 +32,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionCode 3
versionName "2.0.4"
versionCode 5
versionName "3.0.1"
}
buildTypes {
release {
Expand All @@ -43,6 +43,10 @@ android {
}
}

tasks.withType(Javadoc).all {
excludes = ['**/*.kt']
}

ext {
androidx_appcompat = "1.1.0"
androidx_core_ktx = "1.1.0"
Expand Down
7 changes: 1 addition & 6 deletions MaskedEditText/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vicmikhailau.maskededittext">

<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">

</application>

<application android:label="@string/app_name"/>
</manifest>
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MaskedEditText-green.svg?style=true)](https://android-arsenal.com/details/1/3659) [![Codewake](https://www.codewake.com/badges/ask_question.svg)](https://www.codewake.com/p/maskededittext)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MaskedEditText-green.svg?style=true)](https://android-arsenal.com/details/1/3659)
# MaskedEditText

It allows you to add a mask to EditText
Expand All @@ -7,15 +7,15 @@ It allows you to add a mask to EditText

# Version

2.0.4
3.0.1

# Installation

To use this library in your android project, just simply add the following dependency into your build.gradle

```sh
dependencies {
compile 'com.vicmikhailau:MaskedEditText:2.0.4'
implementation 'com.vicmikhailau:MaskedEditText:3.0.1'
}
```

Expand Down Expand Up @@ -63,8 +63,16 @@ For example: you would like create a mask for a mobile number in format **(029)7
String unmaskedString = formatter.formatString(text).getUnMaskedString();
```

# Fixes and updates

Unfortunately, there is no way to devote much time to the project. Please feel free to Fork the project and add Pull requests. Thanks a lot!

# Change Logs

### v3.0.1

Moved library to androidx and kotlin.

### v2.0.4

Updated support version.
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
Expand Down

0 comments on commit bed90e4

Please sign in to comment.