blob: 93690d48cd046e6da6621777dffa7e5ee1cb38f0 [file] [log] [blame]
Jeff Sharkey02ffba92013-03-08 16:13:15 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.shell;
18
19import android.content.Context;
20import android.content.SharedPreferences;
21
22/**
23 * Preferences related to bug reports.
24 */
Felipe Lemefcca68d2016-04-12 14:00:07 -070025final class BugreportPrefs {
26 static final String PREFS_BUGREPORT = "bugreports";
Jeff Sharkey02ffba92013-03-08 16:13:15 -080027
28 private static final String KEY_WARNING_STATE = "warning-state";
29
Felipe Lemefcca68d2016-04-12 14:00:07 -070030 static final int STATE_UNKNOWN = 0;
31 // Shows the warning dialog.
32 static final int STATE_SHOW = 1;
33 // Skips the warning dialog.
34 static final int STATE_HIDE = 2;
Jeff Sharkey02ffba92013-03-08 16:13:15 -080035
Felipe Lemefcca68d2016-04-12 14:00:07 -070036 static int getWarningState(Context context, int def) {
Jeff Sharkey02ffba92013-03-08 16:13:15 -080037 final SharedPreferences prefs = context.getSharedPreferences(
38 PREFS_BUGREPORT, Context.MODE_PRIVATE);
39 return prefs.getInt(KEY_WARNING_STATE, def);
40 }
41
Felipe Lemefcca68d2016-04-12 14:00:07 -070042 static void setWarningState(Context context, int value) {
Jeff Sharkey02ffba92013-03-08 16:13:15 -080043 final SharedPreferences prefs = context.getSharedPreferences(
44 PREFS_BUGREPORT, Context.MODE_PRIVATE);
45 prefs.edit().putInt(KEY_WARNING_STATE, value).apply();
46 }
47}