Skip to content

Commit 510c794

Browse files
Deepak SharmaDeepak Sharma
authored andcommitted
first commit
0 parents  commit 510c794

File tree

143 files changed

+6274
-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.

143 files changed

+6274
-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: 122 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: 23 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: 9 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

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
4+
apply plugin: 'kotlin-kapt'
5+
android {
6+
compileSdkVersion 29
7+
buildToolsVersion "29.0.2"
8+
defaultConfig {
9+
applicationId "com.webaddicted.techcleanarch"
10+
minSdkVersion 16
11+
targetSdkVersion 29
12+
versionCode 1
13+
versionName "1.0"
14+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15+
}
16+
buildTypes {
17+
release {
18+
minifyEnabled false
19+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
20+
}
21+
}
22+
dataBinding {
23+
enabled = true
24+
}
25+
android {
26+
compileOptions {
27+
sourceCompatibility JavaVersion.VERSION_1_8
28+
targetCompatibility JavaVersion.VERSION_1_8
29+
}
30+
}
31+
}
32+
33+
dependencies {
34+
implementation 'com.android.support:design:29.0.0'
35+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
36+
// livedata
37+
implementation "android.arch.lifecycle:extensions:$LIVEDATA_VERSION"
38+
annotationProcessor "android.arch.lifecycle:compiler:$LIVEDATA_VERSION"
39+
annotationProcessor "com.android.databinding:compiler:3.1.2"
40+
implementation "android.arch.lifecycle:runtime:$LIVEDATA_VERSION"
41+
kapt "android.arch.lifecycle:compiler:1.1.0"
42+
api project(path: ':data')
43+
44+
// Recycler view
45+
implementation "androidx.recyclerview:recyclerview:$RECYCLER_VIEW_VERSION"
46+
implementation "androidx.cardview:cardview:$CARD_VERSION"
47+
implementation "com.github.bumptech.glide:glide:$GLIDE_VERSION"
48+
// lottie animation
49+
implementation 'com.airbnb.android:lottie:3.0.0'
50+
// dimension
51+
implementation 'com.intuit.sdp:sdp-android:1.0.6'
52+
}
53+
kapt {
54+
generateStubs = true
55+
}

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.
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)