(Context context)
| 148 | } |
| 149 | |
| 150 | private static String getUri(Context context) { |
| 151 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); |
| 152 | return prefs.getString("gemini_uri", BuildConfig.GEMINI_ENDPOINT); |
| 153 | } |
| 154 | |
| 155 | private static JSONObject call(Context context, String method, String path, JSONObject args) throws JSONException, IOException { |
| 156 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); |
no test coverage detected