diff --git a/OsmAnd-java/build.gradle b/OsmAnd-java/build.gradle
index d20b813fee..0deaef3eea 100644
--- a/OsmAnd-java/build.gradle
+++ b/OsmAnd-java/build.gradle
@@ -1,5 +1,5 @@
apply plugin: 'java'
-apply plugin:'application'
+apply plugin: 'application'
mainClassName = "net.osmand.util.GeoPointParserUtil"
sourceSets {
diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle
index 4d6cc70318..04c58f03db 100644
--- a/OsmAnd/build.gradle
+++ b/OsmAnd/build.gradle
@@ -18,7 +18,7 @@ apply plugin: 'com.android.application'
// Less important
android {
- compileSdkVersion 21
+ compileSdkVersion 23
buildToolsVersion "23.0.1"
signingConfigs {
@@ -41,6 +41,7 @@ android {
minSdkVersion System.getenv("MIN_SDK_VERSION") ? System.getenv("MIN_SDK_VERSION").toInteger() : 14
targetSdkVersion 23
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
+ multiDexEnabled true
//versionName already assigned in code
//versionName System.getenv("APK_VERSION")? System.getenv("APK_VERSION").toString(): versionName
}
@@ -59,6 +60,8 @@ android {
dexOptions {
jumboMode = true
+ incremental true
+ javaMaxHeapSize "4g"
}
sourceSets {
@@ -184,17 +187,17 @@ task updateNoTranslate(type: Copy) {
}
task validateTranslate {
- println "Validating translations"
+ println "Validating translations"
new java.io.File("OsmAnd/res").eachFileRecurse groovy.io.FileType.FILES, {
- if(it.name == "strings.xml" || it.name == "phrases.xml") {
+ if (it.name == "strings.xml" || it.name == "phrases.xml") {
it.eachLine { line ->
- if( line.contains("\$ s") || line.contains("\$ d") || line.contains("\$ f") ||
- line.contains(" \$s") || line.contains(" \$d") || line.contains(" \$f") ||
- line.contains("1\$ ") || line.contains("2\$ ") || line.contains("3\$ ") ||
- (line.contains("% \$") || line.contains("% 1") ||
- line.contains("% 2") || line.contains("% 3") )) {
- throw new GradleException("Incorrect translation " + it.getAbsolutePath() + " " + line);
+ if (line.contains("\$ s") || line.contains("\$ d") || line.contains("\$ f") ||
+ line.contains(" \$s") || line.contains(" \$d") || line.contains(" \$f") ||
+ line.contains("1\$ ") || line.contains("2\$ ") || line.contains("3\$ ") ||
+ (line.contains("% \$") || line.contains("% 1") ||
+ line.contains("% 2") || line.contains("% 3"))) {
+ throw new GradleException("Incorrect translation " + it.getAbsolutePath() + " " + line);
}
}
}
@@ -231,7 +234,7 @@ task collectHelpContentsAssets(type: Copy) {
include "technical-articles.html"
include "map-legend.html"
}
- from("../../help/website/feature_articles"){
+ from("../../help/website/feature_articles") {
include "*.html"
}
@@ -350,7 +353,8 @@ dependencies {
"QtAndroid-bundled.jar",
"QtAndroidAccessibility-bundled.jar",
"OsmAndCore_android.jar",
- "OsmAndCore_wrapper.jar"])
+ "OsmAndCore_wrapper.jar",
+ "android-support-multidex.jar"])
// compile "com.github.ksoichiro:android-observablescrollview:1.5.0"
// compile "com.android.support:appcompat-v7:22.2.1"
// compile "com.github.shell-software:fab:1.0.5"
@@ -360,5 +364,4 @@ dependencies {
qtcoredebugCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
qtcoreCompile "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar"
qtcoreCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
- compile files('libs/android-support-multidex.jar')
}
diff --git a/OsmAnd/libs/simple-logging.jar b/OsmAnd/libs/simple-logging.jar
new file mode 100644
index 0000000000..89d3a05766
Binary files /dev/null and b/OsmAnd/libs/simple-logging.jar differ
diff --git a/OsmAnd/src/net/osmand/PlatformUtil.java b/OsmAnd/src/net/osmand/PlatformUtil.java
index 385ea068a1..11202adf74 100644
--- a/OsmAnd/src/net/osmand/PlatformUtil.java
+++ b/OsmAnd/src/net/osmand/PlatformUtil.java
@@ -1,12 +1,12 @@
package net.osmand;
+import android.util.Xml;
+
import org.apache.commons.logging.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;
-import android.util.Xml;
-
/**
* That class is replacing of standard LogFactory due to
* problems with Android implementation of LogFactory.
@@ -110,30 +110,11 @@ public class PlatformUtil {
return android.util.Log.isLoggable(TAG, android.util.Log.INFO);
}
- @Override
- public boolean isTraceEnabled() {
- return android.util.Log.isLoggable(TAG, android.util.Log.DEBUG);
- }
-
@Override
public boolean isWarnEnabled() {
return android.util.Log.isLoggable(TAG, android.util.Log.WARN);
}
- @Override
- public void trace(Object message) {
- if(isTraceEnabled()){
- android.util.Log.d(TAG, name + " " + message); //$NON-NLS-1$
- }
- }
-
- @Override
- public void trace(Object message, Throwable t) {
- if(isTraceEnabled()){
- android.util.Log.d(TAG, name + " " + message, t); //$NON-NLS-1$
- }
- }
-
@Override
public void warn(Object message) {
if(isWarnEnabled()){
diff --git a/OsmAnd/src/net/osmand/plus/OsmandApplication.java b/OsmAnd/src/net/osmand/plus/OsmandApplication.java
index 88295a14a3..f13bad53b9 100644
--- a/OsmAnd/src/net/osmand/plus/OsmandApplication.java
+++ b/OsmAnd/src/net/osmand/plus/OsmandApplication.java
@@ -2,7 +2,6 @@ package net.osmand.plus;
import android.app.Activity;
import android.app.AlarmManager;
-import android.app.Application;
import android.app.PendingIntent;
import android.content.Context;
import android.content.DialogInterface;
@@ -14,6 +13,7 @@ import android.os.AsyncTask;
import android.os.Build;
import android.os.Handler;
import android.os.Message;
+import android.support.multidex.MultiDex;
import android.support.multidex.MultiDexApplication;
import android.support.v7.app.AlertDialog;
import android.text.format.DateFormat;
@@ -63,7 +63,6 @@ import java.util.Locale;
import btools.routingapp.BRouterServiceConnection;
import btools.routingapp.IBRouterService;
-
public class OsmandApplication extends MultiDexApplication {
public static final String EXCEPTION_PATH = "exception.log"; //$NON-NLS-1$
private static final org.apache.commons.logging.Log LOG = PlatformUtil.getLog(OsmandApplication.class);
@@ -139,7 +138,13 @@ public class OsmandApplication extends MultiDexApplication {
OsmandPlugin.initPlugins(this);
System.out.println("Time to init plugins " + (System.currentTimeMillis() - timeToStart) + " ms. Should be less < 800 ms");
}
-
+
+ @Override
+ protected void attachBaseContext(Context base) {
+ super.attachBaseContext(base);
+ MultiDex.install(this);
+ }
+
public AppInitializer getAppInitializer() {
return appInitializer;
}
diff --git a/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java b/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
index bab6c2ab42..75933e9d90 100644
--- a/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
+++ b/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
@@ -1,8 +1,5 @@
package net.osmand.plus.activities;
-
-import net.osmand.plus.OsmandApplication;
-import net.osmand.plus.R;
import android.graphics.PorterDuff;
import android.graphics.drawable.Drawable;
import android.support.v7.app.ActionBar;
@@ -10,6 +7,9 @@ import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
+import net.osmand.plus.OsmandApplication;
+import net.osmand.plus.R;
+
public class OsmandActionBarActivity extends AppCompatActivity {
protected boolean haveHomeButton = true;
diff --git a/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java b/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java
index bff6204045..d45f65083e 100644
--- a/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java
+++ b/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java
@@ -3,7 +3,7 @@ package net.osmand.plus.download.ui;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
-import android.support.v7.internal.view.ContextThemeWrapper;
+import android.support.v7.view.ContextThemeWrapper;
import android.support.v7.widget.Toolbar;
import android.util.TypedValue;
import android.view.LayoutInflater;
diff --git a/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java b/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java
index f3648e4ab2..4a08f1d5f7 100644
--- a/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java
+++ b/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java
@@ -6,16 +6,13 @@ import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Typeface;
import android.os.Build;
-import android.support.v7.internal.text.AllCapsTransformationMethod;
+import android.support.v7.text.AllCapsTransformationMethod;
import android.util.AttributeSet;
import android.widget.TextView;
import net.osmand.plus.R;
import net.osmand.plus.helpers.FontCache;
-/**
- * Created by Alexey Pelykh on 30.01.2015.
- */
public class TextViewEx extends TextView {
public TextViewEx(Context context) {
super(context);
diff --git a/eclipse-compile/appcompat/build.gradle b/eclipse-compile/appcompat/build.gradle
index 34e8ec28cf..07e8c6a83c 100644
--- a/eclipse-compile/appcompat/build.gradle
+++ b/eclipse-compile/appcompat/build.gradle
@@ -5,12 +5,12 @@ dependencies {
}
android {
- compileSdkVersion 21
+ compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 9
- targetSdkVersion 21
+ targetSdkVersion 23
}
sourceSets {
main {
diff --git a/eclipse-compile/appcompat/libs/android-support-v4.jar b/eclipse-compile/appcompat/libs/android-support-v4.jar
index 7b78bb8ee8..aa0b1a5cc5 100644
Binary files a/eclipse-compile/appcompat/libs/android-support-v4.jar and b/eclipse-compile/appcompat/libs/android-support-v4.jar differ
diff --git a/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar b/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar
index 830a4936a6..f9ad396f6c 100644
Binary files a/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar and b/eclipse-compile/appcompat/libs/android-support-v7-appcompat.jar differ
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
new file mode 100644
index 0000000000..8d53611890
--- /dev/null
+++ b/eclipse-compile/appcompat/res/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
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
new file mode 100644
index 0000000000..4efe298e28
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png 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
new file mode 100644
index 0000000000..543dec3376
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png 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
new file mode 100644
index 0000000000..9930b3ad1b
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png 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
new file mode 100644
index 0000000000..4cfb1a7c7e
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png 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
new file mode 100644
index 0000000000..32ddf7a9e0
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png 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
index 56436a1ccc..6ad9b1d245 100644
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png
deleted file mode 100644
index 5e0bf843ec..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.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
new file mode 100644
index 0000000000..10df639062
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png 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
new file mode 100644
index 0000000000..f83b1ef163
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png 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
new file mode 100644
index 0000000000..e9efb20fb7
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png 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
new file mode 100644
index 0000000000..a4ab0a1e39
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png 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
new file mode 100644
index 0000000000..db9e172d3b
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png 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
index fcd81de0c2..00c81fcada 100644
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png
deleted file mode 100644
index 36348a8b9a..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_text_cursor_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
new file mode 100644
index 0000000000..595c56c6a9
--- /dev/null
+++ b/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ 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
new file mode 100644
index 0000000000..10251aadc7
--- /dev/null
+++ b/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+ -
+
+
+
-
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 0000000000..0b540390a2
--- /dev/null
+++ b/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
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
new file mode 100644
index 0000000000..138f643fa9
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png 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
new file mode 100644
index 0000000000..cd41d74c96
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png 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
new file mode 100644
index 0000000000..8d67525e0c
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png 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
new file mode 100644
index 0000000000..2b4734d25e
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png 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
new file mode 100644
index 0000000000..805cb291f5
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png 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
index cd1396bca9..f0752d2bfb 100644
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png
deleted file mode 100644
index 666b10a2f2..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.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
new file mode 100644
index 0000000000..52687451a8
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png 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
new file mode 100644
index 0000000000..adffc1472e
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png 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
new file mode 100644
index 0000000000..f3d16d5759
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png 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
new file mode 100644
index 0000000000..6a82af5081
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png 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
new file mode 100644
index 0000000000..c3791fc661
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png 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
index 96bec46c2e..c74b3fcf8d 100644
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png
deleted file mode 100644
index 08ee2b4779..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.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
new file mode 100644
index 0000000000..e5a43bbe87
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png 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
new file mode 100644
index 0000000000..eeb37c1dae
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png 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
index c2393abe68..85c81c1dbc 100644
Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png and b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/cardview/src/main/AndroidManifest.xml b/eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml
old mode 100755
new mode 100644
similarity index 76%
rename from eclipse-compile/cardview/src/main/AndroidManifest.xml
rename to eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml
index 3ef02dc9d6..ec93b8b6bc
--- a/eclipse-compile/cardview/src/main/AndroidManifest.xml
+++ b/eclipse-compile/appcompat/res/drawable/abc_btn_colored_material.xml
@@ -13,8 +13,9 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-
-
-
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml b/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml
new file mode 100644
index 0000000000..7fea83bc86
--- /dev/null
+++ b/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
\ 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
new file mode 100644
index 0000000000..e68ac03e90
--- /dev/null
+++ b/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+ -
+
+
+
-
+
+
+
+
+
+
+ -
+
+
+
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/drawable/snackbar_background.xml b/eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml
similarity index 84%
rename from eclipse-compile/design/src/main/res/drawable/snackbar_background.xml
rename to eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml
index 739b516713..885670c999 100644
--- a/eclipse-compile/design/src/main/res/drawable/snackbar_background.xml
+++ b/eclipse-compile/appcompat/res/drawable/abc_text_cursor_material.xml
@@ -13,10 +13,11 @@
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
- -->
+-->
-
-
+
+
\ 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
index 150ea50dc3..283358a5dc 100644
--- a/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml
@@ -14,7 +14,7 @@
limitations under the License.
-->
-
-
-
\ No newline at end of file
+
\ 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
index 85fd94e37f..2522f1a13e 100644
--- a/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_activity_chooser_view.xml
@@ -17,7 +17,7 @@
*/
-->
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_alert_dialog_material.xml b/eclipse-compile/appcompat/res/layout/abc_alert_dialog_material.xml
index 9ba81fdb5f..323753398b 100644
--- a/eclipse-compile/appcompat/res/layout/abc_alert_dialog_material.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_alert_dialog_material.xml
@@ -45,7 +45,7 @@
android:src="@null"
style="@style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon"/>
-
-
+
+
-
+
+
+
@@ -108,41 +122,6 @@
android:layout_height="wrap_content"/>
-
+
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/layout/abc_dialog_title_material.xml b/eclipse-compile/appcompat/res/layout/abc_dialog_title_material.xml
index 068b9e907c..1ea20c5e10 100644
--- a/eclipse-compile/appcompat/res/layout/abc_dialog_title_material.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_dialog_title_material.xml
@@ -19,7 +19,7 @@ This is an optimized layout for a screen, with the minimum set of features
enabled.
-->
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/layout/abc_expanded_menu_layout.xml b/eclipse-compile/appcompat/res/layout/abc_expanded_menu_layout.xml
index 371151f2ec..560ada6fb4 100644
--- a/eclipse-compile/appcompat/res/layout/abc_expanded_menu_layout.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_expanded_menu_layout.xml
@@ -14,7 +14,7 @@
limitations under the License.
-->
-
-
@@ -57,4 +57,4 @@
-
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_popup_menu_item_layout.xml b/eclipse-compile/appcompat/res/layout/abc_popup_menu_item_layout.xml
index 76820e0789..47125fe4ea 100644
--- a/eclipse-compile/appcompat/res/layout/abc_popup_menu_item_layout.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_popup_menu_item_layout.xml
@@ -14,7 +14,7 @@
limitations under the License.
-->
-
-
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_screen_content_include.xml b/eclipse-compile/appcompat/res/layout/abc_screen_content_include.xml
index 6e21f2e339..1c30338f9d 100644
--- a/eclipse-compile/appcompat/res/layout/abc_screen_content_include.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_screen_content_include.xml
@@ -16,7 +16,7 @@
-
-
-
-
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml b/eclipse-compile/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml
index ac399c1d7c..c02c2aa9cb 100644
--- a/eclipse-compile/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml
@@ -20,7 +20,7 @@ This is an optimized layout for a screen, with the minimum set of features
enabled.
-->
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/layout/abc_screen_toolbar.xml b/eclipse-compile/appcompat/res/layout/abc_screen_toolbar.xml
index 572ec3463b..96412c15b5 100644
--- a/eclipse-compile/appcompat/res/layout/abc_screen_toolbar.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_screen_toolbar.xml
@@ -14,7 +14,7 @@
limitations under the License.
-->
-
-
-
-
+
-
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml b/eclipse-compile/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml
index 7407498a55..b81d5d8ca3 100644
--- a/eclipse-compile/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml
+++ b/eclipse-compile/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml
@@ -24,7 +24,7 @@
-
-
-
-
-
-
-
-
+ android:id="@android:id/text1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?attr/listPreferredItemHeightSmall"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?attr/textColorAlertDialogListItem"
+ android:gravity="center_vertical"
+ android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
+ android:paddingRight="?attr/dialogPreferredPadding"
+ android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
+ android:paddingEnd="?attr/dialogPreferredPadding"
+ android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
+ android:drawableStart="?android:attr/listChoiceIndicatorMultiple"
+ android:drawablePadding="20dp"
+ android:ellipsize="marquee" />
diff --git a/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml b/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml
index 3c2264cb8f..4d10fc720e 100644
--- a/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml
+++ b/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml
@@ -16,14 +16,18 @@
-->
+ android:id="@android:id/text1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?attr/listPreferredItemHeightSmall"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?attr/textColorAlertDialogListItem"
+ android:gravity="center_vertical"
+ android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
+ android:paddingRight="?attr/dialogPreferredPadding"
+ android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
+ android:paddingEnd="?attr/dialogPreferredPadding"
+ android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
+ android:drawableStart="?android:attr/listChoiceIndicatorSingle"
+ android:drawablePadding="20dp"
+ android:ellipsize="marquee" />
diff --git a/eclipse-compile/appcompat/res/values-af/strings.xml b/eclipse-compile/appcompat/res/values-af/strings.xml
index f7348c46b6..606d576c34 100644
--- a/eclipse-compile/appcompat/res/values-af/strings.xml
+++ b/eclipse-compile/appcompat/res/values-af/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Klaar"
"Navigeer tuis"
"Navigeer op"
"Nog opsies"
+ "Vou in"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Soek"
+ "Soek …"
"Soeknavraag"
"Vee navraag uit"
"Dien navraag in"
@@ -29,4 +33,7 @@
"Sien alles"
"Deel met %s"
"Deel met"
+ "999+"
+ "AAN"
+ "AF"
diff --git a/eclipse-compile/appcompat/res/values-am/strings.xml b/eclipse-compile/appcompat/res/values-am/strings.xml
index e849b31861..75a4eb6a61 100644
--- a/eclipse-compile/appcompat/res/values-am/strings.xml
+++ b/eclipse-compile/appcompat/res/values-am/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"ተከናውኗል"
"ወደ መነሻ ይዳስሱ"
"ወደ ላይ ይዳስሱ"
"ተጨማሪ አማራጮች"
+ "ሰብስብ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
"ፍለጋ"
+ "ፈልግ…"
"የፍለጋ ጥያቄ"
"መጠይቅ አጽዳ"
"መጠይቅ ያስረክቡ"
@@ -29,4 +33,7 @@
"ሁሉንም ይመልከቱ"
"ከ%s ጋር ያጋሩ"
"ከሚከተለው ጋር ያጋሩ"
+ "999+"
+ "በርቷል"
+ "ጠፍቷል"
diff --git a/eclipse-compile/appcompat/res/values-ar/strings.xml b/eclipse-compile/appcompat/res/values-ar/strings.xml
index 93dde04224..8db45d9585 100644
--- a/eclipse-compile/appcompat/res/values-ar/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ar/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"تم"
"التنقل إلى الشاشة الرئيسية"
"التنقل إلى أعلى"
"خيارات إضافية"
+ "تصغير"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
"بحث"
+ "بحث…"
"طلب البحث"
"محو طلب البحث"
"إرسال طلب البحث"
@@ -29,4 +33,7 @@
"عرض الكل"
"مشاركة مع %s"
"مشاركة مع"
+ "+999"
+ "تشغيل"
+ "إيقاف"
diff --git a/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml b/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml
new file mode 100644
index 0000000000..0561810be8
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml
@@ -0,0 +1,41 @@
+
+
+
+
+ "Hazırdır"
+ "Evə get"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Dağıt"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Axtarış"
+ "Axtarış..."
+ "Axtarış sorğusu"
+ "Sorğunu təmizlə"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Tətbiq seçin"
+ "Hamısına baxın"
+
+
+
+ "Bununla paylaşın"
+ "999+"
+ "AKTİV"
+ "DEAKTİV"
+
diff --git a/eclipse-compile/appcompat/res/values-bg/strings.xml b/eclipse-compile/appcompat/res/values-bg/strings.xml
index de3bde8f41..9eb350af3d 100644
--- a/eclipse-compile/appcompat/res/values-bg/strings.xml
+++ b/eclipse-compile/appcompat/res/values-bg/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Готово"
"Придвижване към „Начало“"
"Придвижване нагоре"
"Още опции"
+ "Свиване"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
"Търсене"
+ "Търсете…"
"Заявка за търсене"
"Изчистване на заявката"
"Изпращане на заявката"
@@ -29,4 +33,7 @@
"Вижте всички"
"Споделяне със: %s"
"Споделяне със:"
+ "999+"
+ "ВКЛ."
+ "ИЗКЛ."
diff --git a/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml b/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml
index 393240f939..abefc1fdb7 100644
--- a/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml
+++ b/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"সম্পন্ন হয়েছে"
"হোম এ নেভিগেট করুন"
"উপরের দিকে নেভিগেট করুন"
"আরো বিকল্প"
+ "সঙ্কুচিত করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"অনুসন্ধান করুন"
+ "অনুসন্ধান..."
"ক্যোয়ারী অনুসন্ধান করুন"
"ক্যোয়ারী সাফ করুন"
"ক্যোয়ারী জমা দিন"
@@ -29,4 +33,7 @@
"সবগুলো দেখুন"
"%s এর সাথে ভাগ করুন"
"এর সাথে ভাগ করুন"
+ "৯৯৯+"
+ "চালু"
+ "বন্ধ"
diff --git a/eclipse-compile/appcompat/res/values-ca/strings.xml b/eclipse-compile/appcompat/res/values-ca/strings.xml
index bfd4cb07a0..96700f603b 100644
--- a/eclipse-compile/appcompat/res/values-ca/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ca/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Fet"
"Navega a la pàgina d\'inici"
"Navega cap a dalt"
"Més opcions"
+ "Replega"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Cerca"
+ "Cerca..."
"Consulta de cerca"
"Esborra la consulta"
"Envia la consulta"
@@ -29,4 +33,7 @@
"Mostra\'ls tots"
"Comparteix amb %s"
"Comparteix amb"
+ "+999"
+ "ACTIVAT"
+ "DESACTIVAT"
diff --git a/eclipse-compile/appcompat/res/values-cs/strings.xml b/eclipse-compile/appcompat/res/values-cs/strings.xml
index 1465fdcd90..1a0fca0490 100644
--- a/eclipse-compile/appcompat/res/values-cs/strings.xml
+++ b/eclipse-compile/appcompat/res/values-cs/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Hotovo"
"Přejít na plochu"
"Přejít nahoru"
"Více možností"
+ "Sbalit"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
"Hledat"
+ "Vyhledat…"
"Vyhledávací dotaz"
"Smazat dotaz"
"Odeslat dotaz"
@@ -29,4 +33,7 @@
"Zobrazit vše"
"Sdílet pomocí %s"
"Sdílet pomocí"
+ "999+"
+ "ZAPNUTO"
+ "VYPNUTO"
diff --git a/eclipse-compile/appcompat/res/values-da/strings.xml b/eclipse-compile/appcompat/res/values-da/strings.xml
index b178513e30..ac43dfa3ff 100644
--- a/eclipse-compile/appcompat/res/values-da/strings.xml
+++ b/eclipse-compile/appcompat/res/values-da/strings.xml
@@ -14,19 +14,26 @@
limitations under the License.
-->
-
+
"Luk"
"Naviger hjem"
"Naviger op"
"Flere muligheder"
+ "Skjul"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Søg"
+ "Søg…"
"Søgeforespørgsel"
"Ryd forespørgslen"
"Indsend forespørgslen"
- "Stemmesøgning"
+ "Talesøgning"
"Vælg en app"
"Se alle"
"Del med %s"
"Del med"
+ "999+"
+ "TIL"
+ "FRA"
diff --git a/eclipse-compile/appcompat/res/values-de/strings.xml b/eclipse-compile/appcompat/res/values-de/strings.xml
index 6da4b71340..f0582b35bd 100644
--- a/eclipse-compile/appcompat/res/values-de/strings.xml
+++ b/eclipse-compile/appcompat/res/values-de/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Fertig"
"Zur Startseite"
"Nach oben"
"Weitere Optionen"
+ "Minimieren"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
"Suchen"
+ "Suchen…"
"Suchanfrage"
"Suchanfrage löschen"
"Suchanfrage senden"
@@ -29,4 +33,7 @@
"Alle ansehen"
"Freigeben für %s"
"Freigeben für"
+ "999+"
+ "An"
+ "Aus"
diff --git a/eclipse-compile/appcompat/res/values-el/strings.xml b/eclipse-compile/appcompat/res/values-el/strings.xml
index 4c0e286f8a..be378a914b 100644
--- a/eclipse-compile/appcompat/res/values-el/strings.xml
+++ b/eclipse-compile/appcompat/res/values-el/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Τέλος"
"Πλοήγηση στην αρχική σελίδα"
"Πλοήγηση προς τα επάνω"
"Περισσότερες επιλογές"
+ "Σύμπτυξη"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Αναζήτηση"
+ "Αναζήτηση…"
"Ερώτημα αναζήτησης"
"Διαγραφή ερωτήματος"
"Υποβολή ερωτήματος"
@@ -29,4 +33,7 @@
"Προβολή όλων"
"Κοινή χρήση με %s"
"Κοινή χρήση με"
+ "999+"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
diff --git a/eclipse-compile/appcompat/res/values-en-rAU/strings.xml b/eclipse-compile/appcompat/res/values-en-rAU/strings.xml
new file mode 100644
index 0000000000..1a5e3b085c
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-en-rAU/strings.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ "Done"
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Collapse"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Search"
+ "Search…"
+ "Search query"
+ "Clear query"
+ "Submit query"
+ "Voice search"
+ "Choose an app"
+ "See all"
+ "Share with %s"
+ "Share with"
+ "999+"
+ "ON"
+ "OFF"
+
diff --git a/eclipse-compile/appcompat/res/values-en-rGB/strings.xml b/eclipse-compile/appcompat/res/values-en-rGB/strings.xml
index 3ec0b0e9ee..1a5e3b085c 100644
--- a/eclipse-compile/appcompat/res/values-en-rGB/strings.xml
+++ b/eclipse-compile/appcompat/res/values-en-rGB/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
- "Finished"
+
+ "Done"
"Navigate home"
"Navigate up"
"More options"
+ "Collapse"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Search"
+ "Search…"
"Search query"
"Clear query"
"Submit query"
@@ -29,4 +33,7 @@
"See all"
"Share with %s"
"Share with"
+ "999+"
+ "ON"
+ "OFF"
diff --git a/eclipse-compile/appcompat/res/values-en-rIN/strings.xml b/eclipse-compile/appcompat/res/values-en-rIN/strings.xml
index 3ec0b0e9ee..1a5e3b085c 100644
--- a/eclipse-compile/appcompat/res/values-en-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-en-rIN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
- "Finished"
+
+ "Done"
"Navigate home"
"Navigate up"
"More options"
+ "Collapse"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Search"
+ "Search…"
"Search query"
"Clear query"
"Submit query"
@@ -29,4 +33,7 @@
"See all"
"Share with %s"
"Share with"
+ "999+"
+ "ON"
+ "OFF"
diff --git a/eclipse-compile/appcompat/res/values-es-rUS/strings.xml b/eclipse-compile/appcompat/res/values-es-rUS/strings.xml
index 6ab7942b95..aee3d7ef16 100644
--- a/eclipse-compile/appcompat/res/values-es-rUS/strings.xml
+++ b/eclipse-compile/appcompat/res/values-es-rUS/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Listo"
"Navegar a la página principal"
"Navegar hacia arriba"
"Más opciones"
+ "Contraer"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Búsqueda"
+ "Buscar…"
"Consulta de búsqueda"
"Eliminar la consulta"
"Enviar consulta"
@@ -29,4 +33,7 @@
"Ver todo"
"Compartir con %s"
"Compartir con"
+ "999+"
+ "ACTIVAR"
+ "DESACTIVAR"
diff --git a/eclipse-compile/appcompat/res/values-es/strings.xml b/eclipse-compile/appcompat/res/values-es/strings.xml
index ed15b35c44..93d65c91c4 100644
--- a/eclipse-compile/appcompat/res/values-es/strings.xml
+++ b/eclipse-compile/appcompat/res/values-es/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Listo"
"Ir a la pantalla de inicio"
"Desplazarse hacia arriba"
"Más opciones"
+ "Contraer"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Buscar"
+ "Buscar…"
"Consulta"
"Borrar consulta"
"Enviar consulta"
@@ -29,4 +33,7 @@
"Ver todo"
"Compartir con %s"
"Compartir con"
+ "+999"
+ "SÍ"
+ "NO"
diff --git a/eclipse-compile/appcompat/res/values-et-rEE/strings.xml b/eclipse-compile/appcompat/res/values-et-rEE/strings.xml
index 2ae925d407..46bc742cbc 100644
--- a/eclipse-compile/appcompat/res/values-et-rEE/strings.xml
+++ b/eclipse-compile/appcompat/res/values-et-rEE/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Valmis"
"Navigeerimine avaekraanile"
"Navigeerimine üles"
"Rohkem valikuid"
+ "Ahendamine"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Otsing"
+ "Otsige …"
"Otsingupäring"
"Päringu tühistamine"
"Päringu esitamine"
@@ -29,4 +33,7 @@
"Kuva kõik"
"Jagamine kasutajaga %s"
"Jagamine:"
+ "999+"
+ "SEES"
+ "VÄLJAS"
diff --git a/eclipse-compile/appcompat/res/values-eu-rES/strings.xml b/eclipse-compile/appcompat/res/values-eu-rES/strings.xml
index ee6ac4d2fa..270915b19b 100644
--- a/eclipse-compile/appcompat/res/values-eu-rES/strings.xml
+++ b/eclipse-compile/appcompat/res/values-eu-rES/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Eginda"
"Joan orri nagusira"
"Joan gora"
"Aukera gehiago"
+ "Tolestu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Bilatu"
+ "Bilatu…"
"Bilaketa-kontsulta"
"Garbitu kontsulta"
"Bidali kontsulta"
@@ -29,4 +33,7 @@
"Ikusi guztiak"
"Partekatu %s erabiltzailearekin"
"Partekatu hauekin"
+ "999+"
+ "AKTIBATUTA"
+ "DESAKTIBATUTA"
diff --git a/eclipse-compile/appcompat/res/values-fa/strings.xml b/eclipse-compile/appcompat/res/values-fa/strings.xml
index 8e10e92b1b..9cdb8c9f90 100644
--- a/eclipse-compile/appcompat/res/values-fa/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fa/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
- "انجام شد"
+
+ "تمام"
"پیمایش به صفحه اصلی"
"پیمایش به بالا"
"گزینههای بیشتر"
+ "کوچک کردن"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
"جستجو"
+ "جستجو…"
"عبارت جستجو"
"پاک کردن عبارت جستجو"
"ارسال عبارت جستجو"
@@ -29,4 +33,7 @@
"مشاهده همه"
"اشتراکگذاری با %s"
"اشتراکگذاری با"
+ "۹۹۹+"
+ "روشن"
+ "خاموش"
diff --git a/eclipse-compile/appcompat/res/values-fi/strings.xml b/eclipse-compile/appcompat/res/values-fi/strings.xml
index 6755ceaac2..4fe7751e5b 100644
--- a/eclipse-compile/appcompat/res/values-fi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fi/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Valmis"
"Siirry etusivulle"
"Siirry ylös"
"Lisää"
+ "Kutista"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Haku"
+ "Haku…"
"Hakulauseke"
"Tyhjennä kysely"
"Lähetä kysely"
@@ -29,4 +33,7 @@
"Näytä kaikki"
"Jakaminen: %s"
"Jakaminen:"
+ "999+"
+ "KÄYTÖSSÄ"
+ "POIS KÄYTÖSTÄ"
diff --git a/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml b/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml
index 417705a74f..7620046f9b 100644
--- a/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Terminé"
"Revenir à l\'accueil"
"Revenir en haut de la page"
"Plus d\'options"
+ "Réduire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Rechercher"
+ "Recherche en cours..."
"Requête de recherche"
"Effacer la requête"
"Envoyer la requête"
@@ -28,5 +32,8 @@
"Sélectionnez une application"
"Voir toutes les chaînes"
"Partager avec %s"
- "Partager avec"
+ "Partager"
+ ">999"
+ "ACTIVÉ"
+ "DÉSACTIVÉ"
diff --git a/eclipse-compile/appcompat/res/values-fr/strings.xml b/eclipse-compile/appcompat/res/values-fr/strings.xml
index 27b8f389ac..85124dd2ab 100644
--- a/eclipse-compile/appcompat/res/values-fr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fr/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"OK"
"Revenir à l\'accueil"
"Revenir en haut de la page"
"Plus d\'options"
+ "Réduire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Rechercher"
+ "Rechercher…"
"Requête de recherche"
"Effacer la requête"
"Envoyer la requête"
@@ -29,4 +33,7 @@
"Tout afficher"
"Partager avec %s"
"Partager avec"
+ ">999"
+ "ACTIVÉ"
+ "DÉSACTIVÉ"
diff --git a/eclipse-compile/appcompat/res/values-gl-rES/strings.xml b/eclipse-compile/appcompat/res/values-gl-rES/strings.xml
index 1d0d50de37..9ea2980318 100644
--- a/eclipse-compile/appcompat/res/values-gl-rES/strings.xml
+++ b/eclipse-compile/appcompat/res/values-gl-rES/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Feito"
"Ir á páxina de inicio"
"Desprazarse cara arriba"
"Máis opcións"
+ "Contraer"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Buscar"
+ "Buscar…"
"Consulta de busca"
"Borrar consulta"
"Enviar consulta"
@@ -29,4 +33,7 @@
"Ver todas"
"Compartir con %s"
"Compartir con"
+ ">999"
+ "ACTIVAR"
+ "DESACTIVAR"
diff --git a/eclipse-compile/appcompat/res/values-gu-rIN/strings.xml b/eclipse-compile/appcompat/res/values-gu-rIN/strings.xml
new file mode 100644
index 0000000000..94545cd9d1
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-gu-rIN/strings.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ "થઈ ગયું"
+ "હોમ પર નેવિગેટ કરો"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "સંકુચિત કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "શોધો"
+ "શોધો…"
+ "શોધ ક્વેરી"
+ "ક્વેરી સાફ કરો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બધું જુઓ"
+ "%s સાથે શેર કરો"
+ "આની સાથે શેર કરો"
+ "999+"
+ "ચાલુ"
+ "બંધ"
+
diff --git a/eclipse-compile/appcompat/res/values-h320dp/bools.xml b/eclipse-compile/appcompat/res/values-h320dp/bools.xml
new file mode 100644
index 0000000000..5576c18ae8
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-h320dp/bools.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ true
+
diff --git a/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml b/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml
index 442ea292a0..fd55289b2a 100644
--- a/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml
+++ b/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml
@@ -16,7 +16,7 @@
diff --git a/eclipse-compile/appcompat/res/values-hi/strings.xml b/eclipse-compile/appcompat/res/values-hi/strings.xml
index b236ebb521..5b2ad2b5d7 100644
--- a/eclipse-compile/appcompat/res/values-hi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hi/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"पूर्ण"
- "मुखपृष्ठ पर नेविगेट करें"
+ "मुख्यपृष्ठ पर नेविगेट करें"
"ऊपर नेविगेट करें"
"अधिक विकल्प"
+ "संक्षिप्त करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"खोजें"
+ "खोजा जा रहा है…"
"खोज क्वेरी"
"क्वेरी साफ़ करें"
"क्वेरी सबमिट करें"
@@ -29,4 +33,7 @@
"सभी देखें"
"%s के साथ साझा करें"
"इसके द्वारा साझा करें"
+ "999+"
+ "चालू"
+ "बंद"
diff --git a/eclipse-compile/appcompat/res/values-hr/strings.xml b/eclipse-compile/appcompat/res/values-hr/strings.xml
index 680e39f975..267fea7e07 100644
--- a/eclipse-compile/appcompat/res/values-hr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hr/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Gotovo"
"Idi na početnu"
"Idi gore"
"Dodatne opcije"
+ "Sažmi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Pretraživanje"
+ "Pretražite…"
"Upit za pretraživanje"
"Izbriši upit"
"Pošalji upit"
@@ -29,4 +33,7 @@
"Prikaži sve"
"Dijeljenje sa: %s"
"Dijeljenje sa"
+ "999+"
+ "UKLJUČENO"
+ "ISKLJUČENO"
diff --git a/eclipse-compile/appcompat/res/values-hu/strings.xml b/eclipse-compile/appcompat/res/values-hu/strings.xml
index 52dafb0e9f..ba241a68f8 100644
--- a/eclipse-compile/appcompat/res/values-hu/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hu/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Kész"
"Ugrás a főoldalra"
"Felfelé mozgatás"
"További lehetőségek"
+ "Összecsukás"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Keresés"
+ "Keresés…"
"Keresési lekérdezés"
"Lekérdezés törlése"
"Lekérdezés küldése"
@@ -29,4 +33,7 @@
"Összes megtekintése"
"Megosztás a következővel: %s"
"Megosztás a következővel:"
+ "999+"
+ "BE"
+ "KI"
diff --git a/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml b/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml
index 6c0ee27cc5..ae63668b8d 100644
--- a/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Կատարված է"
"Ուղղվել տուն"
"Ուղղվել վերև"
"Այլ ընտրանքներ"
+ "Թաքցնել"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Որոնել"
+ "Որոնում..."
"Որոնման հարցում"
"Մաքրել հարցումը"
"Ուղարկել հարցումը"
@@ -29,4 +33,7 @@
"Տեսնել բոլորը"
"Տարածել ըստ %s"
"Տարածել"
+ "999+"
+ "ՄԻԱՑՎԱԾ"
+ "ԱՆՋԱՏՎԱԾ"
diff --git a/eclipse-compile/appcompat/res/values-in/strings.xml b/eclipse-compile/appcompat/res/values-in/strings.xml
index 9481e83635..7ee37bb490 100644
--- a/eclipse-compile/appcompat/res/values-in/strings.xml
+++ b/eclipse-compile/appcompat/res/values-in/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Selesai"
"Navigasi ke beranda"
"Navigasi naik"
"Opsi lain"
+ "Ciutkan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Telusuri"
+ "Telusuri..."
"Kueri penelusuran"
"Hapus kueri"
"Kirim kueri"
@@ -29,4 +33,7 @@
"Lihat semua"
"Bagikan dengan %s"
"Bagikan dengan"
+ "999+"
+ "AKTIF"
+ "NONAKTIF"
diff --git a/eclipse-compile/appcompat/res/values-is-rIS/strings.xml b/eclipse-compile/appcompat/res/values-is-rIS/strings.xml
index 8cac57028b..acd8759ec2 100644
--- a/eclipse-compile/appcompat/res/values-is-rIS/strings.xml
+++ b/eclipse-compile/appcompat/res/values-is-rIS/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Lokið"
"Fara heim"
"Fara upp"
"Fleiri valkostir"
+ "Minnka"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Leita"
+ "Leita…"
"Leitarfyrirspurn"
"Hreinsa fyrirspurn"
"Senda fyrirspurn"
@@ -29,4 +33,7 @@
"Sjá allt"
"Deila með %s"
"Deila með"
+ "999+"
+ "KVEIKT"
+ "SLÖKKT"
diff --git a/eclipse-compile/appcompat/res/values-it/strings.xml b/eclipse-compile/appcompat/res/values-it/strings.xml
index a8b0f2c162..741c4a24f3 100644
--- a/eclipse-compile/appcompat/res/values-it/strings.xml
+++ b/eclipse-compile/appcompat/res/values-it/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Fine"
"Vai alla home page"
"Vai in alto"
"Altre opzioni"
+ "Comprimi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Cerca"
+ "Cerca…"
"Query di ricerca"
"Cancella query"
"Invia query"
@@ -29,4 +33,7 @@
"Visualizza tutte"
"Condividi con %s"
"Condividi con"
+ "999+"
+ "ON"
+ "OFF"
diff --git a/eclipse-compile/appcompat/res/values-iw/strings.xml b/eclipse-compile/appcompat/res/values-iw/strings.xml
index 1af07df88e..93ece4bd4e 100644
--- a/eclipse-compile/appcompat/res/values-iw/strings.xml
+++ b/eclipse-compile/appcompat/res/values-iw/strings.xml
@@ -14,19 +14,26 @@
limitations under the License.
-->
-
+
"בוצע"
"נווט לדף הבית"
"נווט למעלה"
"עוד אפשרויות"
+ "כווץ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"חפש"
+ "חפש…"
"שאילתת חיפוש"
"מחק שאילתה"
"שלח שאילתה"
"חיפוש קולי"
"בחר אפליקציה"
- "ראה הכול"
+ "ראה הכל"
"שתף עם %s"
"שתף עם"
+ "999+"
+ "פועל"
+ "כבוי"
diff --git a/eclipse-compile/appcompat/res/values-ja/strings.xml b/eclipse-compile/appcompat/res/values-ja/strings.xml
index 659358a74c..ddcb57aa19 100644
--- a/eclipse-compile/appcompat/res/values-ja/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ja/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"完了"
"ホームへ移動"
"上へ移動"
"その他のオプション"
+ "折りたたむ"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
"検索"
+ "検索…"
"検索キーワード"
"検索キーワードを削除"
"検索キーワードを送信"
@@ -29,4 +33,7 @@
"すべて表示"
"%sと共有"
"共有"
+ "999+"
+ "ON"
+ "OFF"
diff --git a/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml b/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml
index 0c430b1c44..e796818cd4 100644
--- a/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"დასრულდა"
"მთავარზე ნავიგაცია"
"ზემოთ ნავიგაცია"
"მეტი ვარიანტები"
+ "აკეცვა"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"ძიება"
+ "ძიება..."
"ძიების მოთხოვნა"
"მოთხოვნის გასუფთავება"
"მოთხოვნის გადაგზავნა"
@@ -29,4 +33,7 @@
"ყველას ნახვა"
"%s-თან გაზიარება"
"გაზიარება:"
+ "999+"
+ "ჩართულია"
+ "გამორთულია"
diff --git a/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml b/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml
index d3ad9e8753..8d02798d67 100644
--- a/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml
+++ b/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
- "Орындалды"
+
+ "Дайын"
"Негізгі бетте қозғалу"
"Жоғары қозғалу"
"Басқа опциялар"
+ "Тасалау"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Іздеу"
+ "Іздеу…"
"Сұрақты іздеу"
"Сұрақты жою"
"Сұрақты жіберу"
@@ -29,4 +33,7 @@
"Барлығын көру"
"%s бөлісу"
"Бөлісу"
+ "999+"
+ "ҚОСУЛЫ"
+ "ӨШІРУЛІ"
diff --git a/eclipse-compile/appcompat/res/values-km-rKH/strings.xml b/eclipse-compile/appcompat/res/values-km-rKH/strings.xml
index df78372589..aa4cd0381b 100644
--- a/eclipse-compile/appcompat/res/values-km-rKH/strings.xml
+++ b/eclipse-compile/appcompat/res/values-km-rKH/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"រួចរាល់"
"រកមើលទៅដើម"
"រកមើលឡើងលើ"
"ជម្រើសច្រើនទៀត"
+ "បង្រួម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"ស្វែងរក"
+ "ស្វែងរក…"
"ស្វែងរកសំណួរ"
"សម្អាតសំណួរ"
"ដាក់ស្នើសំណួរ"
@@ -29,4 +33,7 @@
"មើលទាំងអស់"
"ចែករំលែកជាមួយ %s"
"ចែករំលែកជាមួយ"
+ "999+"
+ "បើក"
+ "បិទ"
diff --git a/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml b/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml
index 6af7a394cf..cefbee1004 100644
--- a/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"ಮುಗಿದಿದೆ"
"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಸಂಕುಚಿಸು"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"ಹುಡುಕು"
+ "ಹುಡುಕಿ…"
"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
@@ -29,4 +33,7 @@
"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "999+"
+ "ಆನ್"
+ "ಆಫ್"
diff --git a/eclipse-compile/appcompat/res/values-ko/strings.xml b/eclipse-compile/appcompat/res/values-ko/strings.xml
index d331975847..4af5c11a60 100644
--- a/eclipse-compile/appcompat/res/values-ko/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ko/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"완료"
"홈 탐색"
"위로 탐색"
"옵션 더보기"
+ "접기"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"검색"
+ "검색..."
"검색어"
"검색어 삭제"
"검색어 보내기"
@@ -29,4 +33,7 @@
"전체 보기"
"%s와(과) 공유"
"공유 대상"
+ "999+"
+ "사용"
+ "사용 안함"
diff --git a/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml b/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml
index 52abd9f0d8..6a948487f3 100644
--- a/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Даяр"
"Үйгө багыттоо"
"Жогору"
"Көбүрөөк мүмкүнчүлүктөр"
+ "Жыйнап коюу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Издөө"
+ "Издөө…"
"Издөө талаптары"
"Талаптарды тазалоо"
"Талап жөнөтүү"
@@ -29,4 +33,7 @@
"Бардыгын көрүү"
"%s аркылуу бөлүшүү"
"Бөлүшүү"
+ "999+"
+ "КҮЙҮК"
+ "ӨЧҮК"
diff --git a/eclipse-compile/appcompat/res/values-land/dimens_material.xml b/eclipse-compile/appcompat/res/values-land/dimens_material.xml
index 08c4b0d729..80b7463751 100644
--- a/eclipse-compile/appcompat/res/values-land/dimens_material.xml
+++ b/eclipse-compile/appcompat/res/values-land/dimens_material.xml
@@ -17,8 +17,6 @@
48dp
-
- 0dp
14dp
diff --git a/eclipse-compile/appcompat/res/values-large/dimens.xml b/eclipse-compile/appcompat/res/values-large/dimens.xml
index de1cefccce..16bb4f6876 100644
--- a/eclipse-compile/appcompat/res/values-large/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-large/dimens.xml
@@ -22,17 +22,12 @@
showAsAction="ifRoom" items can fit. "always" items can override this. -->
4
-
- - 60%
-
- - 90%
-
- - 60%
-
- - 90%
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+
+ - 55%
+ - 80%
diff --git a/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml b/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml
new file mode 100644
index 0000000000..57ebdbacd6
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/layout/abc_simple_dropdown_hint.xml b/eclipse-compile/appcompat/res/values-ldrtl-v23/styles_base.xml
similarity index 65%
rename from eclipse-compile/appcompat/res/layout/abc_simple_dropdown_hint.xml
rename to eclipse-compile/appcompat/res/values-ldrtl-v23/styles_base.xml
index 8326b5ccfa..cba56bdaff 100644
--- a/eclipse-compile/appcompat/res/layout/abc_simple_dropdown_hint.xml
+++ b/eclipse-compile/appcompat/res/values-ldrtl-v23/styles_base.xml
@@ -14,10 +14,9 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml b/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
index 7eb42ea8e9..c14b891313 100644
--- a/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"ແລ້ວໆ"
"ກັບໄປໜ້າຫຼັກ"
"ຂຶ້ນເທິງ"
"ໂຕເລືອກອື່ນ"
+ "ຫຍໍ້"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"ຊອກຫາ"
+ "ຊອກຫາ"
"ຊອກຫາ"
"ລຶບຂໍ້ຄວາມຊອກຫາ"
"ສົ່ງການຊອກຫາ"
@@ -29,4 +33,7 @@
"ເບິ່ງທັງຫມົດ"
"ແບ່ງປັນກັບ %s"
"ແບ່ງປັນກັບ"
+ "999+"
+ "ເປີດ"
+ "ປິດ"
diff --git a/eclipse-compile/appcompat/res/values-lt/strings.xml b/eclipse-compile/appcompat/res/values-lt/strings.xml
index c4738a73dc..1ad19cc8ec 100644
--- a/eclipse-compile/appcompat/res/values-lt/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lt/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Atlikta"
"Eiti į pagrindinį puslapį"
"Eiti į viršų"
"Daugiau parinkčių"
+ "Sutraukti"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Paieška"
+ "Ieškoti..."
"Paieškos užklausa"
"Išvalyti užklausą"
"Pateikti užklausą"
@@ -29,4 +33,7 @@
"Peržiūrėti viską"
"Bendrinti naudojant „%s“"
"Bendrinti naudojant"
+ "999+"
+ "ĮJUNGTI"
+ "IŠJUNGTI"
diff --git a/eclipse-compile/appcompat/res/values-lv/strings.xml b/eclipse-compile/appcompat/res/values-lv/strings.xml
index c33858a14c..eddaf6ab46 100644
--- a/eclipse-compile/appcompat/res/values-lv/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lv/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Gatavs"
"Pārvietoties uz sākuma ekrānu"
"Pārvietoties augšup"
"Vairāk opciju"
+ "Sakļaut"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
"Meklēt"
+ "Meklējiet…"
"Meklēšanas vaicājums"
"Notīrīt vaicājumu"
"Iesniegt vaicājumu"
@@ -29,4 +33,7 @@
"Skatīt visu"
"Kopīgot ar %s"
"Kopīgot ar:"
+ "999+"
+ "IESLĒGTS"
+ "IZSLĒGTS"
diff --git a/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml b/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml
index 632728a223..b6476e8a4a 100644
--- a/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml
@@ -14,13 +14,19 @@
limitations under the License.
-->
-
+
"Готово"
"Движи се кон дома"
"Движи се нагоре"
"Повеќе опции"
+ "Собери"
+
+
+
+ "%1$s, %2$s, %3$s"
"Пребарај"
+ "Пребарување…"
"Пребарај барање"
"Исчисти барање"
"Поднеси барање"
@@ -31,4 +37,7 @@
"Сподели со"
+ "999+"
+ "ВКЛУЧЕНО"
+ "ИСКЛУЧЕНО"
diff --git a/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml b/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
index 2fb368e09e..ffbb0194e0 100644
--- a/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
@@ -14,19 +14,26 @@
limitations under the License.
-->
-
+
"പൂർത്തിയാക്കി"
"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
"കൂടുതല് ഓപ്ഷനുകള്"
+ "ചുരുക്കുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"തിരയൽ"
+ "തിരയുക…"
"തിരയൽ അന്വേഷണം"
"അന്വേഷണം മായ്ക്കുക"
"അന്വേഷണം സമർപ്പിക്കുക"
- "വോയ്സ് തിരയൽ"
+ "ശബ്ദ തിരയൽ"
"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
"എല്ലാം കാണുക"
"%s എന്നതുമായി പങ്കിടുക"
"ഇവരുമായി പങ്കിടുക"
+ "999+"
+ "ഓൺ"
+ "ഓഫ്"
diff --git a/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml b/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml
index 203e9596c3..d47eb2d6db 100644
--- a/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Дууссан"
"Нүүр хуудас руу шилжих"
"Дээш шилжих"
"Нэмэлт сонголтууд"
+ "Хумих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Хайх"
+ "Хайх..."
"Хайх асуулга"
"Асуулгыг цэвэрлэх"
"Асуулгыг илгээх"
@@ -29,4 +33,7 @@
"Бүгдийг харах"
"%s-тай хуваалцах"
"Хуваалцах"
+ "999+"
+ "ИДЭВХТЭЙ"
+ "ИДЭВХГҮЙ"
diff --git a/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml b/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml
index 41271d471f..c4f8eaf28d 100644
--- a/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"पूर्ण झाले"
"मुख्यपृष्ठ नेव्हिगेट करा"
"वर नेव्हिगेट करा"
"अधिक पर्याय"
+ "संक्षिप्त करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"शोध"
+ "शोधा…"
"शोध क्वेरी"
"क्वेरी स्पष्ट करा"
"क्वेरी सबमिट करा"
@@ -29,4 +33,7 @@
"सर्व पहा"
"%s सह सामायिक करा"
"यांच्यासह सामायिक करा"
+ "999+"
+ "चालू"
+ "बंद"
diff --git a/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml b/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml
index b1740682dd..fe13ce2bc9 100644
--- a/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Selesai"
"Navigasi skrin utama"
"Navigasi ke atas"
"Lagi pilihan"
+ "Runtuhkan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Cari"
+ "Cari…"
"Pertanyaan carian"
"Kosongkan pertanyaan"
"Serah pertanyaan"
@@ -29,4 +33,7 @@
"Lihat semua"
"Kongsi dengan %s"
"Kongsi dengan"
+ "999+"
+ "HIDUP"
+ "MATI"
diff --git a/eclipse-compile/appcompat/res/values-my-rMM/strings.xml b/eclipse-compile/appcompat/res/values-my-rMM/strings.xml
index d487f5070c..1725758be8 100644
--- a/eclipse-compile/appcompat/res/values-my-rMM/strings.xml
+++ b/eclipse-compile/appcompat/res/values-my-rMM/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"ပြီးဆုံးပါပြီ"
"မူလနေရာကို သွားရန်"
"အပေါ်သို့သွားရန်"
"ပိုမိုရွေးချယ်စရာများ"
+ "ခေါက်ရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
"ရှာဖွေရန်"
+ "ရှာဖွေပါ..."
"ရှာစရာ အချက်အလက်နေရာ"
"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
@@ -29,4 +33,7 @@
"အားလုံးကို ကြည့်ရန်"
"%s ကို မျှဝေပါရန်"
"မျှဝေဖို့ ရွေးပါ"
+ "၉၉၉+"
+ "ဖွင့်"
+ "ပိတ်"
diff --git a/eclipse-compile/appcompat/res/values-nb/strings.xml b/eclipse-compile/appcompat/res/values-nb/strings.xml
index 6630acf7b4..05dbd90bde 100644
--- a/eclipse-compile/appcompat/res/values-nb/strings.xml
+++ b/eclipse-compile/appcompat/res/values-nb/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Ferdig"
"Gå til startsiden"
"Gå opp"
"Flere alternativer"
+ "Skjul"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
"Søk"
+ "Søk …"
"Søkeord"
"Slett søket"
"Utfør søket"
@@ -29,4 +33,7 @@
"Se alle"
"Del med %s"
"Del med"
+ "999+"
+ "PÅ"
+ "AV"
diff --git a/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml b/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml
index 69d10dca25..31990d9577 100644
--- a/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"सम्पन्न भयो"
"गृह खोज्नुहोस्"
"माथि खोज्नुहोस्"
"थप विकल्पहरू"
+ "संक्षिप्त पार्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"खोज्नुहोस्"
+ "खोज्नुहोस्..."
"जिज्ञासाको खोज गर्नुहोस्"
"प्रश्न हटाउनुहोस्"
"जिज्ञासा पेस गर्नुहोस्"
@@ -29,4 +33,7 @@
"सबै हेर्नुहोस्"
"%s सँग साझेदारी गर्नुहोस्"
"साझेदारी गर्नुहोस्..."
+ "९९९+"
+ "सक्रिय गर्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
diff --git a/eclipse-compile/appcompat/res/values-nl/strings.xml b/eclipse-compile/appcompat/res/values-nl/strings.xml
index 1375f9e358..da5e4543cd 100644
--- a/eclipse-compile/appcompat/res/values-nl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-nl/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Gereed"
"Navigeren naar startpositie"
"Omhoog navigeren"
"Meer opties"
+ "Samenvouwen"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Zoeken"
+ "Zoeken…"
"Zoekopdracht"
"Zoekopdracht wissen"
"Zoekopdracht verzenden"
@@ -29,4 +33,7 @@
"Alles weergeven"
"Delen met %s"
"Delen met"
+ "999+"
+ "AAN"
+ "UIT"
diff --git a/eclipse-compile/appcompat/res/values-pa-rIN/strings.xml b/eclipse-compile/appcompat/res/values-pa-rIN/strings.xml
new file mode 100644
index 0000000000..99edca1fb8
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-pa-rIN/strings.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ "ਹੋ ਗਿਆ"
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਖੋਜੋ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਸਭ ਦੇਖੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "999+"
+ "ਤੇ"
+ "ਬੰਦ"
+
diff --git a/eclipse-compile/appcompat/res/values-pl/strings.xml b/eclipse-compile/appcompat/res/values-pl/strings.xml
index aa1ba79bc0..a7dac4ec4a 100644
--- a/eclipse-compile/appcompat/res/values-pl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pl/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Gotowe"
"Przejdź do strony głównej"
"Przejdź wyżej"
"Więcej opcji"
+ "Zwiń"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Szukaj"
+ "Szukaj…"
"Wyszukiwane hasło"
"Wyczyść zapytanie"
"Wyślij zapytanie"
@@ -29,4 +33,7 @@
"Zobacz wszystkie"
"Udostępnij dla %s"
"Udostępnij dla"
+ "999+"
+ "WŁ."
+ "WYŁ."
diff --git a/eclipse-compile/appcompat/res/values-pt-rBR/strings.xml b/eclipse-compile/appcompat/res/values-pt-rBR/strings.xml
new file mode 100644
index 0000000000..cc7a7f27ae
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-pt-rBR/strings.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ "Concluído"
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Recolher"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Pesquisar"
+ "Pesquisar..."
+ "Consulta de pesquisa"
+ "Limpar consulta"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Selecione um app"
+ "Ver tudo"
+ "Compartilhar com %s"
+ "Compartilhar com"
+ "999+"
+ "ATIVAR"
+ "DESATIVAR"
+
diff --git a/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml b/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml
index 0d63f5f30a..a5c615a01f 100644
--- a/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Concluído"
"Navegar para a página inicial"
"Navegar para cima"
"Mais opções"
+ "Reduzir"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Pesquisar"
+ "Pesquisar..."
"Consulta de pesquisa"
"Limpar consulta"
"Enviar consulta"
@@ -29,4 +33,7 @@
"Ver tudo"
"Partilhar com %s"
"Partilhar com"
+ "+999"
+ "ATIVADO"
+ "DESATIVADO"
diff --git a/eclipse-compile/appcompat/res/values-pt/strings.xml b/eclipse-compile/appcompat/res/values-pt/strings.xml
index 88b09ea6a5..cc7a7f27ae 100644
--- a/eclipse-compile/appcompat/res/values-pt/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pt/strings.xml
@@ -14,19 +14,26 @@
limitations under the License.
-->
-
+
"Concluído"
"Navegar para a página inicial"
"Navegar para cima"
"Mais opções"
+ "Recolher"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Pesquisar"
+ "Pesquisar..."
"Consulta de pesquisa"
"Limpar consulta"
"Enviar consulta"
"Pesquisa por voz"
- "Selecione um aplicativo"
+ "Selecione um app"
"Ver tudo"
"Compartilhar com %s"
"Compartilhar com"
+ "999+"
+ "ATIVAR"
+ "DESATIVAR"
diff --git a/eclipse-compile/appcompat/res/values-ro/strings.xml b/eclipse-compile/appcompat/res/values-ro/strings.xml
index 36a7b31fbc..7ad88c7b4b 100644
--- a/eclipse-compile/appcompat/res/values-ro/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ro/strings.xml
@@ -14,19 +14,26 @@
limitations under the License.
-->
-
+
"Terminat"
"Navigați la ecranul de pornire"
"Navigați în sus"
"Mai multe opțiuni"
+ "Restrângeți"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Căutați"
+ "Căutați…"
"Interogare de căutare"
"Ștergeți interogarea"
"Trimiteți interogarea"
"Căutare vocală"
- "Alegeți o aplicaţie"
+ "Alegeți o aplicație"
"Afișați-le pe toate"
"Trimiteți la %s"
"Trimiteți la"
+ "˃999"
+ "ACTIVAȚI"
+ "DEZACTIVAȚI"
diff --git a/eclipse-compile/appcompat/res/values-ru/strings.xml b/eclipse-compile/appcompat/res/values-ru/strings.xml
index 5c22e5e809..3243c67a0b 100644
--- a/eclipse-compile/appcompat/res/values-ru/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ru/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Готово"
"Перейти на главный экран"
"Перейти вверх"
"Другие параметры"
+ "Свернуть"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Поиск"
+ "Поиск"
"Поисковый запрос"
"Удалить запрос"
"Отправить запрос"
@@ -29,4 +33,7 @@
"Показать все"
"Открыть доступ пользователю %s"
"Открыть доступ"
+ ">999"
+ "ВКЛ."
+ "ОТКЛ."
diff --git a/eclipse-compile/appcompat/res/values-si-rLK/strings.xml b/eclipse-compile/appcompat/res/values-si-rLK/strings.xml
index a6809c3c4f..872118bf9d 100644
--- a/eclipse-compile/appcompat/res/values-si-rLK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-si-rLK/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"අවසාන වූ"
"ගෙදරට සංචාලනය කරන්න"
"ඉහලට සංචාලනය කරන්න"
"තවත් විකල්ප"
+ "හකුළන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"සෙවීම"
+ "සොයන්න..."
"සෙවුම් විමසුම"
"විමසුම හිස් කරන්න"
"විමසුම යොමු කරන්න"
@@ -29,4 +33,7 @@
"සියල්ල බලන්න"
"%s සමඟ බෙදාගන්න"
"සමඟ බෙදාගන්න"
+ "999+"
+ "ක්රියාත්මකයි"
+ "ක්රියාවිරහිතයි"
diff --git a/eclipse-compile/appcompat/res/values-sk/strings.xml b/eclipse-compile/appcompat/res/values-sk/strings.xml
index 253f3e5dde..5485a4d46c 100644
--- a/eclipse-compile/appcompat/res/values-sk/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sk/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Hotovo"
"Prejsť na plochu"
"Prejsť hore"
"Ďalšie možnosti"
+ "Zbaliť"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Hľadať"
+ "Vyhľadať…"
"Vyhľadávací dopyt"
"Vymazať dopyt"
"Odoslať dopyt"
@@ -29,4 +33,7 @@
"Zobraziť všetko"
"Zdieľať pomocou %s"
"Zdieľať pomocou"
+ "999+"
+ "ZAP."
+ "VYP."
diff --git a/eclipse-compile/appcompat/res/values-sl/strings.xml b/eclipse-compile/appcompat/res/values-sl/strings.xml
index 8e3e23e989..6ed7d50291 100644
--- a/eclipse-compile/appcompat/res/values-sl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sl/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Končano"
"Krmarjenje domov"
"Krmarjenje navzgor"
"Več možnosti"
+ "Strni"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Iskanje"
+ "Iskanje …"
"Iskalna poizvedba"
"Izbris poizvedbe"
"Pošiljanje poizvedbe"
@@ -29,4 +33,7 @@
"Pokaži vse"
"Deljenje z:"
"Deljenje z"
+ "999+"
+ "VKLOPLJENO"
+ "IZKLOPLJENO"
diff --git a/eclipse-compile/appcompat/res/values-sq-rAL/strings.xml b/eclipse-compile/appcompat/res/values-sq-rAL/strings.xml
new file mode 100644
index 0000000000..6971185c8f
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-sq-rAL/strings.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ "U krye!"
+ "Orientohu për në shtëpi"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "Shpalos"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Kërko"
+ "Kërko..."
+ "Kërko pyetjen"
+ "Pastro pyetjen"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Zgjidh një aplikacion"
+ "Shikoji të gjitha"
+ "Shpërnda publikisht me %s"
+ "Shpërnda publikisht me"
+ "999+"
+ "AKTIV"
+ "JOAKTIV"
+
diff --git a/eclipse-compile/appcompat/res/values-sr/strings.xml b/eclipse-compile/appcompat/res/values-sr/strings.xml
index 213c9390aa..545e94dc27 100644
--- a/eclipse-compile/appcompat/res/values-sr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sr/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Готово"
"Одлазак на Почетну"
"Кретање нагоре"
"Још опција"
+ "Скупи"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Претрага"
+ "Претражите..."
"Упит за претрагу"
"Брисање упита"
"Слање упита"
@@ -29,4 +33,7 @@
"Прикажи све"
"Дели са апликацијом %s"
"Дели са"
+ ">999"
+ "УКЉУЧИ"
+ "ИСКЉУЧИ"
diff --git a/eclipse-compile/appcompat/res/values-sv/strings.xml b/eclipse-compile/appcompat/res/values-sv/strings.xml
index 49c7a5ddfd..037049e270 100644
--- a/eclipse-compile/appcompat/res/values-sv/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sv/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Klart"
"Visa startsidan"
"Navigera uppåt"
"Fler alternativ"
+ "Komprimera"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Sök"
+ "Sök …"
"Sökfråga"
"Ta bort frågan"
"Skicka fråga"
@@ -29,4 +33,7 @@
"Visa alla"
"Dela med %s"
"Dela med"
+ ">999"
+ "PÅ"
+ "AV"
diff --git a/eclipse-compile/appcompat/res/values-sw/strings.xml b/eclipse-compile/appcompat/res/values-sw/strings.xml
index 6455ba5c74..a858dd5b91 100644
--- a/eclipse-compile/appcompat/res/values-sw/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sw/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Nimemaliza"
"Nenda mwanzo"
"Nenda juu"
"Chaguo zaidi"
+ "Kunja"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Tafuta"
+ "Tafuta…"
"Hoja ya utafutaji"
"Futa hoja"
"Wasilisha hoja"
@@ -29,4 +33,7 @@
"Angalia zote"
"Shiriki na %s"
"Shiriki na:"
+ "999+"
+ "IMEWASHWA"
+ "IMEZIMWA"
diff --git a/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml b/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml
index e221b50164..a4bc455478 100644
--- a/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml
@@ -27,14 +27,11 @@
16dp
64dp
-
- 4dp
24dp
-
-
- 8dp
-
- 18dp
+
+ 8dp
+
+ 8dp
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml b/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml
index 4d7d94ee1a..6a18681128 100644
--- a/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"முடிந்தது"
"முகப்பிற்கு வழிசெலுத்து"
"மேலே வழிசெலுத்து"
"மேலும் விருப்பங்கள்"
+ "சுருக்கு"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"தேடு"
+ "தேடு..."
"தேடல் வினவல்"
"வினவலை அழி"
"வினவலைச் சமர்ப்பி"
@@ -29,4 +33,7 @@
"எல்லாம் காட்டு"
"%s உடன் பகிர்"
"இதனுடன் பகிர்"
+ "999+"
+ "இயக்கு"
+ "முடக்கு"
diff --git a/eclipse-compile/appcompat/res/values-te-rIN/strings.xml b/eclipse-compile/appcompat/res/values-te-rIN/strings.xml
index f6b17750a4..245c099caa 100644
--- a/eclipse-compile/appcompat/res/values-te-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-te-rIN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"పూర్తయింది"
"హోమ్కు నావిగేట్ చేయండి"
"పైకి నావిగేట్ చేయండి"
"మరిన్ని ఎంపికలు"
+ "కుదించండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"శోధించు"
+ "శోధించు..."
"ప్రశ్న శోధించండి"
"ప్రశ్నను క్లియర్ చేయి"
"ప్రశ్నని సమర్పించు"
@@ -29,4 +33,7 @@
"అన్నీ చూడండి"
"%sతో భాగస్వామ్యం చేయి"
"వీరితో భాగస్వామ్యం చేయి"
+ "999+"
+ "ఆన్ చేయి"
+ "ఆఫ్ చేయి"
diff --git a/eclipse-compile/appcompat/res/values-th/strings.xml b/eclipse-compile/appcompat/res/values-th/strings.xml
index 275dc57139..abe75249ea 100644
--- a/eclipse-compile/appcompat/res/values-th/strings.xml
+++ b/eclipse-compile/appcompat/res/values-th/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"เสร็จสิ้น"
"นำทางไปหน้าแรก"
"นำทางขึ้น"
"ตัวเลือกอื่น"
+ "ยุบ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"ค้นหา"
+ "ค้นหา…"
"ข้อความค้นหา"
"ล้างข้อความค้นหา"
"ส่งข้อความค้นหา"
@@ -29,4 +33,7 @@
"ดูทั้งหมด"
"แชร์กับ %s"
"แชร์กับ"
+ "999+"
+ "เปิด"
+ "ปิด"
diff --git a/eclipse-compile/appcompat/res/values-tl/strings.xml b/eclipse-compile/appcompat/res/values-tl/strings.xml
index e0705d6b48..91e6c406cf 100644
--- a/eclipse-compile/appcompat/res/values-tl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-tl/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Tapos na"
"Mag-navigate patungo sa home"
"Mag-navigate pataas"
"Higit pang mga opsyon"
+ "I-collapse"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Maghanap"
+ "Maghanap…"
"Query sa paghahanap"
"I-clear ang query"
"Isumite ang query"
@@ -29,4 +33,7 @@
"Tingnan lahat"
"Ibahagi sa/kay %s"
"Ibahagi sa/kay"
+ "999+"
+ "I-ON"
+ "I-OFF"
diff --git a/eclipse-compile/appcompat/res/values-tr/strings.xml b/eclipse-compile/appcompat/res/values-tr/strings.xml
index 61cb966f8a..7d2f0b7015 100644
--- a/eclipse-compile/appcompat/res/values-tr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-tr/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Tamamlandı"
"Ana ekrana git"
"Yukarı git"
"Diğer seçenekler"
+ "Daralt"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Ara"
+ "Ara…"
"Arama sorgusu"
"Sorguyu temizle"
"Sorguyu gönder"
@@ -29,4 +33,7 @@
"Tümünü göster"
"%s ile paylaş"
"Şununla paylaş"
+ "999+"
+ "AÇ"
+ "KAPAT"
diff --git a/eclipse-compile/appcompat/res/values-uk/strings.xml b/eclipse-compile/appcompat/res/values-uk/strings.xml
index f670140e4b..0981ac3602 100644
--- a/eclipse-compile/appcompat/res/values-uk/strings.xml
+++ b/eclipse-compile/appcompat/res/values-uk/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Готово"
"Перейти на головний"
"Перейти вгору"
"Інші опції"
+ "Згорнути"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Пошук"
+ "Пошук…"
"Пошуковий запит"
"Очистити запит"
"Надіслати запит"
@@ -29,4 +33,7 @@
"Переглянути всі"
"Надіслати через %s"
"Надіслати через"
+ "999+"
+ "УВІМК."
+ "ВИМК."
diff --git a/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml b/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml
index f209747ceb..0ab295faca 100644
--- a/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"ہو گیا"
"ہوم پر نیویگیٹ کریں"
"اوپر نیویگیٹ کریں"
"مزید اختیارات"
+ "سکیڑیں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"تلاش کریں"
+ "تلاش کریں…"
"استفسار تلاش کریں"
"استفسار صاف کریں"
"استفسار جمع کرائیں"
@@ -29,4 +33,7 @@
"سبھی دیکھیں"
"%s کے ساتھ اشتراک کریں"
"اشتراک کریں مع"
+ "999+"
+ "آن"
+ "آف"
diff --git a/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml b/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml
index 84d95413ce..7624e8b5ed 100644
--- a/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml
+++ b/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Tayyor"
"Boshiga o‘tish"
"Yuqoriga o‘tish"
"Qo‘shimcha sozlamalar"
- "Izlash"
+ "Yig‘ish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Qidirish"
+ "Qidirish…"
"So‘rovni izlash"
"So‘rovni tozalash"
"So‘rov yaratish"
@@ -31,4 +35,7 @@
"Bo‘lishish:"
+ "999+"
+ "YONIQ"
+ "O‘CHIQ"
diff --git a/eclipse-compile/appcompat/res/values-v11/styles_base.xml b/eclipse-compile/appcompat/res/values-v11/styles_base.xml
index 0bbf7e3dc3..f65132058b 100644
--- a/eclipse-compile/appcompat/res/values-v11/styles_base.xml
+++ b/eclipse-compile/appcompat/res/values-v11/styles_base.xml
@@ -21,11 +21,7 @@
variants are for direct use or use as parent styles by the app. -->
-
+
diff --git a/eclipse-compile/appcompat/res/values-v11/styles_base_text.xml b/eclipse-compile/appcompat/res/values-v11/styles_base_text.xml
index 4cf49666c3..422779412a 100644
--- a/eclipse-compile/appcompat/res/values-v11/styles_base_text.xml
+++ b/eclipse-compile/appcompat/res/values-v11/styles_base_text.xml
@@ -25,7 +25,7 @@
diff --git a/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml b/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml
index 918ba0b4dd..b3753b793a 100644
--- a/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml
+++ b/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml
@@ -47,7 +47,12 @@
- 8dp
-
+
+
@@ -65,10 +70,6 @@
- viewStart
-
-
@@ -77,4 +78,4 @@
- viewStart
-
\ No newline at end of file
+
diff --git a/eclipse-compile/appcompat/res/values-v21/styles_base.xml b/eclipse-compile/appcompat/res/values-v21/styles_base.xml
index 241cb04c59..bf21d77460 100644
--- a/eclipse-compile/appcompat/res/values-v21/styles_base.xml
+++ b/eclipse-compile/appcompat/res/values-v21/styles_base.xml
@@ -113,13 +113,7 @@
-
-
-
+
@@ -172,12 +166,18 @@
parent="android:TextAppearance.Material.SearchResult.Subtitle">
-
+
-
+
+
+
@@ -192,6 +192,8 @@
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/values-v21/themes_base.xml b/eclipse-compile/appcompat/res/values-v21/themes_base.xml
index 06b33b1f21..6c2aa263b4 100644
--- a/eclipse-compile/appcompat/res/values-v21/themes_base.xml
+++ b/eclipse-compile/appcompat/res/values-v21/themes_base.xml
@@ -46,13 +46,10 @@
- ?android:attr/actionBarSize
- ?android:attr/actionBarDivider
- - ?android:attr/actionBarItemBackground
+ - @drawable/abc_action_bar_item_background_material
- ?android:attr/actionButtonStyle
- - ?android:attr/actionMenuTextColor
- - ?android:attr/actionMenuTextAppearance
- ?android:attr/actionModeBackground
- ?android:attr/actionModeCloseDrawable
- - ?android:attr/actionModeShareDrawable
- ?android:attr/actionOverflowButtonStyle
- ?android:attr/homeAsUpIndicator
@@ -72,12 +69,10 @@
- ?android:attr/listChoiceBackgroundIndicator
- - ?android:attr/autoCompleteTextViewStyle
- ?android:attr/buttonStyle
- ?android:attr/buttonStyleSmall
- ?android:attr/checkboxStyle
- ?android:attr/checkedTextViewStyle
- - ?android:attr/editTextStyle
- ?android:attr/radioButtonStyle
- ?android:attr/ratingBarStyle
- ?android:attr/spinnerStyle
@@ -96,13 +91,10 @@
- ?android:attr/actionBarSize
- ?android:attr/actionBarDivider
- - ?android:attr/actionBarItemBackground
+ - @drawable/abc_action_bar_item_background_material
- ?android:attr/actionButtonStyle
- - ?android:attr/actionMenuTextColor
- - ?android:attr/actionMenuTextAppearance
- ?android:attr/actionModeBackground
- ?android:attr/actionModeCloseDrawable
- - ?android:attr/actionModeShareDrawable
- ?android:attr/actionOverflowButtonStyle
- ?android:attr/homeAsUpIndicator
@@ -122,12 +114,10 @@
- ?android:attr/listChoiceBackgroundIndicator
- - ?android:attr/autoCompleteTextViewStyle
- ?android:attr/buttonStyle
- ?android:attr/buttonStyleSmall
- ?android:attr/checkboxStyle
- ?android:attr/checkedTextViewStyle
- - ?android:attr/editTextStyle
- ?android:attr/radioButtonStyle
- ?android:attr/ratingBarStyle
- ?android:attr/spinnerStyle
@@ -153,7 +143,7 @@
-
-
+
+
+
diff --git a/eclipse-compile/design/src/main/res/values-land/styles.xml b/eclipse-compile/appcompat/res/values-v22/themes_base.xml
similarity index 57%
rename from eclipse-compile/design/src/main/res/values-land/styles.xml
rename to eclipse-compile/appcompat/res/values-v22/themes_base.xml
index 622a5e361e..8a3872491f 100644
--- a/eclipse-compile/design/src/main/res/values-land/styles.xml
+++ b/eclipse-compile/appcompat/res/values-v22/themes_base.xml
@@ -13,13 +13,19 @@
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
--->
+ -->
+
-
+
+
-
diff --git a/eclipse-compile/appcompat/res/values-v23/styles_base.xml b/eclipse-compile/appcompat/res/values-v23/styles_base.xml
new file mode 100644
index 0000000000..e1c8910578
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-v23/styles_base.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml b/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml
new file mode 100644
index 0000000000..3fbae0245c
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/values-v23/themes_base.xml b/eclipse-compile/appcompat/res/values-v23/themes_base.xml
new file mode 100644
index 0000000000..276a3c60b7
--- /dev/null
+++ b/eclipse-compile/appcompat/res/values-v23/themes_base.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/values-vi/strings.xml b/eclipse-compile/appcompat/res/values-vi/strings.xml
index 0840f7391f..68099358c7 100644
--- a/eclipse-compile/appcompat/res/values-vi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-vi/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Xong"
"Điều hướng về trang chủ"
"Điều hướng lên trên"
"Thêm tùy chọn"
+ "Thu gọn"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Tìm kiếm"
+ "Tìm kiếm…"
"Tìm kiếm truy vấn"
"Xóa truy vấn"
"Gửi truy vấn"
@@ -29,4 +33,7 @@
"Xem tất cả"
"Chia sẻ với %s"
"Chia sẻ với"
+ "999+"
+ "BẬT"
+ "TẮT"
diff --git a/eclipse-compile/appcompat/res/values-xlarge/dimens.xml b/eclipse-compile/appcompat/res/values-xlarge/dimens.xml
index 3eb29620ba..0dd244a451 100644
--- a/eclipse-compile/appcompat/res/values-xlarge/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-xlarge/dimens.xml
@@ -24,17 +24,12 @@
192dip
-
- - 50%
-
- - 70%
-
- - 60%
-
- - 90%
+ - 50%
+ - 70%
+ - 60%
+ - 90%
+
+ - 45%
+ - 72%
diff --git a/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml b/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
index 87b36b0be9..8c6168d9e0 100644
--- a/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"完成"
"转到主屏幕"
"转到上一层级"
"更多选项"
+ "收起"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
"搜索"
+ "搜索…"
"搜索查询"
"清除查询"
"提交查询"
@@ -29,4 +33,7 @@
"查看全部"
"通过%s分享"
"分享方式"
+ "999+"
+ "开启"
+ "关闭"
diff --git a/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml b/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml
index f6a367d3a0..c7ad867f5f 100644
--- a/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"完成"
"瀏覽主頁"
"向上瀏覽"
"更多選項"
+ "收合"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
"搜尋"
+ "搜尋…"
"搜尋查詢"
"清除查詢"
"提交查詢"
@@ -29,4 +33,7 @@
"顯示全部"
"與「%s」分享"
"分享對象"
+ "999 +"
+ "開啟"
+ "關閉"
diff --git a/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml b/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml
index c804ccf3a9..0205fe73b7 100644
--- a/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"完成"
"瀏覽首頁"
"向上瀏覽"
"更多選項"
+ "收合"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
"搜尋"
+ "搜尋…"
"搜尋查詢"
"清除查詢"
"提交查詢"
@@ -29,4 +33,7 @@
"查看全部"
"與「%s」分享"
"選擇分享對象"
+ "999+"
+ "開啟"
+ "關閉"
diff --git a/eclipse-compile/appcompat/res/values-zu/strings.xml b/eclipse-compile/appcompat/res/values-zu/strings.xml
index 92eac7ecaf..d09351005d 100644
--- a/eclipse-compile/appcompat/res/values-zu/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zu/strings.xml
@@ -14,13 +14,17 @@
limitations under the License.
-->
-
+
"Kwenziwe"
"Zulazulela ekhaya"
"Zulazulela phezulu"
"Izinketho eziningi"
+ "Goqa"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
"Sesha"
+ "Iyasesha..."
"Umbuzo wosesho"
"Sula inkinga"
"Hambisa umbuzo"
@@ -29,4 +33,7 @@
"Buka konke"
"Yabelana no-%s"
"Yabelana no-"
+ "999+"
+ "VULIWE"
+ "VALIWE"
diff --git a/eclipse-compile/appcompat/res/values/attrs.xml b/eclipse-compile/appcompat/res/values/attrs.xml
index a7b51c1cc8..3300564207 100644
--- a/eclipse-compile/appcompat/res/values/attrs.xml
+++ b/eclipse-compile/appcompat/res/values/attrs.xml
@@ -239,6 +239,9 @@
+
+
+
@@ -325,6 +328,9 @@
+
+
+
@@ -368,6 +374,8 @@
+
+
@@ -492,7 +500,6 @@
-
-
-
+
+
+
@@ -671,37 +679,13 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
@@ -837,6 +821,17 @@
+
+
+
+
+
+
+
+
+
@@ -866,12 +861,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
@@ -888,6 +883,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -917,6 +936,10 @@
+
+
+
+
@@ -929,4 +952,11 @@
+
+
+
+
+
+
diff --git a/eclipse-compile/appcompat/res/values/bools.xml b/eclipse-compile/appcompat/res/values/bools.xml
index 79a5035ad9..3508cf3b6e 100644
--- a/eclipse-compile/appcompat/res/values/bools.xml
+++ b/eclipse-compile/appcompat/res/values/bools.xml
@@ -21,4 +21,8 @@
true
false
+
+
+ false
diff --git a/eclipse-compile/appcompat/res/values/colors_material.xml b/eclipse-compile/appcompat/res/values/colors_material.xml
index 6b3cca5d48..70fd21d6fc 100644
--- a/eclipse-compile/appcompat/res/values/colors_material.xml
+++ b/eclipse-compile/appcompat/res/values/colors_material.xml
@@ -17,17 +17,22 @@
- #ff303030
- #ffeeeeee
- #ff424242
- #ffeeeeee
+ @android:color/white
+ @android:color/black
- #ff212121
- #ffefefef
- #ff000000
- #ff757575
+ @color/material_grey_850
+ @color/material_grey_50
+ @color/material_grey_800
+ @android:color/white
- #4dffffff
+ @color/material_grey_900
+ @color/material_grey_100
+ @android:color/black
+ @color/material_grey_600
+
+
+ #33ffffff
+
#1f000000
@color/material_deep_teal_500
@@ -63,21 +68,26 @@
#66009688
- @color/material_deep_teal_200
- @color/material_deep_teal_500
-
+
#de000000
+
#8a000000
+
#ffffffff
+
#b3ffffff
- 0.26
- 0.30
+ - 0.12
+ - 0.20
+ - 0.26
+
#39000000
#24000000
@@ -89,6 +99,14 @@
+ #ff212121
+ #ff303030
+ #ff424242
+ #ff757575
+ #ffe0e0e0
+ #fff5f5f5
+ #fffafafa
+
#ff80cbc4
#ff009688
diff --git a/eclipse-compile/appcompat/res/values/dimens.xml b/eclipse-compile/appcompat/res/values/dimens.xml
index 06f1a06fa8..37130e3a72 100644
--- a/eclipse-compile/appcompat/res/values/dimens.xml
+++ b/eclipse-compile/appcompat/res/values/dimens.xml
@@ -44,19 +44,18 @@
32dip
-
- - 320dp
+ - 320dp
- - 320dp
+ - 320dp
- - 80%
+ - 80%
- - 100%
+ - 100%
6dp
@dimen/abc_control_inset_material
@@ -87,6 +86,9 @@
8dp
+
+ 20dp
+
diff --git a/eclipse-compile/appcompat/res/values/dimens_material.xml b/eclipse-compile/appcompat/res/values/dimens_material.xml
index 2d0f738133..357dc3e515 100644
--- a/eclipse-compile/appcompat/res/values/dimens_material.xml
+++ b/eclipse-compile/appcompat/res/values/dimens_material.xml
@@ -18,8 +18,10 @@
56dp
-
- 4dp
+
+ 0dp
+
+ 0dp
16dp
@@ -33,8 +35,6 @@
content inset so that ListActivity items line up correctly. -->
@dimen/abc_action_bar_content_inset_material
-
- 0dp
6dp
@@ -68,4 +68,7 @@
- 0.26
- 0.30
+ 2dp
+ 2dp
+
diff --git a/eclipse-compile/appcompat/res/values/strings.xml b/eclipse-compile/appcompat/res/values/strings.xml
index a04b396f99..6e2a622f06 100644
--- a/eclipse-compile/appcompat/res/values/strings.xml
+++ b/eclipse-compile/appcompat/res/values/strings.xml
@@ -68,4 +68,9 @@
for most appropriate textual indicator of "more than X".
[CHAR LIMIT=4] -->
999+
+
+
+ ON
+
+ OFF
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/values/styles.xml b/eclipse-compile/appcompat/res/values/styles.xml
index 0ac20d558b..6c5c7763c2 100644
--- a/eclipse-compile/appcompat/res/values/styles.xml
+++ b/eclipse-compile/appcompat/res/values/styles.xml
@@ -35,12 +35,10 @@
+ parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" />
+ parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" />
-
-
-
+
-
+
-
-
-
@@ -403,6 +395,16 @@
- @drawable/abc_ratingbar_full_material
+
+
+
+
+
+
+
-
+
@@ -96,6 +96,12 @@
- ?android:textColorPrimary
+
+
+
+
-
+
+
@@ -64,10 +69,6 @@
- true
-
-
@@ -75,4 +76,4 @@
-
\ No newline at end of file
+
diff --git a/eclipse-compile/appcompat/res/values/themes_base.xml b/eclipse-compile/appcompat/res/values/themes_base.xml
index 5db9d05c7c..f8e0ac6279 100644
--- a/eclipse-compile/appcompat/res/values/themes_base.xml
+++ b/eclipse-compile/appcompat/res/values/themes_base.xml
@@ -26,8 +26,8 @@
- true
- - @color/bright_foreground_material_dark
- - @color/bright_foreground_material_light
+ - @color/foreground_material_dark
+ - @color/foreground_material_light
- @color/background_material_dark
- @color/abc_background_cache_hint_selector_material_dark
- @dimen/abc_disabled_alpha_material_dark
@@ -45,7 +45,7 @@
- @color/hint_foreground_material_dark
- @color/hint_foreground_material_light
- @color/highlighted_text_material_dark
- - @color/link_text_material_dark
+ - ?attr/colorAccent
- @style/TextAppearance.AppCompat
@@ -65,8 +65,8 @@
- true
- - @color/bright_foreground_material_light
- - @color/bright_foreground_material_dark
+ - @color/foreground_material_light
+ - @color/foreground_material_dark
- @color/background_material_light
- @color/abc_background_cache_hint_selector_material_light
- @dimen/abc_disabled_alpha_material_light
@@ -85,7 +85,7 @@
- @color/hint_foreground_material_light
- @color/hint_foreground_material_dark
- @color/highlighted_text_material_light
- - @color/link_text_material_light
+ - ?attr/colorAccent
- @style/TextAppearance.AppCompat
@@ -111,8 +111,11 @@
@@ -519,9 +533,11 @@
-
+
-
-
@@ -62,6 +62,8 @@
+
+
+
+
-
-
diff --git a/eclipse-compile/design/src/.readme b/eclipse-compile/design/src/.readme
new file mode 100644
index 0000000000..4bcebad80c
--- /dev/null
+++ b/eclipse-compile/design/src/.readme
@@ -0,0 +1,2 @@
+This hidden file is there to ensure there is an src folder.
+Once we support binary library this will go away.
\ No newline at end of file
diff --git a/eclipse-compile/design/src/androidTest/java/android/support/design/ApplicationTest.java b/eclipse-compile/design/src/androidTest/java/android/support/design/ApplicationTest.java
deleted file mode 100644
index a44d6e3d7f..0000000000
--- a/eclipse-compile/design/src/androidTest/java/android/support/design/ApplicationTest.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package android.support.design;
-
-import android.app.Application;
-import android.test.ApplicationTestCase;
-
-/**
- * Testing Fundamentals
- */
-public class ApplicationTest extends ApplicationTestCase {
- public ApplicationTest() {
- super(Application.class);
- }
-}
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/AndroidManifest.xml b/eclipse-compile/design/src/main/AndroidManifest.xml
deleted file mode 100644
index 012c7bf894..0000000000
--- a/eclipse-compile/design/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/anim/fab_in.xml b/eclipse-compile/design/src/main/res/anim/fab_in.xml
deleted file mode 100644
index 294050f549..0000000000
--- a/eclipse-compile/design/src/main/res/anim/fab_in.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/anim/fab_out.xml b/eclipse-compile/design/src/main/res/anim/fab_out.xml
deleted file mode 100644
index 0f80a9ab0b..0000000000
--- a/eclipse-compile/design/src/main/res/anim/fab_out.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/anim/snackbar_out.xml b/eclipse-compile/design/src/main/res/anim/snackbar_out.xml
deleted file mode 100644
index eb55cc0e5e..0000000000
--- a/eclipse-compile/design/src/main/res/anim/snackbar_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/drawable/fab_background.xml b/eclipse-compile/design/src/main/res/drawable/fab_background.xml
deleted file mode 100644
index 43afd5c9ac..0000000000
--- a/eclipse-compile/design/src/main/res/drawable/fab_background.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/layout-sw600dp/layout_snackbar.xml b/eclipse-compile/design/src/main/res/layout-sw600dp/layout_snackbar.xml
deleted file mode 100644
index b68395ab65..0000000000
--- a/eclipse-compile/design/src/main/res/layout-sw600dp/layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/layout/design_navigation_item.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item.xml
deleted file mode 100644
index 59ee05c95d..0000000000
--- a/eclipse-compile/design/src/main/res/layout/design_navigation_item.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
diff --git a/eclipse-compile/design/src/main/res/layout/design_navigation_item_header.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item_header.xml
deleted file mode 100644
index 988600766c..0000000000
--- a/eclipse-compile/design/src/main/res/layout/design_navigation_item_header.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
diff --git a/eclipse-compile/design/src/main/res/layout/design_navigation_item_separator.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item_separator.xml
deleted file mode 100644
index 938a3fbdd2..0000000000
--- a/eclipse-compile/design/src/main/res/layout/design_navigation_item_separator.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/layout/design_navigation_item_subheader.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item_subheader.xml
deleted file mode 100644
index 707ec6aea3..0000000000
--- a/eclipse-compile/design/src/main/res/layout/design_navigation_item_subheader.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/eclipse-compile/design/src/main/res/layout/design_navigation_menu.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_menu.xml
deleted file mode 100644
index a40f2eb536..0000000000
--- a/eclipse-compile/design/src/main/res/layout/design_navigation_menu.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml b/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml
deleted file mode 100644
index 604aafc037..0000000000
--- a/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/layout/layout_snackbar_include.xml b/eclipse-compile/design/src/main/res/layout/layout_snackbar_include.xml
deleted file mode 100644
index 0cf2002d88..0000000000
--- a/eclipse-compile/design/src/main/res/layout/layout_snackbar_include.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/layout/layout_tab_text.xml b/eclipse-compile/design/src/main/res/layout/layout_tab_text.xml
deleted file mode 100644
index a83bb3d107..0000000000
--- a/eclipse-compile/design/src/main/res/layout/layout_tab_text.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values-sw600dp/config.xml b/eclipse-compile/design/src/main/res/values-sw600dp/config.xml
deleted file mode 100644
index baac13bf28..0000000000
--- a/eclipse-compile/design/src/main/res/values-sw600dp/config.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
- 1
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values-sw600dp/dimens.xml b/eclipse-compile/design/src/main/res/values-sw600dp/dimens.xml
deleted file mode 100644
index 37c3ff5a29..0000000000
--- a/eclipse-compile/design/src/main/res/values-sw600dp/dimens.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
- 160dp
-
- 320dp
- 576dp
- @dimen/snackbar_padding_vertical
- 24dp
- 2dp
- 0dp
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values-sw600dp/styles.xml b/eclipse-compile/design/src/main/res/values-sw600dp/styles.xml
deleted file mode 100644
index 622a5e361e..0000000000
--- a/eclipse-compile/design/src/main/res/values-sw600dp/styles.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/values-v21/dimens.xml b/eclipse-compile/design/src/main/res/values-v21/dimens.xml
deleted file mode 100644
index 2a67937bb1..0000000000
--- a/eclipse-compile/design/src/main/res/values-v21/dimens.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- 24dp
-
diff --git a/eclipse-compile/design/src/main/res/values/attrs.xml b/eclipse-compile/design/src/main/res/values/attrs.xml
deleted file mode 100644
index e4c1bf02c8..0000000000
--- a/eclipse-compile/design/src/main/res/values/attrs.xml
+++ /dev/null
@@ -1,260 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/values/colors.xml b/eclipse-compile/design/src/main/res/values/colors.xml
deleted file mode 100644
index 216ad79930..0000000000
--- a/eclipse-compile/design/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
- #2EFFFFFF
-
- #1AFFFFFF
-
- #0F000000
-
- #0A000000
-
-
- #44000000
-
- #14000000
-
- @android:color/transparent
-
- #FFDD2C00
-
- #323232
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values/config.xml b/eclipse-compile/design/src/main/res/values/config.xml
deleted file mode 100644
index 2ff276a217..0000000000
--- a/eclipse-compile/design/src/main/res/values/config.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
- 2
-
-
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values/dimens.xml b/eclipse-compile/design/src/main/res/values/dimens.xml
deleted file mode 100644
index 45e83e6088..0000000000
--- a/eclipse-compile/design/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- 8dp
- 6dp
- 24dp
- 56dp
- 40dp
- 0.5dp
-
- 320dp
- 12dp
- 32dp
- 24dp
- 8dp
- 0dp
- 8dp
-
- 72dp
- 264dp
-
- -1px
- -1px
- 2dp
- 0dp
-
- 12dp
- 14dp
- 24dp
-
-
- 0dp
-
- 128dp
-
- 14sp
-
- 4dp
-
-
diff --git a/eclipse-compile/design/src/main/res/values/ids.xml b/eclipse-compile/design/src/main/res/values/ids.xml
deleted file mode 100644
index 91acfd033f..0000000000
--- a/eclipse-compile/design/src/main/res/values/ids.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/design/src/main/res/values/strings.xml b/eclipse-compile/design/src/main/res/values/strings.xml
deleted file mode 100644
index 4c02de1609..0000000000
--- a/eclipse-compile/design/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
- android.support.design.widget.AppBarLayout$ScrollingViewBehavior
-
-
diff --git a/eclipse-compile/design/src/main/res/values/styles.xml b/eclipse-compile/design/src/main/res/values/styles.xml
deleted file mode 100644
index 067846c0b1..0000000000
--- a/eclipse-compile/design/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/recyclerview/.gitignore b/eclipse-compile/recyclerview/.gitignore
deleted file mode 100644
index 796b96d1c4..0000000000
--- a/eclipse-compile/recyclerview/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/build
diff --git a/eclipse-compile/recyclerview/build.gradle b/eclipse-compile/recyclerview/build.gradle
deleted file mode 100644
index 4572487aec..0000000000
--- a/eclipse-compile/recyclerview/build.gradle
+++ /dev/null
@@ -1,23 +0,0 @@
-apply plugin: 'com.android.library'
-
-android {
- compileSdkVersion 21
- buildToolsVersion "21.1.2"
-
- defaultConfig {
- minSdkVersion 7
- targetSdkVersion 21
- }
-
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile project(":eclipse-compile:appcompat")
-}