Skip to content

Commit

Permalink
Try to solve issue #45
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Muzaffar committed Oct 10, 2018
1 parent fb879fa commit 706f5e5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-alpha12'
classpath 'com.android.tools.build:gradle:3.3.0-alpha13'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'

Expand Down
7 changes: 3 additions & 4 deletions pinentryedittext/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
siteUrl = 'https://github.com/alphamu/PinEntryEditText'
gitUrl = 'https://github.com/alphamu/PinEntryEditText.git'

libraryVersion = '2.0.1'
libraryVersion = '2.0.2'

developerId = 'alphamu'
developerName = 'Ali Muzaffar'
Expand All @@ -25,13 +25,13 @@ ext {

android {
compileSdkVersion 28
buildToolsVersion '28.0.2'
buildToolsVersion '28.0.3'

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName '2.0.1'
versionName '2.0.2'
}
buildTypes {
release {
Expand All @@ -48,7 +48,6 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
}

apply from: 'https://raw.githubusercontent.com/alphamu/JCenter/master/installv1.gradle'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import androidx.appcompat.widget.AppCompatEditText;
import androidx.core.content.ContextCompat;
import androidx.core.text.TextUtilsCompat;
import androidx.legacy.view.ViewCompat;
import androidx.core.view.ViewCompat;

public class PinEntryEditText extends AppCompatEditText {
private static final String XML_NAMESPACE_ANDROID = "http://schemas.android.com/apk/res/android";
Expand Down
10 changes: 6 additions & 4 deletions sample-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion '28.0.2'
buildToolsVersion '28.0.3'

defaultConfig {
applicationId 'com.alimuzaffar.sample.pin'
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName '2.0.0'
versionName '2.0.2'
}
buildTypes {
release {
Expand All @@ -26,6 +26,8 @@ dependencies {
implementation fileTree(include: ['*.jar, *.aar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation project(':pinentryedittext')
implementation ('com.alimuzaffar.lib:pinentryedittext:2.0.1') {
exclude group: 'androidx.appcompat', module: 'appcompat'
exclude group: 'androidx.legacy', module: 'legacy-support-v13'
}
}

0 comments on commit 706f5e5

Please sign in to comment.