2073 Commits

Author SHA1 Message Date
TreeHugger Robot
a54c89ec56 Merge "Standardize usages of "/" separator in SettingsLib" 2017-07-19 20:39:10 +00:00
Fan Zhang
60b850de5e Add Wifi's security type to contentDescription
Change-Id: I0c1945fd8776814ddf0097c0c1f27ed4dd1c73b2
Fix: 63805288
Test: robotests
2017-07-19 09:22:49 -07:00
Glen Kuhne
446afac159 Add FailureReason to WifiConfiguration
Added a new field that caches extra details about connection failures so
that they may be surfaced in the UI.

Bug: 62915994
Test: Manual...
Change-Id: I6e7860df4ea755e72fbdd4b6bf514338f2f1de80
2017-07-18 14:03:32 -07:00
Daniel Nishi
6c790c2cf8 Merge "Add home activity methods to wrapper." into oc-dr1-dev am: d332076636
am: 5ec6335b74

Change-Id: Iee4b88878f5784172e363c9670f234bda092c6fd
2017-07-18 20:02:34 +00:00
Daniel Nishi
5ec6335b74 Merge "Add home activity methods to wrapper." into oc-dr1-dev
am: d332076636

Change-Id: I623d431fe052649ee2bf80a6ab459f6424f7e9e0
2017-07-18 19:44:33 +00:00
TreeHugger Robot
e1951ac1d5 Merge "Internationalize ZoneGetter properly" 2017-07-18 19:42:07 +00:00
Daniel Nishi
d332076636 Merge "Add home activity methods to wrapper." into oc-dr1-dev 2017-07-18 19:34:42 +00:00
Roozbeh Pournader
5b81031a2f Internationalize ZoneGetter properly
Previously, the string for "GMT", as well as the digits and the
positive and negative signs for timezones were hardcoded (these
should have been different for various locales that use native digits
or an actual minus sign). Also, the number of digits used for the
hour was hardcoded to be two, where for Czech and Finnish they should
only use one digit if the hour is less than ten.

Fixes: 63675397
Bug: 63652836
Test: make -j RunSettingsLibRoboTests
Test: make -j RunSettingsRoboTests
Test: Checked time zone picker in Settings under en-US, fa-IR, ar-EG,
      cs-CZ, he-IL, sq-AL, and fr-FR.

Change-Id: I65191429b8b562f77977b1aa4a7db86a779dddc8
2017-07-17 15:13:06 -07:00
Daniel Nishi
bf8eb3d254 Add home activity methods to wrapper.
This allows us to properly use it in Robolectric tests.

Bug: 63154615
Test: Used in Settings unit test

Change-Id: I9f55529449313003a5ed10a997e21591ceae43cb
2017-07-17 21:41:42 +00:00
Tony Mantler
09bd539969 Merge changes from topic 'AdbEnableController'
* changes:
  Add ADB enable/disable PreferenceController
  Move to newer mockito/robolectric
2017-07-17 20:26:41 +00:00
TreeHugger Robot
42b4446b0e Merge "Iterate NetworkPolicy towards SubscriptionPlan." 2017-07-15 19:57:08 +00:00
Maurice Lam
68cf9f538b Merge "Load internal resources using name rather than ID" into oc-dr1-dev am: 43e249ff27
am: f4d873fd56

Change-Id: If4b688989d8f7c0da73e32a98a9ebba619c53397
2017-07-15 15:09:44 +00:00
Maurice Lam
f4d873fd56 Merge "Load internal resources using name rather than ID" into oc-dr1-dev
am: 43e249ff27

Change-Id: Ifa239877c607468fe4ca9bdb87f712b10633762b
2017-07-15 15:01:13 +00:00
TreeHugger Robot
43e249ff27 Merge "Load internal resources using name rather than ID" into oc-dr1-dev 2017-07-15 14:53:44 +00:00
Tony Mantler
ec4bae9d86 Add ADB enable/disable PreferenceController
Bug: 34203528
Test: EnableAdbControllerTest
Change-Id: I6bff5fccf4a299df3da46a593bc36447945571c3
2017-07-14 15:39:47 -07:00
Tony Mantler
8d167378e3 Move to newer mockito/robolectric
Also fix TileUtilsTest, it broke with the newer mockito

Bug: 34203528
Test: This is the test
Change-Id: I714860795ec0b344cb89a95600a4365893c4f8d7
2017-07-14 15:39:40 -07:00
Jeff Sharkey
53313d7e81 Iterate NetworkPolicy towards SubscriptionPlan.
Add new SubscriptionPlan API to describe the various types of carrier
data plans.  Internally the OS will only use the first plan for
driving policy, but it will blindly plumb through the details for
Settings to display any secondary plans.

As part of getting Settings ready to roll towards SubscriptionPlan,
reduce references to NetworkPolicy internal fields.  All usage cycle
details are now obtained from an Iterator which converts to
SubscriptionPlan under the hood.

Replace all data usage cycle calculation with new SubscriptionPlan
implementation, and retrofit large suite of existing tests to
exercise and verify the new logic.

Offer a debugging property that can be used to return "fake" plan
examples for testing.

Bug: 63391323
Test: bit FrameworksServicesTests:com.android.server.NetworkPolicyManagerServiceTest
Exempt-From-Owner-Approval: Bug 63673347
Change-Id: I889c653980eeb7887abdfa4f5b6986f35855ee6d
2017-07-14 16:18:40 -06:00
Sundeep Ghuman
d3171ca2a1 Standardize usages of "/" separator in SettingsLib
This separator should be translated the same as the
preference_summary_default_combination used in the Settings app. We
reintroduce this string here in order to avoid a dependency from
SettingsLib to Settings app.

Bug: b/62354743
Test: NA - Refactor
Change-Id: I2ce12848b944417b0df5e6f629aabd49712ff634
2017-07-14 14:08:44 -07:00
Jeff Sharkey
845dae5cdb Merge "Move "metered" persistence to WifiConfiguration." 2017-07-14 17:48:02 +00:00
Jeff Sharkey
43d2a1700b Move "metered" persistence to WifiConfiguration.
For a long time we've had a nasty tangled dependency between Wi-Fi
and NPMS, since they both persisted different details for configured
networks.  As part of preparing for new carrier data plan APIs, move
the tracking of meteredness over to WifiConfiguration.

This also cleans up how meteredness is communicated through
NetworkAgents to rely completely on NET_CAPABILITY_NOT_METERED by
removing the metered flag on NetworkInfo, which has caused confusion
and staleness.

Migrates any existing user-configured metered networks over to
WifiConfiguration once the device finishes booting.

Remove support for NetworkQuotaInfo, since this information can no
longer be made available to apps.  Frustratingly, some apps are
using it, so keep the object around returning stub values, and shame
them in the logs.

Bug: 63391323
Test: builds, boots, Wi-Fi policy is upgraded
Exempt-From-Owner-Approval: Bug 63673347
Change-Id: I64f865ddeb65cfcd330f8d2a847368abdf960a07
2017-07-14 11:46:31 -06:00
TreeHugger Robot
fe77678e34 Merge "Fix debug logging in WifiTracker." 2017-07-14 17:33:45 +00:00
TreeHugger Robot
31b8eece03 Merge "Import translations. DO NOT MERGE" 2017-07-14 00:58:21 +00:00
TreeHugger Robot
183f9ac263 Merge "Remove duplicate attrs." 2017-07-13 21:35:42 +00:00
Doris Ling
db0ec7d60f Merge "Update the max height/width attribute of the TwoTargetPreference icon." into oc-dr1-dev
am: 9f675cee28

Change-Id: I32b19e453af7a28c990a28b9726487415fe5be6f
2017-07-13 21:15:21 +00:00
TreeHugger Robot
9f675cee28 Merge "Update the max height/width attribute of the TwoTargetPreference icon." into oc-dr1-dev 2017-07-13 20:59:39 +00:00
Nikolas Bravo
de93e6912f Merge "ProfileSelectDialog no longer removes caller activity from task." into oc-dr1-dev
am: 479d915db5

Change-Id: I3503c8306bb12da6ad1273ef207f550a37775b7b
2017-07-13 20:05:55 +00:00
TreeHugger Robot
479d915db5 Merge "ProfileSelectDialog no longer removes caller activity from task." into oc-dr1-dev 2017-07-13 19:59:40 +00:00
Fan Zhang
449d5f7c26 Remove duplicate attrs.
The attr is already defined in support lib. We no long need it after
linking symbol tables correctly in build.

Test: builds
Change-Id: Ib5f2ded9315e453937ea5c3769a9a27e59fc4f1e
2017-07-13 11:19:40 -07:00
Nikolas Bravo
9752ce32ef ProfileSelectDialog no longer removes caller activity from
task.

In Settings, after calling ProfileSelectDialog and choosing a profile,
then going back would go 2 activities back. The issue is that
ProfileSelectDialog was calling finish() in the no-longer-used
SettingsDrawerActivity. This caused the any activity calling the
dialog to be removed from the task, and thus being impossible to
go back to. This call to the drawer is also a code smell.

Bug: 36237246
Fixes: 36237246
Test: NA
Change-Id: I6f309b220ffae1d86e6879ddf6a0305ad3dde3e8
(cherry picked from commit b975c0e44445f76d67e7576c1e8e08609b696408)
2017-07-13 17:59:44 +00:00
Doris Ling
a9fbf3817a Update the max height/width attribute of the TwoTargetPreference icon.
Change the namespace for the icon image view to settings package.

Change-Id: Id1ffbc1742bedab93c9f03e9d464f532fe2c33af
Fix: 63666970
Test: Visual
(cherry picked from commit a990b5da04b4f5d475ff038f99d7dd908e931d63)
2017-07-13 17:41:24 +00:00
Maurice Lam
7f6fc86b9c Load internal resources using name rather than ID
Since setup wizard is distributed by binary, and internal framework
resource IDs may shift due to OEM customizations, load the resource
via its name instead.
Long term SUW should move away from depeneding on framework internal
resources or be open sourced.

Test: Existing tests pass
Bug: 63546650
Change-Id: I3555945d1f310ee79bdfc3542411d46a4fd4bf7d
2017-07-13 17:17:02 +00:00
Bill Yi
aaba1d30a3 Import translations. DO NOT MERGE
Change-Id: I0d916ea4bce1d259de0703e12701b534f31178a3
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-07-13 06:42:58 -07:00
Bill Yi
5e25db519f Import translations. DO NOT MERGE
Change-Id: I3d39526c8badcabd58705e76e8ad8707e8299d1c
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-07-13 06:37:51 -07:00
Sundeep Ghuman
75f9480341 Do not clear scores during stopTracking.
Bug: b/63034725
Test: runtest --path
frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/WifiTrackerTest.java

Change-Id: Ic15c7f42ec9a3883e8ba34194d9a9410457e4399
(cherry picked from commit 4bb84116636b51bf6925580df569fdeedf6061ae)
2017-07-13 05:52:59 +00:00
TreeHugger Robot
eb2a2d67b9 Merge "Do not clear scores during stopTracking." 2017-07-13 04:30:52 +00:00
Sundeep Ghuman
39ad5d8d70 Fix debug logging in WifiTracker.
Add support for 'sVerboseLogging' which is set for developer options, as
well as dynamically checking Debug log level.

Bug: b/63364648
Test: NA - logging only change
Change-Id: I73d1dc384c81114b039e21b076add3a563f38bfc
2017-07-12 19:54:14 -07:00
Sundeep Ghuman
4bb8411663 Do not clear scores during stopTracking.
Bug: b/63034725
Test: runtest --path
frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/WifiTrackerTest.java

Change-Id: Ic15c7f42ec9a3883e8ba34194d9a9410457e4399
2017-07-12 19:12:30 -07:00
TreeHugger Robot
a139def411 Merge "Fix left aligned "Wi-Fi" category title in data usage page." 2017-07-13 00:55:24 +00:00
Doris Ling
a9e39350d0 Fix left aligned "Wi-Fi" category title in data usage page.
Set thee category title text view to align at the start position.

Bug: 63399239
Test: visual
Change-Id: Iff5fbc595ec16396043d64a1ceb0fa81e874ea48
2017-07-12 15:50:38 -07:00
Fan Zhang
076146e5b8 Use support lib preference style as base
Test: global build
Change-Id: Id143f14d665d3fa94203af3d599eb49fabb9ee9c
2017-07-12 14:47:12 -07:00
Fan Zhang
843ff3333e Merge "Move settings preference theme to SettingsLib." 2017-07-11 19:21:04 +00:00
TreeHugger Robot
f3d79e4ef6 Merge "ProfileSelectDialog no longer removes caller activity from task." 2017-07-11 09:19:45 +00:00
Bill Yi
58a524a39d Import translations. DO NOT MERGE
Change-Id: Ic838cd08ba00fe8aaf462f7de5908e63bcea79f5
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-07-10 14:08:01 -07:00
Bill Yi
fd57ce6a12 Import translations. DO NOT MERGE
Change-Id: Ie3a9dce910bb544fdcd6e19be3eee068fb75b524
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-07-10 13:58:04 -07:00
Fan Zhang
11de4e44fa Move settings preference theme to SettingsLib.
Bug: 36663882
Fix: 36605280
Test: rerun robotests
Change-Id: Iaec0aa14bb1ba6ef7af27f8c995097f304844fc2
2017-07-10 20:52:37 +00:00
TreeHugger Robot
4e77ab6aad Merge "Add missing resource when building in AAPT1" 2017-07-10 18:26:50 +00:00
Nikolas Bravo
b975c0e444 ProfileSelectDialog no longer removes caller activity from task.
In Settings, after calling ProfileSelectDialog and choosing a profile,
then going back would go 2 activities back. The issue is that
ProfileSelectDialog was calling finish() in the no-longer-used
SettingsDrawerActivity. This caused the any activity calling the
dialog to be removed from the task, and thus being impossible to
go back to. This call to the drawer is also a code smell.

Bug: 36237246
Fixes: 36237246
Test: NA
Change-Id: I6f309b220ffae1d86e6879ddf6a0305ad3dde3e8
2017-07-10 14:00:03 +01:00
Fan Zhang
dd1886aa21 Add missing resource when building in AAPT1
Bug: 36663882
Bug: 63450183
Test: global build
Change-Id: Id3cc8199e4572f4b5f733ea865f750b8600508bb
2017-07-07 21:23:16 -07:00
Sundeep Ghuman
45a4fd3c31 Merge "Change initial value of mStaleScanResults to true." into oc-dr1-dev am: e72ec3cab2
am: 335a2d7e3c

Change-Id: I4b09fe0fbcecc562ced0ed2a6793b2ae87b0f731
2017-07-08 03:18:43 +00:00
Sundeep Ghuman
335a2d7e3c Merge "Change initial value of mStaleScanResults to true." into oc-dr1-dev
am: e72ec3cab2

Change-Id: If268b2db323fa52c92fccc1b259599a0be204b87
2017-07-08 03:13:09 +00:00