diff --git a/OsmAnd/.gitignore b/OsmAnd/.gitignore index a80b324b3d..82cea33d56 100644 --- a/OsmAnd/.gitignore +++ b/OsmAnd/.gitignore @@ -1,7 +1,11 @@ gradle gradlew gradlew.bat - + + +aarDependencies +libs/android*.jar +libs/com.*.jar valgrind/ bin/ dist/ diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle index 919d3b963a..52b5adc217 100644 --- a/OsmAnd/build.gradle +++ b/OsmAnd/build.gradle @@ -1,4 +1,6 @@ apply plugin: 'com.android.application' +apply plugin: 'com.github.ksoichiro.eclipse.aar' + // Global Parameters accepted // TARGET_APP_NAME - app name // APK_NUMBER_VERSION - version number of apk @@ -16,9 +18,17 @@ apply plugin: 'com.android.application' // // Less important +// Configure eclipse-aar plugin + +eclipseAar { + // See "Configurations" for details + androidTarget = 'android-27' + aarDependenciesDir = 'aarDependencies' +} + android { - compileSdkVersion 26 - buildToolsVersion "26.0.2" + compileSdkVersion 27 + buildToolsVersion "27.0.3" signingConfigs { development { @@ -382,14 +392,11 @@ dependencies { compile 'com.google.firebase:firebase-config:9.8.0' implementation 'com.facebook.android:facebook-android-sdk:[4,5)' } - // compile project(':eclipse-compile:design') - // compile project(':eclipse-compile:cardview') - // compile project(':eclipse-compile:gridlayout') - compile 'com.android.support:gridlayout-v7:26.1.0' - compile 'com.android.support:cardview-v7:26.1.0' - compile 'com.android.support:appcompat-v7:26.1.0' - compile 'com.android.support:design:26.1.0' - compile 'com.android.support:customtabs:26.1.0' + compile 'com.android.support:gridlayout-v7:27.1.0' + compile 'com.android.support:cardview-v7:27.1.0' + compile 'com.android.support:appcompat-v7:27.1.0' + compile 'com.android.support:design:27.1.0' + compile 'com.android.support:customtabs:27.1.0' compile fileTree(include: ['*.jar'], exclude: ['QtAndroid-bundled.jar', 'QtAndroidAccessibility-bundled.jar', 'OsmAndCore_android.jar', 'OsmAndCore_wrapper.jar', 'android-support-multidex.jar'], dir: 'libs') legacyCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@jar" qtcoredebugCompile "net.osmand:OsmAndCore_androidNativeDebug:0.1-SNAPSHOT@aar" diff --git a/OsmAnd/libs/android-support-multidex.jar b/OsmAnd/libs/android-support-multidex.jar deleted file mode 100644 index 67b0aa74e9..0000000000 Binary files a/OsmAnd/libs/android-support-multidex.jar and /dev/null differ diff --git a/OsmAnd/project.properties b/OsmAnd/project.properties index 8fd374a9b4..59c8738135 100644 --- a/OsmAnd/project.properties +++ b/OsmAnd/project.properties @@ -10,8 +10,18 @@ # Indicates whether an apk should be generated for each density. split.density=false # Project target. -target=android-26 +target=android-27 dex.force.jumbo=true -android.library.reference.1=../eclipse-compile/appcompat -android.library.reference.2=../eclipse-compile/design -android.library.reference.3=../eclipse-compile/cardview +android.library.reference.1=aarDependencies/com.github.HITGIF-TextFieldBoxes-1.3.5 +android.library.reference.2=aarDependencies/com.android.support-recyclerview-v7-27.1.0 +android.library.reference.3=aarDependencies/com.android.support-design-27.1.0 +android.library.reference.4=aarDependencies/com.android.support-appcompat-v7-27.1.0 +android.library.reference.5=aarDependencies/com.android.support-cardview-v7-27.1.0 +android.library.reference.6=aarDependencies/com.getkeepsafe.taptargetview-taptargetview-1.6.1 +android.library.reference.7=aarDependencies/com.android.support-support-compat-27.1.0 +android.library.reference.8=aarDependencies/com.android.support-gridlayout-v7-27.1.0 +android.library.reference.10=aarDependencies/com.android.support-customtabs-27.1.0 +android.library.reference.9=aarDependencies/android.arch.core-runtime-1.1.0 +android.library.reference.11=aarDependencies/com.android.support-support-v4-27.1.0 +android.library.reference.12=aarDependencies/com.android.support-support-vector-drawable-27.1.0 +android.library.reference.13=aarDependencies/com.android.support-animated-vector-drawable-27.1.0 diff --git a/OsmAnd/src/net/osmand/plus/download/DownloadIndexesThread.java b/OsmAnd/src/net/osmand/plus/download/DownloadIndexesThread.java index 9e2ee43435..7c895c59e0 100644 --- a/OsmAnd/src/net/osmand/plus/download/DownloadIndexesThread.java +++ b/OsmAnd/src/net/osmand/plus/download/DownloadIndexesThread.java @@ -16,8 +16,8 @@ import android.os.Build; import android.os.StatFs; import android.support.annotation.UiThread; import android.support.v7.app.AlertDialog; -import android.support.v7.app.NotificationCompat; -import android.support.v7.app.NotificationCompat.Builder; +import android.support.v4.app.NotificationCompat; +import android.support.v4.app.NotificationCompat.Builder; import android.view.View; import android.widget.Toast; import net.osmand.IndexConstants; diff --git a/OsmAnd/src/net/osmand/plus/notifications/GpxNotification.java b/OsmAnd/src/net/osmand/plus/notifications/GpxNotification.java index 97dfe3b675..edc7ff35d5 100644 --- a/OsmAnd/src/net/osmand/plus/notifications/GpxNotification.java +++ b/OsmAnd/src/net/osmand/plus/notifications/GpxNotification.java @@ -7,7 +7,7 @@ import android.content.Intent; import android.content.IntentFilter; import android.support.v4.app.NotificationCompat.BigTextStyle; import android.support.v4.app.NotificationCompat.Builder; -import android.support.v7.app.NotificationCompat; +import android.support.v4.app.NotificationCompat; import net.osmand.plus.NavigationService; import net.osmand.plus.OsmAndFormatter; diff --git a/OsmAnd/src/net/osmand/plus/notifications/OsmandNotification.java b/OsmAnd/src/net/osmand/plus/notifications/OsmandNotification.java index 55f6b8a723..db43e602ce 100644 --- a/OsmAnd/src/net/osmand/plus/notifications/OsmandNotification.java +++ b/OsmAnd/src/net/osmand/plus/notifications/OsmandNotification.java @@ -6,7 +6,7 @@ import android.content.Context; import android.content.Intent; import android.support.v4.app.NotificationCompat.Builder; import android.support.v4.app.NotificationManagerCompat; -import android.support.v7.app.NotificationCompat; +import android.support.v4.app.NotificationCompat; import net.osmand.plus.OsmandApplication; import net.osmand.plus.activities.MapActivity; diff --git a/OsmAnd/src/net/osmand/plus/wikivoyage/data/SearchResult.java b/OsmAnd/src/net/osmand/plus/wikivoyage/data/SearchResult.java index 9755fc972d..d5a34d7f87 100644 --- a/OsmAnd/src/net/osmand/plus/wikivoyage/data/SearchResult.java +++ b/OsmAnd/src/net/osmand/plus/wikivoyage/data/SearchResult.java @@ -1,13 +1,17 @@ package net.osmand.plus.wikivoyage.data; +import java.util.ArrayList; +import java.util.List; + public class SearchResult { - String searchTerm; + List searchTerm = new ArrayList<>(); long cityId; - String articleTitle; - String lang; + List articleTitle = new ArrayList<>(); + List langs = new ArrayList<>(); + - public String getSearchTerm() { + public List getSearchTerm() { return searchTerm; } @@ -15,11 +19,11 @@ public class SearchResult { return cityId; } - public String getArticleTitle() { + public List getArticleTitle() { return articleTitle; } - public String getLang() { - return lang; + public List getLang() { + return langs; } } diff --git a/OsmAnd/src/net/osmand/plus/wikivoyage/data/WikivoyageDbHelper.java b/OsmAnd/src/net/osmand/plus/wikivoyage/data/WikivoyageDbHelper.java index afa0aec260..5df6e9d8bc 100644 --- a/OsmAnd/src/net/osmand/plus/wikivoyage/data/WikivoyageDbHelper.java +++ b/OsmAnd/src/net/osmand/plus/wikivoyage/data/WikivoyageDbHelper.java @@ -86,16 +86,15 @@ public class WikivoyageDbHelper { } @Nullable - public WikivoyageArticle getArticle(SearchResult searchResult) { + public WikivoyageArticle getArticle(long cityId, String lang) { WikivoyageArticle res = null; SQLiteConnection conn = openConnection(); if (conn != null) { try { SQLiteCursor cursor = conn.rawQuery(ARTICLES_TABLE_SELECT + " WHERE " + ARTICLES_COL_CITY_ID + " = ? AND " + - ARTICLES_COL_TITLE + " = ? AND " + ARTICLES_COL_LANG + " = ?", - new String[]{String.valueOf(searchResult.cityId), searchResult.articleTitle, searchResult.lang}); + new String[]{String.valueOf(cityId), lang}); if (cursor.moveToFirst()) { res = readArticle(cursor); } @@ -117,11 +116,10 @@ public class WikivoyageDbHelper { private SearchResult readSearchResult(SQLiteCursor cursor) { SearchResult res = new SearchResult(); - res.searchTerm = cursor.getString(0); + res.searchTerm.add(cursor.getString(0)); res.cityId = cursor.getLong(1); - res.articleTitle = cursor.getString(2); - res.lang = cursor.getString(3); - + res.articleTitle.add(cursor.getString(2)); + res.langs.add(cursor.getString(3)); return res; } diff --git a/OsmAnd/src/net/osmand/plus/wikivoyage/search/SearchRecyclerViewAdapter.java b/OsmAnd/src/net/osmand/plus/wikivoyage/search/SearchRecyclerViewAdapter.java index 66102857c6..3f7da6bc16 100644 --- a/OsmAnd/src/net/osmand/plus/wikivoyage/search/SearchRecyclerViewAdapter.java +++ b/OsmAnd/src/net/osmand/plus/wikivoyage/search/SearchRecyclerViewAdapter.java @@ -37,7 +37,7 @@ public class SearchRecyclerViewAdapter extends RecyclerView.Adapter + + - - diff --git a/OsmAndCore-sample/.gitignore b/OsmAndCore-sample/.gitignore index 12af92fed9..cf9cbeb1c1 100644 --- a/OsmAndCore-sample/.gitignore +++ b/OsmAndCore-sample/.gitignore @@ -2,6 +2,10 @@ /.idea *.iml +aarDependencies +libs/android*.jar +libs/com.*.jar +libs/net.osmand-*.jar gradlew gradle gradlew.bat diff --git a/eclipse-compile/cardview/.project b/OsmAndCore-sample/.project similarity index 96% rename from eclipse-compile/cardview/.project rename to OsmAndCore-sample/.project index 105072983e..e3fa89febb 100644 --- a/eclipse-compile/cardview/.project +++ b/OsmAndCore-sample/.project @@ -1,6 +1,6 @@ - android-cardview + OsmAndCore-sample diff --git a/OsmAndCore-sample/project.properties b/OsmAndCore-sample/project.properties new file mode 100644 index 0000000000..18f58d43e3 --- /dev/null +++ b/OsmAndCore-sample/project.properties @@ -0,0 +1,16 @@ +target=android-21 +android.library.reference.1=aarDependencies/com.android.support-appcompat-v7-27.1.0 +android.library.reference.2=aarDependencies/com.android.support-support-v4-27.1.0 +android.library.reference.3=aarDependencies/com.android.support-support-compat-27.1.0 +android.library.reference.4=aarDependencies/android.arch.lifecycle-runtime-1.1.0 +android.library.reference.5=aarDependencies/com.android.support-support-core-ui-27.1.0 +android.library.reference.6=aarDependencies/com.android.support-support-core-utils-27.1.0 +android.library.reference.7=aarDependencies/com.android.support-support-fragment-27.1.0 +android.library.reference.8=aarDependencies/com.android.support-support-media-compat-27.1.0 +android.library.reference.9=aarDependencies/com.android.support-support-vector-drawable-27.1.0 +android.library.reference.10=aarDependencies/com.android.support-animated-vector-drawable-27.1.0 +android.library.reference.11=aarDependencies/com.android.support-design-27.1.0 +android.library.reference.12=aarDependencies/com.android.support-transition-27.1.0 +android.library.reference.13=aarDependencies/com.android.support-recyclerview-v7-27.1.0 +android.library.reference.14=aarDependencies/net.osmand-OsmAndCore_android-0.1-SNAPSHOT +android.library.reference.15=aarDependencies/net.osmand-OsmAndCore_androidNativeRelease-0.1-SNAPSHOT diff --git a/build.gradle b/build.gradle index 5cad9d08ae..548fc453ba 100644 --- a/build.gradle +++ b/build.gradle @@ -9,8 +9,11 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:2.+' classpath 'com.google.gms:google-services:3.0.0' + classpath 'com.github.ksoichiro:gradle-eclipse-aar-plugin:0.3.1' + } } +apply plugin: 'com.github.ksoichiro.eclipse.aar' allprojects { repositories { diff --git a/eclipse-compile/appcompat/.classpath b/eclipse-compile/appcompat/.classpath deleted file mode 100644 index 51769745b2..0000000000 --- a/eclipse-compile/appcompat/.classpath +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/eclipse-compile/appcompat/.gitignore b/eclipse-compile/appcompat/.gitignore deleted file mode 100644 index e614fbbef9..0000000000 --- a/eclipse-compile/appcompat/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bin -gen diff --git a/eclipse-compile/appcompat/.project b/eclipse-compile/appcompat/.project deleted file mode 100644 index 957d33da15..0000000000 --- a/eclipse-compile/appcompat/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - android-support-v7-appcompat - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/eclipse-compile/appcompat/AndroidManifest.xml b/eclipse-compile/appcompat/AndroidManifest.xml deleted file mode 100644 index dac4cb27ed..0000000000 --- a/eclipse-compile/appcompat/AndroidManifest.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - diff --git a/eclipse-compile/appcompat/README.txt b/eclipse-compile/appcompat/README.txt deleted file mode 100644 index 8e8de05681..0000000000 --- a/eclipse-compile/appcompat/README.txt +++ /dev/null @@ -1,10 +0,0 @@ -Library Project including compatibility ActionBar. - -This can be used by an Android project to provide -access to ActionBar on applications running on API 7+. - -There is technically no source, but the src folder is necessary -to ensure that the build system works. The content is actually -located in libs/android-support-v7-appcompat.jar. -The accompanying resources must also be included in the application. - diff --git a/eclipse-compile/appcompat/build.gradle b/eclipse-compile/appcompat/build.gradle deleted file mode 100644 index 07e8c6a83c..0000000000 --- a/eclipse-compile/appcompat/build.gradle +++ /dev/null @@ -1,27 +0,0 @@ -apply plugin: 'com.android.library' -dependencies { - compile files('libs/android-support-v4.jar') - compile files('libs/android-support-v7-appcompat.jar') -} - -android { - compileSdkVersion 23 - buildToolsVersion "23.0.1" - - defaultConfig { - minSdkVersion 9 - targetSdkVersion 23 - } - sourceSets { - main { - manifest.srcFile "AndroidManifest.xml" - aidl.srcDirs = ["src"] - java.srcDirs = ["src"] - resources.srcDirs = ["src"] - renderscript.srcDirs = ["src"] - res.srcDirs = ["res"] - assets.srcDirs = ["assets"] - } - } - -} diff --git a/eclipse-compile/appcompat/build.xml b/eclipse-compile/appcompat/build.xml deleted file mode 100644 index 3963d45ed5..0000000000 --- a/eclipse-compile/appcompat/build.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/libs/android-support-v4.jar b/eclipse-compile/appcompat/libs/android-support-v4.jar deleted file mode 100644 index aa0b1a5cc5..0000000000 Binary files a/eclipse-compile/appcompat/libs/android-support-v4.jar and /dev/null differ diff --git a/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar b/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar deleted file mode 100644 index f9ad396f6c..0000000000 Binary files a/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar and /dev/null differ diff --git a/eclipse-compile/appcompat/local.properties b/eclipse-compile/appcompat/local.properties deleted file mode 100644 index bc58da9e1a..0000000000 --- a/eclipse-compile/appcompat/local.properties +++ /dev/null @@ -1,10 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must *NOT* be checked into Version Control Systems, -# as it contains information specific to your local configuration. - -# location of the SDK. This is only used by Ant -# For customization when using a Version Control System, please read the -# header note. -sdk.dir=H:\\Work\\Android SDK\\adt-bundle-windows-x86_64-20140321\\sdk diff --git a/eclipse-compile/appcompat/proguard-project.txt b/eclipse-compile/appcompat/proguard-project.txt deleted file mode 100644 index f2fe1559a2..0000000000 --- a/eclipse-compile/appcompat/proguard-project.txt +++ /dev/null @@ -1,20 +0,0 @@ -# To enable ProGuard in your project, edit project.properties -# to define the proguard.config property as described in that file. -# -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in ${sdk.dir}/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the ProGuard -# include property in project.properties. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} diff --git a/eclipse-compile/appcompat/project.properties b/eclipse-compile/appcompat/project.properties deleted file mode 100644 index b2ef7dccc5..0000000000 --- a/eclipse-compile/appcompat/project.properties +++ /dev/null @@ -1,15 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system edit -# "ant.properties", and override values to adapt the script to your -# project structure. -# -# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): -#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt - -# Project target. -target=android-23 -android.library=true diff --git a/eclipse-compile/appcompat/res/anim/abc_fade_in.xml b/eclipse-compile/appcompat/res/anim/abc_fade_in.xml deleted file mode 100644 index da7ee295c9..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_fade_in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_fade_out.xml b/eclipse-compile/appcompat/res/anim/abc_fade_out.xml deleted file mode 100644 index c81b39a9b1..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_fade_out.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml b/eclipse-compile/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml deleted file mode 100644 index 79d02d44ca..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_popup_enter.xml b/eclipse-compile/appcompat/res/anim/abc_popup_enter.xml deleted file mode 100644 index 91664da17e..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_popup_enter.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_popup_exit.xml b/eclipse-compile/appcompat/res/anim/abc_popup_exit.xml deleted file mode 100644 index db7e8073a8..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_popup_exit.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml b/eclipse-compile/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml deleted file mode 100644 index 9a23cd2025..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_slide_in_bottom.xml b/eclipse-compile/appcompat/res/anim/abc_slide_in_bottom.xml deleted file mode 100644 index 1afa8febc5..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_slide_in_bottom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/eclipse-compile/appcompat/res/anim/abc_slide_in_top.xml b/eclipse-compile/appcompat/res/anim/abc_slide_in_top.xml deleted file mode 100644 index ab824f2e4a..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_slide_in_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_slide_out_bottom.xml b/eclipse-compile/appcompat/res/anim/abc_slide_out_bottom.xml deleted file mode 100644 index b309fe89c6..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_slide_out_bottom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/anim/abc_slide_out_top.xml b/eclipse-compile/appcompat/res/anim/abc_slide_out_top.xml deleted file mode 100644 index e84d1c7fb6..0000000000 --- a/eclipse-compile/appcompat/res/anim/abc_slide_out_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml deleted file mode 100644 index e0160766e0..0000000000 --- a/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml deleted file mode 100644 index 290faf1a0e..0000000000 --- a/eclipse-compile/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color-v23/abc_color_highlight_material.xml b/eclipse-compile/appcompat/res/color-v23/abc_color_highlight_material.xml deleted file mode 100644 index 8d53611890..0000000000 --- a/eclipse-compile/appcompat/res/color-v23/abc_color_highlight_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml b/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml deleted file mode 100644 index 9a7af53d4e..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml b/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml deleted file mode 100644 index aa53f3577e..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml b/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml deleted file mode 100644 index 724c2557da..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_light.xml b/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_light.xml deleted file mode 100644 index 7395e680c6..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_primary_text_disable_only_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_primary_text_material_dark.xml b/eclipse-compile/appcompat/res/color/abc_primary_text_material_dark.xml deleted file mode 100644 index 7d66d02d63..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_primary_text_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_primary_text_material_light.xml b/eclipse-compile/appcompat/res/color/abc_primary_text_material_light.xml deleted file mode 100644 index 105b643ddb..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_primary_text_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_search_url_text.xml b/eclipse-compile/appcompat/res/color/abc_search_url_text.xml deleted file mode 100644 index 0631d5d4ca..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_search_url_text.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/color/abc_secondary_text_material_dark.xml b/eclipse-compile/appcompat/res/color/abc_secondary_text_material_dark.xml deleted file mode 100644 index 6399b1d028..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_secondary_text_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/abc_secondary_text_material_light.xml b/eclipse-compile/appcompat/res/color/abc_secondary_text_material_light.xml deleted file mode 100644 index 87c015a4cd..0000000000 --- a/eclipse-compile/appcompat/res/color/abc_secondary_text_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/color/switch_thumb_material_dark.xml b/eclipse-compile/appcompat/res/color/switch_thumb_material_dark.xml deleted file mode 100644 index 6153382c7c..0000000000 --- a/eclipse-compile/appcompat/res/color/switch_thumb_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/color/switch_thumb_material_light.xml b/eclipse-compile/appcompat/res/color/switch_thumb_material_light.xml deleted file mode 100644 index 94d7114821..0000000000 --- a/eclipse-compile/appcompat/res/color/switch_thumb_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 4d9f861f88..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 99110085fe..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 69ff9dde3a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 9218981b4f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index a58857635f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index b184dbc69d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index 6549c52760..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index 88f1767fa9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index d5e1a00113..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 2264398234..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index f61e8e3e3c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png deleted file mode 100644 index 0fd15563a2..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 65ccd8f410..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index b9ff1db574..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 70eb073788..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index e78bcaf57a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index 9a87820577..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 8610c50150..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 2d971a94bf..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index ee40812968..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index b9baa0cca9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index a87d2cdc76..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index 1e571f5c6f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png deleted file mode 100644 index c09ec90e0f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png deleted file mode 100644 index 62fbd2cb50..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 2f6ef9160a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 863ce95f61..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index b6d467774e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index e01c7392a9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index 2cf413c5c9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index 9d8451aab1..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 4efe298e28..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 543dec3376..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 9930b3ad1b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index 4cfb1a7c7e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index 32ddf7a9e0..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 9de0263919..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index 6ad9b1d245..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 4b0b10a7a3..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 5b13bc17ad..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index 0078bf6b6b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index a74ab260c1..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 6282df4e69..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 2e1062fa99..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index a262b0c872..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 9ed43ca4d7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 4cd8a27c8b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index e300b7cfc7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 05b1e119c4..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index aa7b3238b3..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index d02a5da113..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index a188f2fbec..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index e95ba942d6..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 87bf8d36b1..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index b097e48a26..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index de37158159..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index ac86165d5e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 8b2adf6bd5..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 0b895042f8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 7dc69341d2..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 884cd1279b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 90fe333ac3..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 930630de58..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index fa0ed8fe95..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 7a9fcbcbfe..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 3b052e5774..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 96a86931cb..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 827d63425d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index 09084757b1..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index a5a437f3d1..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index d890a62a04..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 0620439460..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 038e000864..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 8043d4cac8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png deleted file mode 100644 index e80681aeb7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 9603e76e27..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index 44c1423216..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 80c069557c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 3966d6ad8c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index 017e45edec..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index ec0cff4935..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 966938b9d8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index d05f969e99..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 451818ce54..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index a216da173d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index 1e571f5c6f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png deleted file mode 100644 index addb54a226..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png deleted file mode 100644 index 5fcd5b207a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 251b98913d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 01efec045b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index f1d1b61708..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 10851f6c87..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index fe0ec49abc..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index 5f55cd5539..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 10df639062..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index f83b1ef163..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index e9efb20fb7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index a4ab0a1e39..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index db9e172d3b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index ed75cb8128..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index 00c81fcada..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 12b0a79c58..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 3ffa25193c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index 0eb61f1521..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 0c766f30db..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 4f66d7adce..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml b/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml deleted file mode 100644 index 595c56c6a9..0000000000 --- a/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml b/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml deleted file mode 100644 index 10251aadc7..0000000000 --- a/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml b/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml deleted file mode 100644 index 0b540390a2..0000000000 --- a/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 6284eaaa17..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 49025208b6..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 59a683ab60..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 03bf49cc5e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 342323b4b5..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index c0333f982c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index 2f29c39cdf..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index a854864d7d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 726b1dc59e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 600178a98a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index c465e82fc9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png deleted file mode 100644 index 76e07f0970..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 1015e1f443..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index b3fa6bc2f0..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index c8a6d25853..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 3c5e683e7c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index f87733af1c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 9aabc43ce6..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index c039c8e0b0..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index b57ee1935e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 76f2696557..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index d0385ba4ce..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index 1e571f5c6f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png deleted file mode 100644 index 67c25aefff..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png deleted file mode 100644 index 17c34a1a93..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 988548a103..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 15fcf6a322..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 65275b38c7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 5b58e76054..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index 09d10225d8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index b5dd854b20..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 138f643fa9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index cd41d74c96..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 8d67525e0c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index 2b4734d25e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index 805cb291f5..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index bcf6b7f059..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index f0752d2bfb..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 2242d2f94b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 8ff3a8304c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index e7e693a7b8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 819171ad65..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 4def8c8fab..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 4eae28fde7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index accf80e4af..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 8c82ec3d7a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 8fc0a9b879..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 92b712e5d4..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index 78bbeba102..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index c4ba8e64fd..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index f026a41c85..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index c8b9f68939..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index f6d2f3294f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 39178bf31a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png deleted file mode 100644 index f54f4f9d11..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 65cf0c1eb9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index d041623731..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 9dff893e77..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index a1f8c33394..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index 28a3bbf21c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 29a4e52951..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 162ab9847a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index a1866ba45f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index d967ae70fa..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index 5baef9ff2f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index 987b2bc25a..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png deleted file mode 100644 index 8b050e8551..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png deleted file mode 100644 index 00e370a1a9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 719c7b5ebf..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 75bd5803fd..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 9cc366665c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 224a08157f..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index f7f306db29..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index ee4bfe7d0b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 52687451a8..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index adffc1472e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index f3d16d5759..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index 6a82af5081..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index c3791fc661..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 6940b603ea..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index c74b3fcf8d..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index eeb74c8693..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 4d3d3a4d05..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index c5acb84f04..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 30328ae1d2..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index d4f3650622..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 4dc870e49b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 4e18de21a6..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 5fa326654e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index c11cb2ec65..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index 6fd5bfef8e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 99e68cc0e7..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 16b0f1d409..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png deleted file mode 100644 index 7b2a480a02..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index fe93d873f6..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 4b2d05ab0c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index 16e9e14d5e..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 129d30f84c..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index fa6ab02ba9..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index 77318c7111..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 098c25a1bb..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index 76c4eeb26b..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index e5a43bbe87..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index eeb37c1dae..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 6b8bc0a8e3..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index 85c81c1dbc..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 929be19b09..0000000000 Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/eclipse-compile/appcompat/res/drawable/abc_btn_borderless_material.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_borderless_material.xml deleted file mode 100644 index f3894600ba..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_btn_borderless_material.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_btn_check_material.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_check_material.xml deleted file mode 100644 index 4934a929d6..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_btn_check_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml deleted file mode 100644 index ec93b8b6bc..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml deleted file mode 100644 index c50d4b10f0..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_btn_radio_material.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_radio_material.xml deleted file mode 100644 index 6e9f9cf374..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_btn_radio_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_cab_background_internal_bg.xml b/eclipse-compile/appcompat/res/drawable/abc_cab_background_internal_bg.xml deleted file mode 100644 index 9faf60ac61..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_cab_background_internal_bg.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_cab_background_top_material.xml b/eclipse-compile/appcompat/res/drawable/abc_cab_background_top_material.xml deleted file mode 100644 index f20add7e4b..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_cab_background_top_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_dark.xml b/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_dark.xml deleted file mode 100644 index 41c4a6f842..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_dark.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_light.xml b/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_light.xml deleted file mode 100644 index 248b13af94..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_dialog_material_background_light.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_edit_text_material.xml b/eclipse-compile/appcompat/res/drawable/abc_edit_text_material.xml deleted file mode 100644 index 46c4e91200..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_edit_text_material.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_dark.xml b/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_dark.xml deleted file mode 100644 index 72162c222e..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_dark.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_light.xml b/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_light.xml deleted file mode 100644 index 1c180b2ee4..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_item_background_holo_light.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml deleted file mode 100644 index 0add58c86a..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml b/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml deleted file mode 100644 index 0c1d3e6782..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_dark.xml b/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_dark.xml deleted file mode 100644 index 1fb5fc4516..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_dark.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_light.xml b/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_light.xml deleted file mode 100644 index 8d24047229..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_list_selector_holo_light.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_ratingbar_full_material.xml b/eclipse-compile/appcompat/res/drawable/abc_ratingbar_full_material.xml deleted file mode 100644 index 535e2da25e..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_ratingbar_full_material.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml b/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml deleted file mode 100644 index 7fea83bc86..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml b/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml deleted file mode 100644 index e68ac03e90..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_spinner_textfield_background_material.xml b/eclipse-compile/appcompat/res/drawable/abc_spinner_textfield_background_material.xml deleted file mode 100644 index d0f46a8097..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_spinner_textfield_background_material.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_switch_thumb_material.xml b/eclipse-compile/appcompat/res/drawable/abc_switch_thumb_material.xml deleted file mode 100644 index ee96ec2e7a..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_switch_thumb_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_tab_indicator_material.xml b/eclipse-compile/appcompat/res/drawable/abc_tab_indicator_material.xml deleted file mode 100644 index 1a8de1b69b..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_tab_indicator_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml b/eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml deleted file mode 100644 index 885670c999..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/drawable/abc_textfield_search_material.xml b/eclipse-compile/appcompat/res/drawable/abc_textfield_search_material.xml deleted file mode 100644 index 08873966e4..0000000000 --- a/eclipse-compile/appcompat/res/drawable/abc_textfield_search_material.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_bar_title_item.xml b/eclipse-compile/appcompat/res/layout/abc_action_bar_title_item.xml deleted file mode 100644 index 194afb74cb..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_bar_title_item.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_bar_up_container.xml b/eclipse-compile/appcompat/res/layout/abc_action_bar_up_container.xml deleted file mode 100644 index f46550a553..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_bar_up_container.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml b/eclipse-compile/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml deleted file mode 100644 index 5c105ab551..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml b/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml deleted file mode 100644 index 283358a5dc..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_menu_layout.xml b/eclipse-compile/appcompat/res/layout/abc_action_menu_layout.xml deleted file mode 100644 index 4918d2fba9..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_menu_layout.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_mode_bar.xml b/eclipse-compile/appcompat/res/layout/abc_action_mode_bar.xml deleted file mode 100644 index dc1f1ba232..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_mode_bar.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_action_mode_close_item_material.xml b/eclipse-compile/appcompat/res/layout/abc_action_mode_close_item_material.xml deleted file mode 100644 index 2944d98382..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_action_mode_close_item_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view.xml b/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view.xml deleted file mode 100644 index 2522f1a13e..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view_list_item.xml b/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view_list_item.xml deleted file mode 100644 index 0f860f6708..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view_list_item.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/eclipse-compile/appcompat/res/layout/abc_alert_dialog_button_bar_material.xml b/eclipse-compile/appcompat/res/layout/abc_alert_dialog_button_bar_material.xml deleted file mode 100644 index d32ad10914..0000000000 --- a/eclipse-compile/appcompat/res/layout/abc_alert_dialog_button_bar_material.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - -