Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: Is it possible to sign debug version by some Java tools for Google play console

  1. #1
    Junior Member
    Join Date
    Jun 2024
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Is it possible to sign debug version by some Java tools for Google play console

    I have huge trouble with my Android application - this application done in NS, than NS can created bundle -aab or apk
    Hge problem that NS can not sign Debug version, only Release.
    My Debug version working fine, but release version don't working, filepicker show error "java.lang.NoClassDefFoundError: Failed resolution of Landroidx/documentfile/provider/DocumentFile"
    any attempt to change gradle, manipulation with versions of library was failed
    in other case Google Play console accept only signed aab bundle
    is this way to sign aab bundle without Nativescript - with Java tools?

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,088
    Thanks
    65
    Thanked 2,712 Times in 2,662 Posts

    Default Re: Is it possible to sign debug version by some Java tools for Google play console

    It will be better if you get the Release version working.
    release version don't working, filepicker show error "java.lang.NoClassDefFoundError: Failed resolution of Landroidx/documentfile/provider/DocumentFile"
    Do you have the right support library?

    https://stackoverflow.com/questions/...api-22-android
    If you don't understand my answer, don't ignore it, ask a question.

  3. #3
    Junior Member
    Join Date
    Jun 2024
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Is it possible to sign debug version by some Java tools for Google play console

    thank you, interesting.will try
    if I understand that Debug version never crashed, needed modules dynamically adding, is this correct?

    And no, I still have no included this module https://developer.android.com/refere...umentFile.html
    but why this module is marked as deprecated?

    Also I try many experiment what Java version is usable for my application and what not usable - result is maybe strange - my application can working only in JDK-19, if I change version up or down - my Gradle script stop working at all

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,088
    Thanks
    65
    Thanked 2,712 Times in 2,662 Posts

    Default Re: Is it possible to sign debug version by some Java tools for Google play console

    java.lang.NoClassDefFoundError: Failed resolution of Landroidx/documentfile/provider/DocumentFile
    The name of the missing class: androidx/documentfile/provider/DocumentFile
    is NOT the class that is depreciated: android.support.v4.provider.DocumentFile
    The doc at the link you provided says:
    The support library has been superseded by AndroidX which is part of Jetpack.
    Do you have Jetpack?

    I haven't done much android programming lately and am way behind on the newest stuff.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Replies: 1
    Last Post: October 30th, 2020, 06:00 PM
  2. google chrome last version 4th Feb
    By asillam in forum What's Wrong With My Code?
    Replies: 0
    Last Post: February 6th, 2020, 08:58 AM
  3. Introduction Tools for generate service from java console program / ?
    By navidnmc in forum Java Theory & Questions
    Replies: 0
    Last Post: October 6th, 2012, 02:00 AM
  4. Is it Possible to implement single sign on on google apps engine?
    By Stefan_Lam in forum Java Theory & Questions
    Replies: 0
    Last Post: August 5th, 2011, 10:02 PM