diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2018-04-29 10:41:08 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2018-04-30 17:30:25 +0530 |
commit | 7e415a62c7594e53b3658a54786df5d6173a843f (patch) | |
tree | 739cb3d3470b628e0c66e272666385102010cf16 /app/src/main/res/layout | |
parent | 431b75be154a6bca74f89b32bc3bb69c7c1722c8 (diff) |
wg: Break out crossport dependency
Replace all crossport uses with upstream design
support library components.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/tunnel_editor_fragment.xml | 4 | ||||
-rw-r--r-- | app/src/main/res/layout/tunnel_list_fragment.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/tunnel_editor_fragment.xml b/app/src/main/res/layout/tunnel_editor_fragment.xml index 4d56ee3e..964aff5c 100644 --- a/app/src/main/res/layout/tunnel_editor_fragment.xml +++ b/app/src/main/res/layout/tunnel_editor_fragment.xml @@ -18,7 +18,7 @@ type="com.wireguard.config.Config.Observable" /> </data> - <com.commonsware.cwac.crossport.design.widget.CoordinatorLayout + <android.support.design.widget.CoordinatorLayout android:id="@+id/main_container" android:layout_width="match_parent" android:layout_height="match_parent" @@ -226,5 +226,5 @@ android:text="@string/add_peer" /> </LinearLayout> </ScrollView> - </com.commonsware.cwac.crossport.design.widget.CoordinatorLayout> + </android.support.design.widget.CoordinatorLayout> </layout> diff --git a/app/src/main/res/layout/tunnel_list_fragment.xml b/app/src/main/res/layout/tunnel_list_fragment.xml index ba3728a3..5d6a5ce9 100644 --- a/app/src/main/res/layout/tunnel_list_fragment.xml +++ b/app/src/main/res/layout/tunnel_list_fragment.xml @@ -15,7 +15,7 @@ type="com.wireguard.android.util.ObservableKeyedList<String, Tunnel>" /> </data> - <com.commonsware.cwac.crossport.design.widget.CoordinatorLayout + <android.support.design.widget.CoordinatorLayout android:id="@+id/main_container" android:layout_width="match_parent" android:layout_height="match_parent" @@ -57,5 +57,5 @@ app:fab_size="mini" app:fab_title="@string/create_from_file" /> </com.getbase.floatingactionbutton.FloatingActionsMenu> - </com.commonsware.cwac.crossport.design.widget.CoordinatorLayout> + </android.support.design.widget.CoordinatorLayout> </layout> |