Skip to content

Commit

Permalink
Updated library versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeharikv112 committed Feb 22, 2020
1 parent 9d01de3 commit 1861c9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ apply plugin: 'kotlinx-serialization'


android {
compileSdkVersion 28
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.dev.ccodetest"
minSdkVersion 23
targetSdkVersion 28
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "com.dev.ccodetest.app.CustomInstrumentationRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SharedPreferenceHelper(var context: Context) {

fun getStringData(key : String): String {
return if(mSharedPref.contains(key))
mSharedPref.getString(key,"")
mSharedPref.getString(key,"")!!
else
""
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ buildscript {
app_compat = '1.1.0'
legacy_support = '1.0.0'
koin_version = '2.0.1'
material_design = '1.2.0-alpha02'
material_design = '1.2.0-alpha04'
retrofit_version = '2.6.0'
jackson_fasterxml = '2.9.7'
core_ktx = '1.1.0'
core_ktx = '1.2.0'
constraint_lyt = '1.1.3'
lifecycle_extension = '2.1.0'
lifecycle_extension = '2.2.0'
couroutines_version = '1.3.0-M2'
http_logging = '4.1.0'
multidex = '2.0.1'
Expand Down

0 comments on commit 1861c9e

Please sign in to comment.