Recent content by alex-1999

  1. A

    Google Play console require 20 testers - is there a special services to invite testers?

    Google requires 20 testers, but I'm solitary developer. Is there a some special services to invite testers?
  2. A

    What tools allow me investigate application element path like DevTools in Browser?

    If you doing application in Android Studio there are no question how you can receive element path like this android:id/content/GridLayout[1]/ContentLayout[1]/PageLayout[1]/GridLayout[2]/GridLayout[1]/GridLayout[1] But I use another tools for development and I need to investigate my application...
  3. A

    How I can avoid accessibility warning without rewriting application?

    I make my first application and can not understand sophisticated workflow in Google Play console - InternarTest, than Close Test, than Open Test and when my application is appears for everybody. Currently I receive a lot of Google warning, this warning is idiotic and I can not accept it, for...
  4. A

    Upload to Google play impossible - "The Android App Bundle was not signed."

    yes, of course. Unfortunately Google ALWAYS ignored any request from developers.
  5. A

    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...
  6. A

    Upload to Google play impossible - "The Android App Bundle was not signed."

    Of course, I ask question from Google support, because this is paid account. And, as usually, Google support always ignore any important questions.
  7. A

    Upload to Google play impossible - "The Android App Bundle was not signed."

    I create key for sign application in Android Studio Then create signed bundle with command: >ns build android --debug --key-store-path E:...MyVault.jks --key-store-password xxxxxxxxx --key-store-alias Upload --key-store-alias-password xxxxxxxx --aab --copy-to...
  8. A

    Question Google refuse to verify own email as developer mail in Google play console

    I have contact to support 3 times and I received 3 different answer about illegal Google activity what Google hides. And mask their criminal activity as mail notification with code just not reach my mail. One answer was - we clarify you as GB customer, but now try to register as BG customer. Who...
  9. A

    Question Google refuse to verify own email as developer mail in Google play console

    I made from this account so many operations with Google Cloud and finally I understand what Google want from me - to fill form "Verify your business". Just add new account to avoid this trouble.
  10. A

    Question Google refuse to verify own email as developer mail in Google play console

    I have account with 2-step verification, I have some projects in Google Clouds, but Google refuse to register own mail, my email in Google play console. "We can't verify your email address right now. Try again later. " Google support missing at all (except Google workspace...
  11. A

    Access to file

    My application need to create and uploading JSON file. Application definitely created file - I can see it in Android studio, Than I try to read the same file by my application. But I can not access to to files on CD-card. This is my Manifest <uses-permission...
  12. A

    Error in downloadBitmap - java.io.IOException: Unable to connect to: file://data/data/

    I define iconRef in Angular Nativescript code as: <Image #icon /> @ViewChild("icon", { static: false }) iconRef: ElementRef; and try dynamically changing image as this.iconRef.nativeElement.src=`file:/${this.getfullIconPath(this.iconPath)}` file .png is present, I'm sure that...