I'm facing a problem with connection to Google sheets via my credentials.json
file (that was created for Android app). I simply can't read file in Android studio, but can read it in IntelliJ. Here on the images. I just want to understand what I'm doing wrong.enter image description here
enter image description here
I used the simple code in both programm:
package org.example;
public class NewClass {
public static void execute() {
System.out.println(NewClass.class
.getResourceAsStream("/client_secret.json"));
}
public static void main(String[] args) {execute();}
}
I've read many posts about this problem. But still I got this error and I don't understand why.