Skip to content

Commit

Permalink
Init base application and fix issue lib
Browse files Browse the repository at this point in the history
  • Loading branch information
LNMCode committed Apr 24, 2022
1 parent ab35152 commit 8bb6b69
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id 'org.jetbrains.kotlin.android'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-android-extensions'
id 'androidx.navigation.safeargs.kotlin'
id 'kotlin-parcelize'
}

android {
Expand Down Expand Up @@ -48,7 +48,7 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

def fragment = "1.5.0-beta1"
def fragment = "1.4.1"
implementation "androidx.fragment:fragment-ktx:$fragment"

// -- Retrofit2
Expand All @@ -64,7 +64,7 @@ dependencies {
implementation "androidx.room:room-ktx:$room_version"

// jetpack navigation component
def nav_version = "2.5.0-beta1"
def nav_version = "2.4.2"
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
implementation "androidx.navigation:navigation-runtime:$nav_version"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package="com.lnmcode.galleryapp">

<application
android:name=".presentation.BaseApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.lnmcode.galleryapp.presentation

import android.app.Application
import android.content.Context

class BaseApplication: Application() {

}

0 comments on commit 8bb6b69

Please sign in to comment.