Skip to content

Commit 88fd7bb

Browse files
Feat :
- custom edittext with outlined border
0 parents  commit 88fd7bb

File tree

158 files changed

+1768
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+1768
-0
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx

.idea/codeStyles/Project.xml

Lines changed: 125 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: 6 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: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

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

.idea/runConfigurations.xml

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

.idea/vcs.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.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle.kts

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
plugins {
2+
id(Plugins.androidApplication)
3+
id(Plugins.kotlinAndroid)
4+
id(Plugins.kotlinExtensions)
5+
id(Plugins.kapt)
6+
}
7+
8+
android {
9+
compileSdkVersion(Configs.compileSdkVersion)
10+
defaultConfig {
11+
applicationId = applicationId
12+
minSdkVersion(Configs.minSdkVersion)
13+
targetSdkVersion(Configs.targetSdkVersion)
14+
versionCode = Configs.versionCode
15+
versionName = Configs.versionName
16+
dataBinding.isEnabled = true
17+
vectorDrawables.useSupportLibrary = true
18+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
19+
}
20+
21+
compileOptions {
22+
sourceCompatibility = JavaVersion.VERSION_1_8
23+
targetCompatibility = JavaVersion.VERSION_1_8
24+
}
25+
26+
/*tasks.withType <KotlinCompile> {
27+
kotlinOptions {
28+
jvmTarget = JavaVersion.VERSION_1_8.toString()
29+
}
30+
}*/
31+
32+
buildTypes {
33+
getByName("release") {
34+
isMinifyEnabled = false
35+
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
36+
}
37+
}
38+
}
39+
40+
dependencies {
41+
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
42+
43+
implementation {
44+
+Libs.Kotlin.stdLib
45+
+Libs.Androidx.appCompat
46+
+Libs.Kotlin.ktxCore
47+
+Libs.sdp
48+
+Libs.ssp
49+
+Libs.timber
50+
+Libs.Androidx.constraintLayout
51+
+Libs.Kotlin.lifecycle
52+
}
53+
54+
implementation(project(":customedittextoutlinedborder"))
55+
androidTestImplementation(TestLibraries.extJunit)
56+
androidTestImplementation(TestLibraries.espresso)
57+
}

app/proguard-rules.pro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.kts.kts.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile

0 commit comments

Comments
 (0)