Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Commit eee0a15

Browse files
committed
complete library
1 parent e3d2b12 commit eee0a15

File tree

22 files changed

+477
-21
lines changed

22 files changed

+477
-21
lines changed

.idea/codeStyles/Project.xml

Lines changed: 139 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VerifyCodeEditText/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
buildToolsVersion "30.0.3"
99

1010
defaultConfig {
11-
minSdkVersion 16
11+
minSdkVersion 17
1212
targetSdkVersion 30
1313
versionCode 1
1414
versionName "1.0"
@@ -37,6 +37,7 @@ dependencies {
3737
implementation 'androidx.core:core-ktx:1.3.2'
3838
implementation 'androidx.appcompat:appcompat:1.2.0'
3939
implementation 'com.google.android.material:material:1.3.0'
40+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
4041
testImplementation 'junit:junit:4.13.2'
4142
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4243
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.jakode.verifycodeedittext
2+
3+
fun interface CodeCompleteListener {
4+
fun complete(complete: Boolean)
5+
}

0 commit comments

Comments
 (0)