Giter VIP home page Giter VIP logo

Comments (11)

mnchiu avatar mnchiu commented on August 28, 2024 3

I, too, have run into this issue.

from chuck.

erenbakac avatar erenbakac commented on August 28, 2024 1

any solution on this?

from chuck.

jgilfelt avatar jgilfelt commented on August 28, 2024

Thanks! I half anticipated this would come up, by which point my use of ChuckContentProvider was well intrenched.

I'm inclined to just add a note to the docs saying this project is not suitable for multi-process apps, until I can determine if there is enough demand to make this effort worthwhile.

from chuck.

MrMannWood avatar MrMannWood commented on August 28, 2024

I am also running into this problem. I'm working on a simple SyncAdapter application, and was hoping to use Chuck for some network diagnostics. Looks like the issue is known, so I just wanted to add my name to the hat of affected users.

from chuck.

su1216 avatar su1216 commented on August 28, 2024

I am also running into this problem. I use another process to collect my app crash report and send it to server.

from chuck.

TonyTangAndroid avatar TonyTangAndroid commented on August 28, 2024

Just for feedback, I have also run into this problem.

from chuck.

icespring avatar icespring commented on August 28, 2024

I am running into this problem too. I start an webview in another process for memory leak from webview.

from chuck.

lrampazzo avatar lrampazzo commented on August 28, 2024

Workaround: TRANSACTION_URI can be initialized through reflection when necessary

Class clazz = getClass().getClassLoader().loadClass(
    "com.readystatesoftware.chuck.internal.data.ChuckContentProvider");
Field field = clazz.getField("TRANSACTION_URI");
(field.get(null) == null) {
    field.set(null, Uri.parse("content://" + context.getPackageName() +
        ".chuck.provider/transaction"));
}

from chuck.

rehmanmuradali avatar rehmanmuradali commented on August 28, 2024

Any updates on this issue ? Also run into this problem while using SyncAdapter

from chuck.

AlienAsRoger avatar AlienAsRoger commented on August 28, 2024

Hello! Any updates?

from chuck.

cortinico avatar cortinico commented on August 28, 2024

Quick update: this project has been forked https://github.com/ChuckerTeam/chucker
Please note that we removed the ContentProvider in chucker as we haven't found a great use case for that. If you have one, please open an issue on the fork and we re-implement it 👍

from chuck.

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.