This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.os.SystemClock; | |
| import android.support.v4.util.LruCache; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| /** | |
| * An Lru Cache that allows entries to expire after | |
| * a period of time. Items are evicted based on a combination | |
| * of time, and usage. Adding items past the {@code maxSize} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Project | |
| plugins { | |
| alias(libs.plugins.ksp) apply false | |
| alias(libs.plugins.hilt) apply false | |
| } | |
| // Module | |
| plugins { | |
| alias(libs.plugins.ksp) | |
| alias(libs.plugins.hilt) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.protodatastoretest | |
| import androidx.appcompat.app.AppCompatActivity | |
| import android.os.Bundle | |
| import android.util.Log | |
| import androidx.lifecycle.ViewModelProvider | |
| import kotlinx.android.synthetic.main.activity_main.* | |
| class MainActivity : AppCompatActivity() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun <T> LiveData<T>.observeOnce(lifecycleOwner: LifecycleOwner, observer: Observer<T>) { | |
| observe(lifecycleOwner, object : Observer<T> { | |
| override fun onChanged(t: T?) { | |
| observer.onChanged(t) | |
| removeObserver(this) | |
| } | |
| }) | |
| } | |
| //Using | |
| liveData.observeOnce(this, Observer<Password> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.protodatastoretest | |
| import androidx.appcompat.app.AppCompatActivity | |
| import android.os.Bundle | |
| import android.util.Log | |
| import androidx.lifecycle.ViewModelProvider | |
| import kotlinx.android.synthetic.main.activity_main.* | |
| class MainActivity : AppCompatActivity() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Unable to load class 'com.android.build.gradle.BaseExtension'. | |
| Possible causes for this unexpected error include: | |
| Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) | |
| Re-download dependencies and sync project (requires network) | |
| The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. | |
| Stop Gradle build processes (requires restart) | |
| Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project. |