diff --git a/OsmAnd-java/build.gradle b/OsmAnd-java/build.gradle
index 0deaef3eea..d20b813fee 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 d668110373..fcf5a8548e 100644
--- a/OsmAnd/build.gradle
+++ b/OsmAnd/build.gradle
@@ -18,7 +18,7 @@ apply plugin: 'com.android.application'
// Less important
android {
- compileSdkVersion 23
+ compileSdkVersion 21
buildToolsVersion "23.0.1"
signingConfigs {
@@ -39,8 +39,8 @@ android {
defaultConfig {
minSdkVersion System.getenv("MIN_SDK_VERSION") ? System.getenv("MIN_SDK_VERSION").toInteger() : 14
- targetSdkVersion 23
- multiDexEnabled true
+ targetSdkVersion 21
+
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
//versionName already assigned in code
//versionName System.getenv("APK_VERSION")? System.getenv("APK_VERSION").toString(): versionName
@@ -60,8 +60,6 @@ android {
dexOptions {
jumboMode = true
- incremental true
- javaMaxHeapSize "4g"
}
sourceSets {
@@ -344,5 +342,5 @@ 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 'com.android.support:multidex:1.0.0'
+
}
diff --git a/OsmAnd/libs/simple-logging.jar b/OsmAnd/libs/simple-logging.jar
deleted file mode 100644
index 89d3a05766..0000000000
Binary files a/OsmAnd/libs/simple-logging.jar and /dev/null differ
diff --git a/OsmAnd/src/net/osmand/PlatformUtil.java b/OsmAnd/src/net/osmand/PlatformUtil.java
index 11202adf74..385ea068a1 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,11 +110,30 @@ 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 5064fd62ee..3db5b010e0 100644
--- a/OsmAnd/src/net/osmand/plus/OsmandApplication.java
+++ b/OsmAnd/src/net/osmand/plus/OsmandApplication.java
@@ -2,6 +2,7 @@ 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;
@@ -13,7 +14,6 @@ import android.os.AsyncTask;
import android.os.Build;
import android.os.Handler;
import android.os.Message;
-import android.support.multidex.MultiDexApplication;
import android.support.v7.app.AlertDialog;
import android.text.format.DateFormat;
import android.util.TypedValue;
@@ -65,7 +65,7 @@ import btools.routingapp.IBRouterService;
-public class OsmandApplication extends MultiDexApplication {
+public class OsmandApplication extends Application {
public static final String EXCEPTION_PATH = "exception.log"; //$NON-NLS-1$
private static final org.apache.commons.logging.Log LOG = PlatformUtil.getLog(OsmandApplication.class);
diff --git a/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java b/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
index 3e1047a173..7765a960f3 100644
--- a/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
+++ b/OsmAnd/src/net/osmand/plus/activities/OsmandActionBarActivity.java
@@ -1,14 +1,12 @@
package net.osmand.plus.activities;
-import android.graphics.PorterDuff;
-import android.graphics.drawable.Drawable;
-import android.support.v7.app.ActionBar;
-import android.support.v7.app.AppCompatActivity;
-import android.view.View;
-import android.view.ViewGroup;
-
import net.osmand.plus.OsmandApplication;
import net.osmand.plus.R;
+import android.graphics.PorterDuff;
+import android.graphics.drawable.Drawable;
+import android.support.v7.app.AppCompatActivity;
+import android.view.View;
+import android.view.ViewGroup;
/**
* Created by Denis
@@ -22,12 +20,9 @@ public class OsmandActionBarActivity extends AppCompatActivity {
protected void setupHomeButton(){
Drawable back = ((OsmandApplication)getApplication()).getIconsCache().getIcon(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
back.setColorFilter(getResources().getColor(R.color.color_white), PorterDuff.Mode.MULTIPLY);
- final ActionBar supportActionBar = getSupportActionBar();
- if (supportActionBar != null) {
- supportActionBar.setHomeButtonEnabled(true);
- supportActionBar.setDisplayHomeAsUpEnabled(true);
- supportActionBar.setHomeAsUpIndicator(back);
- }
+ getSupportActionBar().setHomeButtonEnabled(true);
+ getSupportActionBar().setDisplayHomeAsUpEnabled(true);
+ getSupportActionBar().setHomeAsUpIndicator(back);
}
@Override
diff --git a/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java b/OsmAnd/src/net/osmand/plus/download/ui/SearchDialogFragment.java
index d45f65083e..bff6204045 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.view.ContextThemeWrapper;
+import android.support.v7.internal.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 4a08f1d5f7..f3648e4ab2 100644
--- a/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java
+++ b/OsmAnd/src/net/osmand/plus/widgets/TextViewEx.java
@@ -6,13 +6,16 @@ import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Typeface;
import android.os.Build;
-import android.support.v7.text.AllCapsTransformationMethod;
+import android.support.v7.internal.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 07e8c6a83c..34e8ec28cf 100644
--- a/eclipse-compile/appcompat/build.gradle
+++ b/eclipse-compile/appcompat/build.gradle
@@ -5,12 +5,12 @@ dependencies {
}
android {
- compileSdkVersion 23
+ compileSdkVersion 21
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 9
- targetSdkVersion 23
+ targetSdkVersion 21
}
sourceSets {
main {
diff --git a/eclipse-compile/appcompat/libs/android-support-v4.jar b/eclipse-compile/appcompat/libs/android-support-v4.jar
index aa0b1a5cc5..7b78bb8ee8 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 f9ad396f6c..830a4936a6 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
deleted file mode 100644
index 8d53611890..0000000000
--- a/eclipse-compile/appcompat/res/color-v23/abc_color_highlight_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 4efe298e28..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 543dec3376..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 9930b3ad1b..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 4cfb1a7c7e..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 32ddf7a9e0..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
index 6ad9b1d245..56436a1ccc 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
new file mode 100644
index 0000000000..5e0bf843ec
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 10df639062..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index f83b1ef163..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index e9efb20fb7..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index a4ab0a1e39..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index db9e172d3b..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
index 00c81fcada..fcd81de0c2 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
new file mode 100644
index 0000000000..36348a8b9a
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml b/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml
deleted file mode 100644
index 595c56c6a9..0000000000
--- a/eclipse-compile/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml b/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml
deleted file mode 100644
index 10251aadc7..0000000000
--- a/eclipse-compile/appcompat/res/drawable-v21/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml b/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml
deleted file mode 100644
index 0b540390a2..0000000000
--- a/eclipse-compile/appcompat/res/drawable-v23/abc_control_background_material.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 138f643fa9..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index cd41d74c96..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 8d67525e0c..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 2b4734d25e..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 805cb291f5..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
index f0752d2bfb..cd1396bca9 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
new file mode 100644
index 0000000000..666b10a2f2
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 52687451a8..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index adffc1472e..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index f3d16d5759..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 6a82af5081..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index c3791fc661..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
index c74b3fcf8d..96bec46c2e 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
new file mode 100644
index 0000000000..08ee2b4779
Binary files /dev/null and b/eclipse-compile/appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index e5a43bbe87..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index eeb37c1dae..0000000000
Binary files a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/eclipse-compile/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
index 85c81c1dbc..c2393abe68 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/appcompat/res/drawable/abc_seekbar_thumb_material.xml b/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml
deleted file mode 100644
index 7fea83bc86..0000000000
--- a/eclipse-compile/appcompat/res/drawable/abc_seekbar_thumb_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml b/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml
deleted file mode 100644
index e68ac03e90..0000000000
--- a/eclipse-compile/appcompat/res/drawable/abc_seekbar_track_material.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml b/eclipse-compile/appcompat/res/layout/abc_action_menu_item_layout.xml
index 283358a5dc..150ea50dc3 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 2522f1a13e..85fd94e37f 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 323753398b..9ba81fdb5f 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"/>
-
-
-
-
-
-
-
+
@@ -122,6 +108,41 @@
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 1ea20c5e10..068b9e907c 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 560ada6fb4..371151f2ec 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 47125fe4ea..76820e0789 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 1c30338f9d..6e21f2e339 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 c02c2aa9cb..ac399c1d7c 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 96412c15b5..572ec3463b 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 b81d5d8ca3..7407498a55 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 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/layout/select_dialog_multichoice_material.xml b/eclipse-compile/appcompat/res/layout/select_dialog_multichoice_material.xml
index 60f3576a89..8f75bd34bd 100644
--- a/eclipse-compile/appcompat/res/layout/select_dialog_multichoice_material.xml
+++ b/eclipse-compile/appcompat/res/layout/select_dialog_multichoice_material.xml
@@ -16,18 +16,14 @@
-->
+ 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="?attr/dialogPreferredPadding"
+ android:paddingRight="?attr/dialogPreferredPadding"
+ android:checkMark="?android:attr/listChoiceIndicatorMultiple"
+ 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 4d10fc720e..3c2264cb8f 100644
--- a/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml
+++ b/eclipse-compile/appcompat/res/layout/select_dialog_singlechoice_material.xml
@@ -16,18 +16,14 @@
-->
+ 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="?attr/dialogPreferredPadding"
+ android:paddingRight="?attr/dialogPreferredPadding"
+ android:checkMark="?android:attr/listChoiceIndicatorSingle"
+ android:ellipsize="marquee" />
diff --git a/eclipse-compile/appcompat/res/values-af/strings.xml b/eclipse-compile/appcompat/res/values-af/strings.xml
index 606d576c34..f7348c46b6 100644
--- a/eclipse-compile/appcompat/res/values-af/strings.xml
+++ b/eclipse-compile/appcompat/res/values-af/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 75a4eb6a61..e849b31861 100644
--- a/eclipse-compile/appcompat/res/values-am/strings.xml
+++ b/eclipse-compile/appcompat/res/values-am/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"ተከናውኗል"
"ወደ መነሻ ይዳስሱ"
"ወደ ላይ ይዳስሱ"
"ተጨማሪ አማራጮች"
- "ሰብስብ"
- "%1$s፣ %2$s"
- "%1$s፣ %2$s፣ %3$s"
"ፍለጋ"
- "ፈልግ…"
"የፍለጋ ጥያቄ"
"መጠይቅ አጽዳ"
"መጠይቅ ያስረክቡ"
@@ -33,7 +29,4 @@
"ሁሉንም ይመልከቱ"
"ከ%s ጋር ያጋሩ"
"ከሚከተለው ጋር ያጋሩ"
- "999+"
- "በርቷል"
- "ጠፍቷል"
diff --git a/eclipse-compile/appcompat/res/values-ar/strings.xml b/eclipse-compile/appcompat/res/values-ar/strings.xml
index 8db45d9585..93dde04224 100644
--- a/eclipse-compile/appcompat/res/values-ar/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ar/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"تم"
"التنقل إلى الشاشة الرئيسية"
"التنقل إلى أعلى"
"خيارات إضافية"
- "تصغير"
- "%1$s، %2$s"
- "%1$s، %2$s، %3$s"
"بحث"
- "بحث…"
"طلب البحث"
"محو طلب البحث"
"إرسال طلب البحث"
@@ -33,7 +29,4 @@
"عرض الكل"
"مشاركة مع %s"
"مشاركة مع"
- "+999"
- "تشغيل"
- "إيقاف"
diff --git a/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml b/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml
deleted file mode 100644
index 0561810be8..0000000000
--- a/eclipse-compile/appcompat/res/values-az-rAZ/strings.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- "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 9eb350af3d..de3bde8f41 100644
--- a/eclipse-compile/appcompat/res/values-bg/strings.xml
+++ b/eclipse-compile/appcompat/res/values-bg/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Готово"
"Придвижване към „Начало“"
"Придвижване нагоре"
"Още опции"
- "Свиване"
- "„%1$s“ – %2$s"
- "„%1$s“, „%2$s“ – %3$s"
"Търсене"
- "Търсете…"
"Заявка за търсене"
"Изчистване на заявката"
"Изпращане на заявката"
@@ -33,7 +29,4 @@
"Вижте всички"
"Споделяне със: %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 abefc1fdb7..393240f939 100644
--- a/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml
+++ b/eclipse-compile/appcompat/res/values-bn-rBD/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"সম্পন্ন হয়েছে"
"হোম এ নেভিগেট করুন"
"উপরের দিকে নেভিগেট করুন"
"আরো বিকল্প"
- "সঙ্কুচিত করুন"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"অনুসন্ধান করুন"
- "অনুসন্ধান..."
"ক্যোয়ারী অনুসন্ধান করুন"
"ক্যোয়ারী সাফ করুন"
"ক্যোয়ারী জমা দিন"
@@ -33,7 +29,4 @@
"সবগুলো দেখুন"
"%s এর সাথে ভাগ করুন"
"এর সাথে ভাগ করুন"
- "৯৯৯+"
- "চালু"
- "বন্ধ"
diff --git a/eclipse-compile/appcompat/res/values-ca/strings.xml b/eclipse-compile/appcompat/res/values-ca/strings.xml
index 96700f603b..bfd4cb07a0 100644
--- a/eclipse-compile/appcompat/res/values-ca/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ca/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 1a0fca0490..1465fdcd90 100644
--- a/eclipse-compile/appcompat/res/values-cs/strings.xml
+++ b/eclipse-compile/appcompat/res/values-cs/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 ac43dfa3ff..b178513e30 100644
--- a/eclipse-compile/appcompat/res/values-da/strings.xml
+++ b/eclipse-compile/appcompat/res/values-da/strings.xml
@@ -14,26 +14,19 @@
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"
- "Talesøgning"
+ "Stemmesø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 f0582b35bd..6da4b71340 100644
--- a/eclipse-compile/appcompat/res/values-de/strings.xml
+++ b/eclipse-compile/appcompat/res/values-de/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 be378a914b..4c0e286f8a 100644
--- a/eclipse-compile/appcompat/res/values-el/strings.xml
+++ b/eclipse-compile/appcompat/res/values-el/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Τέλος"
"Πλοήγηση στην αρχική σελίδα"
"Πλοήγηση προς τα επάνω"
"Περισσότερες επιλογές"
- "Σύμπτυξη"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Αναζήτηση"
- "Αναζήτηση…"
"Ερώτημα αναζήτησης"
"Διαγραφή ερωτήματος"
"Υποβολή ερωτήματος"
@@ -33,7 +29,4 @@
"Προβολή όλων"
"Κοινή χρήση με %s"
"Κοινή χρήση με"
- "999+"
- "ΕΝΕΡΓΟΠΟΙΗΣΗ"
- "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
diff --git a/eclipse-compile/appcompat/res/values-en-rAU/strings.xml b/eclipse-compile/appcompat/res/values-en-rAU/strings.xml
deleted file mode 100644
index 1a5e3b085c..0000000000
--- a/eclipse-compile/appcompat/res/values-en-rAU/strings.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
- "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 1a5e3b085c..3ec0b0e9ee 100644
--- a/eclipse-compile/appcompat/res/values-en-rGB/strings.xml
+++ b/eclipse-compile/appcompat/res/values-en-rGB/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
- "Done"
+
+ "Finished"
"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"
@@ -33,7 +29,4 @@
"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 1a5e3b085c..3ec0b0e9ee 100644
--- a/eclipse-compile/appcompat/res/values-en-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-en-rIN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
- "Done"
+
+ "Finished"
"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"
@@ -33,7 +29,4 @@
"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 aee3d7ef16..6ab7942b95 100644
--- a/eclipse-compile/appcompat/res/values-es-rUS/strings.xml
+++ b/eclipse-compile/appcompat/res/values-es-rUS/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 93d65c91c4..ed15b35c44 100644
--- a/eclipse-compile/appcompat/res/values-es/strings.xml
+++ b/eclipse-compile/appcompat/res/values-es/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 46bc742cbc..2ae925d407 100644
--- a/eclipse-compile/appcompat/res/values-et-rEE/strings.xml
+++ b/eclipse-compile/appcompat/res/values-et-rEE/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 270915b19b..ee6ac4d2fa 100644
--- a/eclipse-compile/appcompat/res/values-eu-rES/strings.xml
+++ b/eclipse-compile/appcompat/res/values-eu-rES/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 9cdb8c9f90..8e10e92b1b 100644
--- a/eclipse-compile/appcompat/res/values-fa/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fa/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
- "تمام"
+
+ "انجام شد"
"پیمایش به صفحه اصلی"
"پیمایش به بالا"
"گزینههای بیشتر"
- "کوچک کردن"
- "%1$s، %2$s"
- "%1$s، %2$s، %3$s"
"جستجو"
- "جستجو…"
"عبارت جستجو"
"پاک کردن عبارت جستجو"
"ارسال عبارت جستجو"
@@ -33,7 +29,4 @@
"مشاهده همه"
"اشتراکگذاری با %s"
"اشتراکگذاری با"
- "۹۹۹+"
- "روشن"
- "خاموش"
diff --git a/eclipse-compile/appcompat/res/values-fi/strings.xml b/eclipse-compile/appcompat/res/values-fi/strings.xml
index 4fe7751e5b..6755ceaac2 100644
--- a/eclipse-compile/appcompat/res/values-fi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fi/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 7620046f9b..417705a74f 100644
--- a/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fr-rCA/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -32,8 +28,5 @@
"Sélectionnez une application"
"Voir toutes les chaînes"
"Partager avec %s"
- "Partager"
- ">999"
- "ACTIVÉ"
- "DÉSACTIVÉ"
+ "Partager avec"
diff --git a/eclipse-compile/appcompat/res/values-fr/strings.xml b/eclipse-compile/appcompat/res/values-fr/strings.xml
index 85124dd2ab..27b8f389ac 100644
--- a/eclipse-compile/appcompat/res/values-fr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-fr/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 9ea2980318..1d0d50de37 100644
--- a/eclipse-compile/appcompat/res/values-gl-rES/strings.xml
+++ b/eclipse-compile/appcompat/res/values-gl-rES/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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
deleted file mode 100644
index 94545cd9d1..0000000000
--- a/eclipse-compile/appcompat/res/values-gu-rIN/strings.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
- "થઈ ગયું"
- "હોમ પર નેવિગેટ કરો"
- "ઉપર નેવિગેટ કરો"
- "વધુ વિકલ્પો"
- "સંકુચિત કરો"
- "%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
deleted file mode 100644
index 5576c18ae8..0000000000
--- a/eclipse-compile/appcompat/res/values-h320dp/bools.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
- true
-
diff --git a/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml b/eclipse-compile/appcompat/res/values-hdpi/styles_base.xml
index fd55289b2a..442ea292a0 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 5b2ad2b5d7..b236ebb521 100644
--- a/eclipse-compile/appcompat/res/values-hi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hi/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"पूर्ण"
- "मुख्यपृष्ठ पर नेविगेट करें"
+ "मुखपृष्ठ पर नेविगेट करें"
"ऊपर नेविगेट करें"
"अधिक विकल्प"
- "संक्षिप्त करें"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"खोजें"
- "खोजा जा रहा है…"
"खोज क्वेरी"
"क्वेरी साफ़ करें"
"क्वेरी सबमिट करें"
@@ -33,7 +29,4 @@
"सभी देखें"
"%s के साथ साझा करें"
"इसके द्वारा साझा करें"
- "999+"
- "चालू"
- "बंद"
diff --git a/eclipse-compile/appcompat/res/values-hr/strings.xml b/eclipse-compile/appcompat/res/values-hr/strings.xml
index 267fea7e07..680e39f975 100644
--- a/eclipse-compile/appcompat/res/values-hr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hr/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 ba241a68f8..52dafb0e9f 100644
--- a/eclipse-compile/appcompat/res/values-hu/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hu/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"Ö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 ae63668b8d..6c0ee27cc5 100644
--- a/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml
+++ b/eclipse-compile/appcompat/res/values-hy-rAM/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Կատարված է"
"Ուղղվել տուն"
"Ուղղվել վերև"
"Այլ ընտրանքներ"
- "Թաքցնել"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Որոնել"
- "Որոնում..."
"Որոնման հարցում"
"Մաքրել հարցումը"
"Ուղարկել հարցումը"
@@ -33,7 +29,4 @@
"Տեսնել բոլորը"
"Տարածել ըստ %s"
"Տարածել"
- "999+"
- "ՄԻԱՑՎԱԾ"
- "ԱՆՋԱՏՎԱԾ"
diff --git a/eclipse-compile/appcompat/res/values-in/strings.xml b/eclipse-compile/appcompat/res/values-in/strings.xml
index 7ee37bb490..9481e83635 100644
--- a/eclipse-compile/appcompat/res/values-in/strings.xml
+++ b/eclipse-compile/appcompat/res/values-in/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 acd8759ec2..8cac57028b 100644
--- a/eclipse-compile/appcompat/res/values-is-rIS/strings.xml
+++ b/eclipse-compile/appcompat/res/values-is-rIS/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 741c4a24f3..a8b0f2c162 100644
--- a/eclipse-compile/appcompat/res/values-it/strings.xml
+++ b/eclipse-compile/appcompat/res/values-it/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 93ece4bd4e..1af07df88e 100644
--- a/eclipse-compile/appcompat/res/values-iw/strings.xml
+++ b/eclipse-compile/appcompat/res/values-iw/strings.xml
@@ -14,26 +14,19 @@
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 ddcb57aa19..659358a74c 100644
--- a/eclipse-compile/appcompat/res/values-ja/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ja/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"完了"
"ホームへ移動"
"上へ移動"
"その他のオプション"
- "折りたたむ"
- "%1$s、%2$s"
- "%1$s、%2$s、%3$s"
"検索"
- "検索…"
"検索キーワード"
"検索キーワードを削除"
"検索キーワードを送信"
@@ -33,7 +29,4 @@
"すべて表示"
"%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 e796818cd4..0c430b1c44 100644
--- a/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ka-rGE/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"დასრულდა"
"მთავარზე ნავიგაცია"
"ზემოთ ნავიგაცია"
"მეტი ვარიანტები"
- "აკეცვა"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"ძიება"
- "ძიება..."
"ძიების მოთხოვნა"
"მოთხოვნის გასუფთავება"
"მოთხოვნის გადაგზავნა"
@@ -33,7 +29,4 @@
"ყველას ნახვა"
"%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 8d02798d67..d3ad9e8753 100644
--- a/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml
+++ b/eclipse-compile/appcompat/res/values-kk-rKZ/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
- "Дайын"
+
+ "Орындалды"
"Негізгі бетте қозғалу"
"Жоғары қозғалу"
"Басқа опциялар"
- "Тасалау"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Іздеу"
- "Іздеу…"
"Сұрақты іздеу"
"Сұрақты жою"
"Сұрақты жіберу"
@@ -33,7 +29,4 @@
"Барлығын көру"
"%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 aa4cd0381b..df78372589 100644
--- a/eclipse-compile/appcompat/res/values-km-rKH/strings.xml
+++ b/eclipse-compile/appcompat/res/values-km-rKH/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"រួចរាល់"
"រកមើលទៅដើម"
"រកមើលឡើងលើ"
"ជម្រើសច្រើនទៀត"
- "បង្រួម"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"ស្វែងរក"
- "ស្វែងរក…"
"ស្វែងរកសំណួរ"
"សម្អាតសំណួរ"
"ដាក់ស្នើសំណួរ"
@@ -33,7 +29,4 @@
"មើលទាំងអស់"
"ចែករំលែកជាមួយ %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 cefbee1004..6af7a394cf 100644
--- a/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-kn-rIN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"ಮುಗಿದಿದೆ"
"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
- "ಸಂಕುಚಿಸು"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"ಹುಡುಕು"
- "ಹುಡುಕಿ…"
"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
@@ -33,7 +29,4 @@
"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
- "999+"
- "ಆನ್"
- "ಆಫ್"
diff --git a/eclipse-compile/appcompat/res/values-ko/strings.xml b/eclipse-compile/appcompat/res/values-ko/strings.xml
index 4af5c11a60..d331975847 100644
--- a/eclipse-compile/appcompat/res/values-ko/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ko/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"완료"
"홈 탐색"
"위로 탐색"
"옵션 더보기"
- "접기"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"검색"
- "검색..."
"검색어"
"검색어 삭제"
"검색어 보내기"
@@ -33,7 +29,4 @@
"전체 보기"
"%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 6a948487f3..52abd9f0d8 100644
--- a/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ky-rKG/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Даяр"
"Үйгө багыттоо"
"Жогору"
"Көбүрөөк мүмкүнчүлүктөр"
- "Жыйнап коюу"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Издөө"
- "Издөө…"
"Издөө талаптары"
"Талаптарды тазалоо"
"Талап жөнөтүү"
@@ -33,7 +29,4 @@
"Бардыгын көрүү"
"%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 80b7463751..08c4b0d729 100644
--- a/eclipse-compile/appcompat/res/values-land/dimens_material.xml
+++ b/eclipse-compile/appcompat/res/values-land/dimens_material.xml
@@ -17,6 +17,8 @@
48dp
+
+ 0dp
14dp
diff --git a/eclipse-compile/appcompat/res/values-large/dimens.xml b/eclipse-compile/appcompat/res/values-large/dimens.xml
index 16bb4f6876..de1cefccce 100644
--- a/eclipse-compile/appcompat/res/values-large/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-large/dimens.xml
@@ -22,12 +22,17 @@
showAsAction="ifRoom" items can fit. "always" items can override this. -->
4
- - 60%
- - 90%
- - 60%
- - 90%
-
- - 55%
- - 80%
+
+ - 60%
+
+ - 90%
+
+ - 60%
+
+ - 90%
diff --git a/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml b/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml
deleted file mode 100644
index 57ebdbacd6..0000000000
--- a/eclipse-compile/appcompat/res/values-ldltr-v21/styles_base.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml b/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
index c14b891313..7eb42ea8e9 100644
--- a/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lo-rLA/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"ແລ້ວໆ"
"ກັບໄປໜ້າຫຼັກ"
"ຂຶ້ນເທິງ"
"ໂຕເລືອກອື່ນ"
- "ຫຍໍ້"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"ຊອກຫາ"
- "ຊອກຫາ"
"ຊອກຫາ"
"ລຶບຂໍ້ຄວາມຊອກຫາ"
"ສົ່ງການຊອກຫາ"
@@ -33,7 +29,4 @@
"ເບິ່ງທັງຫມົດ"
"ແບ່ງປັນກັບ %s"
"ແບ່ງປັນກັບ"
- "999+"
- "ເປີດ"
- "ປິດ"
diff --git a/eclipse-compile/appcompat/res/values-lt/strings.xml b/eclipse-compile/appcompat/res/values-lt/strings.xml
index 1ad19cc8ec..c4738a73dc 100644
--- a/eclipse-compile/appcompat/res/values-lt/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lt/strings.xml
@@ -14,17 +14,13 @@
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ą"
@@ -33,7 +29,4 @@
"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 eddaf6ab46..c33858a14c 100644
--- a/eclipse-compile/appcompat/res/values-lv/strings.xml
+++ b/eclipse-compile/appcompat/res/values-lv/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 b6476e8a4a..632728a223 100644
--- a/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mk-rMK/strings.xml
@@ -14,19 +14,13 @@
limitations under the License.
-->
-
+
"Готово"
"Движи се кон дома"
"Движи се нагоре"
"Повеќе опции"
- "Собери"
-
-
-
- "%1$s, %2$s, %3$s"
"Пребарај"
- "Пребарување…"
"Пребарај барање"
"Исчисти барање"
"Поднеси барање"
@@ -37,7 +31,4 @@
"Сподели со"
- "999+"
- "ВКЛУЧЕНО"
- "ИСКЛУЧЕНО"
diff --git a/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml b/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
index ffbb0194e0..2fb368e09e 100644
--- a/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ml-rIN/strings.xml
@@ -14,26 +14,19 @@
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 d47eb2d6db..203e9596c3 100644
--- a/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mn-rMN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Дууссан"
"Нүүр хуудас руу шилжих"
"Дээш шилжих"
"Нэмэлт сонголтууд"
- "Хумих"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Хайх"
- "Хайх..."
"Хайх асуулга"
"Асуулгыг цэвэрлэх"
"Асуулгыг илгээх"
@@ -33,7 +29,4 @@
"Бүгдийг харах"
"%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 c4f8eaf28d..41271d471f 100644
--- a/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-mr-rIN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"पूर्ण झाले"
"मुख्यपृष्ठ नेव्हिगेट करा"
"वर नेव्हिगेट करा"
"अधिक पर्याय"
- "संक्षिप्त करा"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"शोध"
- "शोधा…"
"शोध क्वेरी"
"क्वेरी स्पष्ट करा"
"क्वेरी सबमिट करा"
@@ -33,7 +29,4 @@
"सर्व पहा"
"%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 fe13ce2bc9..b1740682dd 100644
--- a/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ms-rMY/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 1725758be8..d487f5070c 100644
--- a/eclipse-compile/appcompat/res/values-my-rMM/strings.xml
+++ b/eclipse-compile/appcompat/res/values-my-rMM/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"ပြီးဆုံးပါပြီ"
"မူလနေရာကို သွားရန်"
"အပေါ်သို့သွားရန်"
"ပိုမိုရွေးချယ်စရာများ"
- "ခေါက်ရန်"
- "%1$s၊ %2$s"
- "%1$s ၊ %2$s ၊ %3$s"
"ရှာဖွေရန်"
- "ရှာဖွေပါ..."
"ရှာစရာ အချက်အလက်နေရာ"
"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
@@ -33,7 +29,4 @@
"အားလုံးကို ကြည့်ရန်"
"%s ကို မျှဝေပါရန်"
"မျှဝေဖို့ ရွေးပါ"
- "၉၉၉+"
- "ဖွင့်"
- "ပိတ်"
diff --git a/eclipse-compile/appcompat/res/values-nb/strings.xml b/eclipse-compile/appcompat/res/values-nb/strings.xml
index 05dbd90bde..6630acf7b4 100644
--- a/eclipse-compile/appcompat/res/values-nb/strings.xml
+++ b/eclipse-compile/appcompat/res/values-nb/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 31990d9577..69d10dca25 100644
--- a/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ne-rNP/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"सम्पन्न भयो"
"गृह खोज्नुहोस्"
"माथि खोज्नुहोस्"
"थप विकल्पहरू"
- "संक्षिप्त पार्नुहोस्"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"खोज्नुहोस्"
- "खोज्नुहोस्..."
"जिज्ञासाको खोज गर्नुहोस्"
"प्रश्न हटाउनुहोस्"
"जिज्ञासा पेस गर्नुहोस्"
@@ -33,7 +29,4 @@
"सबै हेर्नुहोस्"
"%s सँग साझेदारी गर्नुहोस्"
"साझेदारी गर्नुहोस्..."
- "९९९+"
- "सक्रिय गर्नुहोस्"
- "निष्क्रिय पार्नुहोस्"
diff --git a/eclipse-compile/appcompat/res/values-nl/strings.xml b/eclipse-compile/appcompat/res/values-nl/strings.xml
index da5e4543cd..1375f9e358 100644
--- a/eclipse-compile/appcompat/res/values-nl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-nl/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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
deleted file mode 100644
index 99edca1fb8..0000000000
--- a/eclipse-compile/appcompat/res/values-pa-rIN/strings.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
- "ਹੋ ਗਿਆ"
- "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
- "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
- "ਹੋਰ ਚੋਣਾਂ"
- "ਨਸ਼ਟ ਕਰੋ"
- "%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 a7dac4ec4a..aa1ba79bc0 100644
--- a/eclipse-compile/appcompat/res/values-pl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pl/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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
deleted file mode 100644
index cc7a7f27ae..0000000000
--- a/eclipse-compile/appcompat/res/values-pt-rBR/strings.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
- "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 a5c615a01f..0d63f5f30a 100644
--- a/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pt-rPT/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 cc7a7f27ae..88b09ea6a5 100644
--- a/eclipse-compile/appcompat/res/values-pt/strings.xml
+++ b/eclipse-compile/appcompat/res/values-pt/strings.xml
@@ -14,26 +14,19 @@
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 app"
+ "Selecione um aplicativo"
"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 7ad88c7b4b..36a7b31fbc 100644
--- a/eclipse-compile/appcompat/res/values-ro/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ro/strings.xml
@@ -14,26 +14,19 @@
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 3243c67a0b..5c22e5e809 100644
--- a/eclipse-compile/appcompat/res/values-ru/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ru/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Готово"
"Перейти на главный экран"
"Перейти вверх"
"Другие параметры"
- "Свернуть"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Поиск"
- "Поиск"
"Поисковый запрос"
"Удалить запрос"
"Отправить запрос"
@@ -33,7 +29,4 @@
"Показать все"
"Открыть доступ пользователю %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 872118bf9d..a6809c3c4f 100644
--- a/eclipse-compile/appcompat/res/values-si-rLK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-si-rLK/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"අවසාන වූ"
"ගෙදරට සංචාලනය කරන්න"
"ඉහලට සංචාලනය කරන්න"
"තවත් විකල්ප"
- "හකුළන්න"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"සෙවීම"
- "සොයන්න..."
"සෙවුම් විමසුම"
"විමසුම හිස් කරන්න"
"විමසුම යොමු කරන්න"
@@ -33,7 +29,4 @@
"සියල්ල බලන්න"
"%s සමඟ බෙදාගන්න"
"සමඟ බෙදාගන්න"
- "999+"
- "ක්රියාත්මකයි"
- "ක්රියාවිරහිතයි"
diff --git a/eclipse-compile/appcompat/res/values-sk/strings.xml b/eclipse-compile/appcompat/res/values-sk/strings.xml
index 5485a4d46c..253f3e5dde 100644
--- a/eclipse-compile/appcompat/res/values-sk/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sk/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 6ed7d50291..8e3e23e989 100644
--- a/eclipse-compile/appcompat/res/values-sl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sl/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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
deleted file mode 100644
index 6971185c8f..0000000000
--- a/eclipse-compile/appcompat/res/values-sq-rAL/strings.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
- "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 545e94dc27..213c9390aa 100644
--- a/eclipse-compile/appcompat/res/values-sr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sr/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Готово"
"Одлазак на Почетну"
"Кретање нагоре"
"Још опција"
- "Скупи"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Претрага"
- "Претражите..."
"Упит за претрагу"
"Брисање упита"
"Слање упита"
@@ -33,7 +29,4 @@
"Прикажи све"
"Дели са апликацијом %s"
"Дели са"
- ">999"
- "УКЉУЧИ"
- "ИСКЉУЧИ"
diff --git a/eclipse-compile/appcompat/res/values-sv/strings.xml b/eclipse-compile/appcompat/res/values-sv/strings.xml
index 037049e270..49c7a5ddfd 100644
--- a/eclipse-compile/appcompat/res/values-sv/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sv/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 a858dd5b91..6455ba5c74 100644
--- a/eclipse-compile/appcompat/res/values-sw/strings.xml
+++ b/eclipse-compile/appcompat/res/values-sw/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 a4bc455478..e221b50164 100644
--- a/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-sw600dp/dimens.xml
@@ -27,11 +27,14 @@
16dp
64dp
+
+ 4dp
24dp
-
- 8dp
-
- 8dp
+
+
+ 8dp
+
+ 18dp
\ 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 6a18681128..4d7d94ee1a 100644
--- a/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ta-rIN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"முடிந்தது"
"முகப்பிற்கு வழிசெலுத்து"
"மேலே வழிசெலுத்து"
"மேலும் விருப்பங்கள்"
- "சுருக்கு"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"தேடு"
- "தேடு..."
"தேடல் வினவல்"
"வினவலை அழி"
"வினவலைச் சமர்ப்பி"
@@ -33,7 +29,4 @@
"எல்லாம் காட்டு"
"%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 245c099caa..f6b17750a4 100644
--- a/eclipse-compile/appcompat/res/values-te-rIN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-te-rIN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"పూర్తయింది"
"హోమ్కు నావిగేట్ చేయండి"
"పైకి నావిగేట్ చేయండి"
"మరిన్ని ఎంపికలు"
- "కుదించండి"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"శోధించు"
- "శోధించు..."
"ప్రశ్న శోధించండి"
"ప్రశ్నను క్లియర్ చేయి"
"ప్రశ్నని సమర్పించు"
@@ -33,7 +29,4 @@
"అన్నీ చూడండి"
"%sతో భాగస్వామ్యం చేయి"
"వీరితో భాగస్వామ్యం చేయి"
- "999+"
- "ఆన్ చేయి"
- "ఆఫ్ చేయి"
diff --git a/eclipse-compile/appcompat/res/values-th/strings.xml b/eclipse-compile/appcompat/res/values-th/strings.xml
index abe75249ea..275dc57139 100644
--- a/eclipse-compile/appcompat/res/values-th/strings.xml
+++ b/eclipse-compile/appcompat/res/values-th/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"เสร็จสิ้น"
"นำทางไปหน้าแรก"
"นำทางขึ้น"
"ตัวเลือกอื่น"
- "ยุบ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"ค้นหา"
- "ค้นหา…"
"ข้อความค้นหา"
"ล้างข้อความค้นหา"
"ส่งข้อความค้นหา"
@@ -33,7 +29,4 @@
"ดูทั้งหมด"
"แชร์กับ %s"
"แชร์กับ"
- "999+"
- "เปิด"
- "ปิด"
diff --git a/eclipse-compile/appcompat/res/values-tl/strings.xml b/eclipse-compile/appcompat/res/values-tl/strings.xml
index 91e6c406cf..e0705d6b48 100644
--- a/eclipse-compile/appcompat/res/values-tl/strings.xml
+++ b/eclipse-compile/appcompat/res/values-tl/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 7d2f0b7015..61cb966f8a 100644
--- a/eclipse-compile/appcompat/res/values-tr/strings.xml
+++ b/eclipse-compile/appcompat/res/values-tr/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 0981ac3602..f670140e4b 100644
--- a/eclipse-compile/appcompat/res/values-uk/strings.xml
+++ b/eclipse-compile/appcompat/res/values-uk/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Готово"
"Перейти на головний"
"Перейти вгору"
"Інші опції"
- "Згорнути"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"Пошук"
- "Пошук…"
"Пошуковий запит"
"Очистити запит"
"Надіслати запит"
@@ -33,7 +29,4 @@
"Переглянути всі"
"Надіслати через %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 0ab295faca..f209747ceb 100644
--- a/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-ur-rPK/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"ہو گیا"
"ہوم پر نیویگیٹ کریں"
"اوپر نیویگیٹ کریں"
"مزید اختیارات"
- "سکیڑیں"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
"تلاش کریں"
- "تلاش کریں…"
"استفسار تلاش کریں"
"استفسار صاف کریں"
"استفسار جمع کرائیں"
@@ -33,7 +29,4 @@
"سبھی دیکھیں"
"%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 7624e8b5ed..84d95413ce 100644
--- a/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml
+++ b/eclipse-compile/appcompat/res/values-uz-rUZ/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"Tayyor"
"Boshiga o‘tish"
"Yuqoriga o‘tish"
"Qo‘shimcha sozlamalar"
- "Yig‘ish"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Qidirish"
- "Qidirish…"
+ "Izlash"
"So‘rovni izlash"
"So‘rovni tozalash"
"So‘rov yaratish"
@@ -35,7 +31,4 @@
"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 f65132058b..0bbf7e3dc3 100644
--- a/eclipse-compile/appcompat/res/values-v11/styles_base.xml
+++ b/eclipse-compile/appcompat/res/values-v11/styles_base.xml
@@ -21,7 +21,11 @@
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 422779412a..4cf49666c3 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 b3753b793a..918ba0b4dd 100644
--- a/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml
+++ b/eclipse-compile/appcompat/res/values-v17/styles_rtl.xml
@@ -47,12 +47,7 @@
- 8dp
-
-
-
@@ -70,6 +65,10 @@
- viewStart
+
+
@@ -78,4 +77,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 bf21d77460..241cb04c59 100644
--- a/eclipse-compile/appcompat/res/values-v21/styles_base.xml
+++ b/eclipse-compile/appcompat/res/values-v21/styles_base.xml
@@ -113,7 +113,13 @@
-
+
+
+
@@ -166,18 +172,12 @@
parent="android:TextAppearance.Material.SearchResult.Subtitle">
-
+
-
+
-
-
@@ -192,8 +192,6 @@
-
-
-
-
diff --git a/eclipse-compile/appcompat/res/values-v21/themes_base.xml b/eclipse-compile/appcompat/res/values-v21/themes_base.xml
index 6c2aa263b4..06b33b1f21 100644
--- a/eclipse-compile/appcompat/res/values-v21/themes_base.xml
+++ b/eclipse-compile/appcompat/res/values-v21/themes_base.xml
@@ -46,10 +46,13 @@
- ?android:attr/actionBarSize
- ?android:attr/actionBarDivider
- - @drawable/abc_action_bar_item_background_material
+ - ?android:attr/actionBarItemBackground
- ?android:attr/actionButtonStyle
+ - ?android:attr/actionMenuTextColor
+ - ?android:attr/actionMenuTextAppearance
- ?android:attr/actionModeBackground
- ?android:attr/actionModeCloseDrawable
+ - ?android:attr/actionModeShareDrawable
- ?android:attr/actionOverflowButtonStyle
- ?android:attr/homeAsUpIndicator
@@ -69,10 +72,12 @@
- ?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
@@ -91,10 +96,13 @@
- ?android:attr/actionBarSize
- ?android:attr/actionBarDivider
- - @drawable/abc_action_bar_item_background_material
+ - ?android:attr/actionBarItemBackground
- ?android:attr/actionButtonStyle
+ - ?android:attr/actionMenuTextColor
+ - ?android:attr/actionMenuTextAppearance
- ?android:attr/actionModeBackground
- ?android:attr/actionModeCloseDrawable
+ - ?android:attr/actionModeShareDrawable
- ?android:attr/actionOverflowButtonStyle
- ?android:attr/homeAsUpIndicator
@@ -114,10 +122,12 @@
- ?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
@@ -143,7 +153,7 @@
-
-
-
-
+
diff --git a/eclipse-compile/appcompat/res/values-v23/styles_base.xml b/eclipse-compile/appcompat/res/values-v23/styles_base.xml
deleted file mode 100644
index e1c8910578..0000000000
--- a/eclipse-compile/appcompat/res/values-v23/styles_base.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml b/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml
deleted file mode 100644
index 3fbae0245c..0000000000
--- a/eclipse-compile/appcompat/res/values-v23/styles_base_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
\ 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
deleted file mode 100644
index 276a3c60b7..0000000000
--- a/eclipse-compile/appcompat/res/values-v23/themes_base.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eclipse-compile/appcompat/res/values-vi/strings.xml b/eclipse-compile/appcompat/res/values-vi/strings.xml
index 68099358c7..0840f7391f 100644
--- a/eclipse-compile/appcompat/res/values-vi/strings.xml
+++ b/eclipse-compile/appcompat/res/values-vi/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 0dd244a451..3eb29620ba 100644
--- a/eclipse-compile/appcompat/res/values-xlarge/dimens.xml
+++ b/eclipse-compile/appcompat/res/values-xlarge/dimens.xml
@@ -24,12 +24,17 @@
192dip
- - 50%
- - 70%
- - 60%
- - 90%
-
- - 45%
- - 72%
+
+ - 50%
+
+ - 70%
+
+ - 60%
+
+ - 90%
diff --git a/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml b/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
index 8c6168d9e0..87b36b0be9 100644
--- a/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rCN/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"完成"
"转到主屏幕"
"转到上一层级"
"更多选项"
- "收起"
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
"搜索"
- "搜索…"
"搜索查询"
"清除查询"
"提交查询"
@@ -33,7 +29,4 @@
"查看全部"
"通过%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 c7ad867f5f..f6a367d3a0 100644
--- a/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rHK/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"完成"
"瀏覽主頁"
"向上瀏覽"
"更多選項"
- "收合"
- "%1$s:%2$s"
- "%1$s (%2$s):%3$s"
"搜尋"
- "搜尋…"
"搜尋查詢"
"清除查詢"
"提交查詢"
@@ -33,7 +29,4 @@
"顯示全部"
"與「%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 0205fe73b7..c804ccf3a9 100644
--- a/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zh-rTW/strings.xml
@@ -14,17 +14,13 @@
limitations under the License.
-->
-
+
"完成"
"瀏覽首頁"
"向上瀏覽"
"更多選項"
- "收合"
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
"搜尋"
- "搜尋…"
"搜尋查詢"
"清除查詢"
"提交查詢"
@@ -33,7 +29,4 @@
"查看全部"
"與「%s」分享"
"選擇分享對象"
- "999+"
- "開啟"
- "關閉"
diff --git a/eclipse-compile/appcompat/res/values-zu/strings.xml b/eclipse-compile/appcompat/res/values-zu/strings.xml
index d09351005d..92eac7ecaf 100644
--- a/eclipse-compile/appcompat/res/values-zu/strings.xml
+++ b/eclipse-compile/appcompat/res/values-zu/strings.xml
@@ -14,17 +14,13 @@
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"
@@ -33,7 +29,4 @@
"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 3300564207..a7b51c1cc8 100644
--- a/eclipse-compile/appcompat/res/values/attrs.xml
+++ b/eclipse-compile/appcompat/res/values/attrs.xml
@@ -239,9 +239,6 @@
-
-
-
@@ -328,9 +325,6 @@
-
-
-
@@ -374,8 +368,6 @@
-
-
@@ -500,6 +492,7 @@
+
+
+
-
-
-
@@ -679,13 +671,37 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -821,17 +837,6 @@
-
-
-
-
-
-
-
-
-
@@ -861,12 +866,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
@@ -883,30 +888,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -936,10 +917,6 @@
-
-
-
-
@@ -952,11 +929,4 @@
-
-
-
-
-
-
diff --git a/eclipse-compile/appcompat/res/values/bools.xml b/eclipse-compile/appcompat/res/values/bools.xml
index 3508cf3b6e..79a5035ad9 100644
--- a/eclipse-compile/appcompat/res/values/bools.xml
+++ b/eclipse-compile/appcompat/res/values/bools.xml
@@ -21,8 +21,4 @@
true
false
-
-
- false
diff --git a/eclipse-compile/appcompat/res/values/colors_material.xml b/eclipse-compile/appcompat/res/values/colors_material.xml
index 70fd21d6fc..6b3cca5d48 100644
--- a/eclipse-compile/appcompat/res/values/colors_material.xml
+++ b/eclipse-compile/appcompat/res/values/colors_material.xml
@@ -17,22 +17,17 @@
- @android:color/white
- @android:color/black
+ #ff303030
+ #ffeeeeee
+ #ff424242
+ #ffeeeeee
- @color/material_grey_850
- @color/material_grey_50
- @color/material_grey_800
- @android:color/white
+ #ff212121
+ #ffefefef
+ #ff000000
+ #ff757575
- @color/material_grey_900
- @color/material_grey_100
- @android:color/black
- @color/material_grey_600
-
-
- #33ffffff
-
+ #4dffffff
#1f000000
@color/material_deep_teal_500
@@ -68,26 +63,21 @@
#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
@@ -99,14 +89,6 @@
- #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 37130e3a72..06f1a06fa8 100644
--- a/eclipse-compile/appcompat/res/values/dimens.xml
+++ b/eclipse-compile/appcompat/res/values/dimens.xml
@@ -44,18 +44,19 @@
32dip
+
- - 320dp
+ - 320dp
- - 320dp
+ - 320dp
- - 80%
+ - 80%
- - 100%
+ - 100%
6dp
@dimen/abc_control_inset_material
@@ -86,9 +87,6 @@
8dp
-
- 20dp
-
diff --git a/eclipse-compile/appcompat/res/values/dimens_material.xml b/eclipse-compile/appcompat/res/values/dimens_material.xml
index 357dc3e515..2d0f738133 100644
--- a/eclipse-compile/appcompat/res/values/dimens_material.xml
+++ b/eclipse-compile/appcompat/res/values/dimens_material.xml
@@ -18,10 +18,8 @@
56dp
-
- 0dp
-
- 0dp
+
+ 4dp
16dp
@@ -35,6 +33,8 @@
content inset so that ListActivity items line up correctly. -->
@dimen/abc_action_bar_content_inset_material
+
+ 0dp
6dp
@@ -68,7 +68,4 @@
- 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 6e2a622f06..a04b396f99 100644
--- a/eclipse-compile/appcompat/res/values/strings.xml
+++ b/eclipse-compile/appcompat/res/values/strings.xml
@@ -68,9 +68,4 @@
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 6c5c7763c2..0ac20d558b 100644
--- a/eclipse-compile/appcompat/res/values/styles.xml
+++ b/eclipse-compile/appcompat/res/values/styles.xml
@@ -35,10 +35,12 @@
+ parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title">
+
+ parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
+
-
-
-
+
-
+
-
+
+
@@ -395,16 +403,6 @@
- @drawable/abc_ratingbar_full_material
-
-
-
-
-
-
-
-
+
@@ -96,12 +96,6 @@
- ?android:textColorPrimary
-
-
-
-
-
-
-
@@ -69,6 +64,10 @@
- true
+
+
@@ -76,4 +75,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 f8e0ac6279..5db9d05c7c 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/foreground_material_dark
- - @color/foreground_material_light
+ - @color/bright_foreground_material_dark
+ - @color/bright_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
- - ?attr/colorAccent
+ - @color/link_text_material_dark
- @style/TextAppearance.AppCompat
@@ -65,8 +65,8 @@
- true
- - @color/foreground_material_light
- - @color/foreground_material_dark
+ - @color/bright_foreground_material_light
+ - @color/bright_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
- - ?attr/colorAccent
+ - @color/link_text_material_light
- @style/TextAppearance.AppCompat
@@ -111,11 +111,8 @@
@@ -533,11 +519,9 @@
-
+
-
-
-
-
@@ -62,8 +62,6 @@
-
-
-
-
+
+
diff --git a/eclipse-compile/design/src/.readme b/eclipse-compile/design/src/.readme
deleted file mode 100644
index 4bcebad80c..0000000000
--- a/eclipse-compile/design/src/.readme
+++ /dev/null
@@ -1,2 +0,0 @@
-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
new file mode 100644
index 0000000000..a44d6e3d7f
--- /dev/null
+++ b/eclipse-compile/design/src/androidTest/java/android/support/design/ApplicationTest.java
@@ -0,0 +1,13 @@
+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
new file mode 100644
index 0000000000..012c7bf894
--- /dev/null
+++ b/eclipse-compile/design/src/main/AndroidManifest.xml
@@ -0,0 +1,5 @@
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/anim/fab_in.xml b/eclipse-compile/design/src/main/res/anim/fab_in.xml
new file mode 100644
index 0000000000..294050f549
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/anim/fab_in.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/anim/fab_out.xml b/eclipse-compile/design/src/main/res/anim/fab_out.xml
new file mode 100644
index 0000000000..0f80a9ab0b
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/anim/fab_out.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/res/layout/design_menu_item_action_area.xml b/eclipse-compile/design/src/main/res/anim/snackbar_in.xml
similarity index 79%
rename from eclipse-compile/design/res/layout/design_menu_item_action_area.xml
rename to eclipse-compile/design/src/main/res/anim/snackbar_in.xml
index ba8141d142..a40524c2bd 100644
--- a/eclipse-compile/design/res/layout/design_menu_item_action_area.xml
+++ b/eclipse-compile/design/src/main/res/anim/snackbar_in.xml
@@ -14,6 +14,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
-
+
+
diff --git a/eclipse-compile/design/src/main/res/anim/snackbar_out.xml b/eclipse-compile/design/src/main/res/anim/snackbar_out.xml
new file mode 100644
index 0000000000..eb55cc0e5e
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/anim/snackbar_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ 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
new file mode 100644
index 0000000000..43afd5c9ac
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/drawable/fab_background.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/design/res/drawable/design_snackbar_background.xml b/eclipse-compile/design/src/main/res/drawable/snackbar_background.xml
similarity index 84%
rename from eclipse-compile/design/res/drawable/design_snackbar_background.xml
rename to eclipse-compile/design/src/main/res/drawable/snackbar_background.xml
index e82441c242..739b516713 100644
--- a/eclipse-compile/design/res/drawable/design_snackbar_background.xml
+++ b/eclipse-compile/design/src/main/res/drawable/snackbar_background.xml
@@ -17,6 +17,6 @@
-
-
+
+
\ 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
new file mode 100644
index 0000000000..b68395ab65
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout-sw600dp/layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/appcompat/res/values-v22/themes_base.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item.xml
similarity index 53%
rename from eclipse-compile/appcompat/res/values-v22/themes_base.xml
rename to eclipse-compile/design/src/main/res/layout/design_navigation_item.xml
index 8a3872491f..59ee05c95d 100644
--- a/eclipse-compile/appcompat/res/values-v22/themes_base.xml
+++ b/eclipse-compile/design/src/main/res/layout/design_navigation_item.xml
@@ -13,19 +13,14 @@
~ 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/design/src/main/res/layout/design_navigation_item_header.xml b/eclipse-compile/design/src/main/res/layout/design_navigation_item_header.xml
new file mode 100644
index 0000000000..988600766c
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/design_navigation_item_header.xml
@@ -0,0 +1,21 @@
+
+
+
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
new file mode 100644
index 0000000000..938a3fbdd2
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/design_navigation_item_separator.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
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
new file mode 100644
index 0000000000..707ec6aea3
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/design_navigation_item_subheader.xml
@@ -0,0 +1,25 @@
+
+
+
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
new file mode 100644
index 0000000000..a40f2eb536
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/design_navigation_menu.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml b/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml
new file mode 100644
index 0000000000..604aafc037
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ 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
new file mode 100644
index 0000000000..0cf2002d88
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/layout_snackbar_include.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/layout/layout_tab_icon.xml b/eclipse-compile/design/src/main/res/layout/layout_tab_icon.xml
new file mode 100644
index 0000000000..6464d1fcd2
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/layout_tab_icon.xml
@@ -0,0 +1,21 @@
+
+
+
+
\ 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
new file mode 100644
index 0000000000..a83bb3d107
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/layout/layout_tab_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/eclipse-compile/design/src/main/res/values-land/styles.xml b/eclipse-compile/design/src/main/res/values-land/styles.xml
new file mode 100644
index 0000000000..622a5e361e
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values-land/styles.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/values-sw600dp/config.xml b/eclipse-compile/design/src/main/res/values-sw600dp/config.xml
new file mode 100644
index 0000000000..baac13bf28
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values-sw600dp/config.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+ 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
new file mode 100644
index 0000000000..37c3ff5a29
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values-sw600dp/dimens.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+ 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
new file mode 100644
index 0000000000..622a5e361e
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values-sw600dp/styles.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/values-v21/dimens.xml b/eclipse-compile/design/src/main/res/values-v21/dimens.xml
new file mode 100644
index 0000000000..2a67937bb1
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values-v21/dimens.xml
@@ -0,0 +1,19 @@
+
+
+
+ 24dp
+
diff --git a/eclipse-compile/design/src/main/res/values/attrs.xml b/eclipse-compile/design/src/main/res/values/attrs.xml
new file mode 100644
index 0000000000..e4c1bf02c8
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/attrs.xml
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/values/colors.xml b/eclipse-compile/design/src/main/res/values/colors.xml
new file mode 100644
index 0000000000..216ad79930
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/colors.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+ #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
new file mode 100644
index 0000000000..2ff276a217
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/config.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+ 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
new file mode 100644
index 0000000000..45e83e6088
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/dimens.xml
@@ -0,0 +1,56 @@
+
+
+
+
+ 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
new file mode 100644
index 0000000000..91acfd033f
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/ids.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/design/src/main/res/values/strings.xml b/eclipse-compile/design/src/main/res/values/strings.xml
new file mode 100644
index 0000000000..4c02de1609
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/strings.xml
@@ -0,0 +1,21 @@
+
+
+
+
+ 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
new file mode 100644
index 0000000000..067846c0b1
--- /dev/null
+++ b/eclipse-compile/design/src/main/res/values/styles.xml
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/eclipse-compile/recyclerview/.gitignore b/eclipse-compile/recyclerview/.gitignore
new file mode 100644
index 0000000000..796b96d1c4
--- /dev/null
+++ b/eclipse-compile/recyclerview/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/eclipse-compile/recyclerview/build.gradle b/eclipse-compile/recyclerview/build.gradle
new file mode 100644
index 0000000000..4572487aec
--- /dev/null
+++ b/eclipse-compile/recyclerview/build.gradle
@@ -0,0 +1,23 @@
+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")
+}