Skip to content

Commit bf7d3b0

Browse files
Base Application
0 parents  commit bf7d3b0

Some content is hidden

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

49 files changed

+1190
-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/.name

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/codeStyles/Project.xml

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

.idea/jarRepositories.xml

Lines changed: 25 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.

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: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
4+
apply plugin: 'kotlin-kapt'
5+
apply plugin: "androidx.navigation.safeargs.kotlin"
6+
7+
android {
8+
compileSdkVersion 30
9+
buildToolsVersion "30.0.1"
10+
11+
defaultConfig {
12+
applicationId "com.decimalab.easynews"
13+
minSdkVersion 21
14+
targetSdkVersion 30
15+
versionCode 1
16+
versionName "1.0"
17+
18+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19+
}
20+
21+
buildTypes {
22+
release {
23+
minifyEnabled false
24+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
25+
}
26+
}
27+
compileOptions {
28+
sourceCompatibility JavaVersion.VERSION_1_8
29+
targetCompatibility JavaVersion.VERSION_1_8
30+
}
31+
kotlinOptions {
32+
jvmTarget = JavaVersion.VERSION_1_8.toString()
33+
}
34+
}
35+
36+
dependencies {
37+
implementation fileTree(dir: "libs", include: ["*.jar"])
38+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
39+
implementation 'androidx.core:core-ktx:1.3.1'
40+
implementation 'androidx.appcompat:appcompat:1.2.0'
41+
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
42+
testImplementation 'junit:junit:4.13'
43+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
44+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
45+
46+
// Architectural Components
47+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
48+
49+
// Room
50+
implementation "androidx.room:room-runtime:2.2.5"
51+
kapt "androidx.room:room-compiler:2.2.5"
52+
53+
// Kotlin Extensions and Coroutines support for Room
54+
implementation "androidx.room:room-ktx:2.2.5"
55+
56+
// Coroutines
57+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
58+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
59+
60+
// Coroutine Lifecycle Scopes
61+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
62+
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
63+
64+
// Retrofit
65+
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
66+
implementation 'com.squareup.retrofit2:converter-gson:2.8.1'
67+
implementation "com.squareup.okhttp3:logging-interceptor:4.7.2"
68+
69+
// Navigation Components
70+
implementation "androidx.navigation:navigation-fragment-ktx:2.3.0"
71+
implementation "androidx.navigation:navigation-ui-ktx:2.3.0"
72+
73+
// Glide
74+
implementation 'com.github.bumptech.glide:glide:4.11.0'
75+
kapt 'com.github.bumptech.glide:compiler:4.11.0'
76+
77+
}

0 commit comments

Comments
 (0)