android: Use proper namespace for custom attribute

This commit is contained in:
Tobias Brunner 2016-04-29 16:20:55 +02:00
parent fd23ed8cf3
commit 5ffd79b39b
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
for more details.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:strongswan="http://schemas.android.com/apk/res/org.strongswan.android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
@ -25,6 +25,6 @@
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
strongswan:read_only="true" />
app:read_only="true" />
</LinearLayout>