Adding proguard flags to avoid a11y methods getting stripped out.

AccessibilityNodeInfoCompat#obtain and AccessibilityNodeInfoCompat() are
both being stripped out by Proguard since DocsUI is not using these
methods. We are using these methods in tests to test a11y behaviors.

Test: Fixed AccessibilityTests.
Change-Id: I4533a0985794e8f7c36d8f81878196890281264f
diff --git a/proguard.flags b/proguard.flags
new file mode 100644
index 0000000..00f9dac
--- /dev/null
+++ b/proguard.flags
@@ -0,0 +1,18 @@
+# Copyright (C) 2017 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Keep
+-keep public class android.support.v4.view.accessibility.AccessibilityNodeInfoCompat {
+   public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat obtain();
+}