diff options
author | Samuel Holland <samuel@sholland.org> | 2017-11-07 23:34:20 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2017-11-07 23:34:22 -0600 |
commit | 6231bb18acf53342be20470d2b175fd4bb31b9ee (patch) | |
tree | 327751d0e0e4b8beda24a5c55615a7d7c5f53608 /app/src/main/res | |
parent | 6945aa11076afdbdf4e97b92b26cc13f2b5809db (diff) |
Bindings: Move to a separate package
These are really app-independent reusable classes. Moving them to a
separate package helps avoid polluting the main app package, and makes
them easier to upgrade.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/config_list_fragment.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/layout/config_list_fragment.xml b/app/src/main/res/layout/config_list_fragment.xml index e2a80419..7e8304e6 100644 --- a/app/src/main/res/layout/config_list_fragment.xml +++ b/app/src/main/res/layout/config_list_fragment.xml @@ -7,7 +7,7 @@ <!--suppress AndroidDomInspection --> <variable name="configs" - type="com.wireguard.android.ObservableSortedMap<String, com.wireguard.config.Config>" /> + type="com.wireguard.android.bindings.ObservableSortedMap<String, com.wireguard.config.Config>" /> </data> <ListView |