From 2773c51368786bb0b9698ece1e3ea0d3b4fe4a45 Mon Sep 17 00:00:00 2001 From: Chris Williams Date: Tue, 3 Nov 2020 13:30:46 -0500 Subject: [PATCH] fix(android): expose Ti.Android.R.transition property Fixes TIMOB-28222 --- .../java/org/appcelerator/titanium/proxy/RProxy.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/android/titanium/src/java/org/appcelerator/titanium/proxy/RProxy.java b/android/titanium/src/java/org/appcelerator/titanium/proxy/RProxy.java index a47711098bd..7346679fbb6 100644 --- a/android/titanium/src/java/org/appcelerator/titanium/proxy/RProxy.java +++ b/android/titanium/src/java/org/appcelerator/titanium/proxy/RProxy.java @@ -1,6 +1,6 @@ /** * Appcelerator Titanium Mobile - * Copyright (c) 2011-2013 by Appcelerator, Inc. All Rights Reserved. + * Copyright (c) 2011-Present by Axway, Inc. All Rights Reserved. * Licensed under the terms of the Apache Public License * Please see the LICENSE included with this distribution for details. */ @@ -22,11 +22,11 @@ public class RProxy extends KrollProxy private static final String TAG = "TiAndroidRProxy"; private static final String[] RESOURCE_TYPES = { - "anim", "animator", "array", "attr", "bool", - "color", "dimen", "drawable", "font", "fraction", - "id", "integer", "interpolator", "layout", "menu", - "mipmap", "plurals", "raw", "string", "style", - "styleable", "xml" + "anim", "animator", "array", "attr", "bool", + "color", "dimen", "drawable", "font", "fraction", + "id", "integer", "interpolator", "layout", "menu", + "mipmap", "plurals", "raw", "string", "style", + "styleable", "transition", "xml" }; public static final int RESOURCE_TYPE_ANDROID = 0;