diff options
author | Allan Wang <me@allanwang.ca> | 2021-04-17 15:32:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 15:32:32 -0700 |
commit | 12f4725a90762aeeca8936b6449445e800b2f09a (patch) | |
tree | 584d1347abf542361c327519942080c75c16a889 /sample/src/main | |
parent | 3ec75195a25f6e502ceca7a89aa66f6313e263e6 (diff) | |
parent | 1057b6a113c7b2fa1320ce0378e34484f901ee2f (diff) | |
download | kau-12f4725a90762aeeca8936b6449445e800b2f09a.tar.gz kau-12f4725a90762aeeca8936b6449445e800b2f09a.tar.bz2 kau-12f4725a90762aeeca8936b6449445e800b2f09a.zip |
Merge pull request #261 from AllanWang/versions
Diffstat (limited to 'sample/src/main')
-rw-r--r-- | sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt | 6 | ||||
-rw-r--r-- | sample/src/main/res/xml/kau_changelog.xml | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt b/sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt index ee39184..970d3eb 100644 --- a/sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt +++ b/sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt @@ -23,8 +23,8 @@ import ca.allanwang.kau.kpref.KPrefFactoryAndroid import dagger.Module import dagger.Provides import dagger.hilt.InstallIn -import dagger.hilt.android.components.ApplicationComponent import dagger.hilt.android.qualifiers.ApplicationContext +import dagger.hilt.components.SingletonComponent /** * Created by Allan Wang on 2017-06-07. @@ -44,14 +44,14 @@ class KPrefSample(factory: KPrefFactory) : KPref("pref_sample", factory = factor } @Module -@InstallIn(ApplicationComponent::class) +@InstallIn(SingletonComponent::class) object PrefModule { @Provides fun pref(factory: KPrefFactory): KPrefSample = KPrefSample(factory) } @Module -@InstallIn(ApplicationComponent::class) +@InstallIn(SingletonComponent::class) object PrefFactoryModule { @Provides fun factory(@ApplicationContext context: Context): KPrefFactory = KPrefFactoryAndroid(context) diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index e88d697..c1648b0 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -6,6 +6,12 @@ <item text="" /> --> + <version title="v6.2.0" /> + <item text="Add support for Android 4.2" /> + <item text="Remove all usages of kotlin synthetics" /> + <item text="Many version bumps" /> + <item text="Added Hilt dep" /> + <version title="v6.1.0" /> <item text="Add support for Android 4.1 RC03" /> <item text="Breaking: Updated iconics, buganizer, and spotless dependencies (major version bump)" /> |