Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
baleen37 committed Aug 8, 2017
1 parent e6efa7a commit 6cc596e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
versionName "0.0.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package me.baleen.sharedpreferencedelegate
* Created by baleen37 on 09/08/2017.
*/
class UserPreference : PreferenceUtil() {
var email by StringPref("unknown")
var email by StringPref(defaultValue = "unknown")
var age by IntPref("PREF_AGE")
var male by BooleanPref(defaultValue = false)
var score by FloatPref()
Expand Down

0 comments on commit 6cc596e

Please sign in to comment.