Samson Jisso
12/18/2023, 8:48 AMrunReleaseDistributable
and the error is Caused by: java.io.FileNotFoundException: serviceAccountKey.json (No such file or directory)
, the app runs perfectly fine the error happens when running only runReleaseDistributable
, I need help, please.Alexander Maryanovsky
12/18/2023, 8:56 AMSamson Jisso
12/18/2023, 8:58 AMAlexander Maryanovsky
12/18/2023, 8:59 AMSamson Jisso
12/18/2023, 9:40 AMincludeAllModules = true
in he build gradle file under targetformats
2. and moving the json file to resource
3. lastly, by accessing the file using ClassLoader.getSystemClassLoader().getResourceAsStream("serviceAccountKey.json")
Samson Jisso
12/18/2023, 9:40 AMAlexander Maryanovsky
12/18/2023, 1:26 PM