From 902fe83a3a0e9400077d85e7ad51f0cd0b449829 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Wed, 6 Nov 2019 10:34:52 -0600 Subject: [PATCH] [CalendarDemo] fix for aapt2 (which is now default) (#306) When building this project with `True` you will get: error APT2260: obj\Debug\44\res\layout\calendarlist.xml:1: error: resource android:id/android:list not found. "android:list not found." error APT2260: obj\Debug\44\res\layout\eventlist.xml:1: error: resource android:id/android:list not found. "android:list not found." I think the name `android:id/android:list` is probably just a typo, so removing `android:` fixes the issue. --- CalendarDemo/Resources/layout/CalendarList.axml | 2 +- CalendarDemo/Resources/layout/EventList.axml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CalendarDemo/Resources/layout/CalendarList.axml b/CalendarDemo/Resources/layout/CalendarList.axml index 4296187e3..d08020df3 100644 --- a/CalendarDemo/Resources/layout/CalendarList.axml +++ b/CalendarDemo/Resources/layout/CalendarList.axml @@ -4,7 +4,7 @@ android:layout_width="fill_parent" android:layout_height="fill_parent"> diff --git a/CalendarDemo/Resources/layout/EventList.axml b/CalendarDemo/Resources/layout/EventList.axml index 15c8f621d..b85f2d2bf 100644 --- a/CalendarDemo/Resources/layout/EventList.axml +++ b/CalendarDemo/Resources/layout/EventList.axml @@ -4,7 +4,7 @@ android:layout_width="fill_parent" android:layout_height="fill_parent">