-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from AliAzaz/release-v2.1_bugs_fixes
Bugs Fixes 2.1
- Loading branch information
Showing
18 changed files
with
120 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...er/aliazaz/edittextpicker/BaseActivity.kt → ...java/com/edittext/aliazaz/BaseActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...er/aliazaz/edittextpicker/MainActivity.kt → ...java/com/edittext/aliazaz/MainActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,21 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
ext { | ||
build_version = '33.0.0' | ||
compile_version = 33 | ||
target_version = 33 | ||
min_version = 21 | ||
version_code = 6 | ||
version_name = "2.1.0" | ||
kotlin_version = "1.6.10" | ||
corektx_version = "1.9.0" | ||
appcompat_version = "1.6.0" | ||
constraint_version = "2.1.4" | ||
espresso_version = '3.5.1' | ||
junit_version = '4.13.2' | ||
junit_ext_version = '1.1.5' | ||
} | ||
|
||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
dependencies { | ||
|
||
classpath 'com.android.tools.build:gradle:7.4.2' | ||
} | ||
} | ||
|
||
plugins { | ||
id 'com.android.application' version '7.2.2' apply false | ||
id 'com.android.library' version '7.2.2' apply false | ||
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false | ||
id 'com.android.application' version '7.4.2' apply false | ||
id 'com.android.library' version '7.4.2' apply false | ||
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false | ||
} | ||
|
||
task clean(type: Delete) { | ||
tasks.register('clean', Delete) { | ||
delete rootProject.buildDir | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
object ConfigurationData { | ||
const val minSdkVersion = 21 | ||
const val targetSdkVersion = 34 | ||
const val compileSdkVersion = 34 | ||
const val versionCode = 7 | ||
const val versionName = "2.1.1" | ||
const val buildToolsVersion = "34.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
object Layouts { | ||
const val constraint = | ||
"androidx.constraintlayout:constraintlayout:${DependenciesVersions.constraintVersion}" | ||
} | ||
|
||
object AndroidApp { | ||
const val appCompat = | ||
"androidx.appcompat:appcompat:${DependenciesVersions.supportLibraryVersion}" | ||
const val coreKTX = "androidx.core:core-ktx:${DependenciesVersions.ktxVersion}" | ||
const val stringLANG = | ||
"org.apache.commons:commons-lang3:${DependenciesVersions.stringLangVersion}" | ||
} | ||
|
||
object Testing { | ||
const val junit = "junit:junit:${DependenciesVersions.junitVersion}" | ||
const val junitImpl = "androidx.test.ext:junit:${DependenciesVersions.junitImplVersion}" | ||
const val expresso = | ||
"androidx.test.espresso:espresso-core:${DependenciesVersions.espressoVersion}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
object DependenciesVersions { | ||
const val stringLangVersion = "3.12.0" | ||
const val constraintVersion = "2.1.4" | ||
const val junitImplVersion = "1.1.5" | ||
const val espressoVersion = "3.5.1" | ||
const val supportLibraryVersion = "1.6.1" | ||
const val ktxVersion = "1.12.0" | ||
const val junitVersion = "4.13.2" | ||
const val cardVersion = "1.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<manifest package="com.edittextpicker.aliazaz" /> | ||
<manifest /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Sat Mar 20 11:36:17 PKT 2021 | ||
#Fri Oct 06 12:10:29 PKT 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters