Giter Club home page Giter Club logo

Comments (7)

cioccarellia avatar cioccarellia commented on May 29, 2024

It'd be good to have the code, in order to understand what caused the crash

from ksprefs.

integral0909 avatar integral0909 commented on May 29, 2024


    override fun onResume() {
        super.onResume()

        fillAccountSummary()
        showHideSummaryBottom()

       ... ...

    private fun showHideSummaryBottom(){

        if (ATraderApp.prefs.pull(Constants.IS_SUMMARY_SHOWED, true)) {
            binding.llSummary.visibility = View.VISIBLE
            if (ATraderApp.prefs.pull(Constants.IS_Night_Mode, false)){
                binding.ivSummaryIcon.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.ic_summary_dark))
            }else{
                binding.ivSummaryIcon.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.ic_summary_light))
            }
            binding.bottomNav.setBackgroundColor(getColor(R.color.color_background))
        } else {
            binding.llSummary.visibility = View.GONE
            if (ATraderApp.prefs.pull(Constants.IS_Night_Mode, false)){
                binding.bottomNav.setBackgroundColor(getColor(R.color.light_black))
            }else{
                binding.bottomNav.setBackgroundColor(getColor(R.color.light_bg_color))
            }
            binding.ivSummaryIcon.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.ic_summary_up_trans))
        }

        ....

from ksprefs.

integral0909 avatar integral0909 commented on May 29, 2024

and firebase crashylitics log

Caused by java.lang.NullPointerException
com.cioccarellia.ksprefs.extensions.ReaderExtsKt.readOrThrow (ReaderExts.kt:34)
com.cioccarellia.ksprefs.enclosure.KspEnclosure.readUnsafe$library (KspEnclosure.kt:69)
com.cioccarellia.ksprefs.dispatcher.KspDispatcher.pull (KspDispatcher.kt:88)
com.arktechltd.InfinityTradeZone.view.MainActivity.showHideSummaryBottom (MainActivity.kt:1590)
com.arktechltd.InfinityTradeZone.view.MainActivity.onResume (MainActivity.kt:575)

from ksprefs.

cioccarellia avatar cioccarellia commented on May 29, 2024

The code seems to work fine. Can you provide a Minimal and Reproducible example?

from ksprefs.

integral0909 avatar integral0909 commented on May 29, 2024

My app produced java.lang.NullPointerException
What is difference between java.lang.NullPointerException and KotlinNullPointerException?

from ksprefs.

integral0909 avatar integral0909 commented on May 29, 2024

in the following line


@CheckResult
internal fun Reader.readOrThrow(
    key: String
): ByteArray = try {
    getString(key, null)!!.bytes()
} catch (knpe: KotlinNullPointerException) {
    throw NoSuchKeyException(key)
}

from ksprefs.

cioccarellia avatar cioccarellia commented on May 29, 2024

Without a mre I can't debug the issue and understand what happens.
I suspect you may be making some inconsistent transactions on shared preferences which make the whole thing crash.
To get this reopened, try to put together a working sample and provide more in-depth details (device, android version, Android studio version, target SDK, actual code, and whatever you think is going to help fix this issue).

from ksprefs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.