Skip to content

Commit

Permalink
fix(android): expose Ti.Android.R.transition property
Browse files Browse the repository at this point in the history
Fixes TIMOB-28222
  • Loading branch information
sgtcoolguy committed Nov 4, 2020
1 parent 5f27f61 commit 2773c51
Showing 1 changed file with 6 additions and 6 deletions.
@@ -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.
*/
Expand All @@ -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;
Expand Down

0 comments on commit 2773c51

Please sign in to comment.