Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
disable location tagging by default #412
Comments
thestinger
added
Type: enhancement
nougat-port
labels
Sep 2, 2016
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
anestisb
Sep 8, 2016
I'm guessing you're referring to default camera2 app location tagging right?
Do you want to skip the entire first run dialog and default in the background to false (user has to open camera app, swipe to go to setting and enable manually if desired), or choose disable value by default on the first run dialog?
Default first run dialog value is here
/** The default preference of whether enabling location recording. */
private static final boolean DEFAULT_LOCATION_RECORDING_ENABLED = true;
Should run first dialog global setting check is here:
private boolean shouldShowLocationDialog() {
return !mSettingsManager.isSet(SettingsManager.SCOPE_GLOBAL, Keys.KEY_RECORD_LOCATION);
}
anestisb
commented
Sep 8, 2016
|
I'm guessing you're referring to default camera2 app location tagging right? Do you want to skip the entire first run dialog and default in the background to false (user has to open camera app, swipe to go to setting and enable manually if desired), or choose disable value by default on the first run dialog? Default first run dialog value is here
Should run first dialog global setting check is here:
|
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
thestinger
Sep 8, 2016
Contributor
We used to change the default value for the preference in Marshmallow, but I'm likely going to switch to just toggling it off by default in the first run dialog. These nougat-port tagged issues are mostly cases where the old commits didn't apply cleanly and some work is required but in this case I just want to review the past decision.
|
We used to change the default value for the preference in Marshmallow, but I'm likely going to switch to just toggling it off by default in the first run dialog. These nougat-port tagged issues are mostly cases where the old commits didn't apply cleanly and some work is required but in this case I just want to review the past decision. |
thestinger
closed this
Feb 21, 2017
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
thestinger
Feb 21, 2017
Contributor
This is implemented again. The permission request should probably be moved, but it's good enough for the time being.
|
This is implemented again. The permission request should probably be moved, but it's good enough for the time being. |
thestinger commentedSep 2, 2016
No description provided.