You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by ia...@apache.org on 2015/06/29 12:08:31 UTC

[21/46] incubator-taverna-mobile git commit: Fixed workflow search function

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml b/app/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml
deleted file mode 100644
index 2d9208e..0000000
--- a/app/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="mobile.taverna.apache.org.tavernamobile.test">
-
-    <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" />
-
-    <application>
-        <uses-library android:name="android.test.runner" />
-    </application>
-
-    <instrumentation android:name="android.test.InstrumentationTestRunner"
-                     android:targetPackage="mobile.taverna.apache.org.tavernamobile"
-                     android:handleProfiling="false"
-                     android:functionalTest="false"
-                     android:label="Tests for mobile.taverna.apache.org.tavernamobile"/>
-</manifest>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/manifests/full/debug/AndroidManifest.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/manifests/full/debug/AndroidManifest.xml b/app/build/intermediates/manifests/full/debug/AndroidManifest.xml
deleted file mode 100644
index 2601dac..0000000
--- a/app/build/intermediates/manifests/full/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,94 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-Apache Taverna Mobile
-Copyright 2015 The Apache Software Foundation
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License. You may obtain a copy of the License at
-http://www.apache.org/licenses/LICENSE-2.0
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="mobile.taverna.apache.org.tavernamobile"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk
-        android:minSdkVersion="13"
-        android:targetSdkVersion="21" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-
-    <application
-        android:allowBackup="true"
-        android:icon="@mipmap/ic_launcher"
-        android:label="@string/app_name"
-        android:theme="@style/AppTheme" >
-        <activity
-            android:name="org.apache.taverna.mobile.activities.LoginActivity"
-            android:label="@string/app_name" >
-        </activity>
-        <activity
-            android:name="org.apache.taverna.mobile.activities.FlashScreenActivity"
-            android:label="@string/title_activity_flash_screen" >
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-        </activity>
-        <activity
-            android:name="org.apache.taverna.mobile.activities.DashboardMainActivity"
-            android:label="@string/title_activity_dashboard_main"
-            android:launchMode="singleTop" >
-            <intent-filter>
-                <action android:name="android.intent.action.SEARCH" />
-            </intent-filter>
-
-            <meta-data
-                android:name="android.app.searchable"
-                android:resource="@xml/searchable" />
-        </activity>
-        <activity
-            android:name="org.apache.taverna.mobile.activities.WorkflowDetailActivity"
-            android:label="@string/title_activity_workflow_detail"
-            android:parentActivityName="org.apache.taverna.mobile.activities.DashboardMainActivity" >
-            <meta-data
-                android:name="android.support.PARENT_ACTIVITY"
-                android:value="org.apache.taverna.mobile.activities.DashboardMainActivity" />
-        </activity>
-
-        <receiver
-            android:name="org.apache.taverna.mobile.broadcastreceivers.WorkflowDownloadReceiver"
-            android:enabled="true"
-            android:exported="true" >
-            <intent-filter>
-                <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
-            </intent-filter>
-        </receiver>
-
-        <activity
-            android:name="org.apache.taverna.mobile.activities.SettingsActivity"
-            android:label="@string/title_activity_settings"
-            android:parentActivityName="org.apache.taverna.mobile.activities.DashboardMainActivity" >
-            <meta-data
-                android:name="android.support.PARENT_ACTIVITY"
-                android:value="org.apache.taverna.mobile.activities.DashboardMainActivity" />
-        </activity>
-        <activity
-            android:name="android.support.v7.widget.TestActivity"
-            android:label="RecyclerViewTestActivity" />
-    </application>
-
-</manifest>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/manifests/full/release/AndroidManifest.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/manifests/full/release/AndroidManifest.xml b/app/build/intermediates/manifests/full/release/AndroidManifest.xml
deleted file mode 100644
index 926a454..0000000
--- a/app/build/intermediates/manifests/full/release/AndroidManifest.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-Apache Taverna Mobile
-Copyright 2015 The Apache Software Foundation
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License. You may obtain a copy of the License at
-http://www.apache.org/licenses/LICENSE-2.0
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="mobile.taverna.apache.com.tavernamobile"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk
-        android:minSdkVersion="13"
-        android:targetSdkVersion="21" />
-
-    <application
-        android:allowBackup="true"
-        android:icon="@mipmap/ic_launcher"
-        android:label="@string/app_name"
-        android:theme="@style/AppTheme" >
-        <activity
-            android:name="mobile.taverna.apache.com.org.apache.taverna.mobile.LoginActivity"
-            android:label="@string/app_name" >
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-        </activity>
-    </application>
-
-</manifest>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/mockable-android-21.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/mockable-android-21.jar b/app/build/intermediates/mockable-android-21.jar
deleted file mode 100644
index 3476cf4..0000000
Binary files a/app/build/intermediates/mockable-android-21.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/classes-2dbcae8b037134953fc4e3eb3645a66e2931661a.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/classes-2dbcae8b037134953fc4e3eb3645a66e2931661a.jar b/app/build/intermediates/pre-dexed/debug/classes-2dbcae8b037134953fc4e3eb3645a66e2931661a.jar
deleted file mode 100644
index 1e6a6bf..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/classes-2dbcae8b037134953fc4e3eb3645a66e2931661a.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar b/app/build/intermediates/pre-dexed/debug/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar
deleted file mode 100644
index af95136..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar b/app/build/intermediates/pre-dexed/debug/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar
deleted file mode 100644
index 6daa687..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/classes-ebdf15783ac01747301cff830c2f3174571cec96.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/classes-ebdf15783ac01747301cff830c2f3174571cec96.jar b/app/build/intermediates/pre-dexed/debug/classes-ebdf15783ac01747301cff830c2f3174571cec96.jar
deleted file mode 100644
index e771291..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/classes-ebdf15783ac01747301cff830c2f3174571cec96.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar b/app/build/intermediates/pre-dexed/debug/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar
deleted file mode 100644
index a2176de..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/simple-xml-2.7.1-0337a02c2c7a819ce7d4f1cb9e7af39ace3fc996.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/simple-xml-2.7.1-0337a02c2c7a819ce7d4f1cb9e7af39ace3fc996.jar b/app/build/intermediates/pre-dexed/debug/simple-xml-2.7.1-0337a02c2c7a819ce7d4f1cb9e7af39ace3fc996.jar
deleted file mode 100644
index 303399b..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/simple-xml-2.7.1-0337a02c2c7a819ce7d4f1cb9e7af39ace3fc996.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/sjxp-2.2-0d4fc236477cdd67ed93ea2414c2be9703cf2dce.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/sjxp-2.2-0d4fc236477cdd67ed93ea2414c2be9703cf2dce.jar b/app/build/intermediates/pre-dexed/debug/sjxp-2.2-0d4fc236477cdd67ed93ea2414c2be9703cf2dce.jar
deleted file mode 100644
index 46f44d7..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/sjxp-2.2-0d4fc236477cdd67ed93ea2414c2be9703cf2dce.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/debug/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/debug/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar b/app/build/intermediates/pre-dexed/debug/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar
deleted file mode 100644
index 93179a3..0000000
Binary files a/app/build/intermediates/pre-dexed/debug/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/release/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/release/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar b/app/build/intermediates/pre-dexed/release/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar
deleted file mode 100644
index 210279a..0000000
Binary files a/app/build/intermediates/pre-dexed/release/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/release/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/release/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar b/app/build/intermediates/pre-dexed/release/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar
deleted file mode 100644
index 2ef82df..0000000
Binary files a/app/build/intermediates/pre-dexed/release/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/release/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/release/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar b/app/build/intermediates/pre-dexed/release/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar
deleted file mode 100644
index d50d08d..0000000
Binary files a/app/build/intermediates/pre-dexed/release/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/pre-dexed/release/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar
----------------------------------------------------------------------
diff --git a/app/build/intermediates/pre-dexed/release/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar b/app/build/intermediates/pre-dexed/release/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar
deleted file mode 100644
index ecd9e14..0000000
Binary files a/app/build/intermediates/pre-dexed/release/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_fade_in.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_fade_in.xml b/app/build/intermediates/res/debug/anim/abc_fade_in.xml
deleted file mode 100644
index 1afb7ad..0000000
--- a/app/build/intermediates/res/debug/anim/abc_fade_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="0.0" android:toAlpha="1.0"
-       android:duration="@android:integer/config_mediumAnimTime" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_fade_in.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_fade_in.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_fade_out.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_fade_out.xml b/app/build/intermediates/res/debug/anim/abc_fade_out.xml
deleted file mode 100644
index cd05fa3..0000000
--- a/app/build/intermediates/res/debug/anim/abc_fade_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="1.0" android:toAlpha="0.0"
-       android:duration="@android:integer/config_mediumAnimTime" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_fade_out.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_fade_out.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml b/app/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml
deleted file mode 100644
index 2775f3d..0000000
--- a/app/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/* //device/apps/common/res/anim/fade_in.xml
-**
-** Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
-**
-**     http://www.apache.org/licenses/LICENSE-2.0 
-**
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
-** limitations under the License.
-*/
--->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="0.9" android:toXScale="1.0"
-              android:fromYScale="0.9" android:toYScale="1.0"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="0.0" android:toAlpha="1.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_grow_fade_in_from_bottom.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml b/app/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml
deleted file mode 100644
index 135dc57..0000000
--- a/app/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2014 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="1.0" android:toXScale="0.9"
-              android:fromYScale="1.0" android:toYScale="0.9"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="1.0" android:toAlpha="0.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_shrink_fade_out_from_bottom.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml b/app/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml
deleted file mode 100644
index 96398c3..0000000
--- a/app/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_slide_in_bottom.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_slide_in_top.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_slide_in_top.xml b/app/build/intermediates/res/debug/anim/abc_slide_in_top.xml
deleted file mode 100644
index 1b697c4..0000000
--- a/app/build/intermediates/res/debug/anim/abc_slide_in_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="-50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_slide_in_top.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_slide_in_top.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml b/app/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml
deleted file mode 100644
index 324b7df..0000000
--- a/app/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_slide_out_bottom.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/anim/abc_slide_out_top.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/anim/abc_slide_out_top.xml b/app/build/intermediates/res/debug/anim/abc_slide_out_top.xml
deleted file mode 100644
index 53f2ec3..0000000
--- a/app/build/intermediates/res/debug/anim/abc_slide_out_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="-50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/anim/abc_slide_out_top.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/anim/abc_slide_out_top.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_dark.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_dark.xml b/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index 29db840..0000000
--- a/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_dark" />
-    <item android:color="@android:color/transparent" />
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_background_cache_hint_selector_material_dark.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_light.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_light.xml b/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index 3def999..0000000
--- a/app/build/intermediates/res/debug/color/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_light" />
-    <item android:color="@android:color/transparent" />
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_background_cache_hint_selector_material_light.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml b/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml
deleted file mode 100644
index e434142..0000000
--- a/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_dark"/>
-    <item android:color="@color/bright_foreground_material_dark"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_primary_text_disable_only_material_dark.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml b/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml
deleted file mode 100644
index 60f8320..0000000
--- a/app/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_light"/>
-    <item android:color="@color/bright_foreground_material_light"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_primary_text_disable_only_material_light.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml b/app/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml
deleted file mode 100644
index 4f21184..0000000
--- a/app/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_dark"/>
-    <item android:color="@color/primary_text_default_material_dark"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_primary_text_material_dark.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_primary_text_material_light.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_primary_text_material_light.xml b/app/build/intermediates/res/debug/color/abc_primary_text_material_light.xml
deleted file mode 100644
index 7d9685b..0000000
--- a/app/build/intermediates/res/debug/color/abc_primary_text_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_light"/>
-    <item android:color="@color/primary_text_default_material_light"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_light.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_primary_text_material_light.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_search_url_text.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_search_url_text.xml b/app/build/intermediates/res/debug/color/abc_search_url_text.xml
deleted file mode 100644
index 04dce00..0000000
--- a/app/build/intermediates/res/debug/color/abc_search_url_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
-    <item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
-    <item android:color="@color/abc_search_url_text_normal"/>
-</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_search_url_text.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_search_url_text.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml b/app/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml
deleted file mode 100644
index 9915e65..0000000
--- a/app/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_dark"/>
-    <item android:color="@color/secondary_text_default_material_dark"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_dark.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_secondary_text_material_dark.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml b/app/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml
deleted file mode 100644
index e628582..0000000
--- a/app/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_light"/>
-    <item android:color="@color/secondary_text_default_material_light"/>
-</selector>
-<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-dev/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_light.xml --><!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/color/abc_secondary_text_material_light.xml -->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index f534f58..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index cbc36f6..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index c31cf86..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 90e9c39..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index fb38e86..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 6396605..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 3d30b77..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index cb3fd6f..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index af49d80..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 1e0d4c3..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index a2168f0..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 4ba748c..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 5e5fcf1..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 1909397..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 79fcbf9..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 2720327..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index 4c9f99b..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 5b30030..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 6e8ff92..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 7d029d0..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index e583dcf..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index a8811b1..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 3becd3a..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 7ffeb1d..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 658b694..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index c10a7bf..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index d290ccb..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index e66354d..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index dc1616c..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index a27070b..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 85831e3..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index f6e97df..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 2e55ed2..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 43fd9ee..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 4c6c5b1..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 4f9fd82..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 2b8d87b..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 18dc90c..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/drawer_shadow.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/drawer_shadow.9.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/drawer_shadow.9.png
deleted file mode 100644
index fdb7478..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/drawer_shadow.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_drawer.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_drawer.png b/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_drawer.png
deleted file mode 100644
index d9d0d18..0000000
Binary files a/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_drawer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 2dd782b..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index a6b6cf7..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 645af27..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 8e188de..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 66d0680..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index f9c606c..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index e59dcf8..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 44670d1..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 02e3f63..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index b327e26..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 86fe926..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index eaf546d..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index b2daec1..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 73b8b09..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 6fdd01c..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 1a6aa9b..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 2ce0ef9..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 65258cd..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index a9b94f7..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index b18cdf2..0000000
Binary files a/app/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index b7d0119..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 441869a..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 3a6dfe5..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index bbd2930..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a0b4fda..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/54bd8752/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
----------------------------------------------------------------------
diff --git a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index fccd420..0000000
Binary files a/app/build/intermediates/res/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ