Code Monkey home page Code Monkey logo

layoutcast's Introduction

Android SDK sucks. It's so slow to build and run which waste me a lot of time every day.

Motivation

Facebook Buck http://github.com/facebook/buck build is fast. However, the biggest problem with Buck is, it requires you to change a lot of codes, and restructs your project in small modules. Indeed, it is troublesome to just make it work properly on the existing android project, especially if you have big project. I have tried using Buck build system instead of Gradle on my test project. However, it took me a week just to make it work.

What I needs is a build tool that is easy to setup, fast as Buck, and provide a Run button in Android Studio. So I created LayoutCast.

LayoutCast is a little tool to help with that, it will cast every changes in your Java source code or resources (including library project) to your phone or emulator within 5 sec, and does not restart your application.

把代码和资源文件的改动直接同步到手机上,应用不需要重启。省去了编译运行漫长的等待,比较适合真机调试的时候使用。

GIF GIF

Youtube demo video: https://youtu.be/rc04LK2_suU

优酷: http://v.youku.com/v_show/id_XMTMwNTUzOTQ3Mg

Features

  • Fast cast code and resource changes, usually less than 5 sec.
  • Cast does not reset your application. The running activity stack will be kept.
  • Easy to setup, only add few lines of code.
  • Support both eclipse and AndroidStudio project.
  • Provide a AndroidStudio plugin to click and cast.

Limitations

  • LayoutCast only support Mac (for now)
  • Cast Java code only support ART runtime (Android 5.0)

Benchmarks

Here is how it compared to Gradle and Facebook Buck:

BENCHMARK

The test machine is a 2015 MBP with a 2014 MotoX.

The test project's apk is about 14.3MB, which contains 380k lines of java code and 86k lines of xml files.

Getting Started for Android Studio / Intellij

1. Install Plugin

If you have already done that, you can skip this step.

  1. Download Android Studio / Intellij plugin https://github.com/mmin18/LayoutCast/raw/master/ide/IDEAPlugin/IDEAPlugin.jar
  2. In Android Studio, go to Preferences > Plugins > Install plugin from disk...
  3. Choose the downloaded file from step #1 to install the plugin.

After restart, you should find a button at right of the run section: TOOLBAR

2. Android Project & Build System Changes

First, you need to setup your project. Add below dependency in your build.gradle:

dependencies {
	compile 'com.github.mmin18.layoutcast:library:1.+@aar'
	...
}

Second, add the following code in your main application class inside onCreate() method. And since LayoutCast only necessary when you develop, you should always check if BuildConfig.DEBUG == true.

public class MyApplication extends Application {
	@Override
	public void onCreate() {
		super.onCreate();

		if (BuildConfig.DEBUG) {
			LayoutCast.init(this);
		}
	}
}

Thrid, don't forget to check if your Application class is registered in AndroidManifest.xml:

<application
    android:name=".MyApplication"
	...

Fourth, add special activity class (from LayoutCast library) called ResetActivity in your manifest, this activity will be used to restart and restore our application activity stack.

<activity android:name="com.github.mmin18.layoutcast.ResetActivity" />

And make sure you have the network permission in your AndroidManifest.xml:

<uses-permission android:name="android.permission.INTERNET" />

3. Run and cast

Run the application (in device or emulator), then try to make some changes for resources file or java file.

After that, click the LayoutCast button in toolbar (on the right of Run button) / go to menu Tools> Layout Cast.

It will show the result above status bar:

SUCCESS

FAIL

Getting started for Eclipse

1. Prepare the cast script

I haven't written the Eclipse plugin yet, so if you need to use it on a eclipse project, you can try to use the command line.

You can get the script here https://raw.githubusercontent.com/mmin18/LayoutCast/master/cast.py. Put the script in project root dir or anywhere you like. Since it is written in Python 2.7 (make sure you have installed the right version).

2. Android Project & Build System Changes

To get it work, we will need to download the LayoutCast library https://github.com/mmin18/LayoutCast/raw/master/libs/lcast.jar and put it to your /libs folder.

The project structure will remain the same.

3. Run and Cast

Run the application first, and open terminal and execute python cast.py under your project's folder:

cd <project path>
python cast.py

Or you can specify the path in args:

python cast.py <project path>

How it Works

When LayoutCast.init(context); called, the application will start tiny http server in the background, and receive certain commands. Later on, the cast script running on your computer will communicate with your running app which is running through ADB TCP forward.

When the cast script runs, it will scan all possible ports on your phone to find the running LayoutCast server, and get the running application's resource list with its id, then compiled to public.xml. In which, it will be used later to keep resource id index consistent with the running application.

The cast script scans your project folder to find the /res folder, and all dependencies inside /res folder. You can run the aapt command to package all resources into res.zip, and then upload the zip file to the LayoutCast server to replace the resources of the running process. Then, it calls the Activity.recreate() to restart the visible activity.

Usually the activity will keep its running state in onSaveInstanceState() and restore after coming back later.

Troubleshootings

  • It can only find /src folder under <project>/src or <project>/src/main/java
  • It can only find /res folder under <project>/res or <project>/src/main/res
  • You can add or replace resources, but you can't delete or rename resources (for now)
  • If cast failed, clean your project, remove /bin and /build and rebuild again may solve the problem

layoutcast's People

Contributors

ejarosiewicz avatar kennethlaw avatar mmin18 avatar rhzs avatar timeszoro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

layoutcast's Issues

Failed to resolve: com.github.mmin18.layoutcast:library:1.+

build的时候提示:
Error:(127, 13) Failed to resolve: com.github.mmin18.layoutcast:library:1.+

是直接按你写的:
compile 'com.github.mmin18.layoutcast:library:1.+@aar'
来配置的build.gradle 文件的

另外repositories用的是jcenter:
repositories {
jcenter()
}

Public symbol string/com.crashlytics.android.build_id declared here is not defined.

When I try to execute via the plugin, I get the following error in Android Studio:

cast com.app.beta:41128 as gradle project with /res changed (v1.50816)
Fail to exec [ --lots of stuff ommitted-- ]

/Users/greg/dev/android-client/myapp/build/lcast/res/values/public.xml:1030: error: Public symbol string/com.crashlytics.android.build_id declared here is not defined.

Failed to resolve

Error when project sync succeeded. I can't add the dependency, why?
captura de pantalla 2015-08-17 a las 11 31 07
captura de pantalla 2015-08-17 a las 11 32 53

OSError: no such file or directory

我的项目一个依赖的Module(network)不是Android Library,是Java Library,Module本身没有res文件夹,如下图
image

当点击LayoutCast运行的时候报如下错误
image

OSError: no such file or directory
/Users/xieyao/Documents/git/WORK/EasyAccount_Android/network/res
但Module本身不含这个res文件夹

I can not do it,when I change the resources

I change the layout,then LayoutCast can not work well
compileSdkVersion 23
buildToolsVersion "23.0.0"

cast com.binghe.twa:41129 as gradle project with both /res and /src changed (v1.50816)
Fail to exec ['D:\Android\sdk\build-tools\android-4.4W\aapt.exe', 'package', '-f', '--auto-add-overlay', '-F', 'E:\0000000001__Project\TWA\app\build\lcast\res.zip', '-S', 'E:\0000000001__Project\TWA\app\build\lcast\res', '-S', 'E:\0000000001__Project\TWA\app\src\main\res', '-M', 'E:\0000000001__Project\TWA\app\src\main\AndroidManifest.xml', '-I', 'D:\Android\sdk\platforms\android-23\android.jar']

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:101: error: Public symbol attr/actionBarDivider declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:102: error: Public symbol attr/actionBarItemBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:95: error: Public symbol attr/actionBarPopupTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:100: error: Public symbol attr/actionBarSize declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:97: error: Public symbol attr/actionBarSplitStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:96: error: Public symbol attr/actionBarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:91: error: Public symbol attr/actionBarTabBarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:90: error: Public symbol attr/actionBarTabStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:92: error: Public symbol attr/actionBarTabTextStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:98: error: Public symbol attr/actionBarTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:99: error: Public symbol attr/actionBarWidgetTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:127: error: Public symbol attr/actionButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:123: error: Public symbol attr/actionDropDownStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:54: error: Public symbol attr/actionLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:103: error: Public symbol attr/actionMenuTextAppearance declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:104: error: Public symbol attr/actionMenuTextColor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:107: error: Public symbol attr/actionModeBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:106: error: Public symbol attr/actionModeCloseButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:109: error: Public symbol attr/actionModeCloseDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:111: error: Public symbol attr/actionModeCopyDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:110: error: Public symbol attr/actionModeCutDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:115: error: Public symbol attr/actionModeFindDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:112: error: Public symbol attr/actionModePasteDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:117: error: Public symbol attr/actionModePopupWindowStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:113: error: Public symbol attr/actionModeSelectAllDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:114: error: Public symbol attr/actionModeShareDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:108: error: Public symbol attr/actionModeSplitBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:105: error: Public symbol attr/actionModeStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:116: error: Public symbol attr/actionModeWebSearchDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:93: error: Public symbol attr/actionOverflowButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:94: error: Public symbol attr/actionOverflowMenuStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:56: error: Public symbol attr/actionProviderClass declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:55: error: Public symbol attr/actionViewClass declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:135: error: Public symbol attr/activityChooserViewStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:169: error: Public symbol attr/alertDialogButtonGroupStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:170: error: Public symbol attr/alertDialogCenterButtons declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:168: error: Public symbol attr/alertDialogStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:171: error: Public symbol attr/alertDialogTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:46: error: Public symbol attr/arrowHeadLength declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:47: error: Public symbol attr/arrowShaftLength declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:176: error: Public symbol attr/autoCompleteTextViewStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:15: error: Public symbol attr/background declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:17: error: Public symbol attr/backgroundSplit declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:16: error: Public symbol attr/backgroundStacked declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:204: error: Public symbol attr/backgroundTint declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:205: error: Public symbol attr/backgroundTintMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:48: error: Public symbol attr/barLength declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:132: error: Public symbol attr/borderlessButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:129: error: Public symbol attr/buttonBarButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:174: error: Public symbol attr/buttonBarNegativeButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:175: error: Public symbol attr/buttonBarNeutralButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:173: error: Public symbol attr/buttonBarPositiveButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:128: error: Public symbol attr/buttonBarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:34: error: Public symbol attr/buttonPanelSideLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:177: error: Public symbol attr/buttonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:178: error: Public symbol attr/buttonStyleSmall declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:40: error: Public symbol attr/buttonTint declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:41: error: Public symbol attr/buttonTintMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:179: error: Public symbol attr/checkboxStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:180: error: Public symbol attr/checkedTextViewStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:64: error: Public symbol attr/closeIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:31: error: Public symbol attr/closeItemLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:195: error: Public symbol attr/collapseContentDescription declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:194: error: Public symbol attr/collapseIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:42: error: Public symbol attr/color declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:161: error: Public symbol attr/colorAccent declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:165: error: Public symbol attr/colorButtonNormal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:163: error: Public symbol attr/colorControlActivated declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:164: error: Public symbol attr/colorControlHighlight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:162: error: Public symbol attr/colorControlNormal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:159: error: Public symbol attr/colorPrimary declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:160: error: Public symbol attr/colorPrimaryDark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:166: error: Public symbol attr/colorSwitchThumbNormal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:69: error: Public symbol attr/commitIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:26: error: Public symbol attr/contentInsetEnd declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:27: error: Public symbol attr/contentInsetLeft declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:28: error: Public symbol attr/contentInsetRight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:25: error: Public symbol attr/contentInsetStart declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:167: error: Public symbol attr/controlBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:18: error: Public symbol attr/customNavigationLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:63: error: Public symbol attr/defaultQueryHint declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:121: error: Public symbol attr/dialogPreferredPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:120: error: Public symbol attr/dialogTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:8: error: Public symbol attr/displayOptions declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:14: error: Public symbol attr/divider declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:134: error: Public symbol attr/dividerHorizontal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:52: error: Public symbol attr/dividerPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:133: error: Public symbol attr/dividerVertical declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:44: error: Public symbol attr/drawableSize declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:3: error: Public symbol attr/drawerArrowStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:151: error: Public symbol attr/dropDownListViewStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:124: error: Public symbol attr/dropdownListPreferredItemHeight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:141: error: Public symbol attr/editTextBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:140: error: Public symbol attr/editTextColor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:181: error: Public symbol attr/editTextStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:29: error: Public symbol attr/elevation declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:33: error: Public symbol attr/expandActivityOverflowButtonDrawable declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:45: error: Public symbol attr/gapBetweenBars declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:65: error: Public symbol attr/goIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:4: error: Public symbol attr/height declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:24: error: Public symbol attr/hideOnContentScroll declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:126: error: Public symbol attr/homeAsUpIndicator declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:19: error: Public symbol attr/homeLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:12: error: Public symbol attr/icon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:61: error: Public symbol attr/iconifiedByDefault declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:21: error: Public symbol attr/indeterminateProgressStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:32: error: Public symbol attr/initialActivityCount declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:5: error: Public symbol attr/isLightTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:23: error: Public symbol attr/itemPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:60: error: Public symbol attr/layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:158: error: Public symbol attr/listChoiceBackgroundIndicator declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:122: error: Public symbol attr/listDividerAlertDialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:38: error: Public symbol attr/listItemLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:35: error: Public symbol attr/listLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:152: error: Public symbol attr/listPopupWindowStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:146: error: Public symbol attr/listPreferredItemHeight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:148: error: Public symbol attr/listPreferredItemHeightLarge declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:147: error: Public symbol attr/listPreferredItemHeightSmall declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:149: error: Public symbol attr/listPreferredItemPaddingLeft declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:150: error: Public symbol attr/listPreferredItemPaddingRight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:13: error: Public symbol attr/logo declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:198: error: Public symbol attr/logoDescription declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:193: error: Public symbol attr/maxButtonHeight declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:50: error: Public symbol attr/measureWithLargestChild declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:36: error: Public symbol attr/multiChoiceItemLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:197: error: Public symbol attr/navigationContentDescription declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:196: error: Public symbol attr/navigationIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:7: error: Public symbol attr/navigationMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:58: error: Public symbol attr/overlapAnchor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:202: error: Public symbol attr/paddingEnd declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:201: error: Public symbol attr/paddingStart declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:155: error: Public symbol attr/panelBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:157: error: Public symbol attr/panelMenuListTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:156: error: Public symbol attr/panelMenuListWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:138: error: Public symbol attr/popupMenuStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:30: error: Public symbol attr/popupTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:139: error: Public symbol attr/popupWindowStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:57: error: Public symbol attr/preserveIconSpacing declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:22: error: Public symbol attr/progressBarPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:20: error: Public symbol attr/progressBarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:71: error: Public symbol attr/queryBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:62: error: Public symbol attr/queryHint declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:182: error: Public symbol attr/radioButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:183: error: Public symbol attr/ratingBarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:67: error: Public symbol attr/searchHintIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:66: error: Public symbol attr/searchIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:145: error: Public symbol attr/searchViewStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:130: error: Public symbol attr/selectableItemBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:131: error: Public symbol attr/selectableItemBackgroundBorderless declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:53: error: Public symbol attr/showAsAction declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:51: error: Public symbol attr/showDividers declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:79: error: Public symbol attr/showText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:37: error: Public symbol attr/singleChoiceItemLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:43: error: Public symbol attr/spinBars declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:125: error: Public symbol attr/spinnerDropDownItemStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:184: error: Public symbol attr/spinnerStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:78: error: Public symbol attr/splitTrack declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:59: error: Public symbol attr/state_above_anchor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:72: error: Public symbol attr/submitBackground declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:9: error: Public symbol attr/subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:187: error: Public symbol attr/subtitleTextAppearance declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:200: error: Public symbol attr/subtitleTextColor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:11: error: Public symbol attr/subtitleTextStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:70: error: Public symbol attr/suggestionRowLayout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:76: error: Public symbol attr/switchMinWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:77: error: Public symbol attr/switchPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:185: error: Public symbol attr/switchStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:75: error: Public symbol attr/switchTextAppearance declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:39: error: Public symbol attr/textAllCaps declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:118: error: Public symbol attr/textAppearanceLargePopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:153: error: Public symbol attr/textAppearanceListItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:154: error: Public symbol attr/textAppearanceListItemSmall declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:143: error: Public symbol attr/textAppearanceSearchResultSubtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:142: error: Public symbol attr/textAppearanceSearchResultTitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:119: error: Public symbol attr/textAppearanceSmallPopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:172: error: Public symbol attr/textColorAlertDialogListItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:144: error: Public symbol attr/textColorSearchUrl declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:203: error: Public symbol attr/theme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:49: error: Public symbol attr/thickness declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:74: error: Public symbol attr/thumbTextPadding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:6: error: Public symbol attr/title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:192: error: Public symbol attr/titleMarginBottom declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:190: error: Public symbol attr/titleMarginEnd declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:189: error: Public symbol attr/titleMarginStart declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:191: error: Public symbol attr/titleMarginTop declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:188: error: Public symbol attr/titleMargins declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:186: error: Public symbol attr/titleTextAppearance declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:199: error: Public symbol attr/titleTextColor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:10: error: Public symbol attr/titleTextStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:137: error: Public symbol attr/toolbarNavigationButtonStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:136: error: Public symbol attr/toolbarStyle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:73: error: Public symbol attr/track declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:68: error: Public symbol attr/voiceIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:80: error: Public symbol attr/windowActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:82: error: Public symbol attr/windowActionBarOverlay declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:83: error: Public symbol attr/windowActionModeOverlay declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:87: error: Public symbol attr/windowFixedHeightMajor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:85: error: Public symbol attr/windowFixedHeightMinor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:84: error: Public symbol attr/windowFixedWidthMajor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:86: error: Public symbol attr/windowFixedWidthMinor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:88: error: Public symbol attr/windowMinWidthMajor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:89: error: Public symbol attr/windowMinWidthMinor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:81: error: Public symbol attr/windowNoTitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:766: error: Public symbol drawable/abc_ab_share_pack_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:767: error: Public symbol drawable/abc_action_bar_item_background_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:768: error: Public symbol drawable/abc_btn_borderless_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:769: error: Public symbol drawable/abc_btn_check_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:770: error: Public symbol drawable/abc_btn_check_to_on_mtrl_000 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:771: error: Public symbol drawable/abc_btn_check_to_on_mtrl_015 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:772: error: Public symbol drawable/abc_btn_colored_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:773: error: Public symbol drawable/abc_btn_default_mtrl_shape declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:774: error: Public symbol drawable/abc_btn_radio_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:775: error: Public symbol drawable/abc_btn_radio_to_on_mtrl_000 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:776: error: Public symbol drawable/abc_btn_radio_to_on_mtrl_015 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:777: error: Public symbol drawable/abc_btn_rating_star_off_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:778: error: Public symbol drawable/abc_btn_rating_star_on_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:779: error: Public symbol drawable/abc_btn_switch_to_on_mtrl_00001 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:780: error: Public symbol drawable/abc_btn_switch_to_on_mtrl_00012 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:781: error: Public symbol drawable/abc_cab_background_internal_bg declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:782: error: Public symbol drawable/abc_cab_background_top_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:783: error: Public symbol drawable/abc_cab_background_top_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:784: error: Public symbol drawable/abc_control_background_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:785: error: Public symbol drawable/abc_dialog_material_background_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:786: error: Public symbol drawable/abc_dialog_material_background_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:787: error: Public symbol drawable/abc_edit_text_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:788: error: Public symbol drawable/abc_ic_ab_back_mtrl_am_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:789: error: Public symbol drawable/abc_ic_clear_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:790: error: Public symbol drawable/abc_ic_commit_search_api_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:791: error: Public symbol drawable/abc_ic_go_search_api_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:792: error: Public symbol drawable/abc_ic_menu_copy_mtrl_am_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:793: error: Public symbol drawable/abc_ic_menu_cut_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:794: error: Public symbol drawable/abc_ic_menu_moreoverflow_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:795: error: Public symbol drawable/abc_ic_menu_paste_mtrl_am_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:796: error: Public symbol drawable/abc_ic_menu_selectall_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:797: error: Public symbol drawable/abc_ic_menu_share_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:798: error: Public symbol drawable/abc_ic_search_api_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:799: error: Public symbol drawable/abc_ic_voice_search_api_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:800: error: Public symbol drawable/abc_item_background_holo_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:801: error: Public symbol drawable/abc_item_background_holo_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:802: error: Public symbol drawable/abc_list_divider_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:803: error: Public symbol drawable/abc_list_focused_holo declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:804: error: Public symbol drawable/abc_list_longpressed_holo declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:805: error: Public symbol drawable/abc_list_pressed_holo_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:806: error: Public symbol drawable/abc_list_pressed_holo_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:807: error: Public symbol drawable/abc_list_selector_background_transition_holo_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:808: error: Public symbol drawable/abc_list_selector_background_transition_holo_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:809: error: Public symbol drawable/abc_list_selector_disabled_holo_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:810: error: Public symbol drawable/abc_list_selector_disabled_holo_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:811: error: Public symbol drawable/abc_list_selector_holo_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:812: error: Public symbol drawable/abc_list_selector_holo_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:813: error: Public symbol drawable/abc_menu_hardkey_panel_mtrl_mult declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:814: error: Public symbol drawable/abc_popup_background_mtrl_mult declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:815: error: Public symbol drawable/abc_ratingbar_full_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:816: error: Public symbol drawable/abc_spinner_mtrl_am_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:817: error: Public symbol drawable/abc_spinner_textfield_background_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:818: error: Public symbol drawable/abc_switch_thumb_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:819: error: Public symbol drawable/abc_switch_track_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:820: error: Public symbol drawable/abc_tab_indicator_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:821: error: Public symbol drawable/abc_tab_indicator_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:822: error: Public symbol drawable/abc_text_cursor_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:823: error: Public symbol drawable/abc_textfield_activated_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:824: error: Public symbol drawable/abc_textfield_default_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:825: error: Public symbol drawable/abc_textfield_search_activated_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:826: error: Public symbol drawable/abc_textfield_search_default_mtrl_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:827: error: Public symbol drawable/abc_textfield_search_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:828: error: Public symbol drawable/notification_template_icon_bg declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:829: error: Public symbol layout/abc_action_bar_title_item declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:830: error: Public symbol layout/abc_action_bar_up_container declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:831: error: Public symbol layout/abc_action_bar_view_list_nav_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:832: error: Public symbol layout/abc_action_menu_item_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:833: error: Public symbol layout/abc_action_menu_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:834: error: Public symbol layout/abc_action_mode_bar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:835: error: Public symbol layout/abc_action_mode_close_item_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:836: error: Public symbol layout/abc_activity_chooser_view declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:837: error: Public symbol layout/abc_activity_chooser_view_list_item declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:838: error: Public symbol layout/abc_alert_dialog_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:839: error: Public symbol layout/abc_dialog_title_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:840: error: Public symbol layout/abc_expanded_menu_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:841: error: Public symbol layout/abc_list_menu_item_checkbox declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:842: error: Public symbol layout/abc_list_menu_item_icon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:843: error: Public symbol layout/abc_list_menu_item_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:844: error: Public symbol layout/abc_list_menu_item_radio declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:845: error: Public symbol layout/abc_popup_menu_item_layout declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:846: error: Public symbol layout/abc_screen_content_include declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:847: error: Public symbol layout/abc_screen_simple declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:848: error: Public symbol layout/abc_screen_simple_overlay_action_mode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:849: error: Public symbol layout/abc_screen_toolbar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:850: error: Public symbol layout/abc_search_dropdown_item_icons_2line declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:851: error: Public symbol layout/abc_search_view declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:852: error: Public symbol layout/abc_select_dialog_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:853: error: Public entry identifier 0x7f040018 entry index is larger than available symbols (index 24, total symbols 2).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:853: error: Public symbol layout/activity_main declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:854: error: Public entry identifier 0x7f040019 entry index is larger than available symbols (index 25, total symbols 2).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:854: error: Public symbol layout/fragment_main declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:855: error: Public symbol layout/notification_media_action declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:856: error: Public symbol layout/notification_media_cancel_action declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:857: error: Public symbol layout/notification_template_big_media declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:858: error: Public symbol layout/notification_template_big_media_narrow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:859: error: Public symbol layout/notification_template_lines declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:860: error: Public symbol layout/notification_template_media declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:861: error: Public symbol layout/notification_template_part_chronometer declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:862: error: Public symbol layout/notification_template_part_time declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:863: error: Public symbol layout/select_dialog_item_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:864: error: Public symbol layout/select_dialog_multichoice_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:865: error: Public symbol layout/select_dialog_singlechoice_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:866: error: Public symbol layout/support_simple_spinner_dropdown_item declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:867: error: Public symbol anim/abc_fade_in declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:868: error: Public symbol anim/abc_fade_out declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:869: error: Public symbol anim/abc_grow_fade_in_from_bottom declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:870: error: Public symbol anim/abc_popup_enter declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:871: error: Public symbol anim/abc_popup_exit declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:872: error: Public symbol anim/abc_shrink_fade_out_from_bottom declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:873: error: Public symbol anim/abc_slide_in_bottom declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:874: error: Public symbol anim/abc_slide_in_top declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:875: error: Public symbol anim/abc_slide_out_bottom declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:876: error: Public symbol anim/abc_slide_out_top declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:601: error: Public symbol string/abc_action_bar_home_description declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:602: error: Public symbol string/abc_action_bar_home_description_format declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:603: error: Public symbol string/abc_action_bar_home_subtitle_description_format declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:604: error: Public symbol string/abc_action_bar_up_description declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:605: error: Public symbol string/abc_action_menu_overflow_description declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:606: error: Public symbol string/abc_action_mode_done declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:607: error: Public symbol string/abc_activity_chooser_view_see_all declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:608: error: Public symbol string/abc_activitychooserview_choose_application declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:609: error: Public symbol string/abc_search_hint declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:610: error: Public symbol string/abc_searchview_description_clear declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:611: error: Public symbol string/abc_searchview_description_query declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:612: error: Public symbol string/abc_searchview_description_search declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:613: error: Public symbol string/abc_searchview_description_submit declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:614: error: Public symbol string/abc_searchview_description_voice declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:615: error: Public symbol string/abc_shareactionprovider_share_with declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:616: error: Public symbol string/abc_shareactionprovider_share_with_application declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:617: error: Public symbol string/abc_toolbar_collapse_description declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:619: error: Public entry identifier 0x7f060012 entry index is larger than available symbols (index 18, total symbols 3).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:619: error: Public symbol string/action_settings declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:620: error: Public entry identifier 0x7f060013 entry index is larger than available symbols (index 19, total symbols 3).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:620: error: Public symbol string/app_name declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:621: error: Public entry identifier 0x7f060014 entry index is larger than available symbols (index 20, total symbols 3).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:621: error: Public symbol string/hello_world declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:618: error: Public symbol string/status_bar_notification_info_overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:633: error: Public symbol dimen/abc_action_bar_content_inset_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:623: error: Public symbol dimen/abc_action_bar_default_height_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:634: error: Public symbol dimen/abc_action_bar_default_padding_end_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:635: error: Public symbol dimen/abc_action_bar_default_padding_start_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:638: error: Public symbol dimen/abc_action_bar_icon_vertical_padding_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:639: error: Public symbol dimen/abc_action_bar_overflow_padding_end_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:640: error: Public symbol dimen/abc_action_bar_overflow_padding_start_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:624: error: Public symbol dimen/abc_action_bar_progress_bar_size declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:641: error: Public symbol dimen/abc_action_bar_stacked_max_height declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:642: error: Public symbol dimen/abc_action_bar_stacked_tab_max_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:643: error: Public symbol dimen/abc_action_bar_subtitle_bottom_margin_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:644: error: Public symbol dimen/abc_action_bar_subtitle_top_margin_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:645: error: Public symbol dimen/abc_action_button_min_height_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:646: error: Public symbol dimen/abc_action_button_min_width_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:647: error: Public symbol dimen/abc_action_button_min_width_overflow_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:622: error: Public symbol dimen/abc_alert_dialog_button_bar_height declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:648: error: Public symbol dimen/abc_button_inset_horizontal_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:649: error: Public symbol dimen/abc_button_inset_vertical_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:650: error: Public symbol dimen/abc_button_padding_horizontal_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:651: error: Public symbol dimen/abc_button_padding_vertical_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:627: error: Public symbol dimen/abc_config_prefDialogWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:652: error: Public symbol dimen/abc_control_corner_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:653: error: Public symbol dimen/abc_control_inset_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:654: error: Public symbol dimen/abc_control_padding_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:655: error: Public symbol dimen/abc_dialog_list_padding_vertical_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:656: error: Public symbol dimen/abc_dialog_min_width_major declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:657: error: Public symbol dimen/abc_dialog_min_width_minor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:658: error: Public symbol dimen/abc_dialog_padding_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:659: error: Public symbol dimen/abc_dialog_padding_top_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:660: error: Public symbol dimen/abc_disabled_alpha_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:661: error: Public symbol dimen/abc_disabled_alpha_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:662: error: Public symbol dimen/abc_dropdownitem_icon_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:663: error: Public symbol dimen/abc_dropdownitem_text_padding_left declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:664: error: Public symbol dimen/abc_dropdownitem_text_padding_right declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:665: error: Public symbol dimen/abc_edit_text_inset_bottom_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:666: error: Public symbol dimen/abc_edit_text_inset_horizontal_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:667: error: Public symbol dimen/abc_edit_text_inset_top_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:668: error: Public symbol dimen/abc_floating_window_z declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:669: error: Public symbol dimen/abc_list_item_padding_horizontal_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:670: error: Public symbol dimen/abc_panel_menu_list_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:671: error: Public symbol dimen/abc_search_view_preferred_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:628: error: Public symbol dimen/abc_search_view_text_min_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:636: error: Public symbol dimen/abc_switch_padding declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:672: error: Public symbol dimen/abc_text_size_body_1_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:673: error: Public symbol dimen/abc_text_size_body_2_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:674: error: Public symbol dimen/abc_text_size_button_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:675: error: Public symbol dimen/abc_text_size_caption_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:676: error: Public symbol dimen/abc_text_size_display_1_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:677: error: Public symbol dimen/abc_text_size_display_2_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:678: error: Public symbol dimen/abc_text_size_display_3_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:679: error: Public symbol dimen/abc_text_size_display_4_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:680: error: Public symbol dimen/abc_text_size_headline_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:681: error: Public symbol dimen/abc_text_size_large_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:682: error: Public symbol dimen/abc_text_size_medium_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:683: error: Public symbol dimen/abc_text_size_menu_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:684: error: Public symbol dimen/abc_text_size_small_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:685: error: Public symbol dimen/abc_text_size_subhead_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:625: error: Public symbol dimen/abc_text_size_subtitle_material_toolbar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:686: error: Public symbol dimen/abc_text_size_title_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:626: error: Public symbol dimen/abc_text_size_title_material_toolbar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:637: error: Public entry identifier 0x7f07000f entry index is larger than available symbols (index 15, total symbols 2).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:637: error: Public symbol dimen/activity_horizontal_margin declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:687: error: Public entry identifier 0x7f070041 entry index is larger than available symbols (index 65, total symbols 2).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:687: error: Public symbol dimen/activity_vertical_margin declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:629: error: Public symbol dimen/dialog_fixed_height_major declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:630: error: Public symbol dimen/dialog_fixed_height_minor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:631: error: Public symbol dimen/dialog_fixed_width_major declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:632: error: Public symbol dimen/dialog_fixed_width_minor declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:688: error: Public symbol dimen/disabled_alpha_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:689: error: Public symbol dimen/disabled_alpha_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:690: error: Public symbol dimen/highlight_alpha_material_colored declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:691: error: Public symbol dimen/highlight_alpha_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:692: error: Public symbol dimen/highlight_alpha_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:693: error: Public symbol dimen/notification_large_icon_height declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:694: error: Public symbol dimen/notification_large_icon_width declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:695: error: Public symbol dimen/notification_subtext_size declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:420: error: Public symbol style/AlertDialog.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:421: error: Public symbol style/AlertDialog.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:422: error: Public symbol style/Animation.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:423: error: Public symbol style/Animation.AppCompat.DropDownUp declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:424: error: Public entry identifier 0x7f08007e entry index is larger than available symbols (index 126, total symbols 1).

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:424: error: Public symbol style/AppTheme declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:425: error: Public symbol style/Base.AlertDialog.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:426: error: Public symbol style/Base.AlertDialog.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:427: error: Public symbol style/Base.Animation.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:428: error: Public symbol style/Base.Animation.AppCompat.DropDownUp declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:429: error: Public symbol style/Base.DialogWindowTitle.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:430: error: Public symbol style/Base.DialogWindowTitleBackground.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:343: error: Public symbol style/Base.TextAppearance.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:344: error: Public symbol style/Base.TextAppearance.AppCompat.Body1 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:345: error: Public symbol style/Base.TextAppearance.AppCompat.Body2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:322: error: Public symbol style/Base.TextAppearance.AppCompat.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:346: error: Public symbol style/Base.TextAppearance.AppCompat.Caption declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:347: error: Public symbol style/Base.TextAppearance.AppCompat.Display1 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:348: error: Public symbol style/Base.TextAppearance.AppCompat.Display2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:349: error: Public symbol style/Base.TextAppearance.AppCompat.Display3 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:350: error: Public symbol style/Base.TextAppearance.AppCompat.Display4 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:351: error: Public symbol style/Base.TextAppearance.AppCompat.Headline declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:301: error: Public symbol style/Base.TextAppearance.AppCompat.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:352: error: Public symbol style/Base.TextAppearance.AppCompat.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:302: error: Public symbol style/Base.TextAppearance.AppCompat.Large.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:353: error: Public symbol style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:354: error: Public symbol style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:355: error: Public symbol style/Base.TextAppearance.AppCompat.Medium declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:303: error: Public symbol style/Base.TextAppearance.AppCompat.Medium.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:356: error: Public symbol style/Base.TextAppearance.AppCompat.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:431: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:357: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:358: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:359: error: Public symbol style/Base.TextAppearance.AppCompat.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:304: error: Public symbol style/Base.TextAppearance.AppCompat.Small.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:360: error: Public symbol style/Base.TextAppearance.AppCompat.Subhead declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:305: error: Public symbol style/Base.TextAppearance.AppCompat.Subhead.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:361: error: Public symbol style/Base.TextAppearance.AppCompat.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:306: error: Public symbol style/Base.TextAppearance.AppCompat.Title.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:362: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:363: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:364: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:365: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:366: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:367: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:368: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:369: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:416: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Button.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:432: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.DropDownItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:370: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:371: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:372: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Switch declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:373: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:433: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:374: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:375: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:376: error: Public symbol style/Base.Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:434: error: Public symbol style/Base.Theme.AppCompat.CompactMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:307: error: Public symbol style/Base.Theme.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:435: error: Public symbol style/Base.Theme.AppCompat.Dialog.Alert declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:436: error: Public symbol style/Base.Theme.AppCompat.Dialog.FixedSize declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:437: error: Public symbol style/Base.Theme.AppCompat.Dialog.MinWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:299: error: Public symbol style/Base.Theme.AppCompat.DialogWhenLarge declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:377: error: Public symbol style/Base.Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:438: error: Public symbol style/Base.Theme.AppCompat.Light.DarkActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:308: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:439: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.Alert declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:440: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.FixedSize declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:441: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.MinWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:300: error: Public symbol style/Base.Theme.AppCompat.Light.DialogWhenLarge declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:442: error: Public symbol style/Base.ThemeOverlay.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:443: error: Public symbol style/Base.ThemeOverlay.AppCompat.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:444: error: Public symbol style/Base.ThemeOverlay.AppCompat.Dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:445: error: Public symbol style/Base.ThemeOverlay.AppCompat.Dark.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:446: error: Public symbol style/Base.ThemeOverlay.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:309: error: Public symbol style/Base.V11.Theme.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:310: error: Public symbol style/Base.V11.Theme.AppCompat.Light.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:318: error: Public symbol style/Base.V12.Widget.AppCompat.AutoCompleteTextView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:319: error: Public symbol style/Base.V12.Widget.AppCompat.EditText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:378: error: Public symbol style/Base.V21.Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:379: error: Public symbol style/Base.V21.Theme.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:380: error: Public symbol style/Base.V21.Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:381: error: Public symbol style/Base.V21.Theme.AppCompat.Light.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:414: error: Public symbol style/Base.V22.Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:415: error: Public symbol style/Base.V22.Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:417: error: Public symbol style/Base.V23.Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:418: error: Public symbol style/Base.V23.Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:447: error: Public symbol style/Base.V7.Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:448: error: Public symbol style/Base.V7.Theme.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:449: error: Public symbol style/Base.V7.Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:450: error: Public symbol style/Base.V7.Theme.AppCompat.Light.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:451: error: Public symbol style/Base.V7.Widget.AppCompat.AutoCompleteTextView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:452: error: Public symbol style/Base.V7.Widget.AppCompat.EditText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:453: error: Public symbol style/Base.Widget.AppCompat.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:454: error: Public symbol style/Base.Widget.AppCompat.ActionBar.Solid declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:455: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:382: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:383: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:384: error: Public symbol style/Base.Widget.AppCompat.ActionButton declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:385: error: Public symbol style/Base.Widget.AppCompat.ActionButton.CloseMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:386: error: Public symbol style/Base.Widget.AppCompat.ActionButton.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:456: error: Public symbol style/Base.Widget.AppCompat.ActionMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:457: error: Public symbol style/Base.Widget.AppCompat.ActivityChooserView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:320: error: Public symbol style/Base.Widget.AppCompat.AutoCompleteTextView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:387: error: Public symbol style/Base.Widget.AppCompat.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:388: error: Public symbol style/Base.Widget.AppCompat.Button.Borderless declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:389: error: Public symbol style/Base.Widget.AppCompat.Button.Borderless.Colored declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:458: error: Public symbol style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:419: error: Public symbol style/Base.Widget.AppCompat.Button.Colored declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:390: error: Public symbol style/Base.Widget.AppCompat.Button.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:391: error: Public symbol style/Base.Widget.AppCompat.ButtonBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:459: error: Public symbol style/Base.Widget.AppCompat.ButtonBar.AlertDialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:392: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.CheckBox declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:393: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.RadioButton declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:460: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.Switch declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:298: error: Public symbol style/Base.Widget.AppCompat.DrawerArrowToggle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:461: error: Public symbol style/Base.Widget.AppCompat.DrawerArrowToggle.Common declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:394: error: Public symbol style/Base.Widget.AppCompat.DropDownItem.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:321: error: Public symbol style/Base.Widget.AppCompat.EditText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:462: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:463: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.Solid declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:464: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:395: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:396: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:397: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:398: error: Public symbol style/Base.Widget.AppCompat.Light.PopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:399: error: Public symbol style/Base.Widget.AppCompat.Light.PopupMenu.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:400: error: Public symbol style/Base.Widget.AppCompat.ListPopupWindow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:401: error: Public symbol style/Base.Widget.AppCompat.ListView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:402: error: Public symbol style/Base.Widget.AppCompat.ListView.DropDown declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:403: error: Public symbol style/Base.Widget.AppCompat.ListView.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:404: error: Public symbol style/Base.Widget.AppCompat.PopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:405: error: Public symbol style/Base.Widget.AppCompat.PopupMenu.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:465: error: Public symbol style/Base.Widget.AppCompat.PopupWindow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:311: error: Public symbol style/Base.Widget.AppCompat.ProgressBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:312: error: Public symbol style/Base.Widget.AppCompat.ProgressBar.Horizontal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:406: error: Public symbol style/Base.Widget.AppCompat.RatingBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:466: error: Public symbol style/Base.Widget.AppCompat.SearchView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:467: error: Public symbol style/Base.Widget.AppCompat.SearchView.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:407: error: Public symbol style/Base.Widget.AppCompat.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:408: error: Public symbol style/Base.Widget.AppCompat.Spinner.Underlined declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:409: error: Public symbol style/Base.Widget.AppCompat.TextView.SpinnerItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:468: error: Public symbol style/Base.Widget.AppCompat.Toolbar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:410: error: Public symbol style/Base.Widget.AppCompat.Toolbar.Button.Navigation declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:313: error: Public symbol style/Platform.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:314: error: Public symbol style/Platform.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:411: error: Public symbol style/Platform.ThemeOverlay.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:412: error: Public symbol style/Platform.ThemeOverlay.AppCompat.Dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:413: error: Public symbol style/Platform.ThemeOverlay.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:315: error: Public symbol style/Platform.V11.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:316: error: Public symbol style/Platform.V11.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:323: error: Public symbol style/Platform.V14.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:324: error: Public symbol style/Platform.V14.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:317: error: Public symbol style/Platform.Widget.AppCompat.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:330: error: Public symbol style/RtlOverlay.DialogWindowTitle.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:331: error: Public symbol style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:332: error: Public symbol style/RtlOverlay.Widget.AppCompat.ActionButton.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:333: error: Public symbol style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:334: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:335: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:336: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:337: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:338: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:339: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:340: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:341: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:342: error: Public symbol style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:469: error: Public symbol style/TextAppearance.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:470: error: Public symbol style/TextAppearance.AppCompat.Body1 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:471: error: Public symbol style/TextAppearance.AppCompat.Body2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:472: error: Public symbol style/TextAppearance.AppCompat.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:473: error: Public symbol style/TextAppearance.AppCompat.Caption declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:474: error: Public symbol style/TextAppearance.AppCompat.Display1 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:475: error: Public symbol style/TextAppearance.AppCompat.Display2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:476: error: Public symbol style/TextAppearance.AppCompat.Display3 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:477: error: Public symbol style/TextAppearance.AppCompat.Display4 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:478: error: Public symbol style/TextAppearance.AppCompat.Headline declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:479: error: Public symbol style/TextAppearance.AppCompat.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:480: error: Public symbol style/TextAppearance.AppCompat.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:481: error: Public symbol style/TextAppearance.AppCompat.Large.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:482: error: Public symbol style/TextAppearance.AppCompat.Light.SearchResult.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:483: error: Public symbol style/TextAppearance.AppCompat.Light.SearchResult.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:484: error: Public symbol style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:485: error: Public symbol style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:486: error: Public symbol style/TextAppearance.AppCompat.Medium declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:487: error: Public symbol style/TextAppearance.AppCompat.Medium.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:488: error: Public symbol style/TextAppearance.AppCompat.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:489: error: Public symbol style/TextAppearance.AppCompat.SearchResult.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:490: error: Public symbol style/TextAppearance.AppCompat.SearchResult.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:491: error: Public symbol style/TextAppearance.AppCompat.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:492: error: Public symbol style/TextAppearance.AppCompat.Small.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:493: error: Public symbol style/TextAppearance.AppCompat.Subhead declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:494: error: Public symbol style/TextAppearance.AppCompat.Subhead.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:495: error: Public symbol style/TextAppearance.AppCompat.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:496: error: Public symbol style/TextAppearance.AppCompat.Title.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:497: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:498: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:499: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:500: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:501: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:502: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:503: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:504: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:505: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:506: error: Public symbol style/TextAppearance.AppCompat.Widget.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:507: error: Public symbol style/TextAppearance.AppCompat.Widget.Button.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:508: error: Public symbol style/TextAppearance.AppCompat.Widget.DropDownItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:509: error: Public symbol style/TextAppearance.AppCompat.Widget.PopupMenu.Large declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:510: error: Public symbol style/TextAppearance.AppCompat.Widget.PopupMenu.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:511: error: Public symbol style/TextAppearance.AppCompat.Widget.Switch declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:512: error: Public symbol style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:325: error: Public symbol style/TextAppearance.StatusBar.EventContent declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:326: error: Public symbol style/TextAppearance.StatusBar.EventContent.Info declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:327: error: Public symbol style/TextAppearance.StatusBar.EventContent.Line2 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:328: error: Public symbol style/TextAppearance.StatusBar.EventContent.Time declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:329: error: Public symbol style/TextAppearance.StatusBar.EventContent.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:513: error: Public symbol style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:514: error: Public symbol style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:515: error: Public symbol style/TextAppearance.Widget.AppCompat.Toolbar.Title declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:516: error: Public symbol style/Theme.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:517: error: Public symbol style/Theme.AppCompat.CompactMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:518: error: Public symbol style/Theme.AppCompat.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:519: error: Public symbol style/Theme.AppCompat.Dialog.Alert declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:520: error: Public symbol style/Theme.AppCompat.Dialog.MinWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:521: error: Public symbol style/Theme.AppCompat.DialogWhenLarge declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:522: error: Public symbol style/Theme.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:523: error: Public symbol style/Theme.AppCompat.Light.DarkActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:524: error: Public symbol style/Theme.AppCompat.Light.Dialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:525: error: Public symbol style/Theme.AppCompat.Light.Dialog.Alert declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:526: error: Public symbol style/Theme.AppCompat.Light.Dialog.MinWidth declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:527: error: Public symbol style/Theme.AppCompat.Light.DialogWhenLarge declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:528: error: Public symbol style/Theme.AppCompat.Light.NoActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:529: error: Public symbol style/Theme.AppCompat.NoActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:530: error: Public symbol style/ThemeOverlay.AppCompat declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:531: error: Public symbol style/ThemeOverlay.AppCompat.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:532: error: Public symbol style/ThemeOverlay.AppCompat.Dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:533: error: Public symbol style/ThemeOverlay.AppCompat.Dark.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:534: error: Public symbol style/ThemeOverlay.AppCompat.Light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:535: error: Public symbol style/Widget.AppCompat.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:536: error: Public symbol style/Widget.AppCompat.ActionBar.Solid declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:537: error: Public symbol style/Widget.AppCompat.ActionBar.TabBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:538: error: Public symbol style/Widget.AppCompat.ActionBar.TabText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:539: error: Public symbol style/Widget.AppCompat.ActionBar.TabView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:540: error: Public symbol style/Widget.AppCompat.ActionButton declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:541: error: Public symbol style/Widget.AppCompat.ActionButton.CloseMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:542: error: Public symbol style/Widget.AppCompat.ActionButton.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:543: error: Public symbol style/Widget.AppCompat.ActionMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:544: error: Public symbol style/Widget.AppCompat.ActivityChooserView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:545: error: Public symbol style/Widget.AppCompat.AutoCompleteTextView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:546: error: Public symbol style/Widget.AppCompat.Button declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:547: error: Public symbol style/Widget.AppCompat.Button.Borderless declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:548: error: Public symbol style/Widget.AppCompat.Button.Borderless.Colored declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:549: error: Public symbol style/Widget.AppCompat.Button.ButtonBar.AlertDialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:550: error: Public symbol style/Widget.AppCompat.Button.Colored declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:551: error: Public symbol style/Widget.AppCompat.Button.Small declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:552: error: Public symbol style/Widget.AppCompat.ButtonBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:553: error: Public symbol style/Widget.AppCompat.ButtonBar.AlertDialog declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:554: error: Public symbol style/Widget.AppCompat.CompoundButton.CheckBox declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:555: error: Public symbol style/Widget.AppCompat.CompoundButton.RadioButton declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:556: error: Public symbol style/Widget.AppCompat.CompoundButton.Switch declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:557: error: Public symbol style/Widget.AppCompat.DrawerArrowToggle declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:558: error: Public symbol style/Widget.AppCompat.DropDownItem.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:559: error: Public symbol style/Widget.AppCompat.EditText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:560: error: Public symbol style/Widget.AppCompat.Light.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:561: error: Public symbol style/Widget.AppCompat.Light.ActionBar.Solid declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:562: error: Public symbol style/Widget.AppCompat.Light.ActionBar.Solid.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:563: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:564: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:565: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabText declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:566: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabText.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:567: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:568: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabView.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:569: error: Public symbol style/Widget.AppCompat.Light.ActionButton declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:570: error: Public symbol style/Widget.AppCompat.Light.ActionButton.CloseMode declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:571: error: Public symbol style/Widget.AppCompat.Light.ActionButton.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:572: error: Public symbol style/Widget.AppCompat.Light.ActionMode.Inverse declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:573: error: Public symbol style/Widget.AppCompat.Light.ActivityChooserView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:574: error: Public symbol style/Widget.AppCompat.Light.AutoCompleteTextView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:575: error: Public symbol style/Widget.AppCompat.Light.DropDownItem.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:576: error: Public symbol style/Widget.AppCompat.Light.ListPopupWindow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:577: error: Public symbol style/Widget.AppCompat.Light.ListView.DropDown declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:578: error: Public symbol style/Widget.AppCompat.Light.PopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:579: error: Public symbol style/Widget.AppCompat.Light.PopupMenu.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:580: error: Public symbol style/Widget.AppCompat.Light.SearchView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:581: error: Public symbol style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:582: error: Public symbol style/Widget.AppCompat.ListPopupWindow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:583: error: Public symbol style/Widget.AppCompat.ListView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:584: error: Public symbol style/Widget.AppCompat.ListView.DropDown declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:585: error: Public symbol style/Widget.AppCompat.ListView.Menu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:586: error: Public symbol style/Widget.AppCompat.PopupMenu declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:587: error: Public symbol style/Widget.AppCompat.PopupMenu.Overflow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:588: error: Public symbol style/Widget.AppCompat.PopupWindow declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:589: error: Public symbol style/Widget.AppCompat.ProgressBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:590: error: Public symbol style/Widget.AppCompat.ProgressBar.Horizontal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:591: error: Public symbol style/Widget.AppCompat.RatingBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:592: error: Public symbol style/Widget.AppCompat.SearchView declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:593: error: Public symbol style/Widget.AppCompat.SearchView.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:594: error: Public symbol style/Widget.AppCompat.Spinner declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:595: error: Public symbol style/Widget.AppCompat.Spinner.DropDown declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:596: error: Public symbol style/Widget.AppCompat.Spinner.DropDown.ActionBar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:597: error: Public symbol style/Widget.AppCompat.Spinner.Underlined declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:598: error: Public symbol style/Widget.AppCompat.TextView.SpinnerItem declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:599: error: Public symbol style/Widget.AppCompat.Toolbar declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:600: error: Public symbol style/Widget.AppCompat.Toolbar.Button.Navigation declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:878: error: Public symbol integer/abc_config_activityDefaultDur declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:879: error: Public symbol integer/abc_config_activityShortDur declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:877: error: Public symbol integer/abc_max_action_buttons declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:880: error: Public symbol integer/cancel_button_image_alpha declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:881: error: Public symbol integer/status_bar_notification_info_maxnum declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:754: error: Public symbol color/abc_background_cache_hint_selector_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:755: error: Public symbol color/abc_background_cache_hint_selector_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:756: error: Public symbol color/abc_color_highlight_material declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:696: error: Public symbol color/abc_input_method_navigation_guard declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:757: error: Public symbol color/abc_primary_text_disable_only_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:758: error: Public symbol color/abc_primary_text_disable_only_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:759: error: Public symbol color/abc_primary_text_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:760: error: Public symbol color/abc_primary_text_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:761: error: Public symbol color/abc_search_url_text declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:697: error: Public symbol color/abc_search_url_text_normal declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:698: error: Public symbol color/abc_search_url_text_pressed declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:699: error: Public symbol color/abc_search_url_text_selected declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:762: error: Public symbol color/abc_secondary_text_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:763: error: Public symbol color/abc_secondary_text_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:700: error: Public symbol color/accent_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:701: error: Public symbol color/accent_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:702: error: Public symbol color/background_floating_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:703: error: Public symbol color/background_floating_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:704: error: Public symbol color/background_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:705: error: Public symbol color/background_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:706: error: Public symbol color/bright_foreground_disabled_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:707: error: Public symbol color/bright_foreground_disabled_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:708: error: Public symbol color/bright_foreground_inverse_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:709: error: Public symbol color/bright_foreground_inverse_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:710: error: Public symbol color/bright_foreground_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:711: error: Public symbol color/bright_foreground_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:712: error: Public symbol color/button_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:713: error: Public symbol color/button_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:714: error: Public symbol color/dim_foreground_disabled_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:715: error: Public symbol color/dim_foreground_disabled_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:716: error: Public symbol color/dim_foreground_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:717: error: Public symbol color/dim_foreground_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:718: error: Public symbol color/foreground_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:719: error: Public symbol color/foreground_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:720: error: Public symbol color/highlighted_text_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:721: error: Public symbol color/highlighted_text_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:722: error: Public symbol color/hint_foreground_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:723: error: Public symbol color/hint_foreground_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:724: error: Public symbol color/material_blue_grey_800 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:725: error: Public symbol color/material_blue_grey_900 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:726: error: Public symbol color/material_blue_grey_950 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:727: error: Public symbol color/material_deep_teal_200 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:728: error: Public symbol color/material_deep_teal_500 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:729: error: Public symbol color/material_grey_100 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:730: error: Public symbol color/material_grey_300 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:731: error: Public symbol color/material_grey_50 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:732: error: Public symbol color/material_grey_600 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:733: error: Public symbol color/material_grey_800 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:734: error: Public symbol color/material_grey_850 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:735: error: Public symbol color/material_grey_900 declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:736: error: Public symbol color/primary_dark_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:737: error: Public symbol color/primary_dark_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:738: error: Public symbol color/primary_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:739: error: Public symbol color/primary_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:740: error: Public symbol color/primary_text_default_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:741: error: Public symbol color/primary_text_default_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:742: error: Public symbol color/primary_text_disabled_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:743: error: Public symbol color/primary_text_disabled_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:744: error: Public symbol color/ripple_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:745: error: Public symbol color/ripple_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:746: error: Public symbol color/secondary_text_default_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:747: error: Public symbol color/secondary_text_default_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:748: error: Public symbol color/secondary_text_disabled_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:749: error: Public symbol color/secondary_text_disabled_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:750: error: Public symbol color/switch_thumb_disabled_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:751: error: Public symbol color/switch_thumb_disabled_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:764: error: Public symbol color/switch_thumb_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:765: error: Public symbol color/switch_thumb_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:752: error: Public symbol color/switch_thumb_normal_material_dark declared here is not defined.

E:\0000000001__Project\TWA\app\build\lcast\res\values\public.xml:753: error: Public symbol color/switch_thumb_normal_material_light declared here is not defined.

E:\0000000001__Project\TWA\app\src\main\res\values\styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.

Build error with Gradle

Here is the gradle build error log,

Error:Execution failed for task ':app:processProductReleaseManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version 15 declared in library /Users/wichna/IdeaProjects/alice/app/build/intermediates/exploded-aar/com.github.mmin18.layoutcast/library/1.1.3/AndroidManifest.xml
    Suggestion: use tools:overrideLibrary="com.github.mmin18.layoutcast" to force usage

My application minSdkVersion is 14,i don't know how to fix this problem.Can you help me out?Thanks.:)

when run layout cast in android studio tool bar,it can't work,this is log.mac os and android 5.1.1

Traceback (most recent call last):
File "/var/folders/8n/x_crp1rx3z9dmlphr2bndl_80000gn/T/lcast55613124027164810821.50808", line 417, in
projlist = [i for i in list_projects(dir) if is_launchable_project(i)]
File "/var/folders/8n/x_crp1rx3z9dmlphr2bndl_80000gn/T/lcast55613124027164810821.50808", line 254, in list_projects
if package_name(cdir):
File "/var/folders/8n/x_crp1rx3z9dmlphr2bndl_80000gn/T/lcast55613124027164810821.50808", line 127, in package_name
data = manifestfile.read()
File "/System/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe8 in position 489: ordinal not in range(128)

Fail to exec with too much errors.

Part of log file:

cast me.ydcool.kungfupao:41128 as gradle project with both /res and /src changed
Fail to exec ['/Users/Shared/Android/sdk/build-tools/23.0.0_rc3/aapt', 'package', '-f', '--auto-add-overlay', '-F', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/build/lcast/res.zip', '-S', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/easing/src/main/res', '-S', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/common/src/main/res', '-S', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/src/main/res', '-S', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/build/lcast/res', '-M', '/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/src/main/AndroidManifest.xml', '-I', '/Users/Shared/Android/sdk/platforms/android-22/android.jar']

/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/src/main/res/drawable-xxhdpi/duration_minus.png: libpng warning: iCCP: Not recognizing known sRGB profile that has been edited
/Volumes/Data/ydcool/workspace_studio/KungfuPao/app/src/main/res/drawable-xxhdpi/duration_plus.png: libpng warning: iCCP: Not recognizing known sRGB profile that has been edited
...

难道跟我项目module有关系?
另,我用的是lcast.jar而非maven,因为会提示 warning:Avoid using + in verson numbers....,sync之后也找不到包无法import.

Configure package name

It could be great to be able to configure the target package name, because it is impossible to use LayoutCast if you have different package name per flavours.

Mac cast oceancx.example.myapplication:41128 as gradle project with /res changed (v1.50922)

Android Studio 1.4
看来不支持Android-support Lib 23.0.1 和 23.1.0啊

cast oceancx.example.myapplication:41128 as gradle project with /res changed (v1.50922)
Fail to exec [u'/Users/oceancx/Development/sdk/build-tools/23.0.1/aapt', 'package', '-f', '--auto-add-overlay', '-F', u'/Users/oceancx/GitHub/MyApplication/app/build/lcast/res.zip', '-S', u'/Users/oceancx/GitHub/MyApplication/app/build/lcast/res', '-S', u'/Users/oceancx/GitHub/MyApplication/app/src/main/res', '-M', u'/Users/oceancx/GitHub/MyApplication/app/src/main/AndroidManifest.xml', '-I', u'/Users/oceancx/Development/sdk/platforms/android-23/android.jar']

/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:102: error: Public symbol attr/actionBarDivider declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:103: error: Public symbol attr/actionBarItemBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:96: error: Public symbol attr/actionBarPopupTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:101: error: Public symbol attr/actionBarSize declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:98: error: Public symbol attr/actionBarSplitStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:97: error: Public symbol attr/actionBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:92: error: Public symbol attr/actionBarTabBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:91: error: Public symbol attr/actionBarTabStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:93: error: Public symbol attr/actionBarTabTextStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:99: error: Public symbol attr/actionBarTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:100: error: Public symbol attr/actionBarWidgetTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:128: error: Public symbol attr/actionButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:124: error: Public symbol attr/actionDropDownStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:55: error: Public symbol attr/actionLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:104: error: Public symbol attr/actionMenuTextAppearance declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:105: error: Public symbol attr/actionMenuTextColor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:108: error: Public symbol attr/actionModeBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:107: error: Public symbol attr/actionModeCloseButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:110: error: Public symbol attr/actionModeCloseDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:112: error: Public symbol attr/actionModeCopyDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:111: error: Public symbol attr/actionModeCutDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:116: error: Public symbol attr/actionModeFindDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:113: error: Public symbol attr/actionModePasteDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:118: error: Public symbol attr/actionModePopupWindowStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:114: error: Public symbol attr/actionModeSelectAllDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:115: error: Public symbol attr/actionModeShareDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:109: error: Public symbol attr/actionModeSplitBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:106: error: Public symbol attr/actionModeStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:117: error: Public symbol attr/actionModeWebSearchDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:94: error: Public symbol attr/actionOverflowButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:95: error: Public symbol attr/actionOverflowMenuStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:57: error: Public symbol attr/actionProviderClass declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:56: error: Public symbol attr/actionViewClass declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:136: error: Public symbol attr/activityChooserViewStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:171: error: Public symbol attr/alertDialogButtonGroupStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:172: error: Public symbol attr/alertDialogCenterButtons declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:170: error: Public symbol attr/alertDialogStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:173: error: Public symbol attr/alertDialogTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:40: error: Public symbol attr/allowStacking declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:47: error: Public symbol attr/arrowHeadLength declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:48: error: Public symbol attr/arrowShaftLength declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:178: error: Public symbol attr/autoCompleteTextViewStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:15: error: Public symbol attr/background declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:17: error: Public symbol attr/backgroundSplit declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:16: error: Public symbol attr/backgroundStacked declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:207: error: Public symbol attr/backgroundTint declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:208: error: Public symbol attr/backgroundTintMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:49: error: Public symbol attr/barLength declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:133: error: Public symbol attr/borderlessButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:130: error: Public symbol attr/buttonBarButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:176: error: Public symbol attr/buttonBarNegativeButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:177: error: Public symbol attr/buttonBarNeutralButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:175: error: Public symbol attr/buttonBarPositiveButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:129: error: Public symbol attr/buttonBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:34: error: Public symbol attr/buttonPanelSideLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:179: error: Public symbol attr/buttonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:180: error: Public symbol attr/buttonStyleSmall declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:41: error: Public symbol attr/buttonTint declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:42: error: Public symbol attr/buttonTintMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:181: error: Public symbol attr/checkboxStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:182: error: Public symbol attr/checkedTextViewStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:65: error: Public symbol attr/closeIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:31: error: Public symbol attr/closeItemLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:198: error: Public symbol attr/collapseContentDescription declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:197: error: Public symbol attr/collapseIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:43: error: Public symbol attr/color declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:163: error: Public symbol attr/colorAccent declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:167: error: Public symbol attr/colorButtonNormal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:165: error: Public symbol attr/colorControlActivated declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:166: error: Public symbol attr/colorControlHighlight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:164: error: Public symbol attr/colorControlNormal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:161: error: Public symbol attr/colorPrimary declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:162: error: Public symbol attr/colorPrimaryDark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:168: error: Public symbol attr/colorSwitchThumbNormal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:70: error: Public symbol attr/commitIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:26: error: Public symbol attr/contentInsetEnd declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:27: error: Public symbol attr/contentInsetLeft declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:28: error: Public symbol attr/contentInsetRight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:25: error: Public symbol attr/contentInsetStart declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:169: error: Public symbol attr/controlBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:18: error: Public symbol attr/customNavigationLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:64: error: Public symbol attr/defaultQueryHint declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:122: error: Public symbol attr/dialogPreferredPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:121: error: Public symbol attr/dialogTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:8: error: Public symbol attr/displayOptions declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:14: error: Public symbol attr/divider declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:135: error: Public symbol attr/dividerHorizontal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:53: error: Public symbol attr/dividerPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:134: error: Public symbol attr/dividerVertical declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:45: error: Public symbol attr/drawableSize declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:3: error: Public symbol attr/drawerArrowStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:153: error: Public symbol attr/dropDownListViewStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:125: error: Public symbol attr/dropdownListPreferredItemHeight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:142: error: Public symbol attr/editTextBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:141: error: Public symbol attr/editTextColor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:183: error: Public symbol attr/editTextStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:29: error: Public symbol attr/elevation declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:33: error: Public symbol attr/expandActivityOverflowButtonDrawable declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:46: error: Public symbol attr/gapBetweenBars declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:66: error: Public symbol attr/goIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:4: error: Public symbol attr/height declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:24: error: Public symbol attr/hideOnContentScroll declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:127: error: Public symbol attr/homeAsUpIndicator declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:19: error: Public symbol attr/homeLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:12: error: Public symbol attr/icon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:62: error: Public symbol attr/iconifiedByDefault declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:143: error: Public symbol attr/imageButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:21: error: Public symbol attr/indeterminateProgressStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:32: error: Public symbol attr/initialActivityCount declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:5: error: Public symbol attr/isLightTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:23: error: Public symbol attr/itemPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:61: error: Public symbol attr/layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:160: error: Public symbol attr/listChoiceBackgroundIndicator declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:123: error: Public symbol attr/listDividerAlertDialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:38: error: Public symbol attr/listItemLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:35: error: Public symbol attr/listLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:154: error: Public symbol attr/listPopupWindowStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:148: error: Public symbol attr/listPreferredItemHeight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:150: error: Public symbol attr/listPreferredItemHeightLarge declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:149: error: Public symbol attr/listPreferredItemHeightSmall declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:151: error: Public symbol attr/listPreferredItemPaddingLeft declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:152: error: Public symbol attr/listPreferredItemPaddingRight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:13: error: Public symbol attr/logo declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:201: error: Public symbol attr/logoDescription declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:196: error: Public symbol attr/maxButtonHeight declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:51: error: Public symbol attr/measureWithLargestChild declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:36: error: Public symbol attr/multiChoiceItemLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:200: error: Public symbol attr/navigationContentDescription declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:199: error: Public symbol attr/navigationIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:7: error: Public symbol attr/navigationMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:59: error: Public symbol attr/overlapAnchor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:205: error: Public symbol attr/paddingEnd declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:204: error: Public symbol attr/paddingStart declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:157: error: Public symbol attr/panelBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:159: error: Public symbol attr/panelMenuListTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:158: error: Public symbol attr/panelMenuListWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:139: error: Public symbol attr/popupMenuStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:30: error: Public symbol attr/popupTheme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:140: error: Public symbol attr/popupWindowStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:58: error: Public symbol attr/preserveIconSpacing declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:22: error: Public symbol attr/progressBarPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:20: error: Public symbol attr/progressBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:72: error: Public symbol attr/queryBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:63: error: Public symbol attr/queryHint declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:184: error: Public symbol attr/radioButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:185: error: Public symbol attr/ratingBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:68: error: Public symbol attr/searchHintIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:67: error: Public symbol attr/searchIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:147: error: Public symbol attr/searchViewStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:186: error: Public symbol attr/seekBarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:131: error: Public symbol attr/selectableItemBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:132: error: Public symbol attr/selectableItemBackgroundBorderless declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:54: error: Public symbol attr/showAsAction declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:52: error: Public symbol attr/showDividers declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:80: error: Public symbol attr/showText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:37: error: Public symbol attr/singleChoiceItemLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:44: error: Public symbol attr/spinBars declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:126: error: Public symbol attr/spinnerDropDownItemStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:187: error: Public symbol attr/spinnerStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:79: error: Public symbol attr/splitTrack declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:60: error: Public symbol attr/state_above_anchor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:73: error: Public symbol attr/submitBackground declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:9: error: Public symbol attr/subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:190: error: Public symbol attr/subtitleTextAppearance declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:203: error: Public symbol attr/subtitleTextColor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:11: error: Public symbol attr/subtitleTextStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:71: error: Public symbol attr/suggestionRowLayout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:77: error: Public symbol attr/switchMinWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:78: error: Public symbol attr/switchPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:188: error: Public symbol attr/switchStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:76: error: Public symbol attr/switchTextAppearance declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:39: error: Public symbol attr/textAllCaps declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:119: error: Public symbol attr/textAppearanceLargePopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:155: error: Public symbol attr/textAppearanceListItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:156: error: Public symbol attr/textAppearanceListItemSmall declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:145: error: Public symbol attr/textAppearanceSearchResultSubtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:144: error: Public symbol attr/textAppearanceSearchResultTitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:120: error: Public symbol attr/textAppearanceSmallPopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:174: error: Public symbol attr/textColorAlertDialogListItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:146: error: Public symbol attr/textColorSearchUrl declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:206: error: Public symbol attr/theme declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:50: error: Public symbol attr/thickness declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:75: error: Public symbol attr/thumbTextPadding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:6: error: Public symbol attr/title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:195: error: Public symbol attr/titleMarginBottom declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:193: error: Public symbol attr/titleMarginEnd declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:192: error: Public symbol attr/titleMarginStart declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:194: error: Public symbol attr/titleMarginTop declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:191: error: Public symbol attr/titleMargins declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:189: error: Public symbol attr/titleTextAppearance declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:202: error: Public symbol attr/titleTextColor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:10: error: Public symbol attr/titleTextStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:138: error: Public symbol attr/toolbarNavigationButtonStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:137: error: Public symbol attr/toolbarStyle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:74: error: Public symbol attr/track declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:69: error: Public symbol attr/voiceIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:81: error: Public symbol attr/windowActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:83: error: Public symbol attr/windowActionBarOverlay declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:84: error: Public symbol attr/windowActionModeOverlay declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:88: error: Public symbol attr/windowFixedHeightMajor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:86: error: Public symbol attr/windowFixedHeightMinor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:85: error: Public symbol attr/windowFixedWidthMajor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:87: error: Public symbol attr/windowFixedWidthMinor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:89: error: Public symbol attr/windowMinWidthMajor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:90: error: Public symbol attr/windowMinWidthMinor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:82: error: Public symbol attr/windowNoTitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:781: error: Public symbol drawable/abc_ab_share_pack_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:782: error: Public symbol drawable/abc_action_bar_item_background_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:783: error: Public symbol drawable/abc_btn_borderless_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:784: error: Public symbol drawable/abc_btn_check_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:785: error: Public symbol drawable/abc_btn_check_to_on_mtrl_000 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:786: error: Public symbol drawable/abc_btn_check_to_on_mtrl_015 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:787: error: Public symbol drawable/abc_btn_colored_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:788: error: Public symbol drawable/abc_btn_default_mtrl_shape declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:789: error: Public symbol drawable/abc_btn_radio_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:790: error: Public symbol drawable/abc_btn_radio_to_on_mtrl_000 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:791: error: Public symbol drawable/abc_btn_radio_to_on_mtrl_015 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:792: error: Public symbol drawable/abc_btn_rating_star_off_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:793: error: Public symbol drawable/abc_btn_rating_star_on_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:794: error: Public symbol drawable/abc_btn_switch_to_on_mtrl_00001 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:795: error: Public symbol drawable/abc_btn_switch_to_on_mtrl_00012 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:796: error: Public symbol drawable/abc_cab_background_internal_bg declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:797: error: Public symbol drawable/abc_cab_background_top_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:798: error: Public symbol drawable/abc_cab_background_top_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:799: error: Public symbol drawable/abc_control_background_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:800: error: Public symbol drawable/abc_dialog_material_background_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:801: error: Public symbol drawable/abc_dialog_material_background_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:802: error: Public symbol drawable/abc_edit_text_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:803: error: Public symbol drawable/abc_ic_ab_back_mtrl_am_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:804: error: Public symbol drawable/abc_ic_clear_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:805: error: Public symbol drawable/abc_ic_commit_search_api_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:806: error: Public symbol drawable/abc_ic_go_search_api_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:807: error: Public symbol drawable/abc_ic_menu_copy_mtrl_am_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:808: error: Public symbol drawable/abc_ic_menu_cut_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:809: error: Public symbol drawable/abc_ic_menu_moreoverflow_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:810: error: Public symbol drawable/abc_ic_menu_paste_mtrl_am_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:811: error: Public symbol drawable/abc_ic_menu_selectall_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:812: error: Public symbol drawable/abc_ic_menu_share_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:813: error: Public symbol drawable/abc_ic_search_api_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:814: error: Public symbol drawable/abc_ic_voice_search_api_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:815: error: Public symbol drawable/abc_item_background_holo_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:816: error: Public symbol drawable/abc_item_background_holo_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:817: error: Public symbol drawable/abc_list_divider_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:818: error: Public symbol drawable/abc_list_focused_holo declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:819: error: Public symbol drawable/abc_list_longpressed_holo declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:820: error: Public symbol drawable/abc_list_pressed_holo_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:821: error: Public symbol drawable/abc_list_pressed_holo_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:822: error: Public symbol drawable/abc_list_selector_background_transition_holo_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:823: error: Public symbol drawable/abc_list_selector_background_transition_holo_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:824: error: Public symbol drawable/abc_list_selector_disabled_holo_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:825: error: Public symbol drawable/abc_list_selector_disabled_holo_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:826: error: Public symbol drawable/abc_list_selector_holo_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:827: error: Public symbol drawable/abc_list_selector_holo_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:828: error: Public symbol drawable/abc_menu_hardkey_panel_mtrl_mult declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:829: error: Public symbol drawable/abc_popup_background_mtrl_mult declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:830: error: Public symbol drawable/abc_ratingbar_full_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:831: error: Public symbol drawable/abc_scrubber_control_off_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:832: error: Public symbol drawable/abc_scrubber_control_to_pressed_mtrl_000 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:833: error: Public symbol drawable/abc_scrubber_control_to_pressed_mtrl_005 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:834: error: Public symbol drawable/abc_scrubber_primary_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:835: error: Public symbol drawable/abc_scrubber_track_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:836: error: Public symbol drawable/abc_seekbar_thumb_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:837: error: Public symbol drawable/abc_seekbar_track_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:838: error: Public symbol drawable/abc_spinner_mtrl_am_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:839: error: Public symbol drawable/abc_spinner_textfield_background_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:840: error: Public symbol drawable/abc_switch_thumb_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:841: error: Public symbol drawable/abc_switch_track_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:842: error: Public symbol drawable/abc_tab_indicator_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:843: error: Public symbol drawable/abc_tab_indicator_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:844: error: Public symbol drawable/abc_text_cursor_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:845: error: Public symbol drawable/abc_textfield_activated_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:846: error: Public symbol drawable/abc_textfield_default_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:847: error: Public symbol drawable/abc_textfield_search_activated_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:848: error: Public symbol drawable/abc_textfield_search_default_mtrl_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:849: error: Public symbol drawable/abc_textfield_search_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:850: error: Public symbol drawable/notification_template_icon_bg declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:851: error: Public symbol layout/abc_action_bar_title_item declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:852: error: Public symbol layout/abc_action_bar_up_container declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:853: error: Public symbol layout/abc_action_bar_view_list_nav_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:854: error: Public symbol layout/abc_action_menu_item_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:855: error: Public symbol layout/abc_action_menu_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:856: error: Public symbol layout/abc_action_mode_bar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:857: error: Public symbol layout/abc_action_mode_close_item_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:858: error: Public symbol layout/abc_activity_chooser_view declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:859: error: Public symbol layout/abc_activity_chooser_view_list_item declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:860: error: Public symbol layout/abc_alert_dialog_button_bar_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:861: error: Public symbol layout/abc_alert_dialog_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:862: error: Public symbol layout/abc_dialog_title_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:863: error: Public symbol layout/abc_expanded_menu_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:864: error: Public symbol layout/abc_list_menu_item_checkbox declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:865: error: Public symbol layout/abc_list_menu_item_icon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:866: error: Public symbol layout/abc_list_menu_item_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:867: error: Public symbol layout/abc_list_menu_item_radio declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:868: error: Public symbol layout/abc_popup_menu_item_layout declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:869: error: Public symbol layout/abc_screen_content_include declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:870: error: Public symbol layout/abc_screen_simple declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:871: error: Public symbol layout/abc_screen_simple_overlay_action_mode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:872: error: Public symbol layout/abc_screen_toolbar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:873: error: Public symbol layout/abc_search_dropdown_item_icons_2line declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:874: error: Public symbol layout/abc_search_view declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:875: error: Public symbol layout/abc_select_dialog_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:877: error: Public symbol layout/notification_media_action declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:878: error: Public symbol layout/notification_media_cancel_action declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:879: error: Public symbol layout/notification_template_big_media declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:880: error: Public symbol layout/notification_template_big_media_narrow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:881: error: Public symbol layout/notification_template_lines declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:882: error: Public symbol layout/notification_template_media declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:883: error: Public symbol layout/notification_template_part_chronometer declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:884: error: Public symbol layout/notification_template_part_time declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:885: error: Public symbol layout/select_dialog_item_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:886: error: Public symbol layout/select_dialog_multichoice_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:887: error: Public symbol layout/select_dialog_singlechoice_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:888: error: Public symbol layout/support_simple_spinner_dropdown_item declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:889: error: Public symbol anim/abc_fade_in declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:890: error: Public symbol anim/abc_fade_out declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:891: error: Public symbol anim/abc_grow_fade_in_from_bottom declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:892: error: Public symbol anim/abc_popup_enter declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:893: error: Public symbol anim/abc_popup_exit declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:894: error: Public symbol anim/abc_shrink_fade_out_from_bottom declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:895: error: Public symbol anim/abc_slide_in_bottom declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:896: error: Public symbol anim/abc_slide_in_top declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:897: error: Public symbol anim/abc_slide_out_bottom declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:898: error: Public symbol anim/abc_slide_out_top declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:610: error: Public symbol string/abc_action_bar_home_description declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:611: error: Public symbol string/abc_action_bar_home_description_format declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:612: error: Public symbol string/abc_action_bar_home_subtitle_description_format declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:613: error: Public symbol string/abc_action_bar_up_description declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:614: error: Public symbol string/abc_action_menu_overflow_description declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:615: error: Public symbol string/abc_action_mode_done declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:616: error: Public symbol string/abc_activity_chooser_view_see_all declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:617: error: Public symbol string/abc_activitychooserview_choose_application declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:618: error: Public symbol string/abc_capital_off declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:619: error: Public symbol string/abc_capital_on declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:620: error: Public symbol string/abc_search_hint declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:621: error: Public symbol string/abc_searchview_description_clear declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:622: error: Public symbol string/abc_searchview_description_query declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:623: error: Public symbol string/abc_searchview_description_search declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:624: error: Public symbol string/abc_searchview_description_submit declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:625: error: Public symbol string/abc_searchview_description_voice declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:626: error: Public symbol string/abc_shareactionprovider_share_with declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:627: error: Public symbol string/abc_shareactionprovider_share_with_application declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:628: error: Public symbol string/abc_toolbar_collapse_description declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:629: error: Public symbol string/status_bar_notification_info_overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:644: error: Public symbol dimen/abc_action_bar_content_inset_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:632: error: Public symbol dimen/abc_action_bar_default_height_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:645: error: Public symbol dimen/abc_action_bar_default_padding_end_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:646: error: Public symbol dimen/abc_action_bar_default_padding_start_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:649: error: Public symbol dimen/abc_action_bar_icon_vertical_padding_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:650: error: Public symbol dimen/abc_action_bar_overflow_padding_end_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:651: error: Public symbol dimen/abc_action_bar_overflow_padding_start_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:633: error: Public symbol dimen/abc_action_bar_progress_bar_size declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:652: error: Public symbol dimen/abc_action_bar_stacked_max_height declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:653: error: Public symbol dimen/abc_action_bar_stacked_tab_max_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:654: error: Public symbol dimen/abc_action_bar_subtitle_bottom_margin_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:655: error: Public symbol dimen/abc_action_bar_subtitle_top_margin_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:656: error: Public symbol dimen/abc_action_button_min_height_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:657: error: Public symbol dimen/abc_action_button_min_width_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:658: error: Public symbol dimen/abc_action_button_min_width_overflow_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:631: error: Public symbol dimen/abc_alert_dialog_button_bar_height declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:659: error: Public symbol dimen/abc_button_inset_horizontal_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:660: error: Public symbol dimen/abc_button_inset_vertical_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:661: error: Public symbol dimen/abc_button_padding_horizontal_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:662: error: Public symbol dimen/abc_button_padding_vertical_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:636: error: Public symbol dimen/abc_config_prefDialogWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:663: error: Public symbol dimen/abc_control_corner_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:664: error: Public symbol dimen/abc_control_inset_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:665: error: Public symbol dimen/abc_control_padding_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:637: error: Public symbol dimen/abc_dialog_fixed_height_major declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:638: error: Public symbol dimen/abc_dialog_fixed_height_minor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:639: error: Public symbol dimen/abc_dialog_fixed_width_major declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:640: error: Public symbol dimen/abc_dialog_fixed_width_minor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:666: error: Public symbol dimen/abc_dialog_list_padding_vertical_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:641: error: Public symbol dimen/abc_dialog_min_width_major declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:642: error: Public symbol dimen/abc_dialog_min_width_minor declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:667: error: Public symbol dimen/abc_dialog_padding_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:668: error: Public symbol dimen/abc_dialog_padding_top_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:669: error: Public symbol dimen/abc_disabled_alpha_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:670: error: Public symbol dimen/abc_disabled_alpha_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:671: error: Public symbol dimen/abc_dropdownitem_icon_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:672: error: Public symbol dimen/abc_dropdownitem_text_padding_left declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:673: error: Public symbol dimen/abc_dropdownitem_text_padding_right declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:674: error: Public symbol dimen/abc_edit_text_inset_bottom_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:675: error: Public symbol dimen/abc_edit_text_inset_horizontal_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:676: error: Public symbol dimen/abc_edit_text_inset_top_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:677: error: Public symbol dimen/abc_floating_window_z declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:678: error: Public symbol dimen/abc_list_item_padding_horizontal_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:679: error: Public symbol dimen/abc_panel_menu_list_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:680: error: Public symbol dimen/abc_search_view_preferred_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:643: error: Public symbol dimen/abc_search_view_text_min_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:681: error: Public symbol dimen/abc_seekbar_track_background_height_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:682: error: Public symbol dimen/abc_seekbar_track_progress_height_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:683: error: Public symbol dimen/abc_select_dialog_padding_start_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:647: error: Public symbol dimen/abc_switch_padding declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:684: error: Public symbol dimen/abc_text_size_body_1_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:685: error: Public symbol dimen/abc_text_size_body_2_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:686: error: Public symbol dimen/abc_text_size_button_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:687: error: Public symbol dimen/abc_text_size_caption_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:688: error: Public symbol dimen/abc_text_size_display_1_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:689: error: Public symbol dimen/abc_text_size_display_2_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:690: error: Public symbol dimen/abc_text_size_display_3_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:691: error: Public symbol dimen/abc_text_size_display_4_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:692: error: Public symbol dimen/abc_text_size_headline_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:693: error: Public symbol dimen/abc_text_size_large_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:694: error: Public symbol dimen/abc_text_size_medium_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:695: error: Public symbol dimen/abc_text_size_menu_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:696: error: Public symbol dimen/abc_text_size_small_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:697: error: Public symbol dimen/abc_text_size_subhead_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:634: error: Public symbol dimen/abc_text_size_subtitle_material_toolbar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:698: error: Public symbol dimen/abc_text_size_title_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:635: error: Public symbol dimen/abc_text_size_title_material_toolbar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:700: error: Public symbol dimen/disabled_alpha_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:701: error: Public symbol dimen/disabled_alpha_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:702: error: Public symbol dimen/highlight_alpha_material_colored declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:703: error: Public symbol dimen/highlight_alpha_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:704: error: Public symbol dimen/highlight_alpha_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:705: error: Public symbol dimen/notification_large_icon_height declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:706: error: Public symbol dimen/notification_large_icon_width declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:707: error: Public symbol dimen/notification_subtext_size declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:427: error: Public symbol style/AlertDialog.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:428: error: Public symbol style/AlertDialog.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:429: error: Public symbol style/Animation.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:430: error: Public symbol style/Animation.AppCompat.DropDownUp declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:432: error: Public symbol style/Base.AlertDialog.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:433: error: Public symbol style/Base.AlertDialog.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:434: error: Public symbol style/Base.Animation.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:435: error: Public symbol style/Base.Animation.AppCompat.DropDownUp declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:436: error: Public symbol style/Base.DialogWindowTitle.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:437: error: Public symbol style/Base.DialogWindowTitleBackground.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:349: error: Public symbol style/Base.TextAppearance.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:350: error: Public symbol style/Base.TextAppearance.AppCompat.Body1 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:351: error: Public symbol style/Base.TextAppearance.AppCompat.Body2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:327: error: Public symbol style/Base.TextAppearance.AppCompat.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:352: error: Public symbol style/Base.TextAppearance.AppCompat.Caption declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:353: error: Public symbol style/Base.TextAppearance.AppCompat.Display1 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:354: error: Public symbol style/Base.TextAppearance.AppCompat.Display2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:355: error: Public symbol style/Base.TextAppearance.AppCompat.Display3 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:356: error: Public symbol style/Base.TextAppearance.AppCompat.Display4 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:357: error: Public symbol style/Base.TextAppearance.AppCompat.Headline declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:306: error: Public symbol style/Base.TextAppearance.AppCompat.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:358: error: Public symbol style/Base.TextAppearance.AppCompat.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:307: error: Public symbol style/Base.TextAppearance.AppCompat.Large.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:359: error: Public symbol style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:360: error: Public symbol style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:361: error: Public symbol style/Base.TextAppearance.AppCompat.Medium declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:308: error: Public symbol style/Base.TextAppearance.AppCompat.Medium.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:362: error: Public symbol style/Base.TextAppearance.AppCompat.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:438: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:363: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:364: error: Public symbol style/Base.TextAppearance.AppCompat.SearchResult.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:365: error: Public symbol style/Base.TextAppearance.AppCompat.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:309: error: Public symbol style/Base.TextAppearance.AppCompat.Small.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:366: error: Public symbol style/Base.TextAppearance.AppCompat.Subhead declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:310: error: Public symbol style/Base.TextAppearance.AppCompat.Subhead.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:367: error: Public symbol style/Base.TextAppearance.AppCompat.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:311: error: Public symbol style/Base.TextAppearance.AppCompat.Title.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:368: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:369: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:370: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:371: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:372: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:373: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:374: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:375: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:423: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Button.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:439: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.DropDownItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:376: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:377: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:378: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.Switch declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:379: error: Public symbol style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:440: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:380: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:381: error: Public symbol style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:382: error: Public symbol style/Base.Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:441: error: Public symbol style/Base.Theme.AppCompat.CompactMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:312: error: Public symbol style/Base.Theme.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:442: error: Public symbol style/Base.Theme.AppCompat.Dialog.Alert declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:443: error: Public symbol style/Base.Theme.AppCompat.Dialog.FixedSize declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:444: error: Public symbol style/Base.Theme.AppCompat.Dialog.MinWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:303: error: Public symbol style/Base.Theme.AppCompat.DialogWhenLarge declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:383: error: Public symbol style/Base.Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:445: error: Public symbol style/Base.Theme.AppCompat.Light.DarkActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:313: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:446: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.Alert declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:447: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.FixedSize declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:448: error: Public symbol style/Base.Theme.AppCompat.Light.Dialog.MinWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:304: error: Public symbol style/Base.Theme.AppCompat.Light.DialogWhenLarge declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:449: error: Public symbol style/Base.ThemeOverlay.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:450: error: Public symbol style/Base.ThemeOverlay.AppCompat.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:451: error: Public symbol style/Base.ThemeOverlay.AppCompat.Dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:452: error: Public symbol style/Base.ThemeOverlay.AppCompat.Dark.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:453: error: Public symbol style/Base.ThemeOverlay.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:314: error: Public symbol style/Base.V11.Theme.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:315: error: Public symbol style/Base.V11.Theme.AppCompat.Light.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:323: error: Public symbol style/Base.V12.Widget.AppCompat.AutoCompleteTextView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:324: error: Public symbol style/Base.V12.Widget.AppCompat.EditText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:384: error: Public symbol style/Base.V21.Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:385: error: Public symbol style/Base.V21.Theme.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:386: error: Public symbol style/Base.V21.Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:387: error: Public symbol style/Base.V21.Theme.AppCompat.Light.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:421: error: Public symbol style/Base.V22.Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:422: error: Public symbol style/Base.V22.Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:424: error: Public symbol style/Base.V23.Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:425: error: Public symbol style/Base.V23.Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:454: error: Public symbol style/Base.V7.Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:455: error: Public symbol style/Base.V7.Theme.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:456: error: Public symbol style/Base.V7.Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:457: error: Public symbol style/Base.V7.Theme.AppCompat.Light.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:458: error: Public symbol style/Base.V7.Widget.AppCompat.AutoCompleteTextView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:459: error: Public symbol style/Base.V7.Widget.AppCompat.EditText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:460: error: Public symbol style/Base.Widget.AppCompat.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:461: error: Public symbol style/Base.Widget.AppCompat.ActionBar.Solid declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:462: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:388: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:389: error: Public symbol style/Base.Widget.AppCompat.ActionBar.TabView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:390: error: Public symbol style/Base.Widget.AppCompat.ActionButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:391: error: Public symbol style/Base.Widget.AppCompat.ActionButton.CloseMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:392: error: Public symbol style/Base.Widget.AppCompat.ActionButton.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:463: error: Public symbol style/Base.Widget.AppCompat.ActionMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:464: error: Public symbol style/Base.Widget.AppCompat.ActivityChooserView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:325: error: Public symbol style/Base.Widget.AppCompat.AutoCompleteTextView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:393: error: Public symbol style/Base.Widget.AppCompat.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:394: error: Public symbol style/Base.Widget.AppCompat.Button.Borderless declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:395: error: Public symbol style/Base.Widget.AppCompat.Button.Borderless.Colored declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:465: error: Public symbol style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:426: error: Public symbol style/Base.Widget.AppCompat.Button.Colored declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:396: error: Public symbol style/Base.Widget.AppCompat.Button.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:397: error: Public symbol style/Base.Widget.AppCompat.ButtonBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:466: error: Public symbol style/Base.Widget.AppCompat.ButtonBar.AlertDialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:398: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.CheckBox declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:399: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.RadioButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:467: error: Public symbol style/Base.Widget.AppCompat.CompoundButton.Switch declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:302: error: Public symbol style/Base.Widget.AppCompat.DrawerArrowToggle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:468: error: Public symbol style/Base.Widget.AppCompat.DrawerArrowToggle.Common declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:400: error: Public symbol style/Base.Widget.AppCompat.DropDownItem.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:326: error: Public symbol style/Base.Widget.AppCompat.EditText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:401: error: Public symbol style/Base.Widget.AppCompat.ImageButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:469: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:470: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.Solid declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:471: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:402: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:403: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:404: error: Public symbol style/Base.Widget.AppCompat.Light.ActionBar.TabView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:405: error: Public symbol style/Base.Widget.AppCompat.Light.PopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:406: error: Public symbol style/Base.Widget.AppCompat.Light.PopupMenu.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:407: error: Public symbol style/Base.Widget.AppCompat.ListPopupWindow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:408: error: Public symbol style/Base.Widget.AppCompat.ListView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:409: error: Public symbol style/Base.Widget.AppCompat.ListView.DropDown declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:410: error: Public symbol style/Base.Widget.AppCompat.ListView.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:411: error: Public symbol style/Base.Widget.AppCompat.PopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:412: error: Public symbol style/Base.Widget.AppCompat.PopupMenu.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:472: error: Public symbol style/Base.Widget.AppCompat.PopupWindow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:316: error: Public symbol style/Base.Widget.AppCompat.ProgressBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:317: error: Public symbol style/Base.Widget.AppCompat.ProgressBar.Horizontal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:413: error: Public symbol style/Base.Widget.AppCompat.RatingBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:473: error: Public symbol style/Base.Widget.AppCompat.SearchView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:474: error: Public symbol style/Base.Widget.AppCompat.SearchView.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:414: error: Public symbol style/Base.Widget.AppCompat.SeekBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:415: error: Public symbol style/Base.Widget.AppCompat.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:305: error: Public symbol style/Base.Widget.AppCompat.Spinner.Underlined declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:416: error: Public symbol style/Base.Widget.AppCompat.TextView.SpinnerItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:475: error: Public symbol style/Base.Widget.AppCompat.Toolbar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:417: error: Public symbol style/Base.Widget.AppCompat.Toolbar.Button.Navigation declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:318: error: Public symbol style/Platform.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:319: error: Public symbol style/Platform.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:418: error: Public symbol style/Platform.ThemeOverlay.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:419: error: Public symbol style/Platform.ThemeOverlay.AppCompat.Dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:420: error: Public symbol style/Platform.ThemeOverlay.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:320: error: Public symbol style/Platform.V11.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:321: error: Public symbol style/Platform.V11.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:328: error: Public symbol style/Platform.V14.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:329: error: Public symbol style/Platform.V14.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:322: error: Public symbol style/Platform.Widget.AppCompat.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:335: error: Public symbol style/RtlOverlay.DialogWindowTitle.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:336: error: Public symbol style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:337: error: Public symbol style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:338: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:339: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:340: error: Public symbol style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:341: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:342: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:343: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:344: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:345: error: Public symbol style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:346: error: Public symbol style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:347: error: Public symbol style/RtlUnderlay.Widget.AppCompat.ActionButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:348: error: Public symbol style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:476: error: Public symbol style/TextAppearance.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:477: error: Public symbol style/TextAppearance.AppCompat.Body1 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:478: error: Public symbol style/TextAppearance.AppCompat.Body2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:479: error: Public symbol style/TextAppearance.AppCompat.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:480: error: Public symbol style/TextAppearance.AppCompat.Caption declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:481: error: Public symbol style/TextAppearance.AppCompat.Display1 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:482: error: Public symbol style/TextAppearance.AppCompat.Display2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:483: error: Public symbol style/TextAppearance.AppCompat.Display3 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:484: error: Public symbol style/TextAppearance.AppCompat.Display4 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:485: error: Public symbol style/TextAppearance.AppCompat.Headline declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:486: error: Public symbol style/TextAppearance.AppCompat.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:487: error: Public symbol style/TextAppearance.AppCompat.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:488: error: Public symbol style/TextAppearance.AppCompat.Large.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:489: error: Public symbol style/TextAppearance.AppCompat.Light.SearchResult.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:490: error: Public symbol style/TextAppearance.AppCompat.Light.SearchResult.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:491: error: Public symbol style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:492: error: Public symbol style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:493: error: Public symbol style/TextAppearance.AppCompat.Medium declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:494: error: Public symbol style/TextAppearance.AppCompat.Medium.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:495: error: Public symbol style/TextAppearance.AppCompat.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:496: error: Public symbol style/TextAppearance.AppCompat.SearchResult.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:497: error: Public symbol style/TextAppearance.AppCompat.SearchResult.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:498: error: Public symbol style/TextAppearance.AppCompat.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:499: error: Public symbol style/TextAppearance.AppCompat.Small.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:500: error: Public symbol style/TextAppearance.AppCompat.Subhead declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:501: error: Public symbol style/TextAppearance.AppCompat.Subhead.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:502: error: Public symbol style/TextAppearance.AppCompat.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:503: error: Public symbol style/TextAppearance.AppCompat.Title.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:504: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:505: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:506: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:507: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:508: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:509: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:510: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:511: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:512: error: Public symbol style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:513: error: Public symbol style/TextAppearance.AppCompat.Widget.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:514: error: Public symbol style/TextAppearance.AppCompat.Widget.Button.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:515: error: Public symbol style/TextAppearance.AppCompat.Widget.DropDownItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:516: error: Public symbol style/TextAppearance.AppCompat.Widget.PopupMenu.Large declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:517: error: Public symbol style/TextAppearance.AppCompat.Widget.PopupMenu.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:518: error: Public symbol style/TextAppearance.AppCompat.Widget.Switch declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:519: error: Public symbol style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:330: error: Public symbol style/TextAppearance.StatusBar.EventContent declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:331: error: Public symbol style/TextAppearance.StatusBar.EventContent.Info declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:332: error: Public symbol style/TextAppearance.StatusBar.EventContent.Line2 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:333: error: Public symbol style/TextAppearance.StatusBar.EventContent.Time declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:334: error: Public symbol style/TextAppearance.StatusBar.EventContent.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:520: error: Public symbol style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:521: error: Public symbol style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:522: error: Public symbol style/TextAppearance.Widget.AppCompat.Toolbar.Title declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:523: error: Public symbol style/Theme.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:524: error: Public symbol style/Theme.AppCompat.CompactMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:525: error: Public symbol style/Theme.AppCompat.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:526: error: Public symbol style/Theme.AppCompat.Dialog.Alert declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:527: error: Public symbol style/Theme.AppCompat.Dialog.MinWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:528: error: Public symbol style/Theme.AppCompat.DialogWhenLarge declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:529: error: Public symbol style/Theme.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:530: error: Public symbol style/Theme.AppCompat.Light.DarkActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:531: error: Public symbol style/Theme.AppCompat.Light.Dialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:532: error: Public symbol style/Theme.AppCompat.Light.Dialog.Alert declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:533: error: Public symbol style/Theme.AppCompat.Light.Dialog.MinWidth declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:534: error: Public symbol style/Theme.AppCompat.Light.DialogWhenLarge declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:535: error: Public symbol style/Theme.AppCompat.Light.NoActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:536: error: Public symbol style/Theme.AppCompat.NoActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:537: error: Public symbol style/ThemeOverlay.AppCompat declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:538: error: Public symbol style/ThemeOverlay.AppCompat.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:539: error: Public symbol style/ThemeOverlay.AppCompat.Dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:540: error: Public symbol style/ThemeOverlay.AppCompat.Dark.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:541: error: Public symbol style/ThemeOverlay.AppCompat.Light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:542: error: Public symbol style/Widget.AppCompat.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:543: error: Public symbol style/Widget.AppCompat.ActionBar.Solid declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:544: error: Public symbol style/Widget.AppCompat.ActionBar.TabBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:545: error: Public symbol style/Widget.AppCompat.ActionBar.TabText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:546: error: Public symbol style/Widget.AppCompat.ActionBar.TabView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:547: error: Public symbol style/Widget.AppCompat.ActionButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:548: error: Public symbol style/Widget.AppCompat.ActionButton.CloseMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:549: error: Public symbol style/Widget.AppCompat.ActionButton.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:550: error: Public symbol style/Widget.AppCompat.ActionMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:551: error: Public symbol style/Widget.AppCompat.ActivityChooserView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:552: error: Public symbol style/Widget.AppCompat.AutoCompleteTextView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:553: error: Public symbol style/Widget.AppCompat.Button declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:554: error: Public symbol style/Widget.AppCompat.Button.Borderless declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:555: error: Public symbol style/Widget.AppCompat.Button.Borderless.Colored declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:556: error: Public symbol style/Widget.AppCompat.Button.ButtonBar.AlertDialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:557: error: Public symbol style/Widget.AppCompat.Button.Colored declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:558: error: Public symbol style/Widget.AppCompat.Button.Small declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:559: error: Public symbol style/Widget.AppCompat.ButtonBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:560: error: Public symbol style/Widget.AppCompat.ButtonBar.AlertDialog declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:561: error: Public symbol style/Widget.AppCompat.CompoundButton.CheckBox declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:562: error: Public symbol style/Widget.AppCompat.CompoundButton.RadioButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:563: error: Public symbol style/Widget.AppCompat.CompoundButton.Switch declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:564: error: Public symbol style/Widget.AppCompat.DrawerArrowToggle declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:565: error: Public symbol style/Widget.AppCompat.DropDownItem.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:566: error: Public symbol style/Widget.AppCompat.EditText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:567: error: Public symbol style/Widget.AppCompat.ImageButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:568: error: Public symbol style/Widget.AppCompat.Light.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:569: error: Public symbol style/Widget.AppCompat.Light.ActionBar.Solid declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:570: error: Public symbol style/Widget.AppCompat.Light.ActionBar.Solid.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:571: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:572: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:573: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabText declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:574: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabText.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:575: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:576: error: Public symbol style/Widget.AppCompat.Light.ActionBar.TabView.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:577: error: Public symbol style/Widget.AppCompat.Light.ActionButton declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:578: error: Public symbol style/Widget.AppCompat.Light.ActionButton.CloseMode declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:579: error: Public symbol style/Widget.AppCompat.Light.ActionButton.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:580: error: Public symbol style/Widget.AppCompat.Light.ActionMode.Inverse declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:581: error: Public symbol style/Widget.AppCompat.Light.ActivityChooserView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:582: error: Public symbol style/Widget.AppCompat.Light.AutoCompleteTextView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:583: error: Public symbol style/Widget.AppCompat.Light.DropDownItem.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:584: error: Public symbol style/Widget.AppCompat.Light.ListPopupWindow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:585: error: Public symbol style/Widget.AppCompat.Light.ListView.DropDown declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:586: error: Public symbol style/Widget.AppCompat.Light.PopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:587: error: Public symbol style/Widget.AppCompat.Light.PopupMenu.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:588: error: Public symbol style/Widget.AppCompat.Light.SearchView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:589: error: Public symbol style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:590: error: Public symbol style/Widget.AppCompat.ListPopupWindow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:591: error: Public symbol style/Widget.AppCompat.ListView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:592: error: Public symbol style/Widget.AppCompat.ListView.DropDown declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:593: error: Public symbol style/Widget.AppCompat.ListView.Menu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:594: error: Public symbol style/Widget.AppCompat.PopupMenu declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:595: error: Public symbol style/Widget.AppCompat.PopupMenu.Overflow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:596: error: Public symbol style/Widget.AppCompat.PopupWindow declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:597: error: Public symbol style/Widget.AppCompat.ProgressBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:598: error: Public symbol style/Widget.AppCompat.ProgressBar.Horizontal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:599: error: Public symbol style/Widget.AppCompat.RatingBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:600: error: Public symbol style/Widget.AppCompat.SearchView declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:601: error: Public symbol style/Widget.AppCompat.SearchView.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:602: error: Public symbol style/Widget.AppCompat.SeekBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:603: error: Public symbol style/Widget.AppCompat.Spinner declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:604: error: Public symbol style/Widget.AppCompat.Spinner.DropDown declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:605: error: Public symbol style/Widget.AppCompat.Spinner.DropDown.ActionBar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:606: error: Public symbol style/Widget.AppCompat.Spinner.Underlined declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:607: error: Public symbol style/Widget.AppCompat.TextView.SpinnerItem declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:608: error: Public symbol style/Widget.AppCompat.Toolbar declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:609: error: Public symbol style/Widget.AppCompat.Toolbar.Button.Navigation declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:900: error: Public symbol integer/abc_config_activityDefaultDur declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:901: error: Public symbol integer/abc_config_activityShortDur declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:899: error: Public symbol integer/abc_max_action_buttons declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:902: error: Public symbol integer/cancel_button_image_alpha declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:903: error: Public symbol integer/status_bar_notification_info_maxnum declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:769: error: Public symbol color/abc_background_cache_hint_selector_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:770: error: Public symbol color/abc_background_cache_hint_selector_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:771: error: Public symbol color/abc_color_highlight_material declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:708: error: Public symbol color/abc_input_method_navigation_guard declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:772: error: Public symbol color/abc_primary_text_disable_only_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:773: error: Public symbol color/abc_primary_text_disable_only_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:774: error: Public symbol color/abc_primary_text_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:775: error: Public symbol color/abc_primary_text_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:776: error: Public symbol color/abc_search_url_text declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:709: error: Public symbol color/abc_search_url_text_normal declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:710: error: Public symbol color/abc_search_url_text_pressed declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:711: error: Public symbol color/abc_search_url_text_selected declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:777: error: Public symbol color/abc_secondary_text_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:778: error: Public symbol color/abc_secondary_text_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:712: error: Public symbol color/accent_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:713: error: Public symbol color/accent_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:714: error: Public symbol color/background_floating_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:715: error: Public symbol color/background_floating_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:716: error: Public symbol color/background_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:717: error: Public symbol color/background_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:718: error: Public symbol color/bright_foreground_disabled_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:719: error: Public symbol color/bright_foreground_disabled_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:720: error: Public symbol color/bright_foreground_inverse_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:721: error: Public symbol color/bright_foreground_inverse_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:722: error: Public symbol color/bright_foreground_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:723: error: Public symbol color/bright_foreground_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:724: error: Public symbol color/button_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:725: error: Public symbol color/button_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:729: error: Public symbol color/dim_foreground_disabled_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:730: error: Public symbol color/dim_foreground_disabled_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:731: error: Public symbol color/dim_foreground_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:732: error: Public symbol color/dim_foreground_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:733: error: Public symbol color/foreground_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:734: error: Public symbol color/foreground_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:735: error: Public symbol color/highlighted_text_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:736: error: Public symbol color/highlighted_text_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:737: error: Public symbol color/hint_foreground_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:738: error: Public symbol color/hint_foreground_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:739: error: Public symbol color/material_blue_grey_800 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:740: error: Public symbol color/material_blue_grey_900 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:741: error: Public symbol color/material_blue_grey_950 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:742: error: Public symbol color/material_deep_teal_200 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:743: error: Public symbol color/material_deep_teal_500 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:744: error: Public symbol color/material_grey_100 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:745: error: Public symbol color/material_grey_300 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:746: error: Public symbol color/material_grey_50 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:747: error: Public symbol color/material_grey_600 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:748: error: Public symbol color/material_grey_800 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:749: error: Public symbol color/material_grey_850 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:750: error: Public symbol color/material_grey_900 declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:751: error: Public symbol color/primary_dark_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:752: error: Public symbol color/primary_dark_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:753: error: Public symbol color/primary_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:754: error: Public symbol color/primary_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:755: error: Public symbol color/primary_text_default_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:756: error: Public symbol color/primary_text_default_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:757: error: Public symbol color/primary_text_disabled_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:758: error: Public symbol color/primary_text_disabled_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:759: error: Public symbol color/ripple_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:760: error: Public symbol color/ripple_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:761: error: Public symbol color/secondary_text_default_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:762: error: Public symbol color/secondary_text_default_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:763: error: Public symbol color/secondary_text_disabled_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:764: error: Public symbol color/secondary_text_disabled_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:765: error: Public symbol color/switch_thumb_disabled_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:766: error: Public symbol color/switch_thumb_disabled_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:779: error: Public symbol color/switch_thumb_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:780: error: Public symbol color/switch_thumb_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:767: error: Public symbol color/switch_thumb_normal_material_dark declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/build/lcast/res/values/public.xml:768: error: Public symbol color/switch_thumb_normal_material_light declared here is not defined.
/Users/oceancx/GitHub/MyApplication/app/src/main/res/values/styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.

/Users/oceancx/GitHub/MyApplication/app/src/main/res/values/styles.xml:8: error: Error: No resource found that matches the given name: attr 'colorAccent'.

/Users/oceancx/GitHub/MyApplication/app/src/main/res/values/styles.xml:6: error: Error: No resource found that matches the given name: attr 'colorPrimary'.

/Users/oceancx/GitHub/MyApplication/app/src/main/res/values/styles.xml:7: error: Error: No resource found that matches the given name: attr 'colorPrimaryDark'.

错误: 编码GBK的不可映射字符

cast com.gjcx.zsgj:41128 as gradle project with /src changed (v1.50827)
Fail to exec ['D:\Program Files\Java\jdk1.8.0_25\bin\javac.exe', '-target', '1.7', '-source', '1.7', '-cp', u'E:\Daniel\Android\sdk\platforms\android-22\android.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\mframework.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\MobTools.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\ShareSDK-Core-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\ShareSDK-QZone-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\ShareSDK-SinaWeibo-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\ShareSDK-Wechat-Core-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\ShareSDK-Wechat-Moments-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\sharesdk\libs\SMSSDK-1.2.0.jar;E:\Daniel\GIT\Txkj-zsqc\danielalib\libs\viewUtils.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\android-viewbadger.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\baidumapapi_v3_5_0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\httpmime-4.1.3.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\libapshare.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\locSDK_5.2.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\ormlite-android-4.48.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\ormlite-core-4.48.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\pushservice-4.5.1.8.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\libs\universal-image-loader-1.9.3-with-sources.jar;C:\Users\daniel.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.android.support\appcompat-v7\22.2.0\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.android.support\multidex\1.0.0\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.android.support\recyclerview-v7\22.2.0\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.android.support\support-v4\22.2.0\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.android.support\support-v4\22.2.0\libs\internal_impl-22.2.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\com.github.mmin18.layoutcast\library\1.1.4\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\danielalib\unspecified\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\danielalib\unspecified\libs\viewUtils.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\danieljson\unspecified\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\loopVPlibrary\unspecified\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\classes.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\mframework.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\MobTools.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\ShareSDK-Core-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\ShareSDK-QZone-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\ShareSDK-SinaWeibo-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\ShareSDK-Wechat-Core-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\ShareSDK-Wechat-Moments-2.6.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\exploded-aar\Txkj-zsqc\sharesdk\unspecified\libs\SMSSDK-1.2.0.jar;E:\Daniel\GIT\Txkj-zsqc\zsgj\build\intermediates\classes\debug', '-d', u'E:\Daniel\GIT\Txkj-zsqc\zsgj\build\lcast\classes', '-sourcepath', u'E:\Daniel\GIT\Txkj-zsqc\loopVPlibrary\src\main\java;E:\Daniel\GIT\Txkj-zsqc\sharesdk\src\main\java;E:\Daniel\GIT\Txkj-zsqc\danieljson\src\main\java;E:\Daniel\GIT\Txkj-zsqc\danielalib\src\main\java;E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java', u'E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java\com\gjcx\zsgj\util\OneKeyShareUtil.java']

警告: [options] 未与 -source 1.7 一起设置引导类路径

E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java\com\gjcx\zsgj\util\OneKeyShareUtil.java:13: 错误: 编码GBK的不可映射字符

  • 涓?閿垎浜殑甯姪绫?

    ^

E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java\com\gjcx\zsgj\util\OneKeyShareUtil.java:13: 错误: 编码GBK的不可映射字符

  • 涓?閿垎浜殑甯姪绫?

           ^
    

E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java\com\gjcx\zsgj\util\OneKeyShareUtil.java:30: 错误: 编码GBK的不可映射字符

        shareContent.setText("鏂扮増鏈笂甯備簡锛岄?熸潵浣撻獙鍚э紒鏂逛究蹇嵎鍑鸿锛岄閫夋帉涓婇潚鍩?");

                                         ^

E:\Daniel\GIT\Txkj-zsqc\zsgj\src\main\java\com\gjcx\zsgj\util\OneKeyShareUtil.java:30: 错误: 编码GBK的不可映射字符

        shareContent.setText("鏂扮増鏈笂甯備簡锛岄?熸潵浣撻獙鍚э紒鏂逛究蹇嵎鍑鸿锛岄閫夋帉涓婇潚鍩?");

                                                                     ^

4 个错误

1 个警告

fail to override resource in context

09-08 17:44:55.425 26516-26516/com.pyt.any E/lcast﹕ fail to override resource in context com.pyt.any.hybrid.activity.MyActivity@42fb4420
java.lang.NoSuchFieldException: mResources
at java.lang.Class.getDeclaredField(Class.java:631)
at com.github.mmin18.layoutcast.context.OverrideContext.override(OverrideContext.java:82)
at com.github.mmin18.layoutcast.context.OverrideContext.overrideDefault(OverrideContext.java:251)
at com.github.mmin18.layoutcast.inflater.BootInflater.cloneInContext(BootInflater.java:36)
at android.view.ContextThemeWrapper.getSystemService(ContextThemeWrapper.java:75)
at android.app.Activity.getSystemService(Activity.java:4498)
at android.view.LayoutInflater.from(LayoutInflater.java:275)
at com.android.internal.policy.impl.PhoneWindow.(PhoneWindow.java:282)
at com.android.internal.policy.impl.Policy.makeNewWindow(Policy.java:65)
at com.android.internal.policy.PolicyManager.makeNewWindow(PolicyManager.java:59)
at android.app.Activity.attach(Activity.java:5047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2041)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2117)
at android.app.ActivityThread.access$600(ActivityThread.java:140)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1213)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4914)
at java.lang.reflect.Method.invokeNative(Native Method)

Casting asset changes fails

Fails with the following error.

I'm using Windows 10 and 1.50915 version of the cast.py script

cast com.chaitanyapramod.testapplication:41128 as gradle project with both /res and /src changed (v1.50915)
Fail to exec [u'C:\\Users\\chaitanya\\ADT\\sdk\\build-tools\\22.0.1\\aapt.exe', 'package', '-f', '--auto-add-overlay', '-F', u'.\\app\\build\\lcast\\res.zip', '-S', u'.\\app\\build\\lcast\\res', '-S', u'.\\app\\src\\main\\res', '-A', u'.\\app\\build\\lcast\\assets', '-M', u'.\\app\\src\\main\\AndroidManifest.xml', '-I', u'C:\\Users\\chaitanya\\ADT\\sdk\\platforms\\android-23\\android.jar']

ERROR: asset directory '.\app\build\lcast\assets' does not exist

Version used for benchmarks

Which versions did you use for your benchmark?
Gradle, Buck and LayoutCast?

As each of these tools evolve, performance can change too (in a good or bad way). So it would be nice to know what you actually compared.

ClassCastException :com.github.mmin18.layoutcast.context.OverrideContext cannot be cast to android.app.ContextImpl

----exception stack trace----
java.lang.RuntimeException: Unable to start receiver com.expample.ScreenTestReceiver: java.lang.ClassCastException: com.github.mmin18.layoutcast.context.OverrideContext cannot be cast to android.app.ContextImpl
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2616)
at android.app.ActivityThread.access$1700(ActivityThread.java:151)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1380)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: java.lang.ClassCastException: com.github.mmin18.layoutcast.context.OverrideContext cannot be cast to android.app.ContextImpl
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2606)
... 9 more

java.lang.ClassCastException: com.github.mmin18.layoutcast.context.OverrideContext cannot be cast to android.app.ContextImpl
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2606)
at android.app.ActivityThread.access$1700(ActivityThread.java:151)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1380)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)

Doesn't run with retrolambda?

How do i fix this?

warning: [options] bootstrap class path not set in conjunction with -source 1.7
/Users/apple/projects/.../activities/TestActivity.java:375: error: lambda expressions are not supported in -source 1.7
_ratingBar.setOnRatingBarChangeListener((ratingBar, rating, fromUser) -> {
^
(use -source 8 or higher to enable lambda expressions)
1 error
1 warning

Issue with Androis Studio 1.4 beta

When I tried to start cast, I got error:
File "C:\Python34\lib\re.py", line 210, in findall return _compile(pattern, flags).findall(string)
TypeError: can't use a string pattern on a bytes-like object

Ressources not found

Thanks for your awesome tool, whoever I have some problems building it because AppCompat v7 are not found. You can find the logs here : https://pastebin.mozilla.org/8842384

Some informations about my project :

compileSdkVersion 22
buildToolsVersion "22.0.1"
minSdkVersion 15
targetSdkVersion 22
compile 'com.android.support:appcompat-v7:22.2.1'

Do you know how to fix it?

Thanks !

Problem with PATH in windows

Hi, in Windows the PATH is made with , like: C:\user\something. Not /
The intellij plugin tries to use / to find the folder "platform-tools". It ends with:

C:\Users\user\AppData\Local\Android\sdk/platform-tools

Can you fix it?

Cannot run LayoutCast

Hi,
I have done everything according to start up tutorial, but when I want to run LayoutCast I get this error:

image

Can you help me?
Thanks

window Androidstudio1.4 errors

it shows the follows ,once I click the LayoutCast button it shows this

Traceback (most recent call last): File "C:\Users\master.AndroidStudio1.4\system\tmp\lcast50666631302600571711.50922", line 634, in pnlist = [package_name_fromapk(i,sdkdir) for i in projlist] File "C:\Users\master.AndroidStudio1.4\system\tmp\lcast50666631302600571711.50922", line 634, in pnlist = [package_name_fromapk(i,sdkdir) for i in projlist] File "C:\Users\master.AndroidStudio1.4\system\tmp\lcast50666631302600571711.50922", line 192, in package_name_fromapk aaptpath = get_aapt(sdkdir) File "C:\Users\master.AndroidStudio1.4\system\tmp\lcast50666631302600571711.50922", line 423, in get_aapt if LooseVersion(pn) > minv: File "C:\Python34\lib\distutils\version.py", line 70, in gt c = self._cmp(other) File "C:\Python34\lib\distutils\version.py", line 343, in _cmp if self.version other.version: TypeError: unorderable types: str() int()

Debug only dependency

Shouldn't we add dependency for LayoutCast as debug only?

dependencies {
    debugCompile 'com.github.mmin18.layoutcast:library:1.+@aar'
    ...
}

could not find version

Hi

I am getting below error while compiling my code. Please assist.

Build.gradle
compile project(':libJava')
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':facebook')
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
compile 'com.caverock:androidsvg:1.2.2-beta-1'
compile files('libs/twitter4j-core-4.0.1.jar')
compile 'io.card:android-sdk:5.0.0'
compile 'com.google.android.gms:play-services-plus:7.+'
compile 'com.google.android.gms:play-services-analytics:7.+'
compile 'com.google.android.gms:play-services-gcm:7.+'
compile 'com.google.android.gms:play-services-maps:7.+'
compile 'com.github.mmin18.layoutcast:library:1.+@aar'

compile('com.crashlytics.sdk.android:crashlytics:2.4.0@aar') {
    transitive = true
}

Error:

Error:A problem occurred configuring project ':app'.

Could not resolve all dependencies for configuration ':app:_productionDebugCompile'.
Could not find any version that matches com.github.mmin18.layoutcast:library:1.+.
Searched in the following locations:
https://repo1.maven.org/maven2/com/github/mmin18/layoutcast/library/maven-metadata.xml
https://repo1.maven.org/maven2/com/github/mmin18/layoutcast/library/
https://oss.sonatype.org/content/repositories/snapshots/com/github/mmin18/layoutcast/library/maven-metadata.xml
https://oss.sonatype.org/content/repositories/snapshots/com/github/mmin18/layoutcast/library/
http://files.couchbase.com/maven2/com/github/mmin18/layoutcast/library/maven-metadata.xml
http://files.couchbase.com/maven2/com/github/mmin18/layoutcast/library/
https://maven.fabric.io/public/com/github/mmin18/layoutcast/library/maven-metadata.xml
https://maven.fabric.io/public/com/github/mmin18/layoutcast/library/
file:/C:/Users/s430729/.m2/repository/com/github/mmin18/layoutcast/library/maven-metadata.xml
file:/C:/Users/s430729/.m2/repository/com/github/mmin18/layoutcast/library/
file:/D:/saifuddin/21Aug2011/sw/Android/android-sdk/extras/android/m2repository/com/github/mmin18/layoutcast/library/maven-metadata.xml
file:/D:/saifuddin/21Aug2011/sw/Android/android-sdk/extras/android/m2repository/com/github/mmin18/layoutcast/library/
file:/D:/saifuddin/21Aug2011/sw/Android/android-sdk/extras/google/m2repository/com/github/mmin18/layoutcast/library/maven-metadata.xml
file:/D:/saifuddin/21Aug2011/sw/Android/android-sdk/extras/google/m2repository/com/github/mmin18/layoutcast/library/
Required by:
ekdev:app:unspecified

fail to cast even I try it on a brand new project.

cast hello.myapplication:41128 as gradle project with /res changed (v1.50922)
Fail to exec [u'/Users/jaychang/Library/Android/sdk/build-tools/23.0.0/aapt', 'package', '-f', '--auto-add-overlay', '-F', u'/Users/jaychang/AndroidStudioProjects/MyApplication3/app/build/lcast/res.zip', '-S', u'/Users/jaychang/AndroidStudioProjects/MyApplication3/app/build/lcast/res', '-S', u'/Users/jaychang/AndroidStudioProjects/MyApplication3/app/src/main/res', '-M', u'/Users/jaychang/AndroidStudioProjects/MyApplication3/app/src/main/AndroidManifest.xml', '-I', u'/Users/jaychang/Library/Android/sdk/platforms/android-23/android.jar']
...

About Java code style

It's a great tool!

With a suggestion.
It's better to set tab size with 4 spaces about java code style, rather than 8 spaces.

so no using gradle flavors....?

by the looks of these words,

It can only find /src folder under <project>/src or <project>/src/main/src
It can only find /res folder under <project>/res or <project>/src/main/res

This lib won't support gradle flavor based projects, out of the box?

thanks for your work!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.