tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
April 2014
- 22 participants
- 2020 discussions

[orbot/master] Signed-off-by: Nathan Freitas <nathan@freitas.net>
by n8fr8@torproject.org 04 Apr '14
by n8fr8@torproject.org 04 Apr '14
04 Apr '14
commit d0d78809f550e8a6dd21a5027773686be1cf628a
Author: Daniel Martí <mvdan(a)mvdan.cc>
Date: Thu Mar 27 13:47:16 2014 -0400
Signed-off-by: Nathan Freitas <nathan(a)freitas.net>
---
.gitignore | 21 ++++++++-------------
1 file changed, 8 insertions(+), 13 deletions(-)
diff --git a/.gitignore b/.gitignore
index 4824f92..f3fb750 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,16 +1,11 @@
-external/bin/
-external/include/
-external/jtorctl-build-stamp
-external/lib/
-external/libevent-build-stamp
-external/obfsproxy-build-stamp
-external/openssl-static-build-stamp
-external/privoxy-build-stamp
-external/privoxy/
-external/test.c
-external/test.h.gch
-external/tor-build-stamp
-external/translation/
+/external/bin/
+/external/include/
+/external/*-build-stamp
+/external/lib/
+/external/privoxy/
+/external/test.c
+/external/test.h.gch
+/external/translation/
bin
gen
native
1
0

04 Apr '14
commit cc8d3e1eab678c2b054d09ad2cd098ec0eb1b06c
Author: Nathan Freitas <nathan(a)freitas.net>
Date: Thu Apr 3 23:01:39 2014 -0400
update to return to binaries as ZIPd res/raw
stop using the libs/armeabi hack method
---
external/Makefile | 19 +--
libs/jtorctl.jar | Bin 14742 -> 14742 bytes
.../android/service/TorResourceInstaller.java | 17 ++
src/org/torproject/android/service/TorService.java | 178 +++-----------------
.../android/service/TorServiceConstants.java | 6 +-
5 files changed, 54 insertions(+), 166 deletions(-)
diff --git a/external/Makefile b/external/Makefile
index 7a9f637..b297c51 100644
--- a/external/Makefile
+++ b/external/Makefile
@@ -334,19 +334,18 @@ jtorctl-clean:
#this is related to a bug in compression of assets and resources > 1MB
assets: tor privoxy jtorctl obfsproxy iptables
- install -d ../libs/armeabi
- install -d ../libs
- install bin/privoxy ../libs/armeabi/libprivoxy.so
- install bin/obfsproxy ../libs/armeabi/libobfsproxy.so
install bin/jtorctl.jar ../libs
- install bin/tor ../libs/armeabi/libtor.so
- install bin/xtables ../libs/armeabi/libxtables.so
+ install -d ../res/raw
+ -zip ../res/raw/privoxy.mp3 bin/privoxy
+ -zip ../res/raw/obfsproxy.mp3 bin/obfsproxy
+ -zip ../res/raw/tor.mp3 bin/tor
+ -zip ../res/raw/xtables.mp3 bin/xtables
assets-clean:
- -rm ../libs/armeabi/libxtables.so
- -rm ../libs/armeabi/libtor.so
- -rm ../libs/armeabi/libprivoxy.so
- -rm ../libs/armeabi/libobfsproxy.so
+ -rm ../res/raw/privoxy.mp3
+ -rm ../res/raw/obfsproxy.mp3
+ -rm ../res/raw/tor.mp3
+ -rm ../res/raw/xtables.mp3
-rm ../libs/jtorctl.jar
#------------------------------------------------------------------------------#
diff --git a/libs/jtorctl.jar b/libs/jtorctl.jar
index 9309e9b..26ccf57 100755
Binary files a/libs/jtorctl.jar and b/libs/jtorctl.jar differ
diff --git a/src/org/torproject/android/service/TorResourceInstaller.java b/src/org/torproject/android/service/TorResourceInstaller.java
index ce30da6..9ff06ed 100644
--- a/src/org/torproject/android/service/TorResourceInstaller.java
+++ b/src/org/torproject/android/service/TorResourceInstaller.java
@@ -57,6 +57,23 @@ public class TorResourceInstaller implements TorServiceConstants {
outFile = new File(installFolder, PRIVOXYCONFIG_ASSET_KEY);
streamToFile(is,outFile, false, false);
+ is = context.getResources().openRawResource(R.raw.tor);
+ outFile = new File(installFolder, TOR_ASSET_KEY);
+ streamToFile(is,outFile, false, true);
+
+ is = context.getResources().openRawResource(R.raw.privoxy);
+ outFile = new File(installFolder, PRIVOXY_ASSET_KEY);
+ streamToFile(is,outFile, false, true);
+
+ is = context.getResources().openRawResource(R.raw.obfsproxy);
+ outFile = new File(installFolder, OBFSPROXY_ASSET_KEY);
+ streamToFile(is,outFile, false, true);
+
+
+ is = context.getResources().openRawResource(R.raw.xtables);
+ outFile = new File(installFolder, IPTABLES_ASSET_KEY);
+ streamToFile(is,outFile, false, true);
+
return true;
}
diff --git a/src/org/torproject/android/service/TorService.java b/src/org/torproject/android/service/TorService.java
index b00b36f..638ea15 100644
--- a/src/org/torproject/android/service/TorService.java
+++ b/src/org/torproject/android/service/TorService.java
@@ -80,11 +80,8 @@ public class TorService extends Service implements TorServiceConstants, TorConst
// private String appHome;
private File appBinHome;
private File appCacheHome;
- private File appLibsHome;
-
- private File fileTorOrig;
- private File fileTorLink;
+ private File fileTor;
private File filePrivoxy;
private File fileObfsProxy;
private File fileXtables;
@@ -134,11 +131,11 @@ public class TorService extends Service implements TorServiceConstants, TorConst
{
// android.os.Debug.waitForDebugger();
- if (fileTorLink != null)
+ if (fileTor != null)
{
try
{
- int procId = TorServiceUtils.findProcessId(fileTorLink.getAbsolutePath());
+ int procId = TorServiceUtils.findProcessId(fileTor.getAbsolutePath());
if (procId != -1)
{
@@ -432,107 +429,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
return null;
}
- private void initTorPathLinkAndPerms () throws Exception
- {
- fileTorLink = new File(appBinHome,"tor");
- fileTorLink.getParentFile().mkdirs();
-
- if (fileTorOrig.getAbsolutePath().startsWith("/mnt"))
- {
- logNotice("app installed on external storage - copying binaries to internal");
-
- //can't execute binaries off the external storage, so copy them internal
- StringBuilder log = new StringBuilder();
- int errCode = -1;
-
- if (!fileTorLink.exists()||(fileTorOrig.length()!=fileTorLink.length()))
- {
- log = new StringBuilder();
- String[] cmd = { SHELL_CMD_RM + ' ' + fileTorLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
-
- log = new StringBuilder();
- String[] cmd1 = { SHELL_CMD_CP + ' ' + fileTorOrig.getAbsolutePath() + ' ' + fileTorLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd1,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
- }
- enableBinExec(fileTorLink);
-
- File filePrivoxyLink = new File(appBinHome,"privoxy");
- if (!filePrivoxyLink.exists()||(filePrivoxy.length()!=filePrivoxyLink.length()))
- {
- log = new StringBuilder();
- String[] cmd = { SHELL_CMD_RM + ' ' + filePrivoxyLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
-
- log = new StringBuilder();
- String[] cmd1 = { SHELL_CMD_CP + ' ' + filePrivoxy.getAbsolutePath() + ' ' + filePrivoxyLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd1,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
- }
- filePrivoxy = filePrivoxyLink;
- enableBinExec(filePrivoxy);
-
- File fileObfsProxyLink = new File(appBinHome,"obfsproxy");
- if (!fileObfsProxyLink.exists()||(fileObfsProxy.length()!=fileObfsProxyLink.length()))
- {
-
- log = new StringBuilder();
- String[] cmd1 = { SHELL_CMD_RM + ' ' + fileObfsProxyLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd1,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
-
-
- log = new StringBuilder();
- String[] cmd2 = { SHELL_CMD_CP + ' ' + fileObfsProxy.getAbsolutePath() + ' ' + fileObfsProxyLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd2,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
- }
- fileObfsProxy = fileObfsProxyLink;
- enableBinExec(fileObfsProxy);
-
-
- File fileXtablesLink = new File(appBinHome,"xtables");
- if (!fileXtablesLink.exists()||(fileXtables.length()!=fileXtablesLink.length()))
- {
- log = new StringBuilder();
- String[] cmd1 = { SHELL_CMD_RM + ' ' + fileXtablesLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd1,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
-
- log = new StringBuilder();
- String[] cmd2 = { SHELL_CMD_CP + ' ' + fileXtables.getAbsolutePath() + ' ' + fileXtablesLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd2,log, false, true);
- logNotice("link CP err=" + errCode + " out: " + log.toString());
- }
- fileXtables = fileXtablesLink;
- enableBinExec(fileXtables);
-
- }
- else
- {
-
- StringBuilder log = new StringBuilder();
- String[] cmdDel = { SHELL_CMD_RM + ' ' + fileTorLink.getAbsolutePath() };
- int errCode = TorServiceUtils.doShellCommand(cmdDel,log, false, true);
- logNotice("link RM err=" + errCode + " out: " + log.toString());
-
- log = new StringBuilder();
- String[] cmd = { SHELL_CMD_LINK + ' ' + fileTorOrig.getAbsolutePath() + ' ' + fileTorLink.getAbsolutePath() };
- errCode = TorServiceUtils.doShellCommand(cmd,log, false, true);
- logNotice("link LN err=" + errCode + " out: " + log.toString());
-
- enableBinExec(fileTorOrig);
- enableBinExec(fileTorLink);
- enableBinExec(filePrivoxy);
- enableBinExec(fileObfsProxy);
- enableBinExec(fileXtables);
-
- }
-
- }
+
private void killTorProcess () throws Exception
{
@@ -560,7 +457,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
int maxTry = 5;
int currTry = 0;
- while ((procId = TorServiceUtils.findProcessId(fileTorLink.getAbsolutePath())) != -1 && currTry++ < maxTry)
+ while ((procId = TorServiceUtils.findProcessId(fileTor.getAbsolutePath())) != -1 && currTry++ < maxTry)
{
sendCallbackStatusMessage ("Found existing orphan Tor process; Trying to shutdown now (device restart may be needed)...");
@@ -613,46 +510,21 @@ public class TorService extends Service implements TorServiceConstants, TorConst
}
}
- private void initTorPaths () throws Exception
+ private void initBinaries () throws Exception
{
appBinHome = getDir("bin",Application.MODE_PRIVATE);
appCacheHome = getDir("data",Application.MODE_PRIVATE);
- appLibsHome = new File(getApplicationInfo().nativeLibraryDir);
- if (!appLibsHome.exists())
- appLibsHome = new File(getApplicationInfo().dataDir + "/lib");
-
- fileTorOrig = new File(appLibsHome, TOR_BINARY_ASSET_KEY);
-
- if (fileTorOrig.exists())
- {
- logNotice ("Tor binary exists: " + fileTorOrig.getAbsolutePath());
- }
- else
- {
- appLibsHome = new File(getApplicationInfo().dataDir + "/lib");
- fileTorOrig = new File(appLibsHome, TOR_BINARY_ASSET_KEY);
-
- if (fileTorOrig.exists())
- logNotice ("Tor binary exists: " + fileTorOrig.getAbsolutePath());
- else
- throw new RuntimeException("Tor binary not installed");
- }
-
- filePrivoxy = new File(appLibsHome, PRIVOXY_ASSET_KEY);
- if (filePrivoxy.exists())
- logNotice ("Privoxy binary exists: " + filePrivoxy.getAbsolutePath());
- else
- throw new RuntimeException("Privoxy binary not installed");
-
- fileObfsProxy = new File(appLibsHome, OBFSPROXY_ASSET_KEY);
- if (fileObfsProxy.exists())
- logNotice ("Obfsproxy binary exists: " + fileObfsProxy.getAbsolutePath());
- else
- throw new RuntimeException("Obfsproxy binary not installed");
+ fileTor= new File(appBinHome, TOR_ASSET_KEY);
+ filePrivoxy = new File(appBinHome, PRIVOXY_ASSET_KEY);
+
+ fileObfsProxy = new File(appBinHome, OBFSPROXY_ASSET_KEY);
+
fileTorRc = new File(appBinHome, TORRC_ASSET_KEY);
+ fileXtables = new File(appBinHome, IPTABLES_ASSET_KEY);
+
if (!fileTorRc.exists())
{
TorResourceInstaller installer = new TorResourceInstaller(this, appBinHome);
@@ -660,11 +532,11 @@ public class TorService extends Service implements TorServiceConstants, TorConst
}
- fileXtables = new File(appLibsHome, IPTABLES_BINARY_ASSET_KEY);
- if (fileXtables.exists())
- logNotice("Xtables binary exists: " + fileXtables.getAbsolutePath());
+ enableBinExec(fileTor);
+ enableBinExec(filePrivoxy);
+ enableBinExec(fileObfsProxy);
+ enableBinExec(fileXtables);
- initTorPathLinkAndPerms();
}
@@ -703,7 +575,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
public void initTor () throws Exception
{
- initTorPaths();
+ initBinaries();
updateSettings ();
@@ -807,11 +679,11 @@ public class TorService extends Service implements TorServiceConstants, TorConst
private void runTorShellCmd() throws Exception
{
- if (!fileTorLink.exists())
- throw new RuntimeException("Sorry Tor binary not installed properly: " + fileTorLink.getAbsolutePath());
+ if (!fileTor.exists())
+ throw new RuntimeException("Sorry Tor binary not installed properly: " + fileTor.getAbsolutePath());
- if (!fileTorLink.canExecute())
- throw new RuntimeException("Sorry can't execute Tor: " + fileTorLink.getAbsolutePath());
+ if (!fileTor.canExecute())
+ throw new RuntimeException("Sorry can't execute Tor: " + fileTor.getAbsolutePath());
SharedPreferences prefs =getSharedPrefs(getApplicationContext());
@@ -828,7 +700,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
String[] torCmd = {
"export HOME=" + appBinHome.getAbsolutePath(),
- fileTorLink.getAbsolutePath() + " DataDirectory " + appCacheHome.getAbsolutePath() + " -f " + torrcPath + " || exit\n"
+ fileTor.getAbsolutePath() + " DataDirectory " + appCacheHome.getAbsolutePath() + " -f " + torrcPath + " || exit\n"
};
boolean runAsRootFalse = false;
@@ -849,12 +721,12 @@ public class TorService extends Service implements TorServiceConstants, TorConst
Thread.sleep(torRetryWaitTimeMS);
- procId = TorServiceUtils.findProcessId(fileTorLink.getAbsolutePath());
+ procId = TorServiceUtils.findProcessId(fileTor.getAbsolutePath());
if (procId == -1)
{
Thread.sleep(torRetryWaitTimeMS);
- procId = TorServiceUtils.findProcessId(fileTorOrig.getAbsolutePath());
+ procId = TorServiceUtils.findProcessId(fileTor.getAbsolutePath());
attempts++;
}
else
diff --git a/src/org/torproject/android/service/TorServiceConstants.java b/src/org/torproject/android/service/TorServiceConstants.java
index 2d3bfa4..d852121 100644
--- a/src/org/torproject/android/service/TorServiceConstants.java
+++ b/src/org/torproject/android/service/TorServiceConstants.java
@@ -12,7 +12,7 @@ public interface TorServiceConstants {
//home directory of Android application
//name of the tor C binary
- public final static String TOR_BINARY_ASSET_KEY = "libtor.so";
+ public final static String TOR_ASSET_KEY = "tor";
//torrc (tor config file)
public final static String TORRC_ASSET_KEY = "torrc";
@@ -24,7 +24,7 @@ public interface TorServiceConstants {
// public final static String TOR_COMMAND_LINE_ARGS = "-f " + TORRC_INSTALL_PATH + " || exit\n";
//privoxy
- public final static String PRIVOXY_ASSET_KEY = "libprivoxy.so";
+ public final static String PRIVOXY_ASSET_KEY = "privoxy";
//privoxy.config
public final static String PRIVOXYCONFIG_ASSET_KEY = "privoxy.config";
@@ -93,7 +93,7 @@ public interface TorServiceConstants {
//name of the iptables binary
- public final static String IPTABLES_BINARY_ASSET_KEY = "libxtables.so";
+ public final static String IPTABLES_ASSET_KEY = "xtables";
}
1
0
commit e25dc08fe527d478d83a6ee84ddcf4bc2b2a2812
Author: Nathan Freitas <nathan(a)freitas.net>
Date: Thu Apr 3 23:23:20 2014 -0400
fixes the menus for appcompat library
---
res/menu/main.xml | 19 +++----
src/org/torproject/android/Orbot.java | 89 +++++++++++++++++++++++++++++++--
2 files changed, 95 insertions(+), 13 deletions(-)
diff --git a/res/menu/main.xml b/res/menu/main.xml
index 4b98c27..4f6e877 100755
--- a/res/menu/main.xml
+++ b/res/menu/main.xml
@@ -17,26 +17,27 @@
* limitations under the License.
*/
-->
-<menu xmlns:android="http://schemas.android.com/apk/res/android">
-
+<menu xmlns:yourapp="http://schemas.android.com/apk/res-auto"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
<item android:id="@+id/menu_start"
android:title="@string/menu_start"
android:icon="@drawable/ic_action_start"
- android:showAsAction="ifRoom"
-
+ yourapp:showAsAction="ifRoom"
+ yourapp:actionProviderClass="android.support.v7.widget.ShareActionProvider"
/>
<item android:id="@+id/menu_settings"
android:title="@string/menu_settings"
android:icon="@drawable/ic_action_settings"
- android:showAsAction="always"
+ yourapp:showAsAction="always"
/>
<item
android:id="@+id/menu_verify_list"
android:title="@string/menu_verify"
android:icon="@drawable/ic_action_browse"
- android:showAsAction="always"
+ yourapp:showAsAction="always"
>
<menu>
<item android:id="@+id/menu_verify"
@@ -54,21 +55,21 @@
<item android:id="@+id/menu_about"
android:title="@string/menu_about"
android:icon="@drawable/ic_menu_about"
- android:showAsAction="ifRoom"
+ yourapp:showAsAction="ifRoom"
/>
<item android:id="@+id/menu_wizard"
android:title="@string/menu_wizard"
android:icon="@drawable/ic_menu_goto"
- android:showAsAction="ifRoom"
+ yourapp:showAsAction="ifRoom"
/>
<item android:id="@+id/menu_exit"
android:title="@string/menu_exit"
android:icon="@drawable/ic_menu_exit"
- android:showAsAction="ifRoom"
+ yourapp:showAsAction="ifRoom"
/>
diff --git a/src/org/torproject/android/Orbot.java b/src/org/torproject/android/Orbot.java
index f63ecd8..f48e0a9 100644
--- a/src/org/torproject/android/Orbot.java
+++ b/src/org/torproject/android/Orbot.java
@@ -3,6 +3,8 @@
package org.torproject.android;
+import static org.torproject.android.TorConstants.TAG;
+
import java.util.Locale;
import org.torproject.android.service.ITorService;
@@ -34,6 +36,7 @@ import android.os.IBinder;
import android.os.Message;
import android.os.RemoteException;
import android.support.v7.app.ActionBarActivity;
+import android.support.v7.view.ActionMode;
import android.text.ClipboardManager;
import android.text.Layout;
import android.text.method.ScrollingMovementMethod;
@@ -188,9 +191,87 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
mItemOnOff = menu.getItem(0);
+ /*
+ startSupportActionMode(new ActionMode.Callback() {
+ @Override
+ public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
+ // Inflate our menu from a resource file
+ // actionMode.getMenuInflater().inflate(R.menu.action_mode_main, menu);
+
+ // Return true so that the action mode is shown
+ return true;
+ }
+
+ @Override
+ public boolean onPrepareActionMode(ActionMode actionMode, Menu menu) {
+ // As we do not need to modify the menu before displayed, we return false.
+ return false;
+ }
+
+ @Override
+ public boolean onActionItemClicked(ActionMode actionMode, MenuItem menuItem) {
+ // Similar to menu handling in Activity.onOptionsItemSelected()
+ switch (menuItem.getItemId()) {
+ case R.id.menu_start:
+ try
+ {
+
+ if (mService == null)
+ {
+
+ }
+ else if (mService.getStatus() == TorServiceConstants.STATUS_OFF)
+ {
+ if (mItemOnOff != null)
+ mItemOnOff.setTitle(R.string.menu_stop);
+ startTor();
+
+ }
+ else
+ {
+ if (mItemOnOff != null)
+ mItemOnOff.setTitle(R.string.menu_start);
+ stopTor();
+
+ }
+
+ }
+ catch (RemoteException re)
+ {
+ Log.w(TAG, "Unable to start/top Tor from menu UI", re);
+ }
+ return true;
+ case R.id.menu_settings:
+ showSettings();
+ return true;
+ case R.id.menu_wizard:
+ startWizard();
+ return true;
+ case R.id.menu_verify:
+ doTorCheck();
+ return true;
+ case R.id.menu_exit:
+ doExit();
+ return true;
+ case R.id.menu_about:
+ showAbout();
+ return true;
+ }
+
+ return false;
+ }
+
+ @Override
+ public void onDestroyActionMode(ActionMode actionMode) {
+ // Allows you to be notified when the action mode is dismissed
+ }
+ });*/
+
return true;
}
+
+
private void showAbout ()
{
@@ -214,10 +295,11 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
.setView(view)
.show();
}
- /**
- public boolean onMenuItemSelected(int featureId, MenuItem item) {
+
+ @Override
+ public boolean onOptionsItemSelected(MenuItem item) {
- super.onMenuItemSelected(featureId, item);
+ super.onOptionsItemSelected(item);
if (item.getItemId() == R.id.menu_start)
{
@@ -278,7 +360,6 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
return true;
}
- */
/**
* This is our attempt to REALLY exit Orbot, and stop the background service
1
0

04 Apr '14
commit 8c20759beda3a6acebf61fbc4dd48bbd15c291cf
Author: Nathan Freitas <nathan(a)freitas.net>
Date: Thu Apr 3 21:54:26 2014 -0400
removed ABS depdency in favor of AppCompat
---
AndroidManifest.xml | 2 +-
external/appcompat/.classpath | 11 +
external/appcompat/.project | 33 ++
.../appcompat/.settings/org.eclipse.jdt.core.prefs | 4 +
external/appcompat/AndroidManifest.xml | 20 +
external/appcompat/README.txt | 10 +
external/appcompat/libs/android-support-v4.jar | Bin 0 -> 621451 bytes
.../libs/android-support-v7-appcompat.jar | Bin 0 -> 343731 bytes
external/appcompat/project.properties | 15 +
external/appcompat/res/anim/abc_fade_in.xml | 20 +
external/appcompat/res/anim/abc_fade_out.xml | 20 +
.../appcompat/res/anim/abc_slide_in_bottom.xml | 19 +
external/appcompat/res/anim/abc_slide_in_top.xml | 19 +
.../appcompat/res/anim/abc_slide_out_bottom.xml | 19 +
external/appcompat/res/anim/abc_slide_out_top.xml | 19 +
.../res/color/abc_search_url_text_holo.xml | 21 +
.../abc_ab_bottom_solid_dark_holo.9.png | Bin 0 -> 144 bytes
.../abc_ab_bottom_solid_light_holo.9.png | Bin 0 -> 144 bytes
.../abc_ab_bottom_transparent_dark_holo.9.png | Bin 0 -> 135 bytes
.../abc_ab_bottom_transparent_light_holo.9.png | Bin 0 -> 134 bytes
.../abc_ab_share_pack_holo_dark.9.png | Bin 0 -> 2866 bytes
.../abc_ab_share_pack_holo_light.9.png | Bin 0 -> 2862 bytes
.../res/drawable-hdpi/abc_ab_solid_dark_holo.9.png | Bin 0 -> 146 bytes
.../drawable-hdpi/abc_ab_solid_light_holo.9.png | Bin 0 -> 145 bytes
.../abc_ab_stacked_solid_dark_holo.9.png | Bin 0 -> 146 bytes
.../abc_ab_stacked_solid_light_holo.9.png | Bin 0 -> 146 bytes
.../abc_ab_stacked_transparent_dark_holo.9.png | Bin 0 -> 139 bytes
.../abc_ab_stacked_transparent_light_holo.9.png | Bin 0 -> 133 bytes
.../abc_ab_transparent_dark_holo.9.png | Bin 0 -> 155 bytes
.../abc_ab_transparent_light_holo.9.png | Bin 0 -> 145 bytes
.../abc_cab_background_bottom_holo_dark.9.png | Bin 0 -> 149 bytes
.../abc_cab_background_bottom_holo_light.9.png | Bin 0 -> 145 bytes
.../abc_cab_background_top_holo_dark.9.png | Bin 0 -> 147 bytes
.../abc_cab_background_top_holo_light.9.png | Bin 0 -> 147 bytes
.../res/drawable-hdpi/abc_ic_ab_back_holo_dark.png | Bin 0 -> 602 bytes
.../drawable-hdpi/abc_ic_ab_back_holo_light.png | Bin 0 -> 546 bytes
.../drawable-hdpi/abc_ic_cab_done_holo_dark.png | Bin 0 -> 713 bytes
.../drawable-hdpi/abc_ic_cab_done_holo_light.png | Bin 0 -> 737 bytes
.../res/drawable-hdpi/abc_ic_clear_disabled.png | Bin 0 -> 1774 bytes
.../res/drawable-hdpi/abc_ic_clear_normal.png | Bin 0 -> 1945 bytes
...abc_ic_clear_search_api_disabled_holo_light.png | Bin 0 -> 1504 bytes
.../abc_ic_clear_search_api_holo_light.png | Bin 0 -> 1540 bytes
.../abc_ic_commit_search_api_holo_dark.png | Bin 0 -> 597 bytes
.../abc_ic_commit_search_api_holo_light.png | Bin 0 -> 616 bytes
external/appcompat/res/drawable-hdpi/abc_ic_go.png | Bin 0 -> 1415 bytes
.../abc_ic_go_search_api_holo_light.png | Bin 0 -> 1252 bytes
.../abc_ic_menu_moreoverflow_normal_holo_dark.png | Bin 0 -> 144 bytes
.../abc_ic_menu_moreoverflow_normal_holo_light.png | Bin 0 -> 148 bytes
.../drawable-hdpi/abc_ic_menu_share_holo_dark.png | Bin 0 -> 467 bytes
.../drawable-hdpi/abc_ic_menu_share_holo_light.png | Bin 0 -> 505 bytes
.../appcompat/res/drawable-hdpi/abc_ic_search.png | Bin 0 -> 2558 bytes
.../drawable-hdpi/abc_ic_search_api_holo_light.png | Bin 0 -> 2271 bytes
.../res/drawable-hdpi/abc_ic_voice_search.png | Bin 0 -> 2070 bytes
.../abc_ic_voice_search_api_holo_light.png | Bin 0 -> 1833 bytes
.../drawable-hdpi/abc_list_divider_holo_dark.9.png | Bin 0 -> 78 bytes
.../abc_list_divider_holo_light.9.png | Bin 0 -> 76 bytes
.../res/drawable-hdpi/abc_list_focused_holo.9.png | Bin 0 -> 191 bytes
.../drawable-hdpi/abc_list_longpressed_holo.9.png | Bin 0 -> 154 bytes
.../drawable-hdpi/abc_list_pressed_holo_dark.9.png | Bin 0 -> 159 bytes
.../abc_list_pressed_holo_light.9.png | Bin 0 -> 159 bytes
.../abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 189 bytes
.../abc_list_selector_disabled_holo_light.9.png | Bin 0 -> 189 bytes
.../abc_menu_dropdown_panel_holo_dark.9.png | Bin 0 -> 1273 bytes
.../abc_menu_dropdown_panel_holo_light.9.png | Bin 0 -> 1289 bytes
.../abc_menu_hardkey_panel_holo_dark.9.png | Bin 0 -> 875 bytes
.../abc_menu_hardkey_panel_holo_light.9.png | Bin 0 -> 850 bytes
.../abc_spinner_ab_default_holo_dark.9.png | Bin 0 -> 316 bytes
.../abc_spinner_ab_default_holo_light.9.png | Bin 0 -> 318 bytes
.../abc_spinner_ab_disabled_holo_dark.9.png | Bin 0 -> 316 bytes
.../abc_spinner_ab_disabled_holo_light.9.png | Bin 0 -> 316 bytes
.../abc_spinner_ab_focused_holo_dark.9.png | Bin 0 -> 507 bytes
.../abc_spinner_ab_focused_holo_light.9.png | Bin 0 -> 510 bytes
.../abc_spinner_ab_pressed_holo_dark.9.png | Bin 0 -> 450 bytes
.../abc_spinner_ab_pressed_holo_light.9.png | Bin 0 -> 450 bytes
.../abc_tab_selected_focused_holo.9.png | Bin 0 -> 147 bytes
.../res/drawable-hdpi/abc_tab_selected_holo.9.png | Bin 0 -> 148 bytes
.../abc_tab_selected_pressed_holo.9.png | Bin 0 -> 147 bytes
.../abc_tab_unselected_pressed_holo.9.png | Bin 0 -> 145 bytes
.../abc_textfield_search_default_holo_dark.9.png | Bin 0 -> 110 bytes
.../abc_textfield_search_default_holo_light.9.png | Bin 0 -> 105 bytes
..._textfield_search_right_default_holo_dark.9.png | Bin 0 -> 108 bytes
...textfield_search_right_default_holo_light.9.png | Bin 0 -> 103 bytes
...textfield_search_right_selected_holo_dark.9.png | Bin 0 -> 114 bytes
...extfield_search_right_selected_holo_light.9.png | Bin 0 -> 111 bytes
.../abc_textfield_search_selected_holo_dark.9.png | Bin 0 -> 114 bytes
.../abc_textfield_search_selected_holo_light.9.png | Bin 0 -> 112 bytes
.../abc_ab_bottom_solid_dark_holo.9.png | Bin 0 -> 134 bytes
.../abc_ab_bottom_solid_light_holo.9.png | Bin 0 -> 134 bytes
.../abc_ab_bottom_transparent_dark_holo.9.png | Bin 0 -> 123 bytes
.../abc_ab_bottom_transparent_light_holo.9.png | Bin 0 -> 123 bytes
.../abc_ab_share_pack_holo_dark.9.png | Bin 0 -> 2851 bytes
.../abc_ab_share_pack_holo_light.9.png | Bin 0 -> 122 bytes
.../res/drawable-mdpi/abc_ab_solid_dark_holo.9.png | Bin 0 -> 133 bytes
.../drawable-mdpi/abc_ab_solid_light_holo.9.png | Bin 0 -> 133 bytes
.../abc_ab_stacked_solid_dark_holo.9.png | Bin 0 -> 134 bytes
.../abc_ab_stacked_solid_light_holo.9.png | Bin 0 -> 133 bytes
.../abc_ab_stacked_transparent_dark_holo.9.png | Bin 0 -> 127 bytes
.../abc_ab_stacked_transparent_light_holo.9.png | Bin 0 -> 123 bytes
.../abc_ab_transparent_dark_holo.9.png | Bin 0 -> 139 bytes
.../abc_ab_transparent_light_holo.9.png | Bin 0 -> 133 bytes
.../abc_cab_background_bottom_holo_dark.9.png | Bin 0 -> 127 bytes
.../abc_cab_background_bottom_holo_light.9.png | Bin 0 -> 124 bytes
.../abc_cab_background_top_holo_dark.9.png | Bin 0 -> 130 bytes
.../abc_cab_background_top_holo_light.9.png | Bin 0 -> 128 bytes
.../res/drawable-mdpi/abc_ic_ab_back_holo_dark.png | Bin 0 -> 466 bytes
.../drawable-mdpi/abc_ic_ab_back_holo_light.png | Bin 0 -> 438 bytes
.../drawable-mdpi/abc_ic_cab_done_holo_dark.png | Bin 0 -> 566 bytes
.../drawable-mdpi/abc_ic_cab_done_holo_light.png | Bin 0 -> 552 bytes
.../res/drawable-mdpi/abc_ic_clear_disabled.png | Bin 0 -> 1775 bytes
.../res/drawable-mdpi/abc_ic_clear_normal.png | Bin 0 -> 1869 bytes
...abc_ic_clear_search_api_disabled_holo_light.png | Bin 0 -> 740 bytes
.../abc_ic_clear_search_api_holo_light.png | Bin 0 -> 743 bytes
.../abc_ic_commit_search_api_holo_dark.png | Bin 0 -> 511 bytes
.../abc_ic_commit_search_api_holo_light.png | Bin 0 -> 532 bytes
external/appcompat/res/drawable-mdpi/abc_ic_go.png | Bin 0 -> 1538 bytes
.../abc_ic_go_search_api_holo_light.png | Bin 0 -> 570 bytes
.../abc_ic_menu_moreoverflow_normal_holo_dark.png | Bin 0 -> 122 bytes
.../abc_ic_menu_moreoverflow_normal_holo_light.png | Bin 0 -> 131 bytes
.../drawable-mdpi/abc_ic_menu_share_holo_dark.png | Bin 0 -> 332 bytes
.../drawable-mdpi/abc_ic_menu_share_holo_light.png | Bin 0 -> 355 bytes
.../appcompat/res/drawable-mdpi/abc_ic_search.png | Bin 0 -> 2280 bytes
.../drawable-mdpi/abc_ic_search_api_holo_light.png | Bin 0 -> 1541 bytes
.../res/drawable-mdpi/abc_ic_voice_search.png | Bin 0 -> 1937 bytes
.../abc_ic_voice_search_api_holo_light.png | Bin 0 -> 794 bytes
.../drawable-mdpi/abc_list_divider_holo_dark.9.png | Bin 0 -> 78 bytes
.../abc_list_divider_holo_light.9.png | Bin 0 -> 76 bytes
.../res/drawable-mdpi/abc_list_focused_holo.9.png | Bin 0 -> 171 bytes
.../drawable-mdpi/abc_list_longpressed_holo.9.png | Bin 0 -> 151 bytes
.../drawable-mdpi/abc_list_pressed_holo_dark.9.png | Bin 0 -> 158 bytes
.../abc_list_pressed_holo_light.9.png | Bin 0 -> 158 bytes
.../abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 172 bytes
.../abc_list_selector_disabled_holo_light.9.png | Bin 0 -> 171 bytes
.../abc_menu_dropdown_panel_holo_dark.9.png | Bin 0 -> 839 bytes
.../abc_menu_dropdown_panel_holo_light.9.png | Bin 0 -> 836 bytes
.../abc_menu_hardkey_panel_holo_dark.9.png | Bin 0 -> 567 bytes
.../abc_menu_hardkey_panel_holo_light.9.png | Bin 0 -> 562 bytes
.../abc_spinner_ab_default_holo_dark.9.png | Bin 0 -> 266 bytes
.../abc_spinner_ab_default_holo_light.9.png | Bin 0 -> 266 bytes
.../abc_spinner_ab_disabled_holo_dark.9.png | Bin 0 -> 262 bytes
.../abc_spinner_ab_disabled_holo_light.9.png | Bin 0 -> 262 bytes
.../abc_spinner_ab_focused_holo_dark.9.png | Bin 0 -> 407 bytes
.../abc_spinner_ab_focused_holo_light.9.png | Bin 0 -> 407 bytes
.../abc_spinner_ab_pressed_holo_dark.9.png | Bin 0 -> 348 bytes
.../abc_spinner_ab_pressed_holo_light.9.png | Bin 0 -> 348 bytes
.../abc_tab_selected_focused_holo.9.png | Bin 0 -> 148 bytes
.../res/drawable-mdpi/abc_tab_selected_holo.9.png | Bin 0 -> 151 bytes
.../abc_tab_selected_pressed_holo.9.png | Bin 0 -> 150 bytes
.../abc_tab_unselected_pressed_holo.9.png | Bin 0 -> 155 bytes
.../abc_textfield_search_default_holo_dark.9.png | Bin 0 -> 106 bytes
.../abc_textfield_search_default_holo_light.9.png | Bin 0 -> 100 bytes
..._textfield_search_right_default_holo_dark.9.png | Bin 0 -> 105 bytes
...textfield_search_right_default_holo_light.9.png | Bin 0 -> 98 bytes
...textfield_search_right_selected_holo_dark.9.png | Bin 0 -> 107 bytes
...extfield_search_right_selected_holo_light.9.png | Bin 0 -> 107 bytes
.../abc_textfield_search_selected_holo_dark.9.png | Bin 0 -> 109 bytes
.../abc_textfield_search_selected_holo_light.9.png | Bin 0 -> 109 bytes
.../abc_ab_bottom_solid_dark_holo.9.png | Bin 0 -> 165 bytes
.../abc_ab_bottom_solid_light_holo.9.png | Bin 0 -> 166 bytes
.../abc_ab_bottom_transparent_dark_holo.9.png | Bin 0 -> 153 bytes
.../abc_ab_bottom_transparent_light_holo.9.png | Bin 0 -> 152 bytes
.../abc_ab_share_pack_holo_dark.9.png | Bin 0 -> 2875 bytes
.../abc_ab_share_pack_holo_light.9.png | Bin 0 -> 2869 bytes
.../drawable-xhdpi/abc_ab_solid_dark_holo.9.png | Bin 0 -> 163 bytes
.../drawable-xhdpi/abc_ab_solid_light_holo.9.png | Bin 0 -> 163 bytes
.../abc_ab_stacked_solid_dark_holo.9.png | Bin 0 -> 163 bytes
.../abc_ab_stacked_solid_light_holo.9.png | Bin 0 -> 163 bytes
.../abc_ab_stacked_transparent_dark_holo.9.png | Bin 0 -> 158 bytes
.../abc_ab_stacked_transparent_light_holo.9.png | Bin 0 -> 152 bytes
.../abc_ab_transparent_dark_holo.9.png | Bin 0 -> 171 bytes
.../abc_ab_transparent_light_holo.9.png | Bin 0 -> 160 bytes
.../abc_cab_background_bottom_holo_dark.9.png | Bin 0 -> 166 bytes
.../abc_cab_background_bottom_holo_light.9.png | Bin 0 -> 161 bytes
.../abc_cab_background_top_holo_dark.9.png | Bin 0 -> 174 bytes
.../abc_cab_background_top_holo_light.9.png | Bin 0 -> 161 bytes
.../drawable-xhdpi/abc_ic_ab_back_holo_dark.png | Bin 0 -> 741 bytes
.../drawable-xhdpi/abc_ic_ab_back_holo_light.png | Bin 0 -> 661 bytes
.../drawable-xhdpi/abc_ic_cab_done_holo_dark.png | Bin 0 -> 970 bytes
.../drawable-xhdpi/abc_ic_cab_done_holo_light.png | Bin 0 -> 915 bytes
.../res/drawable-xhdpi/abc_ic_clear_disabled.png | Bin 0 -> 2531 bytes
...abc_ic_clear_search_api_disabled_holo_light.png | Bin 0 -> 1315 bytes
.../abc_ic_clear_search_api_holo_light.png | Bin 0 -> 1447 bytes
.../abc_ic_commit_search_api_holo_dark.png | Bin 0 -> 703 bytes
.../abc_ic_commit_search_api_holo_light.png | Bin 0 -> 712 bytes
.../appcompat/res/drawable-xhdpi/abc_ic_go.png | Bin 0 -> 1983 bytes
.../abc_ic_go_search_api_holo_light.png | Bin 0 -> 836 bytes
.../abc_ic_menu_moreoverflow_normal_holo_dark.png | Bin 0 -> 167 bytes
.../abc_ic_menu_moreoverflow_normal_holo_light.png | Bin 0 -> 184 bytes
.../drawable-xhdpi/abc_ic_menu_share_holo_dark.png | Bin 0 -> 699 bytes
.../abc_ic_menu_share_holo_light.png | Bin 0 -> 935 bytes
.../appcompat/res/drawable-xhdpi/abc_ic_search.png | Bin 0 -> 3784 bytes
.../abc_ic_search_api_holo_light.png | Bin 0 -> 3037 bytes
.../res/drawable-xhdpi/abc_ic_voice_search.png | Bin 0 -> 3053 bytes
.../abc_ic_voice_search_api_holo_light.png | Bin 0 -> 1414 bytes
.../abc_list_divider_holo_dark.9.png | Bin 0 -> 83 bytes
.../abc_list_divider_holo_light.9.png | Bin 0 -> 83 bytes
.../res/drawable-xhdpi/abc_list_focused_holo.9.png | Bin 0 -> 203 bytes
.../drawable-xhdpi/abc_list_longpressed_holo.9.png | Bin 0 -> 158 bytes
.../abc_list_pressed_holo_dark.9.png | Bin 0 -> 163 bytes
.../abc_list_pressed_holo_light.9.png | Bin 0 -> 163 bytes
.../abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 190 bytes
.../abc_list_selector_disabled_holo_light.9.png | Bin 0 -> 188 bytes
.../abc_menu_dropdown_panel_holo_dark.9.png | Bin 0 -> 1881 bytes
.../abc_menu_dropdown_panel_holo_light.9.png | Bin 0 -> 1903 bytes
.../abc_menu_hardkey_panel_holo_dark.9.png | Bin 0 -> 1220 bytes
.../abc_menu_hardkey_panel_holo_light.9.png | Bin 0 -> 1178 bytes
.../abc_spinner_ab_default_holo_dark.9.png | Bin 0 -> 406 bytes
.../abc_spinner_ab_default_holo_light.9.png | Bin 0 -> 405 bytes
.../abc_spinner_ab_disabled_holo_dark.9.png | Bin 0 -> 393 bytes
.../abc_spinner_ab_disabled_holo_light.9.png | Bin 0 -> 393 bytes
.../abc_spinner_ab_focused_holo_dark.9.png | Bin 0 -> 659 bytes
.../abc_spinner_ab_focused_holo_light.9.png | Bin 0 -> 655 bytes
.../abc_spinner_ab_pressed_holo_dark.9.png | Bin 0 -> 582 bytes
.../abc_spinner_ab_pressed_holo_light.9.png | Bin 0 -> 583 bytes
.../abc_tab_selected_focused_holo.9.png | Bin 0 -> 147 bytes
.../res/drawable-xhdpi/abc_tab_selected_holo.9.png | Bin 0 -> 153 bytes
.../abc_tab_selected_pressed_holo.9.png | Bin 0 -> 147 bytes
.../abc_tab_unselected_pressed_holo.9.png | Bin 0 -> 149 bytes
.../abc_textfield_search_default_holo_dark.9.png | Bin 0 -> 126 bytes
.../abc_textfield_search_default_holo_light.9.png | Bin 0 -> 126 bytes
..._textfield_search_right_default_holo_dark.9.png | Bin 0 -> 125 bytes
...textfield_search_right_default_holo_light.9.png | Bin 0 -> 127 bytes
...textfield_search_right_selected_holo_dark.9.png | Bin 0 -> 128 bytes
...extfield_search_right_selected_holo_light.9.png | Bin 0 -> 128 bytes
.../abc_textfield_search_selected_holo_dark.9.png | Bin 0 -> 114 bytes
.../abc_textfield_search_selected_holo_light.9.png | Bin 0 -> 126 bytes
external/appcompat/res/drawable/abc_ic_clear.xml | 22 +
.../res/drawable/abc_ic_clear_holo_light.xml | 22 +
.../res/drawable/abc_item_background_holo_dark.xml | 26 +
.../drawable/abc_item_background_holo_light.xml | 26 +
...st_selector_background_transition_holo_dark.xml | 20 +
...t_selector_background_transition_holo_light.xml | 20 +
.../res/drawable/abc_list_selector_holo_dark.xml | 27 +
.../res/drawable/abc_list_selector_holo_light.xml | 28 +
.../res/drawable/abc_search_dropdown_dark.xml | 22 +
.../res/drawable/abc_search_dropdown_light.xml | 22 +
.../res/drawable/abc_spinner_ab_holo_dark.xml | 25 +
.../res/drawable/abc_spinner_ab_holo_light.xml | 25 +
.../res/drawable/abc_tab_indicator_ab_holo.xml | 34 ++
.../abc_textfield_searchview_holo_dark.xml | 22 +
.../abc_textfield_searchview_holo_light.xml | 22 +
.../abc_textfield_searchview_right_holo_dark.xml | 22 +
.../abc_textfield_searchview_right_holo_light.xml | 22 +
.../res/layout-v11/abc_action_bar_decor.xml | 27 +
.../res/layout-v14/abc_activity_chooser_view.xml | 29 +
.../appcompat/res/layout/abc_action_bar_decor.xml | 25 +
.../res/layout/abc_action_bar_decor_include.xml | 55 ++
.../res/layout/abc_action_bar_decor_overlay.xml | 59 +++
.../appcompat/res/layout/abc_action_bar_home.xml | 38 ++
.../appcompat/res/layout/abc_action_bar_tab.xml | 22 +
.../appcompat/res/layout/abc_action_bar_tabbar.xml | 22 +
.../res/layout/abc_action_bar_title_item.xml | 50 ++
.../layout/abc_action_bar_view_list_nav_layout.xml | 23 +
.../res/layout/abc_action_menu_item_layout.xml | 30 ++
.../res/layout/abc_action_menu_layout.xml | 24 +
.../appcompat/res/layout/abc_action_mode_bar.xml | 24 +
.../res/layout/abc_action_mode_close_item.xml | 32 ++
.../res/layout/abc_activity_chooser_view.xml | 29 +
.../layout/abc_activity_chooser_view_include.xml | 68 +++
.../layout/abc_activity_chooser_view_list_item.xml | 52 ++
.../res/layout/abc_expanded_menu_layout.xml | 21 +
.../res/layout/abc_list_menu_item_checkbox.xml | 26 +
.../res/layout/abc_list_menu_item_icon.xml | 28 +
.../res/layout/abc_list_menu_item_layout.xml | 58 ++
.../res/layout/abc_list_menu_item_radio.xml | 24 +
.../res/layout/abc_popup_menu_item_layout.xml | 61 +++
.../abc_search_dropdown_item_icons_2line.xml | 89 ++++
external/appcompat/res/layout/abc_search_view.xml | 159 ++++++
.../support_simple_spinner_dropdown_item.xml | 25 +
external/appcompat/res/values-af/strings.xml | 32 ++
external/appcompat/res/values-am/strings.xml | 32 ++
external/appcompat/res/values-ar/strings.xml | 32 ++
external/appcompat/res/values-bg/strings.xml | 32 ++
external/appcompat/res/values-ca/strings.xml | 32 ++
external/appcompat/res/values-cs/strings.xml | 32 ++
external/appcompat/res/values-da/strings.xml | 32 ++
external/appcompat/res/values-de/strings.xml | 32 ++
external/appcompat/res/values-el/strings.xml | 32 ++
external/appcompat/res/values-en-rGB/strings.xml | 32 ++
external/appcompat/res/values-en-rIN/strings.xml | 32 ++
external/appcompat/res/values-es-rUS/strings.xml | 32 ++
external/appcompat/res/values-es/strings.xml | 32 ++
external/appcompat/res/values-et-rEE/strings.xml | 32 ++
external/appcompat/res/values-fa/strings.xml | 32 ++
external/appcompat/res/values-fi/strings.xml | 32 ++
external/appcompat/res/values-fr-rCA/strings.xml | 32 ++
external/appcompat/res/values-fr/strings.xml | 32 ++
external/appcompat/res/values-hi/strings.xml | 32 ++
external/appcompat/res/values-hr/strings.xml | 32 ++
external/appcompat/res/values-hu/strings.xml | 32 ++
external/appcompat/res/values-hy-rAM/strings.xml | 32 ++
external/appcompat/res/values-in/strings.xml | 32 ++
external/appcompat/res/values-it/strings.xml | 32 ++
external/appcompat/res/values-iw/strings.xml | 32 ++
external/appcompat/res/values-ja/strings.xml | 32 ++
external/appcompat/res/values-ka-rGE/strings.xml | 32 ++
external/appcompat/res/values-km-rKH/strings.xml | 32 ++
external/appcompat/res/values-ko/strings.xml | 32 ++
external/appcompat/res/values-land/bools.xml | 20 +
external/appcompat/res/values-land/config.xml | 18 +
external/appcompat/res/values-land/dimens.xml | 32 ++
external/appcompat/res/values-large/bools.xml | 20 +
external/appcompat/res/values-large/config.xml | 30 ++
external/appcompat/res/values-large/dimens.xml | 25 +
external/appcompat/res/values-lo-rLA/strings.xml | 32 ++
external/appcompat/res/values-lt/strings.xml | 32 ++
external/appcompat/res/values-lv/strings.xml | 32 ++
external/appcompat/res/values-mn-rMN/strings.xml | 32 ++
external/appcompat/res/values-ms-rMY/strings.xml | 32 ++
external/appcompat/res/values-nb/strings.xml | 32 ++
external/appcompat/res/values-nl/strings.xml | 32 ++
external/appcompat/res/values-pl/strings.xml | 32 ++
external/appcompat/res/values-pt-rPT/strings.xml | 32 ++
external/appcompat/res/values-pt/strings.xml | 32 ++
external/appcompat/res/values-ro/strings.xml | 32 ++
external/appcompat/res/values-ru/strings.xml | 32 ++
external/appcompat/res/values-sk/strings.xml | 32 ++
external/appcompat/res/values-sl/strings.xml | 32 ++
external/appcompat/res/values-sr/strings.xml | 32 ++
external/appcompat/res/values-sv/strings.xml | 32 ++
external/appcompat/res/values-sw/strings.xml | 32 ++
external/appcompat/res/values-sw600dp/config.xml | 25 +
external/appcompat/res/values-sw600dp/dimens.xml | 34 ++
external/appcompat/res/values-th/strings.xml | 32 ++
external/appcompat/res/values-tl/strings.xml | 32 ++
external/appcompat/res/values-tr/strings.xml | 32 ++
external/appcompat/res/values-uk/strings.xml | 32 ++
external/appcompat/res/values-v11/styles_base.xml | 44 ++
external/appcompat/res/values-v11/themes_base.xml | 52 ++
external/appcompat/res/values-v14/styles_base.xml | 228 ++++++++
external/appcompat/res/values-v14/themes_base.xml | 109 ++++
external/appcompat/res/values-vi/strings.xml | 32 ++
external/appcompat/res/values-w360dp/dimens.xml | 22 +
external/appcompat/res/values-w480dp/bools.xml | 19 +
external/appcompat/res/values-w480dp/config.xml | 18 +
external/appcompat/res/values-w500dp/dimens.xml | 22 +
external/appcompat/res/values-w600dp/dimens.xml | 40 ++
external/appcompat/res/values-w720dp/bools.xml | 19 +
external/appcompat/res/values-xlarge/bools.xml | 19 +
external/appcompat/res/values-xlarge/dimens.xml | 42 ++
external/appcompat/res/values-zh-rCN/strings.xml | 32 ++
external/appcompat/res/values-zh-rHK/strings.xml | 32 ++
external/appcompat/res/values-zh-rTW/strings.xml | 32 ++
external/appcompat/res/values-zu/strings.xml | 32 ++
external/appcompat/res/values/attrs.xml | 556 ++++++++++++++++++++
external/appcompat/res/values/bools.xml | 23 +
external/appcompat/res/values/colors.xml | 20 +
external/appcompat/res/values/config.xml | 34 ++
external/appcompat/res/values/dimens.xml | 61 +++
external/appcompat/res/values/ids.xml | 23 +
external/appcompat/res/values/strings.xml | 48 ++
external/appcompat/res/values/styles.xml | 245 +++++++++
external/appcompat/res/values/styles_base.xml | 404 ++++++++++++++
external/appcompat/res/values/themes.xml | 193 +++++++
external/appcompat/res/values/themes_base.xml | 201 +++++++
external/appcompat/src/.readme | 2 +
project.properties | 2 +-
src/org/torproject/android/Orbot.java | 22 +-
.../android/settings/SettingsPreferences.java | 5 +-
358 files changed, 6158 insertions(+), 18 deletions(-)
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 44ff3bd..c459119 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -14,7 +14,7 @@
<application android:name=".OrbotApp" android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:configChanges="locale|orientation|screenSize"
- android:theme="@style/Theme.Sherlock"
+ android:theme="@style/Theme.AppCompat"
android:persistent="true"
android:allowBackup="false"
android:allowClearUserData="true"
diff --git a/external/appcompat/.classpath b/external/appcompat/.classpath
new file mode 100644
index 0000000..b436a5a
--- /dev/null
+++ b/external/appcompat/.classpath
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+ <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="src" path="gen"/>
+ <classpathentry kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
+ <classpathentry exported="true" kind="lib" path="libs/android-support-v4.jar"/>
+ <classpathentry exported="true" kind="lib" path="libs/android-support-v7-appcompat.jar"/>
+ <classpathentry kind="output" path="bin/classes"/>
+</classpath>
diff --git a/external/appcompat/.project b/external/appcompat/.project
new file mode 100644
index 0000000..957d33d
--- /dev/null
+++ b/external/appcompat/.project
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>android-support-v7-appcompat</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.ApkBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/external/appcompat/.settings/org.eclipse.jdt.core.prefs b/external/appcompat/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..b080d2d
--- /dev/null
+++ b/external/appcompat/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,4 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.source=1.6
diff --git a/external/appcompat/AndroidManifest.xml b/external/appcompat/AndroidManifest.xml
new file mode 100644
index 0000000..dac4cb2
--- /dev/null
+++ b/external/appcompat/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="android.support.v7.appcompat">
+ <uses-sdk android:minSdkVersion="7"/>
+ <application />
+</manifest>
diff --git a/external/appcompat/README.txt b/external/appcompat/README.txt
new file mode 100644
index 0000000..8e8de05
--- /dev/null
+++ b/external/appcompat/README.txt
@@ -0,0 +1,10 @@
+Library Project including compatibility ActionBar.
+
+This can be used by an Android project to provide
+access to ActionBar on applications running on API 7+.
+
+There is technically no source, but the src folder is necessary
+to ensure that the build system works. The content is actually
+located in libs/android-support-v7-appcompat.jar.
+The accompanying resources must also be included in the application.
+
diff --git a/external/appcompat/libs/android-support-v4.jar b/external/appcompat/libs/android-support-v4.jar
new file mode 100644
index 0000000..9056828
Binary files /dev/null and b/external/appcompat/libs/android-support-v4.jar differ
diff --git a/external/appcompat/libs/android-support-v7-appcompat.jar b/external/appcompat/libs/android-support-v7-appcompat.jar
new file mode 100644
index 0000000..fd1d984
Binary files /dev/null and b/external/appcompat/libs/android-support-v7-appcompat.jar differ
diff --git a/external/appcompat/project.properties b/external/appcompat/project.properties
new file mode 100644
index 0000000..91d2b02
--- /dev/null
+++ b/external/appcompat/project.properties
@@ -0,0 +1,15 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-19
+android.library=true
diff --git a/external/appcompat/res/anim/abc_fade_in.xml b/external/appcompat/res/anim/abc_fade_in.xml
new file mode 100644
index 0000000..da7ee29
--- /dev/null
+++ b/external/appcompat/res/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<alpha xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromAlpha="0.0" android:toAlpha="1.0"
+ android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/external/appcompat/res/anim/abc_fade_out.xml b/external/appcompat/res/anim/abc_fade_out.xml
new file mode 100644
index 0000000..c81b39a
--- /dev/null
+++ b/external/appcompat/res/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<alpha xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromAlpha="1.0" android:toAlpha="0.0"
+ android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/external/appcompat/res/anim/abc_slide_in_bottom.xml b/external/appcompat/res/anim/abc_slide_in_bottom.xml
new file mode 100644
index 0000000..1afa8fe
--- /dev/null
+++ b/external/appcompat/res/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromYDelta="50%p" android:toYDelta="0"
+ android:duration="@android:integer/config_mediumAnimTime"/>
diff --git a/external/appcompat/res/anim/abc_slide_in_top.xml b/external/appcompat/res/anim/abc_slide_in_top.xml
new file mode 100644
index 0000000..ab824f2
--- /dev/null
+++ b/external/appcompat/res/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromYDelta="-50%p" android:toYDelta="0"
+ android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/external/appcompat/res/anim/abc_slide_out_bottom.xml b/external/appcompat/res/anim/abc_slide_out_bottom.xml
new file mode 100644
index 0000000..b309fe8
--- /dev/null
+++ b/external/appcompat/res/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/accelerate_interpolator"
+ android:fromYDelta="0" android:toYDelta="50%p"
+ android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/external/appcompat/res/anim/abc_slide_out_top.xml b/external/appcompat/res/anim/abc_slide_out_top.xml
new file mode 100644
index 0000000..e84d1c7
--- /dev/null
+++ b/external/appcompat/res/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/accelerate_interpolator"
+ android:fromYDelta="0" android:toYDelta="-50%p"
+ android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/external/appcompat/res/color/abc_search_url_text_holo.xml b/external/appcompat/res/color/abc_search_url_text_holo.xml
new file mode 100644
index 0000000..c4579fa
--- /dev/null
+++ b/external/appcompat/res/color/abc_search_url_text_holo.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
+ <item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
+ <item android:color="@color/abc_search_url_text_normal"/> <!-- not selected -->
+</selector>
\ No newline at end of file
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png
new file mode 100644
index 0000000..769463b
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png
new file mode 100644
index 0000000..7305047
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png
new file mode 100644
index 0000000..712a551
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png
new file mode 100644
index 0000000..bf3b943
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png
new file mode 100644
index 0000000..6c14157
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png
new file mode 100644
index 0000000..f4ff16b
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png
new file mode 100644
index 0000000..cbbaec5
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png
new file mode 100644
index 0000000..af917e5
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png
new file mode 100644
index 0000000..0520e5a
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png
new file mode 100644
index 0000000..e3e3f93
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png
new file mode 100644
index 0000000..1e39572
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png
new file mode 100644
index 0000000..a16db85
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png
new file mode 100644
index 0000000..0eff695
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png
new file mode 100644
index 0000000..219b170
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png
new file mode 100644
index 0000000..1d836f6
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png
new file mode 100644
index 0000000..5818666
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png
new file mode 100644
index 0000000..564fb34
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png
new file mode 100644
index 0000000..ae21b76
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png b/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png
new file mode 100644
index 0000000..897a1c1
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png
new file mode 100644
index 0000000..0c89f71
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png b/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png
new file mode 100644
index 0000000..d8662e3
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png
new file mode 100644
index 0000000..ed03f62
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png b/external/appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png
new file mode 100644
index 0000000..d97c342
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_clear_normal.png b/external/appcompat/res/drawable-hdpi/abc_ic_clear_normal.png
new file mode 100644
index 0000000..33ad8d4
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_clear_normal.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png
new file mode 100644
index 0000000..3edbd74
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png
new file mode 100644
index 0000000..90db01b
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png b/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png
new file mode 100644
index 0000000..83f36a9
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png
new file mode 100644
index 0000000..a3cc21e
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_go.png b/external/appcompat/res/drawable-hdpi/abc_ic_go.png
new file mode 100644
index 0000000..97b825e
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_go.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png
new file mode 100644
index 0000000..7e1ba2a
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
new file mode 100644
index 0000000..2abc458
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
new file mode 100644
index 0000000..bb6aef1
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png b/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png
new file mode 100644
index 0000000..6f747c8
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png
new file mode 100644
index 0000000..682b2fd
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_search.png b/external/appcompat/res/drawable-hdpi/abc_ic_search.png
new file mode 100644
index 0000000..bf8bd66
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_search.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png
new file mode 100644
index 0000000..72e207b
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_voice_search.png b/external/appcompat/res/drawable-hdpi/abc_ic_voice_search.png
new file mode 100644
index 0000000..66d14ae
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_voice_search.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png b/external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png
new file mode 100644
index 0000000..3481c98
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png
new file mode 100644
index 0000000..986ab0b
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png
new file mode 100644
index 0000000..0279e17
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..5552708
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..4ea7afa
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..5654cd6
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..5654cd6
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..f6fd30d
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..ca8e9a2
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png
new file mode 100644
index 0000000..72ee35f
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png
new file mode 100644
index 0000000..0d1f9bf
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png
new file mode 100644
index 0000000..465ee6d
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png
new file mode 100644
index 0000000..76a5c53
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png
new file mode 100644
index 0000000..88f8765
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png
new file mode 100644
index 0000000..fa68a13
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png
new file mode 100644
index 0000000..78c63cb
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png
new file mode 100644
index 0000000..e13a9f8
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png
new file mode 100644
index 0000000..26d2e16
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png
new file mode 100644
index 0000000..00ae92a
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png
new file mode 100644
index 0000000..dc20a8d
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png
new file mode 100644
index 0000000..272a2a1
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png
new file mode 100644
index 0000000..673e3bf
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png
new file mode 100644
index 0000000..d57df98
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png
new file mode 100644
index 0000000..6278eef
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png b/external/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png
new file mode 100644
index 0000000..aadc6f8
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png
new file mode 100644
index 0000000..70c0e73
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png
new file mode 100644
index 0000000..36e71d8
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png
new file mode 100644
index 0000000..4be4af5
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png
new file mode 100644
index 0000000..e72193f
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png
new file mode 100644
index 0000000..8f20b9d
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png
new file mode 100644
index 0000000..04f657e
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png
new file mode 100644
index 0000000..99309ef
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png b/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png
new file mode 100644
index 0000000..9bde7fb
Binary files /dev/null and b/external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png
new file mode 100644
index 0000000..b229367
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png
new file mode 100644
index 0000000..0706c8a
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png
new file mode 100644
index 0000000..d814d02
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png
new file mode 100644
index 0000000..b139c8e
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png
new file mode 100644
index 0000000..ed4ba34
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png
new file mode 100644
index 0000000..8f10bd5
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png
new file mode 100644
index 0000000..743d00b
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png
new file mode 100644
index 0000000..17c1fb9
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png
new file mode 100644
index 0000000..007a4b2
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png
new file mode 100644
index 0000000..ad6e1a4
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png
new file mode 100644
index 0000000..0ad6c88
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png
new file mode 100644
index 0000000..19b50ab
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png
new file mode 100644
index 0000000..ad980b1
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png
new file mode 100644
index 0000000..60e6c52
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png
new file mode 100644
index 0000000..d8f1c8b
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png
new file mode 100644
index 0000000..31e4989
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png
new file mode 100644
index 0000000..7c2cbe5
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png
new file mode 100644
index 0000000..30cbdc1
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png b/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png
new file mode 100644
index 0000000..df2d3d1
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png
new file mode 100644
index 0000000..b2aa9c2
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png b/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png
new file mode 100644
index 0000000..a17b6a7
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png
new file mode 100644
index 0000000..b28b3b5
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png b/external/appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png
new file mode 100644
index 0000000..79228ba
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_clear_normal.png b/external/appcompat/res/drawable-mdpi/abc_ic_clear_normal.png
new file mode 100644
index 0000000..86944a8
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_clear_normal.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png
new file mode 100644
index 0000000..c0bdf06
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png
new file mode 100644
index 0000000..15b86cb
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png b/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png
new file mode 100644
index 0000000..844c99c
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png
new file mode 100644
index 0000000..86c170e
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_go.png b/external/appcompat/res/drawable-mdpi/abc_ic_go.png
new file mode 100644
index 0000000..bf19833
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_go.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png
new file mode 100644
index 0000000..8518498
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
new file mode 100644
index 0000000..ba704b6
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
new file mode 100644
index 0000000..01d6816
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png b/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png
new file mode 100644
index 0000000..6bf21e3
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png
new file mode 100644
index 0000000..70fe31a
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_search.png b/external/appcompat/res/drawable-mdpi/abc_ic_search.png
new file mode 100644
index 0000000..4be72f1
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_search.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png
new file mode 100644
index 0000000..f2e26f8
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_voice_search.png b/external/appcompat/res/drawable-mdpi/abc_ic_voice_search.png
new file mode 100644
index 0000000..73c6be6
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_voice_search.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png b/external/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png
new file mode 100644
index 0000000..71d838e
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png
new file mode 100644
index 0000000..986ab0b
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png
new file mode 100644
index 0000000..0279e17
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..00f05d8
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..3bf8e03
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..6e77525
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..6e77525
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..92da2f0
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..42cb646
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png
new file mode 100644
index 0000000..31dc342
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png
new file mode 100644
index 0000000..755c145
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png
new file mode 100644
index 0000000..3677994
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png
new file mode 100644
index 0000000..02b25f0
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png
new file mode 100644
index 0000000..8d75946
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png
new file mode 100644
index 0000000..716560b
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png
new file mode 100644
index 0000000..c3ba89c
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png
new file mode 100644
index 0000000..67c5358
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png
new file mode 100644
index 0000000..c015f43
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png
new file mode 100644
index 0000000..487edc2
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png
new file mode 100644
index 0000000..2fa15e7
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png
new file mode 100644
index 0000000..a964b22
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png
new file mode 100644
index 0000000..c9972e7
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png
new file mode 100644
index 0000000..587337c
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png
new file mode 100644
index 0000000..155c4fc
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png b/external/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png
new file mode 100644
index 0000000..b1223fe
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png
new file mode 100644
index 0000000..081657e
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png
new file mode 100644
index 0000000..3f312b4
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png
new file mode 100644
index 0000000..b086fae
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png
new file mode 100644
index 0000000..73c336a
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png
new file mode 100644
index 0000000..726e0ff
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png
new file mode 100644
index 0000000..726e0ff
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png
new file mode 100644
index 0000000..1767c16
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png b/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png
new file mode 100644
index 0000000..1767c16
Binary files /dev/null and b/external/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png
new file mode 100644
index 0000000..5753346
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png
new file mode 100644
index 0000000..8155fe8
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png
new file mode 100644
index 0000000..6cee9a1
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png
new file mode 100644
index 0000000..fa4d76a
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png
new file mode 100644
index 0000000..55099d4
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png
new file mode 100644
index 0000000..3c4701f
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png
new file mode 100644
index 0000000..6622cba
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png
new file mode 100644
index 0000000..c427297
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png
new file mode 100644
index 0000000..a0d9c1b
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png
new file mode 100644
index 0000000..d36f99f
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png
new file mode 100644
index 0000000..5ad475d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png
new file mode 100644
index 0000000..6ade5ee
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png
new file mode 100644
index 0000000..719b923
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png
new file mode 100644
index 0000000..6da264d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png
new file mode 100644
index 0000000..0bd0980
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png
new file mode 100644
index 0000000..43ed26d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png
new file mode 100644
index 0000000..6b31579
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png
new file mode 100644
index 0000000..df0121b
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png b/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png
new file mode 100644
index 0000000..8ded62f
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png
new file mode 100644
index 0000000..517e9f7
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png b/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png
new file mode 100644
index 0000000..2e06dd0
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png
new file mode 100644
index 0000000..bb19810
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png
new file mode 100644
index 0000000..e35c5f0
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png
new file mode 100644
index 0000000..7fd7aeb
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png
new file mode 100644
index 0000000..53cfbd3
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png b/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png
new file mode 100644
index 0000000..d8faf90
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png
new file mode 100644
index 0000000..e7c7280
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_go.png b/external/appcompat/res/drawable-xhdpi/abc_ic_go.png
new file mode 100644
index 0000000..1e2dcfa
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_go.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png
new file mode 100644
index 0000000..f12eafc
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
new file mode 100644
index 0000000..a92fb1d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
new file mode 100644
index 0000000..930ca8d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png
new file mode 100644
index 0000000..45a0f1d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png
new file mode 100644
index 0000000..528e554
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_search.png b/external/appcompat/res/drawable-xhdpi/abc_ic_search.png
new file mode 100644
index 0000000..998f91b
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_search.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png
new file mode 100644
index 0000000..a4cdf1c
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search.png b/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search.png
new file mode 100644
index 0000000..c625a36
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png b/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png
new file mode 100644
index 0000000..c332ba0
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png
new file mode 100644
index 0000000..e62f011
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png
new file mode 100644
index 0000000..65061c0
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..b545f8e
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..eda10e6
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..e4b3393
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..e4b3393
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..88726b6
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..c6a7d4d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png
new file mode 100644
index 0000000..abc48f8
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png
new file mode 100644
index 0000000..48905ed
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png
new file mode 100644
index 0000000..c1ad023
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png
new file mode 100644
index 0000000..a1e33d6
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png
new file mode 100644
index 0000000..c43293d
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png
new file mode 100644
index 0000000..3dc481e
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png
new file mode 100644
index 0000000..9a7b173
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png
new file mode 100644
index 0000000..6888fdc
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png
new file mode 100644
index 0000000..9408b47
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png
new file mode 100644
index 0000000..1cb95d1
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png
new file mode 100644
index 0000000..a3c7711
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png
new file mode 100644
index 0000000..2a21210
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png
new file mode 100644
index 0000000..03cfb09
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png
new file mode 100644
index 0000000..e4229f2
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png
new file mode 100644
index 0000000..e862cb1
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png b/external/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png
new file mode 100644
index 0000000..f1eb673
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png
new file mode 100644
index 0000000..8fdbbf3
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png
new file mode 100644
index 0000000..4e9ae43
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png
new file mode 100644
index 0000000..98f4871
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png
new file mode 100644
index 0000000..733373e
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png
new file mode 100644
index 0000000..0c6bb03
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png
new file mode 100644
index 0000000..0c6bb03
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png
new file mode 100644
index 0000000..e5bfd8a
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png differ
diff --git a/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png
new file mode 100644
index 0000000..1743da6
Binary files /dev/null and b/external/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png differ
diff --git a/external/appcompat/res/drawable/abc_ic_clear.xml b/external/appcompat/res/drawable/abc_ic_clear.xml
new file mode 100644
index 0000000..802af6f
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_ic_clear.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_enabled="false"
+ android:drawable="@drawable/abc_ic_clear_disabled" />
+ <item
+ android:drawable="@drawable/abc_ic_clear_normal" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_ic_clear_holo_light.xml b/external/appcompat/res/drawable/abc_ic_clear_holo_light.xml
new file mode 100644
index 0000000..4b84efc
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_ic_clear_holo_light.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_enabled="false"
+ android:drawable="@drawable/abc_ic_clear_search_api_disabled_holo_light" />
+ <item
+ android:drawable="@drawable/abc_ic_clear_search_api_holo_light" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_item_background_holo_dark.xml b/external/appcompat/res/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 0000000..72162c2
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
+ <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
+ <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
+ <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
+ <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
+ <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" />
+ <item android:drawable="@android:color/transparent" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_item_background_holo_light.xml b/external/appcompat/res/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 0000000..1c180b2
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
+ <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
+ <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
+ <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
+ <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
+ <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" />
+ <item android:drawable="@android:color/transparent" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 0000000..0add58c
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<transition xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:drawable="@drawable/abc_list_pressed_holo_dark" />
+ <item android:drawable="@drawable/abc_list_longpressed_holo" />
+</transition>
diff --git a/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml b/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 0000000..0c1d3e6
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<transition xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:drawable="@drawable/abc_list_pressed_holo_light" />
+ <item android:drawable="@drawable/abc_list_longpressed_holo" />
+</transition>
diff --git a/external/appcompat/res/drawable/abc_list_selector_holo_dark.xml b/external/appcompat/res/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 0000000..1fb5fc4
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
+
+ <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
+ <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
+ <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
+ <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
+ <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
+ <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_list_selector_holo_light.xml b/external/appcompat/res/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 0000000..8d24047
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
+
+ <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
+ <item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
+ <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
+ <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
+ <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
+ <item android:state_focused="true" android:drawable="@drawable/abc_list_focused_holo" />
+
+</selector>
diff --git a/external/appcompat/res/drawable/abc_search_dropdown_dark.xml b/external/appcompat/res/drawable/abc_search_dropdown_dark.xml
new file mode 100644
index 0000000..75e8917
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_search_dropdown_dark.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <solid android:color="#F0A0A0A0"/>
+ <stroke android:width="2dp" color="#A00080FF"/>
+ <padding android:left="5dp" android:top="0dp"
+ android:right="5dp" android:bottom="1dp" />
+</shape>
diff --git a/external/appcompat/res/drawable/abc_search_dropdown_light.xml b/external/appcompat/res/drawable/abc_search_dropdown_light.xml
new file mode 100644
index 0000000..80d4928
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_search_dropdown_light.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <solid android:color="#F0FFFFFF"/>
+ <stroke android:width="1dp" color="#A00080FF"/>
+ <padding android:left="5dp" android:top="0dp"
+ android:right="5dp" android:bottom="1dp" />
+</shape>
diff --git a/external/appcompat/res/drawable/abc_spinner_ab_holo_dark.xml b/external/appcompat/res/drawable/abc_spinner_ab_holo_dark.xml
new file mode 100644
index 0000000..934b374
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_spinner_ab_holo_dark.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_enabled="false"
+ android:drawable="@drawable/abc_spinner_ab_disabled_holo_dark" />
+ <item android:state_pressed="true"
+ android:drawable="@drawable/abc_spinner_ab_pressed_holo_dark" />
+ <item android:state_pressed="false" android:state_focused="true"
+ android:drawable="@drawable/abc_spinner_ab_focused_holo_dark" />
+ <item android:drawable="@drawable/abc_spinner_ab_default_holo_dark" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_spinner_ab_holo_light.xml b/external/appcompat/res/drawable/abc_spinner_ab_holo_light.xml
new file mode 100644
index 0000000..dd0245e
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_spinner_ab_holo_light.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_enabled="false"
+ android:drawable="@drawable/abc_spinner_ab_disabled_holo_light" />
+ <item android:state_pressed="true"
+ android:drawable="@drawable/abc_spinner_ab_pressed_holo_light" />
+ <item android:state_pressed="false" android:state_focused="true"
+ android:drawable="@drawable/abc_spinner_ab_focused_holo_light" />
+ <item android:drawable="@drawable/abc_spinner_ab_default_holo_light" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml b/external/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml
new file mode 100644
index 0000000..3c828d8
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_tab_indicator_ab_holo.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <!-- Non focused states -->
+ <item android:state_focused="false" android:state_selected="false" android:state_pressed="false" android:drawable="@android:color/transparent" />
+ <item android:state_focused="false" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/abc_tab_selected_holo" />
+
+ <!-- Focused states -->
+ <item android:state_focused="true" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/abc_list_focused_holo" />
+ <item android:state_focused="true" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/abc_tab_selected_focused_holo" />
+
+ <!-- Pressed -->
+ <!-- Non focused states -->
+ <item android:state_focused="false" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/abc_list_pressed_holo_dark" />
+ <item android:state_focused="false" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/abc_tab_selected_pressed_holo" />
+
+ <!-- Focused states -->
+ <item android:state_focused="true" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/abc_tab_unselected_pressed_holo" />
+ <item android:state_focused="true" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/abc_tab_selected_pressed_holo" />
+</selector>
diff --git a/external/appcompat/res/drawable/abc_textfield_searchview_holo_dark.xml b/external/appcompat/res/drawable/abc_textfield_searchview_holo_dark.xml
new file mode 100644
index 0000000..6e9bc4c
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_textfield_searchview_holo_dark.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_focused="true"
+ android:drawable="@drawable/abc_textfield_search_selected_holo_dark" />
+ <item android:drawable="@drawable/abc_textfield_search_default_holo_dark" />
+</selector>
+
diff --git a/external/appcompat/res/drawable/abc_textfield_searchview_holo_light.xml b/external/appcompat/res/drawable/abc_textfield_searchview_holo_light.xml
new file mode 100644
index 0000000..a02e4b0
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_textfield_searchview_holo_light.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_focused="true"
+ android:drawable="@drawable/abc_textfield_search_selected_holo_light" />
+ <item android:drawable="@drawable/abc_textfield_search_default_holo_light" />
+</selector>
+
diff --git a/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_dark.xml b/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_dark.xml
new file mode 100644
index 0000000..b55a995
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_dark.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_focused="true"
+ android:drawable="@drawable/abc_textfield_search_right_selected_holo_dark" />
+ <item android:drawable="@drawable/abc_textfield_search_right_default_holo_dark" />
+</selector>
+
diff --git a/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_light.xml b/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_light.xml
new file mode 100644
index 0000000..7710232
--- /dev/null
+++ b/external/appcompat/res/drawable/abc_textfield_searchview_right_holo_light.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_focused="true"
+ android:drawable="@drawable/abc_textfield_search_right_selected_holo_light" />
+ <item android:drawable="@drawable/abc_textfield_search_right_default_holo_light" />
+</selector>
+
diff --git a/external/appcompat/res/layout-v11/abc_action_bar_decor.xml b/external/appcompat/res/layout-v11/abc_action_bar_decor.xml
new file mode 100644
index 0000000..a212d56
--- /dev/null
+++ b/external/appcompat/res/layout-v11/abc_action_bar_decor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.widget.NativeActionModeAwareLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/action_bar_root"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:fitsSystemWindows="true">
+
+ <include layout="@layout/abc_action_bar_decor_include" />
+
+</android.support.v7.internal.widget.NativeActionModeAwareLayout>
diff --git a/external/appcompat/res/layout-v14/abc_activity_chooser_view.xml b/external/appcompat/res/layout-v14/abc_activity_chooser_view.xml
new file mode 100644
index 0000000..4ce359b
--- /dev/null
+++ b/external/appcompat/res/layout-v14/abc_activity_chooser_view.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+**
+** Copyright 2013, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/activity_chooser_view_content"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ style="?attr/activityChooserViewStyle">
+
+ <include layout="@layout/abc_activity_chooser_view_include" />
+
+</LinearLayout>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_action_bar_decor.xml b/external/appcompat/res/layout/abc_action_bar_decor.xml
new file mode 100644
index 0000000..327e26f
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_decor.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:fitsSystemWindows="true">
+
+ <include layout="@layout/abc_action_bar_decor_include" />
+
+</LinearLayout>
diff --git a/external/appcompat/res/layout/abc_action_bar_decor_include.xml b/external/appcompat/res/layout/abc_action_bar_decor_include.xml
new file mode 100644
index 0000000..3f2356b
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_decor_include.xml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<merge xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <android.support.v7.internal.widget.ActionBarContainer
+ android:id="@+id/action_bar_container"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ style="?attr/actionBarStyle">
+
+ <android.support.v7.internal.widget.ActionBarView
+ android:id="@+id/action_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ style="?attr/actionBarStyle" />
+
+ <android.support.v7.internal.widget.ActionBarContextView
+ android:id="@+id/action_context_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:visibility="gone"
+ style="?attr/actionModeStyle" />
+ </android.support.v7.internal.widget.ActionBarContainer>
+
+ <FrameLayout
+ android:id="@id/action_bar_activity_content"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1"
+ android:foregroundGravity="fill_horizontal|top"
+ android:foreground="?android:attr/windowContentOverlay" />
+
+ <android.support.v7.internal.widget.ActionBarContainer
+ android:id="@+id/split_action_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ style="?attr/actionBarSplitStyle"
+ android:visibility="gone"
+ android:gravity="center" />
+
+</merge>
diff --git a/external/appcompat/res/layout/abc_action_bar_decor_overlay.xml b/external/appcompat/res/layout/abc_action_bar_decor_overlay.xml
new file mode 100644
index 0000000..5ea8fc1
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_decor_overlay.xml
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.widget.ActionBarOverlayLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/action_bar_overlay_layout"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+ <FrameLayout android:id="@id/action_bar_activity_content"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"/>
+ <LinearLayout android:id="@+id/top_action_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="top">
+ <android.support.v7.internal.widget.ActionBarContainer android:id="@+id/action_bar_container"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ style="?attr/actionBarStyle"
+ android:gravity="top">
+ <android.support.v7.internal.widget.ActionBarView
+ android:id="@+id/action_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ style="?attr/actionBarStyle"/>
+ <android.support.v7.internal.widget.ActionBarContextView
+ android:id="@+id/action_context_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:visibility="gone"
+ style="?attr/actionModeStyle"/>
+ </android.support.v7.internal.widget.ActionBarContainer>
+ <ImageView android:src="?android:attr/windowContentOverlay"
+ android:scaleType="fitXY"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+ </LinearLayout>
+ <android.support.v7.internal.widget.ActionBarContainer android:id="@+id/split_action_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="bottom"
+ style="?attr/actionBarSplitStyle"
+ android:visibility="gone"
+ android:gravity="center"/>
+</android.support.v7.internal.widget.ActionBarOverlayLayout>
diff --git a/external/appcompat/res/layout/abc_action_bar_home.xml b/external/appcompat/res/layout/abc_action_bar_home.xml
new file mode 100644
index 0000000..7063c36
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_home.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<view xmlns:android="http://schemas.android.com/apk/res/android"
+ class="android.support.v7.internal.widget.ActionBarView$HomeView"
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:background="?attr/actionBarItemBackground">
+ <ImageView android:id="@+id/up"
+ android:src="?attr/homeAsUpIndicator"
+ android:layout_gravity="center_vertical|left"
+ android:visibility="gone"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginRight="-8dip"/>
+ <ImageView android:id="@id/home"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginRight="8dip"
+ android:layout_marginTop="@dimen/abc_action_bar_icon_vertical_padding"
+ android:layout_marginBottom="@dimen/abc_action_bar_icon_vertical_padding"
+ android:layout_gravity="center"
+ android:adjustViewBounds="true"
+ android:scaleType="fitCenter"/>
+</view>
diff --git a/external/appcompat/res/layout/abc_action_bar_tab.xml b/external/appcompat/res/layout/abc_action_bar_tab.xml
new file mode 100644
index 0000000..06043a2
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_tab.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<view xmlns:android="http://schemas.android.com/apk/res/android"
+ class="android.support.v7.internal.widget.ScrollingTabContainerView$TabView"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ style="?attr/actionBarTabStyle"/>
diff --git a/external/appcompat/res/layout/abc_action_bar_tabbar.xml b/external/appcompat/res/layout/abc_action_bar_tabbar.xml
new file mode 100644
index 0000000..08f9c89
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_tabbar.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<android.support.v7.internal.widget.LinearLayoutICS
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:gravity="center"
+ style="?attr/actionBarTabBarStyle"/>
diff --git a/external/appcompat/res/layout/abc_action_bar_title_item.xml b/external/appcompat/res/layout/abc_action_bar_title_item.xml
new file mode 100644
index 0000000..0cb1237
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:paddingRight="8dip"
+ android:background="?attr/actionBarItemBackground"
+ android:enabled="false">
+
+ <ImageView android:id="@+id/up"
+ android:src="?attr/homeAsUpIndicator"
+ android:layout_gravity="center_vertical|left"
+ android:visibility="gone"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+
+ <LinearLayout android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical|left"
+ android:orientation="vertical">
+ <TextView android:id="@+id/action_bar_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:ellipsize="end"/>
+ <TextView android:id="@+id/action_bar_subtitle"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="@dimen/abc_action_bar_subtitle_top_margin"
+ android:layout_marginBottom="@dimen/abc_action_bar_subtitle_bottom_margin"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:visibility="gone"/>
+ </LinearLayout>
+</LinearLayout>
diff --git a/external/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml b/external/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 0000000..5c105ab
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ dd
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<!-- Styled linear layout, compensating for the lack of a defStyle parameter
+ in pre-Honeycomb LinearLayout's constructor. -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ style="?attr/actionBarTabBarStyle">
+</LinearLayout>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_action_menu_item_layout.xml b/external/appcompat/res/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 0000000..150ea50
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ dd
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.view.menu.ActionMenuItemView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:gravity="center"
+ android:focusable="true"
+ android:paddingTop="4dip"
+ android:paddingBottom="4dip"
+ android:paddingLeft="8dip"
+ android:paddingRight="8dip"
+ android:textAppearance="?attr/actionMenuTextAppearance"
+ android:textColor="?attr/actionMenuTextColor"
+ style="?attr/actionButtonStyle"/>
diff --git a/external/appcompat/res/layout/abc_action_menu_layout.xml b/external/appcompat/res/layout/abc_action_menu_layout.xml
new file mode 100644
index 0000000..37a02e6
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_menu_layout.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.view.menu.ActionMenuView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ app:divider="?attr/actionBarDivider"
+ app:dividerPadding="12dip"
+ android:gravity="center_vertical"/>
diff --git a/external/appcompat/res/layout/abc_action_mode_bar.xml b/external/appcompat/res/layout/abc_action_mode_bar.xml
new file mode 100644
index 0000000..b81cd85
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_mode_bar.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2012, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<android.support.v7.internal.widget.ActionBarContextView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:visibility="gone"
+ style="?attr/actionModeStyle"/>
diff --git a/external/appcompat/res/layout/abc_action_mode_close_item.xml b/external/appcompat/res/layout/abc_action_mode_close_item.xml
new file mode 100644
index 0000000..2c76b8b
--- /dev/null
+++ b/external/appcompat/res/layout/abc_action_mode_close_item.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/action_mode_close_button"
+ android:focusable="true"
+ android:clickable="true"
+ android:paddingLeft="8dip"
+ android:contentDescription="@string/abc_action_mode_done"
+ style="?attr/actionModeCloseButtonStyle"
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:layout_marginRight="16dip">
+ <ImageView android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:scaleType="fitCenter"
+ android:src="?attr/actionModeCloseDrawable"/>
+</LinearLayout>
diff --git a/external/appcompat/res/layout/abc_activity_chooser_view.xml b/external/appcompat/res/layout/abc_activity_chooser_view.xml
new file mode 100644
index 0000000..eb42598
--- /dev/null
+++ b/external/appcompat/res/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+**
+** Copyright 2013, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<android.support.v7.internal.widget.LinearLayoutICS
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/activity_chooser_view_content"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ style="?attr/activityChooserViewStyle">
+
+ <include layout="@layout/abc_activity_chooser_view_include" />
+
+</android.support.v7.internal.widget.LinearLayoutICS>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_activity_chooser_view_include.xml b/external/appcompat/res/layout/abc_activity_chooser_view_include.xml
new file mode 100644
index 0000000..975b13e
--- /dev/null
+++ b/external/appcompat/res/layout/abc_activity_chooser_view_include.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+**
+** Copyright 2013, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<merge
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <FrameLayout
+ android:id="@+id/expand_activities_button"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ android:focusable="true"
+ android:addStatesFromChildren="true"
+ android:background="?attr/actionBarItemBackground">
+
+ <ImageView
+ android:id="@+id/image"
+ android:layout_width="56dip"
+ android:layout_height="36dip"
+ android:layout_gravity="center"
+ android:paddingTop="2dip"
+ android:paddingBottom="2dip"
+ android:paddingLeft="12dip"
+ android:paddingRight="12dip"
+ android:scaleType="fitCenter"
+ android:adjustViewBounds="true" />
+
+ </FrameLayout>
+
+ <FrameLayout
+ android:id="@+id/default_activity_button"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ android:focusable="true"
+ android:addStatesFromChildren="true"
+ android:background="?attr/actionBarItemBackground">
+
+ <ImageView
+ android:id="@+id/image"
+ android:layout_width="56dip"
+ android:layout_height="36dip"
+ android:layout_gravity="center"
+ android:paddingTop="2dip"
+ android:paddingBottom="2dip"
+ android:paddingLeft="12dip"
+ android:paddingRight="12dip"
+ android:scaleType="fitCenter"
+ android:adjustViewBounds="true" />
+
+ </FrameLayout>
+
+</merge>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_activity_chooser_view_list_item.xml b/external/appcompat/res/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 0000000..887427d
--- /dev/null
+++ b/external/appcompat/res/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/list_item"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/dropdownListPreferredItemHeight"
+ android:paddingLeft="16dip"
+ android:paddingRight="16dip"
+ android:minWidth="196dip"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:duplicateParentState="true" >
+
+ <ImageView
+ android:id="@+id/icon"
+ android:layout_width="32dip"
+ android:layout_height="32dip"
+ android:layout_gravity="center_vertical"
+ android:layout_marginRight="8dip"
+ android:duplicateParentState="true"/>
+
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:textAppearance="?attr/textAppearanceLargePopupMenu"
+ android:duplicateParentState="true"
+ android:singleLine="true"
+ android:ellipsize="marquee"
+ android:fadingEdge="horizontal"/>
+
+ </LinearLayout>
+
+</LinearLayout>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_expanded_menu_layout.xml b/external/appcompat/res/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 0000000..f4af882
--- /dev/null
+++ b/external/appcompat/res/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.view.menu.ExpandedMenuView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/expanded_menu"
+ android:layout_width="?attr/panelMenuListWidth"
+ android:layout_height="wrap_content"/>
diff --git a/external/appcompat/res/layout/abc_list_menu_item_checkbox.xml b/external/appcompat/res/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 0000000..d9c3f06
--- /dev/null
+++ b/external/appcompat/res/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/checkbox"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:focusable="false"
+ android:clickable="false"
+ android:duplicateParentState="true"/>
+
+
diff --git a/external/appcompat/res/layout/abc_list_menu_item_icon.xml b/external/appcompat/res/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 0000000..acd005a
--- /dev/null
+++ b/external/appcompat/res/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/icon"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:layout_marginLeft="8dip"
+ android:layout_marginRight="-8dip"
+ android:layout_marginTop="8dip"
+ android:layout_marginBottom="8dip"
+ android:scaleType="centerInside"
+ android:duplicateParentState="true"/>
+
diff --git a/external/appcompat/res/layout/abc_list_menu_item_layout.xml b/external/appcompat/res/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 0000000..d3be782
--- /dev/null
+++ b/external/appcompat/res/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.view.menu.ListMenuItemView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/listPreferredItemHeightSmall">
+
+ <!-- Icon will be inserted here. -->
+
+ <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
+ <RelativeLayout
+ android:layout_width="0dip"
+ android:layout_weight="1"
+ android:layout_marginLeft="?attr/listPreferredItemPaddingLeft"
+ android:layout_marginRight="?attr/listPreferredItemPaddingRight"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:duplicateParentState="true">
+
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ android:textAppearance="?attr/textAppearanceListItemSmall"
+ android:singleLine="true"
+ android:duplicateParentState="true"
+ android:ellipsize="marquee"
+ android:fadingEdge="horizontal" />
+
+ <TextView
+ android:id="@+id/shortcut"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/title"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:singleLine="true"
+ android:duplicateParentState="true" />
+
+ </RelativeLayout>
+
+ <!-- Checkbox, and/or radio button will be inserted here. -->
+
+</android.support.v7.internal.view.menu.ListMenuItemView>
diff --git a/external/appcompat/res/layout/abc_list_menu_item_radio.xml b/external/appcompat/res/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 0000000..0ca8d7a
--- /dev/null
+++ b/external/appcompat/res/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/radio"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:focusable="false"
+ android:clickable="false"
+ android:duplicateParentState="true"/>
diff --git a/external/appcompat/res/layout/abc_popup_menu_item_layout.xml b/external/appcompat/res/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 0000000..1e4e27d
--- /dev/null
+++ b/external/appcompat/res/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<android.support.v7.internal.view.menu.ListMenuItemView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="?attr/dropdownListPreferredItemHeight"
+ android:minWidth="196dip"
+ android:paddingRight="16dip">
+
+ <!-- Icon will be inserted here. -->
+
+ <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
+ <RelativeLayout
+ android:layout_width="0dip"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:layout_marginLeft="16dip"
+ android:duplicateParentState="true">
+
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentLeft="true"
+ android:textAppearance="?attr/textAppearanceLargePopupMenu"
+ android:singleLine="true"
+ android:duplicateParentState="true"
+ android:ellipsize="marquee"
+ android:fadingEdge="horizontal"/>
+
+ <TextView
+ android:id="@+id/shortcut"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/title"
+ android:layout_alignParentLeft="true"
+ android:textAppearance="?attr/textAppearanceSmallPopupMenu"
+ android:singleLine="true"
+ android:duplicateParentState="true"/>
+
+ </RelativeLayout>
+
+ <!-- Checkbox, and/or radio button will be inserted here. -->
+
+</android.support.v7.internal.view.menu.ListMenuItemView>
diff --git a/external/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml b/external/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 0000000..ffc3aed
--- /dev/null
+++ b/external/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+-->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
+ android:paddingRight="4dip"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/searchResultListItemHeight" >
+
+ <!-- Icons come first in the layout, since their placement doesn't depend on
+ the placement of the text views. -->
+ <ImageView android:id="@android:id/icon1"
+ android:layout_width="@dimen/abc_dropdownitem_icon_width"
+ android:layout_height="48dip"
+ android:scaleType="centerInside"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentBottom="true"
+ android:visibility="invisible" />
+
+ <ImageView android:id="@+id/edit_query"
+ android:layout_width="48dip"
+ android:layout_height="48dip"
+ android:scaleType="centerInside"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentBottom="true"
+ android:src="?attr/searchViewEditQuery"
+ android:background="?attr/searchViewEditQueryBackground"
+ android:visibility="gone" />
+
+ <ImageView android:id="@android:id/icon2"
+ android:layout_width="48dip"
+ android:layout_height="48dip"
+ android:scaleType="centerInside"
+ android:layout_alignWithParentIfMissing="true"
+ android:layout_toLeftOf="@id/edit_query"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentBottom="true"
+ android:visibility="gone" />
+
+
+ <!-- The subtitle comes before the title, since the height of the title depends on whether the
+ subtitle is visible or gone. -->
+ <TextView android:id="@android:id/text2"
+ style="?android:attr/dropDownItemStyle"
+ android:textAppearance="?attr/textAppearanceSearchResultSubtitle"
+ android:singleLine="true"
+ android:layout_width="match_parent"
+ android:layout_height="29dip"
+ android:paddingBottom="4dip"
+ android:gravity="top"
+ android:layout_toRightOf="@android:id/icon1"
+ android:layout_toLeftOf="@android:id/icon2"
+ android:layout_alignWithParentIfMissing="true"
+ android:layout_alignParentBottom="true"
+ android:visibility="gone" />
+
+ <!-- The title is placed above the subtitle, if there is one. If there is no
+ subtitle, it fills the parent. -->
+ <TextView android:id="@android:id/text1"
+ style="?android:attr/dropDownItemStyle"
+ android:textAppearance="?attr/textAppearanceSearchResultTitle"
+ android:singleLine="true"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_toRightOf="@android:id/icon1"
+ android:layout_toLeftOf="@android:id/icon2"
+ android:layout_above="@android:id/text2" />
+
+</RelativeLayout>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/abc_search_view.xml b/external/appcompat/res/layout/abc_search_view.xml
new file mode 100644
index 0000000..da8adb8
--- /dev/null
+++ b/external/appcompat/res/layout/abc_search_view.xml
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+-->
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/search_bar"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="horizontal"
+ >
+
+ <!-- This is actually used for the badge icon *or* the badge label (or neither) -->
+ <TextView
+ android:id="@+id/search_badge"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:gravity="center_vertical"
+ android:layout_marginBottom="2dip"
+ android:drawablePadding="0dip"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?android:attr/textColorPrimary"
+ android:visibility="gone"
+ />
+
+ <ImageView
+ android:id="@+id/search_button"
+ style="?attr/actionButtonStyle"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center_vertical"
+ android:src="?attr/searchViewSearchIcon"
+ android:focusable="true"
+ android:contentDescription="@string/abc_searchview_description_search"
+ />
+
+ <LinearLayout
+ android:id="@+id/search_edit_frame"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:layout_gravity="center_vertical"
+ android:layout_marginTop="4dip"
+ android:layout_marginBottom="4dip"
+ android:layout_marginLeft="8dip"
+ android:layout_marginRight="8dip"
+ android:orientation="horizontal">
+
+ <ImageView
+ android:id="@+id/search_mag_icon"
+ android:layout_width="@dimen/abc_dropdownitem_icon_width"
+ android:layout_height="wrap_content"
+ android:scaleType="centerInside"
+ android:layout_marginLeft="@dimen/abc_dropdownitem_text_padding_left"
+ android:layout_gravity="center_vertical"
+ android:src="?attr/searchViewSearchIcon"
+ android:visibility="gone"
+ />
+
+ <!-- Inner layout contains the app icon, button(s) and EditText -->
+ <LinearLayout
+ android:id="@+id/search_plate"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:layout_gravity="center_vertical"
+ android:orientation="horizontal"
+ android:background="?attr/searchViewTextField">
+
+ <view class="android.support.v7.widget.SearchView$SearchAutoComplete"
+ style="?attr/searchViewAutoCompleteTextView"
+ android:id="@+id/search_src_text"
+ android:layout_height="36dip"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:minWidth="@dimen/abc_search_view_text_min_width"
+ android:layout_gravity="bottom"
+ android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
+ android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:background="@null"
+ android:inputType="text|textAutoComplete|textNoSuggestions"
+ android:imeOptions="actionSearch"
+ android:dropDownHeight="wrap_content"
+ android:dropDownAnchor="@id/search_edit_frame"
+ android:dropDownVerticalOffset="0dip"
+ android:dropDownHorizontalOffset="0dip"
+ android:contentDescription="@string/abc_searchview_description_query"
+ />
+
+ <ImageView
+ android:id="@+id/search_close_btn"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:paddingLeft="8dip"
+ android:paddingRight="8dip"
+ android:layout_gravity="center_vertical"
+ android:background="?attr/selectableItemBackground"
+ android:src="?attr/searchViewCloseIcon"
+ android:focusable="true"
+ android:contentDescription="@string/abc_searchview_description_clear"
+ />
+
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/submit_area"
+ android:orientation="horizontal"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:background="?attr/searchViewTextFieldRight">
+
+ <ImageView
+ android:id="@+id/search_go_btn"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center_vertical"
+ android:paddingLeft="16dip"
+ android:paddingRight="16dip"
+ android:background="?attr/selectableItemBackground"
+ android:src="?attr/searchViewGoIcon"
+ android:visibility="gone"
+ android:focusable="true"
+ android:contentDescription="@string/abc_searchview_description_submit"
+ />
+
+ <ImageView
+ android:id="@+id/search_voice_btn"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="center_vertical"
+ android:paddingLeft="16dip"
+ android:paddingRight="16dip"
+ android:src="?attr/searchViewVoiceIcon"
+ android:background="?attr/selectableItemBackground"
+ android:visibility="gone"
+ android:focusable="true"
+ android:contentDescription="@string/abc_searchview_description_voice"
+ />
+ </LinearLayout>
+ </LinearLayout>
+
+</LinearLayout>
\ No newline at end of file
diff --git a/external/appcompat/res/layout/support_simple_spinner_dropdown_item.xml b/external/appcompat/res/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 0000000..d2f177a
--- /dev/null
+++ b/external/appcompat/res/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+**
+** Copyright 2008, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@android:id/text1"
+ style="?attr/spinnerDropDownItemStyle"
+ android:singleLine="true"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/dropdownListPreferredItemHeight"
+ android:ellipsize="marquee"/>
\ No newline at end of file
diff --git a/external/appcompat/res/values-af/strings.xml b/external/appcompat/res/values-af/strings.xml
new file mode 100644
index 0000000..f7348c4
--- /dev/null
+++ b/external/appcompat/res/values-af/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Klaar"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigeer tuis"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigeer op"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Nog opsies"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Soek"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Soeknavraag"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Vee navraag uit"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Dien navraag in"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Stemsoektog"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Kies \'n program"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Sien alles"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Deel met %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Deel met"</string>
+</resources>
diff --git a/external/appcompat/res/values-am/strings.xml b/external/appcompat/res/values-am/strings.xml
new file mode 100644
index 0000000..e849b31
--- /dev/null
+++ b/external/appcompat/res/values-am/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"ተከናውኗል"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"ወደ መነሻ ይዳስሱ"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"ወደ ላይ ይዳስሱ"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"ተጨማሪ አማራጮች"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"ፍለጋ"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"የፍለጋ ጥያቄ"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"መጠይቅ አጽዳ"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"መጠይቅ ያስረክቡ"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"የድምፅ ፍለጋ"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"መተግበሪያ ይምረጡ"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"ሁሉንም ይመልከቱ"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"ከ%s ጋር ያጋሩ"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"ከሚከተለው ጋር ያጋሩ"</string>
+</resources>
diff --git a/external/appcompat/res/values-ar/strings.xml b/external/appcompat/res/values-ar/strings.xml
new file mode 100644
index 0000000..be41ac8
--- /dev/null
+++ b/external/appcompat/res/values-ar/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"تم"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"التنقل إلى الشاشة الرئيسية"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"التنقل إلى أعلى"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"خيارات إضافية"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"بحث"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"طلب البحث"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"محو طلب البحث"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"إرسال طلب البحث"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"البحث الصوتي"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"اختيار تطبيق"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"عرض الكل"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"مشاركة مع %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"مشاركة مع"</string>
+</resources>
diff --git a/external/appcompat/res/values-bg/strings.xml b/external/appcompat/res/values-bg/strings.xml
new file mode 100644
index 0000000..de3bde8
--- /dev/null
+++ b/external/appcompat/res/values-bg/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Готово"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Придвижване към „Начало“"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Придвижване нагоре"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Още опции"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Търсене"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Заявка за търсене"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Изчистване на заявката"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Изпращане на заявката"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Гласово търсене"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Изберете приложение"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Вижте всички"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Споделяне със: %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Споделяне със:"</string>
+</resources>
diff --git a/external/appcompat/res/values-ca/strings.xml b/external/appcompat/res/values-ca/strings.xml
new file mode 100644
index 0000000..bfd4cb0
--- /dev/null
+++ b/external/appcompat/res/values-ca/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Fet"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navega a la pàgina d\'inici"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navega cap a dalt"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Més opcions"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Cerca"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Consulta de cerca"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Esborra la consulta"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Envia la consulta"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Cerca per veu"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Selecciona una aplicació"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Mostra\'ls tots"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Comparteix amb %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Comparteix amb"</string>
+</resources>
diff --git a/external/appcompat/res/values-cs/strings.xml b/external/appcompat/res/values-cs/strings.xml
new file mode 100644
index 0000000..1465fdc
--- /dev/null
+++ b/external/appcompat/res/values-cs/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Hotovo"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Přejít na plochu"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Přejít nahoru"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Více možností"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Hledat"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Vyhledávací dotaz"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Smazat dotaz"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Odeslat dotaz"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Hlasové vyhledávání"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Vybrat aplikaci"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Zobrazit vše"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Sdílet pomocí %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Sdílet pomocí"</string>
+</resources>
diff --git a/external/appcompat/res/values-da/strings.xml b/external/appcompat/res/values-da/strings.xml
new file mode 100644
index 0000000..b178513
--- /dev/null
+++ b/external/appcompat/res/values-da/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Luk"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Naviger hjem"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Naviger op"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Flere muligheder"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Søg"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Søgeforespørgsel"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Ryd forespørgslen"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Indsend forespørgslen"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Stemmesøgning"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Vælg en app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Se alle"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Del med %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Del med"</string>
+</resources>
diff --git a/external/appcompat/res/values-de/strings.xml b/external/appcompat/res/values-de/strings.xml
new file mode 100644
index 0000000..6da4b71
--- /dev/null
+++ b/external/appcompat/res/values-de/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Fertig"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Zur Startseite"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Nach oben"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Weitere Optionen"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Suchen"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Suchanfrage"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Suchanfrage löschen"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Suchanfrage senden"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Sprachsuche"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"App auswählen"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Alle ansehen"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Freigeben für %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Freigeben für"</string>
+</resources>
diff --git a/external/appcompat/res/values-el/strings.xml b/external/appcompat/res/values-el/strings.xml
new file mode 100644
index 0000000..4c0e286
--- /dev/null
+++ b/external/appcompat/res/values-el/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Τέλος"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Πλοήγηση στην αρχική σελίδα"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Πλοήγηση προς τα επάνω"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Περισσότερες επιλογές"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Αναζήτηση"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Ερώτημα αναζήτησης"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Διαγραφή ερωτήματος"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Υποβολή ερωτήματος"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Φωνητική αναζήτηση"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Επιλέξτε κάποια εφαρμογή"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Προβολή όλων"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Κοινή χρήση με %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Κοινή χρήση με"</string>
+</resources>
diff --git a/external/appcompat/res/values-en-rGB/strings.xml b/external/appcompat/res/values-en-rGB/strings.xml
new file mode 100644
index 0000000..3ec0b0e
--- /dev/null
+++ b/external/appcompat/res/values-en-rGB/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Finished"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigate home"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigate up"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"More options"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Search"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Search query"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Clear query"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Submit query"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Voice search"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Choose an app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"See all"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Share with %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Share with"</string>
+</resources>
diff --git a/external/appcompat/res/values-en-rIN/strings.xml b/external/appcompat/res/values-en-rIN/strings.xml
new file mode 100644
index 0000000..3ec0b0e
--- /dev/null
+++ b/external/appcompat/res/values-en-rIN/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Finished"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigate home"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigate up"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"More options"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Search"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Search query"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Clear query"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Submit query"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Voice search"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Choose an app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"See all"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Share with %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Share with"</string>
+</resources>
diff --git a/external/appcompat/res/values-es-rUS/strings.xml b/external/appcompat/res/values-es-rUS/strings.xml
new file mode 100644
index 0000000..6ab7942
--- /dev/null
+++ b/external/appcompat/res/values-es-rUS/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Listo"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navegar a la página principal"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navegar hacia arriba"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Más opciones"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Búsqueda"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Consulta de búsqueda"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Eliminar la consulta"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Enviar consulta"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Búsqueda por voz"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Elige una aplicación."</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Ver todo"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Compartir con %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Compartir con"</string>
+</resources>
diff --git a/external/appcompat/res/values-es/strings.xml b/external/appcompat/res/values-es/strings.xml
new file mode 100644
index 0000000..ed15b35
--- /dev/null
+++ b/external/appcompat/res/values-es/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Listo"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Ir a la pantalla de inicio"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Desplazarse hacia arriba"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Más opciones"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Buscar"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Consulta"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Borrar consulta"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Enviar consulta"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Búsqueda por voz"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Seleccionar una aplicación"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Ver todo"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Compartir con %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Compartir con"</string>
+</resources>
diff --git a/external/appcompat/res/values-et-rEE/strings.xml b/external/appcompat/res/values-et-rEE/strings.xml
new file mode 100644
index 0000000..2ae925d
--- /dev/null
+++ b/external/appcompat/res/values-et-rEE/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Valmis"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigeerimine avaekraanile"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigeerimine üles"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Rohkem valikuid"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Otsing"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Otsingupäring"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Päringu tühistamine"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Päringu esitamine"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Häälotsing"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Valige rakendus"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Kuva kõik"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Jagamine kasutajaga %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Jagamine:"</string>
+</resources>
diff --git a/external/appcompat/res/values-fa/strings.xml b/external/appcompat/res/values-fa/strings.xml
new file mode 100644
index 0000000..989df14
--- /dev/null
+++ b/external/appcompat/res/values-fa/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"انجام شد"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"پیمایش به صفحه اصلی"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"پیمایش به بالا"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"گزینههای بیشتر"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"جستجو"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"عبارت جستجو"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"پاک کردن عبارت جستجو"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"ارسال عبارت جستجو"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"جستجوی شفاهی"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"انتخاب برنامه"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"مشاهده همه"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"اشتراکگذاری با %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"اشتراکگذاری با"</string>
+</resources>
diff --git a/external/appcompat/res/values-fi/strings.xml b/external/appcompat/res/values-fi/strings.xml
new file mode 100644
index 0000000..6755cea
--- /dev/null
+++ b/external/appcompat/res/values-fi/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Valmis"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Siirry etusivulle"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Siirry ylös"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Lisää"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Haku"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Hakulauseke"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Tyhjennä kysely"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Lähetä kysely"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Puhehaku"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Valitse sovellus"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Näytä kaikki"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Jakaminen: %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Jakaminen:"</string>
+</resources>
diff --git a/external/appcompat/res/values-fr-rCA/strings.xml b/external/appcompat/res/values-fr-rCA/strings.xml
new file mode 100644
index 0000000..417705a
--- /dev/null
+++ b/external/appcompat/res/values-fr-rCA/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Terminé"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Revenir à l\'accueil"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Revenir en haut de la page"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Plus d\'options"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Rechercher"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Requête de recherche"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Effacer la requête"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Envoyer la requête"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Recherche vocale"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Sélectionnez une application"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Voir toutes les chaînes"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Partager avec %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Partager avec"</string>
+</resources>
diff --git a/external/appcompat/res/values-fr/strings.xml b/external/appcompat/res/values-fr/strings.xml
new file mode 100644
index 0000000..27b8f38
--- /dev/null
+++ b/external/appcompat/res/values-fr/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"OK"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Revenir à l\'accueil"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Revenir en haut de la page"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Plus d\'options"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Rechercher"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Requête de recherche"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Effacer la requête"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Envoyer la requête"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Recherche vocale"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Sélectionner une application"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Tout afficher"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Partager avec %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Partager avec"</string>
+</resources>
diff --git a/external/appcompat/res/values-hi/strings.xml b/external/appcompat/res/values-hi/strings.xml
new file mode 100644
index 0000000..b236ebb
--- /dev/null
+++ b/external/appcompat/res/values-hi/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"पूर्ण"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"मुखपृष्ठ पर नेविगेट करें"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"ऊपर नेविगेट करें"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"अधिक विकल्प"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"खोजें"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"खोज क्वेरी"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"क्वेरी साफ़ करें"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"क्वेरी सबमिट करें"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"ध्वनि खोज"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"कोई एप्लिकेशन चुनें"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"सभी देखें"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%s के साथ साझा करें"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"इसके द्वारा साझा करें"</string>
+</resources>
diff --git a/external/appcompat/res/values-hr/strings.xml b/external/appcompat/res/values-hr/strings.xml
new file mode 100644
index 0000000..680e39f
--- /dev/null
+++ b/external/appcompat/res/values-hr/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Gotovo"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Idi na početnu"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Idi gore"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Dodatne opcije"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Pretraživanje"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Upit za pretraživanje"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Izbriši upit"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Pošalji upit"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Glasovno pretraživanje"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Odabir aplikacije"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Prikaži sve"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Dijeljenje sa: %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Dijeljenje sa"</string>
+</resources>
diff --git a/external/appcompat/res/values-hu/strings.xml b/external/appcompat/res/values-hu/strings.xml
new file mode 100644
index 0000000..52dafb0
--- /dev/null
+++ b/external/appcompat/res/values-hu/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Kész"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Ugrás a főoldalra"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Felfelé mozgatás"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"További lehetőségek"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Keresés"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Keresési lekérdezés"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Lekérdezés törlése"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Lekérdezés küldése"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Hangalapú keresés"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Válasszon ki egy alkalmazást"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Összes megtekintése"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Megosztás a következővel: %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Megosztás a következővel:"</string>
+</resources>
diff --git a/external/appcompat/res/values-hy-rAM/strings.xml b/external/appcompat/res/values-hy-rAM/strings.xml
new file mode 100644
index 0000000..6c0ee27
--- /dev/null
+++ b/external/appcompat/res/values-hy-rAM/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Կատարված է"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Ուղղվել տուն"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Ուղղվել վերև"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Այլ ընտրանքներ"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Որոնել"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Որոնման հարցում"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Մաքրել հարցումը"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Ուղարկել հարցումը"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Ձայնային որոնում"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Ընտրել ծրագիր"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Տեսնել բոլորը"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Տարածել ըստ %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Տարածել"</string>
+</resources>
diff --git a/external/appcompat/res/values-in/strings.xml b/external/appcompat/res/values-in/strings.xml
new file mode 100644
index 0000000..9481e83
--- /dev/null
+++ b/external/appcompat/res/values-in/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Selesai"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigasi ke beranda"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigasi naik"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Opsi lain"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Telusuri"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Kueri penelusuran"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Hapus kueri"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Kirim kueri"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Penelusuran suara"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Pilih aplikasi"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Lihat semua"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Bagikan dengan %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Bagikan dengan"</string>
+</resources>
diff --git a/external/appcompat/res/values-it/strings.xml b/external/appcompat/res/values-it/strings.xml
new file mode 100644
index 0000000..a8b0f2c
--- /dev/null
+++ b/external/appcompat/res/values-it/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Fine"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Vai alla home page"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Vai in alto"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Altre opzioni"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Cerca"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Query di ricerca"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Cancella query"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Invia query"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Ricerca vocale"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Scegli un\'applicazione"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Visualizza tutte"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Condividi con %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Condividi con"</string>
+</resources>
diff --git a/external/appcompat/res/values-iw/strings.xml b/external/appcompat/res/values-iw/strings.xml
new file mode 100644
index 0000000..07609b0
--- /dev/null
+++ b/external/appcompat/res/values-iw/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"בוצע"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"נווט לדף הבית"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"נווט למעלה"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"עוד אפשרויות"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"חפש"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"שאילתת חיפוש"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"מחק שאילתה"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"שלח שאילתה"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"חיפוש קולי"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"בחר אפליקציה"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"ראה הכול"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"שתף עם %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"שתף עם"</string>
+</resources>
diff --git a/external/appcompat/res/values-ja/strings.xml b/external/appcompat/res/values-ja/strings.xml
new file mode 100644
index 0000000..659358a
--- /dev/null
+++ b/external/appcompat/res/values-ja/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完了"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"ホームへ移動"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"上へ移動"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"その他のオプション"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"検索"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"検索キーワード"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"検索キーワードを削除"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"検索キーワードを送信"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"音声検索"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"アプリの選択"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"すべて表示"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%sと共有"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"共有"</string>
+</resources>
diff --git a/external/appcompat/res/values-ka-rGE/strings.xml b/external/appcompat/res/values-ka-rGE/strings.xml
new file mode 100644
index 0000000..0c430b1
--- /dev/null
+++ b/external/appcompat/res/values-ka-rGE/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"დასრულდა"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"მთავარზე ნავიგაცია"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"ზემოთ ნავიგაცია"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"მეტი ვარიანტები"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"ძიება"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"ძიების მოთხოვნა"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"მოთხოვნის გასუფთავება"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"მოთხოვნის გადაგზავნა"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"ხმოვანი ძიება"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"აპის არჩევა"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"ყველას ნახვა"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%s-თან გაზიარება"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"გაზიარება:"</string>
+</resources>
diff --git a/external/appcompat/res/values-km-rKH/strings.xml b/external/appcompat/res/values-km-rKH/strings.xml
new file mode 100644
index 0000000..597aec5
--- /dev/null
+++ b/external/appcompat/res/values-km-rKH/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"រួចរាល់"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"រកមើលទៅដើម"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"រកមើលឡើងលើ"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"ជម្រើសច្រើនទៀត"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"ស្វែងរក"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"ស្វែងរកសំណួរ"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"សម្អាតសំណួរ"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"ដាក់ស្នើសំណួរ"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"ការស្វែងរកសំឡេង"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"ជ្រើសកម្មវិធី"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"មើលទាំងអស់"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"ចែករំលែកជាមួយ %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"ចែករំលែកជាមួយ"</string>
+</resources>
diff --git a/external/appcompat/res/values-ko/strings.xml b/external/appcompat/res/values-ko/strings.xml
new file mode 100644
index 0000000..d331975
--- /dev/null
+++ b/external/appcompat/res/values-ko/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"완료"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"홈 탐색"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"위로 탐색"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"옵션 더보기"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"검색"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"검색어"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"검색어 삭제"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"검색어 보내기"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"음성 검색"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"앱 선택"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"전체 보기"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%s와(과) 공유"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"공유 대상"</string>
+</resources>
diff --git a/external/appcompat/res/values-land/bools.xml b/external/appcompat/res/values-land/bools.xml
new file mode 100644
index 0000000..cdadd69
--- /dev/null
+++ b/external/appcompat/res/values-land/bools.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="abc_split_action_bar_is_narrow">false</bool>
+ <bool name="abc_action_bar_embed_tabs_pre_jb">true</bool>
+</resources>
diff --git a/external/appcompat/res/values-land/config.xml b/external/appcompat/res/values-land/config.xml
new file mode 100644
index 0000000..d0d990d
--- /dev/null
+++ b/external/appcompat/res/values-land/config.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources>
+ <bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool>
+</resources>
diff --git a/external/appcompat/res/values-land/dimens.xml b/external/appcompat/res/values-land/dimens.xml
new file mode 100644
index 0000000..9aaf587
--- /dev/null
+++ b/external/appcompat/res/values-land/dimens.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- Default height of an action bar. -->
+ <dimen name="abc_action_bar_default_height">40dip</dimen>
+ <!-- Vertical padding around action bar icons. -->
+ <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen>
+ <!-- Text size for action bar titles -->
+ <dimen name="abc_action_bar_title_text_size">16dp</dimen>
+ <!-- Text size for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_text_size">12dp</dimen>
+ <!-- Top margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_top_margin">-2dp</dimen>
+ <!-- Bottom margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_bottom_margin">4dip</dimen>
+ <!-- Size of the indeterminate Progress Bar -->
+ <dimen name="abc_action_bar_progress_bar_size">32dp</dimen>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-large/bools.xml b/external/appcompat/res/values-large/bools.xml
new file mode 100644
index 0000000..cdadd69
--- /dev/null
+++ b/external/appcompat/res/values-large/bools.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="abc_split_action_bar_is_narrow">false</bool>
+ <bool name="abc_action_bar_embed_tabs_pre_jb">true</bool>
+</resources>
diff --git a/external/appcompat/res/values-large/config.xml b/external/appcompat/res/values-large/config.xml
new file mode 100644
index 0000000..c4f04a3
--- /dev/null
+++ b/external/appcompat/res/values-large/config.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2012, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<!-- These resources are around just to allow their values to be customized
+ for different hardware and product builds. -->
+<resources>
+ <!-- Whether action menu items should obey the "withText" showAsAction.
+ This may be set to false for situations where space is
+ extremely limited. -->
+ <bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool>
+
+ <!-- see comment in values/config.xml -->
+ <dimen name="abc_config_prefDialogWidth">440dp</dimen>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-large/dimens.xml b/external/appcompat/res/values-large/dimens.xml
new file mode 100644
index 0000000..dd9ecd9
--- /dev/null
+++ b/external/appcompat/res/values-large/dimens.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- Minimum width of the search view text entry area. -->
+ <dimen name="abc_search_view_text_min_width">192dip</dimen>
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">4</integer>
+
+</resources>
diff --git a/external/appcompat/res/values-lo-rLA/strings.xml b/external/appcompat/res/values-lo-rLA/strings.xml
new file mode 100644
index 0000000..7eb42ea
--- /dev/null
+++ b/external/appcompat/res/values-lo-rLA/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"ແລ້ວໆ"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"ກັບໄປໜ້າຫຼັກ"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"ຂຶ້ນເທິງ"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"ໂຕເລືອກອື່ນ"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"ຊອກຫາ"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"ຊອກຫາ"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"ສົ່ງການຊອກຫາ"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"ຊອກຫາດ້ວຍສຽງ"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"ເລືອກແອັບຯ"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"ເບິ່ງທັງຫມົດ"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"ແບ່ງປັນກັບ %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"ແບ່ງປັນກັບ"</string>
+</resources>
diff --git a/external/appcompat/res/values-lt/strings.xml b/external/appcompat/res/values-lt/strings.xml
new file mode 100644
index 0000000..c4738a7
--- /dev/null
+++ b/external/appcompat/res/values-lt/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Atlikta"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Eiti į pagrindinį puslapį"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Eiti į viršų"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Daugiau parinkčių"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Paieška"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Paieškos užklausa"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Išvalyti užklausą"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Pateikti užklausą"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Paieška balsu"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Pasirinkti programą"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Peržiūrėti viską"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Bendrinti naudojant „%s“"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Bendrinti naudojant"</string>
+</resources>
diff --git a/external/appcompat/res/values-lv/strings.xml b/external/appcompat/res/values-lv/strings.xml
new file mode 100644
index 0000000..c33858a
--- /dev/null
+++ b/external/appcompat/res/values-lv/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Gatavs"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Pārvietoties uz sākuma ekrānu"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Pārvietoties augšup"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Vairāk opciju"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Meklēt"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Meklēšanas vaicājums"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Notīrīt vaicājumu"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Iesniegt vaicājumu"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Meklēšana ar balsi"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Izvēlieties lietotni"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Skatīt visu"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Kopīgot ar %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Kopīgot ar:"</string>
+</resources>
diff --git a/external/appcompat/res/values-mn-rMN/strings.xml b/external/appcompat/res/values-mn-rMN/strings.xml
new file mode 100644
index 0000000..203e959
--- /dev/null
+++ b/external/appcompat/res/values-mn-rMN/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Дууссан"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Нүүр хуудас руу шилжих"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Дээш шилжих"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Нэмэлт сонголтууд"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Хайх"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Хайх асуулга"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Асуулгыг цэвэрлэх"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Асуулгыг илгээх"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Дуут хайлт"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Апп сонгох"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Бүгдийг харах"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%s-тай хуваалцах"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Хуваалцах"</string>
+</resources>
diff --git a/external/appcompat/res/values-ms-rMY/strings.xml b/external/appcompat/res/values-ms-rMY/strings.xml
new file mode 100644
index 0000000..b174068
--- /dev/null
+++ b/external/appcompat/res/values-ms-rMY/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Selesai"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigasi skrin utama"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigasi ke atas"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Lagi pilihan"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Cari"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Pertanyaan carian"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Kosongkan pertanyaan"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Serah pertanyaan"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Carian suara"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Pilih apl"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Lihat semua"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Kongsi dengan %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Kongsi dengan"</string>
+</resources>
diff --git a/external/appcompat/res/values-nb/strings.xml b/external/appcompat/res/values-nb/strings.xml
new file mode 100644
index 0000000..0d70b3b
--- /dev/null
+++ b/external/appcompat/res/values-nb/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Fullført"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Gå til startsiden"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Gå opp"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Flere alternativer"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Søk"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Søkeord"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Slett søket"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Utfør søket"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Talesøk"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Velg en app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Se alle"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Del med %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Del med"</string>
+</resources>
diff --git a/external/appcompat/res/values-nl/strings.xml b/external/appcompat/res/values-nl/strings.xml
new file mode 100644
index 0000000..1375f9e
--- /dev/null
+++ b/external/appcompat/res/values-nl/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Gereed"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigeren naar startpositie"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Omhoog navigeren"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Meer opties"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Zoeken"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Zoekopdracht"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Zoekopdracht wissen"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Zoekopdracht verzenden"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Gesproken zoekopdracht"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Een app selecteren"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Alles weergeven"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Delen met %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Delen met"</string>
+</resources>
diff --git a/external/appcompat/res/values-pl/strings.xml b/external/appcompat/res/values-pl/strings.xml
new file mode 100644
index 0000000..aa1ba79
--- /dev/null
+++ b/external/appcompat/res/values-pl/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Gotowe"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Przejdź do strony głównej"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Przejdź wyżej"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Więcej opcji"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Szukaj"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Wyszukiwane hasło"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Wyczyść zapytanie"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Wyślij zapytanie"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Wyszukiwanie głosowe"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Wybierz aplikację"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Zobacz wszystkie"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Udostępnij dla %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Udostępnij dla"</string>
+</resources>
diff --git a/external/appcompat/res/values-pt-rPT/strings.xml b/external/appcompat/res/values-pt-rPT/strings.xml
new file mode 100644
index 0000000..0d63f5f
--- /dev/null
+++ b/external/appcompat/res/values-pt-rPT/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Concluído"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navegar para a página inicial"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navegar para cima"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Mais opções"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Pesquisar"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Consulta de pesquisa"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Limpar consulta"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Enviar consulta"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Pesquisa por voz"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Escolher uma aplicação"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Ver tudo"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Partilhar com %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Partilhar com"</string>
+</resources>
diff --git a/external/appcompat/res/values-pt/strings.xml b/external/appcompat/res/values-pt/strings.xml
new file mode 100644
index 0000000..88b09ea
--- /dev/null
+++ b/external/appcompat/res/values-pt/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Concluído"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navegar para a página inicial"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navegar para cima"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Mais opções"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Pesquisar"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Consulta de pesquisa"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Limpar consulta"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Enviar consulta"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Pesquisa por voz"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Selecione um aplicativo"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Ver tudo"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Compartilhar com %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Compartilhar com"</string>
+</resources>
diff --git a/external/appcompat/res/values-ro/strings.xml b/external/appcompat/res/values-ro/strings.xml
new file mode 100644
index 0000000..36a7b31
--- /dev/null
+++ b/external/appcompat/res/values-ro/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Terminat"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Navigați la ecranul de pornire"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigați în sus"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Mai multe opțiuni"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Căutați"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Interogare de căutare"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Ștergeți interogarea"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Trimiteți interogarea"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Căutare vocală"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Alegeți o aplicaţie"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Afișați-le pe toate"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Trimiteți la %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Trimiteți la"</string>
+</resources>
diff --git a/external/appcompat/res/values-ru/strings.xml b/external/appcompat/res/values-ru/strings.xml
new file mode 100644
index 0000000..5c22e5e
--- /dev/null
+++ b/external/appcompat/res/values-ru/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Готово"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Перейти на главный экран"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Перейти вверх"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Другие параметры"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Поиск"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Поисковый запрос"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Удалить запрос"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Отправить запрос"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Голосовой поиск"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Выбрать приложение"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Показать все"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Открыть доступ пользователю %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Открыть доступ"</string>
+</resources>
diff --git a/external/appcompat/res/values-sk/strings.xml b/external/appcompat/res/values-sk/strings.xml
new file mode 100644
index 0000000..253f3e5
--- /dev/null
+++ b/external/appcompat/res/values-sk/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Hotovo"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Prejsť na plochu"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Prejsť hore"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Ďalšie možnosti"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Hľadať"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Vyhľadávací dopyt"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Vymazať dopyt"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Odoslať dopyt"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Hlasové vyhľadávanie"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Zvoľte aplikáciu"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Zobraziť všetko"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Zdieľať pomocou %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Zdieľať pomocou"</string>
+</resources>
diff --git a/external/appcompat/res/values-sl/strings.xml b/external/appcompat/res/values-sl/strings.xml
new file mode 100644
index 0000000..8e3e23e
--- /dev/null
+++ b/external/appcompat/res/values-sl/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Končano"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Krmarjenje domov"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Krmarjenje navzgor"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Več možnosti"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Iskanje"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Iskalna poizvedba"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Izbris poizvedbe"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Pošiljanje poizvedbe"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Glasovno iskanje"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Izbira aplikacije"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Pokaži vse"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Deljenje z:"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Deljenje z"</string>
+</resources>
diff --git a/external/appcompat/res/values-sr/strings.xml b/external/appcompat/res/values-sr/strings.xml
new file mode 100644
index 0000000..213c939
--- /dev/null
+++ b/external/appcompat/res/values-sr/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Готово"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Одлазак на Почетну"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Кретање нагоре"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Још опција"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Претрага"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Упит за претрагу"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Брисање упита"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Слање упита"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Гласовна претрага"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Избор апликације"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Прикажи све"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Дели са апликацијом %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Дели са"</string>
+</resources>
diff --git a/external/appcompat/res/values-sv/strings.xml b/external/appcompat/res/values-sv/strings.xml
new file mode 100644
index 0000000..49c7a5d
--- /dev/null
+++ b/external/appcompat/res/values-sv/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Klart"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Visa startsidan"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Navigera uppåt"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Fler alternativ"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Sök"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Sökfråga"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Ta bort frågan"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Skicka fråga"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Röstsökning"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Välj en app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Visa alla"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Dela med %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Dela med"</string>
+</resources>
diff --git a/external/appcompat/res/values-sw/strings.xml b/external/appcompat/res/values-sw/strings.xml
new file mode 100644
index 0000000..6455ba5
--- /dev/null
+++ b/external/appcompat/res/values-sw/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Nimemaliza"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Nenda mwanzo"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Nenda juu"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Chaguo zaidi"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Tafuta"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Hoja ya utafutaji"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Futa hoja"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Wasilisha hoja"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Tafuta kwa kutamka"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Chagua programu"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Angalia zote"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Shiriki na %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Shiriki na:"</string>
+</resources>
diff --git a/external/appcompat/res/values-sw600dp/config.xml b/external/appcompat/res/values-sw600dp/config.xml
new file mode 100644
index 0000000..fba21e1
--- /dev/null
+++ b/external/appcompat/res/values-sw600dp/config.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2012, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<!-- These resources are around just to allow their values to be customized
+ for different hardware and product builds. -->
+<resources>
+ <!-- see comment in values/config.xml -->
+ <dimen name="abc_config_prefDialogWidth">580dp</dimen>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-sw600dp/dimens.xml b/external/appcompat/res/values-sw600dp/dimens.xml
new file mode 100644
index 0000000..94fe525
--- /dev/null
+++ b/external/appcompat/res/values-sw600dp/dimens.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">5</integer>
+ <!-- Default height of an action bar. -->
+ <dimen name="abc_action_bar_default_height">56dip</dimen>
+ <!-- Vertical padding around action bar icons. -->
+ <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen>
+ <!-- Text size for action bar titles -->
+ <dimen name="abc_action_bar_title_text_size">18dp</dimen>
+ <!-- Text size for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_text_size">14dp</dimen>
+ <!-- Top margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_top_margin">-3dp</dimen>
+ <!-- Bottom margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_bottom_margin">9dip</dimen>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-th/strings.xml b/external/appcompat/res/values-th/strings.xml
new file mode 100644
index 0000000..275dc57
--- /dev/null
+++ b/external/appcompat/res/values-th/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"เสร็จสิ้น"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"นำทางไปหน้าแรก"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"นำทางขึ้น"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"ตัวเลือกอื่น"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"ค้นหา"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"ข้อความค้นหา"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"ล้างข้อความค้นหา"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"ส่งข้อความค้นหา"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"ค้นหาด้วยเสียง"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"เลือกแอป"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"ดูทั้งหมด"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"แชร์กับ %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"แชร์กับ"</string>
+</resources>
diff --git a/external/appcompat/res/values-tl/strings.xml b/external/appcompat/res/values-tl/strings.xml
new file mode 100644
index 0000000..e0705d6
--- /dev/null
+++ b/external/appcompat/res/values-tl/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Tapos na"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Mag-navigate patungo sa home"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Mag-navigate pataas"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Higit pang mga opsyon"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Maghanap"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Query sa paghahanap"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"I-clear ang query"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Isumite ang query"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Paghahanap gamit ang boses"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Pumili ng isang app"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Tingnan lahat"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Ibahagi sa/kay %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Ibahagi sa/kay"</string>
+</resources>
diff --git a/external/appcompat/res/values-tr/strings.xml b/external/appcompat/res/values-tr/strings.xml
new file mode 100644
index 0000000..61cb966
--- /dev/null
+++ b/external/appcompat/res/values-tr/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Tamamlandı"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Ana ekrana git"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Yukarı git"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Diğer seçenekler"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Ara"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Arama sorgusu"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Sorguyu temizle"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Sorguyu gönder"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Sesli arama"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Bir uygulama seçin"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Tümünü göster"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"%s ile paylaş"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Şununla paylaş"</string>
+</resources>
diff --git a/external/appcompat/res/values-uk/strings.xml b/external/appcompat/res/values-uk/strings.xml
new file mode 100644
index 0000000..f670140
--- /dev/null
+++ b/external/appcompat/res/values-uk/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Готово"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Перейти на головний"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Перейти вгору"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Інші опції"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Пошук"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Пошуковий запит"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Очистити запит"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Надіслати запит"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Голосовий пошук"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Вибрати програму"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Переглянути всі"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Надіслати через %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Надіслати через"</string>
+</resources>
diff --git a/external/appcompat/res/values-v11/styles_base.xml b/external/appcompat/res/values-v11/styles_base.xml
new file mode 100644
index 0000000..2cee503
--- /dev/null
+++ b/external/appcompat/res/values-v11/styles_base.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Like in themes_base.xml, the namespace "*.AppCompat.Base" is used to
+ define base styles for the platform version. The "*.AppCompat"
+ variants are for direct use or use as parent styles by the app. -->
+ <eat-comment/>
+
+ <!-- Progress Bar -->
+
+ <style name="Widget.AppCompat.Base.ProgressBar.Horizontal"
+ parent="android:Widget.Holo.ProgressBar.Horizontal">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ProgressBar"
+ parent="android:Widget.Holo.ProgressBar">
+ </style>
+
+ <!-- AutoCompleteTextView styles (for SearchView) -->
+
+ <style name="Widget.AppCompat.Base.AutoCompleteTextView"
+ parent="android:Widget.Holo.AutoCompleteTextView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.AutoCompleteTextView"
+ parent="android:Widget.Holo.Light.AutoCompleteTextView">
+ </style>
+
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-v11/themes_base.xml b/external/appcompat/res/values-v11/themes_base.xml
new file mode 100644
index 0000000..ca7acbd
--- /dev/null
+++ b/external/appcompat/res/values-v11/themes_base.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Themes in the "Theme.Base" family vary based on the current platform
+ version to provide the correct basis on each device. You probably don't
+ want to use them directly in your apps.
+
+ Themes in the "Theme.AppCompat" family are meant to be extended or used
+ directly by apps.
+
+ This is the values-v11/ file that only declares the Base themes for
+ Honeycomb+. You probably want to edit values/themes.xml instead. -->
+ <eat-comment/>
+
+ <!-- Base platform-dependent theme -->
+ <style name="Theme.Base" parent="android:Theme.Holo">
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowActionBar">false</item>
+
+ <!-- Attributes populated from the framework to be read by apps -->
+ <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
+ <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
+ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
+ </style>
+
+ <!-- Base platform-dependent theme providing a light-themed activity. -->
+ <style name="Theme.Base.Light" parent="android:Theme.Holo.Light">
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowActionBar">false</item>
+
+ <!-- Attributes populated from the framework to be read by apps -->
+ <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
+ <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
+ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values-v14/styles_base.xml b/external/appcompat/res/values-v14/styles_base.xml
new file mode 100644
index 0000000..4c64aee
--- /dev/null
+++ b/external/appcompat/res/values-v14/styles_base.xml
@@ -0,0 +1,228 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Like in themes_base.xml, the namespace "*.AppCompat.Base" is used to
+ define base styles for the platform version. The "*.AppCompat"
+ variants are for direct use or use as parent styles by the app. -->
+ <eat-comment/>
+
+ <style name="Widget.AppCompat.Base.ActionBar"
+ parent="android:Widget.Holo.ActionBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar"
+ parent="android:Widget.Holo.Light.ActionBar">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.Solid"
+ parent="android:Widget.Holo.ActionBar.Solid">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.Solid"
+ parent="android:Widget.Holo.Light.ActionBar.Solid">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse"
+ parent="android:Widget.Holo.Light.ActionBar.Solid.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabBar"
+ parent="android:Widget.Holo.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar"
+ parent="android:Widget.Holo.Light.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse"
+ parent="android:Widget.Holo.Light.ActionBar.TabBar.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabView"
+ parent="android:Widget.Holo.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabView"
+ parent="android:Widget.Holo.Light.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse"
+ parent="android:Widget.Holo.Light.ActionBar.TabView.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabText"
+ parent="android:Widget.Holo.ActionBar.TabText">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabText"
+ parent="android:Widget.Holo.Light.ActionBar.TabText">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse"
+ parent="android:Widget.Holo.Light.ActionBar.TabText.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionMode.Inverse"
+ parent="android:Widget.Holo.Light.ActionMode.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu"
+ parent="android:TextAppearance.Holo.Widget.ActionBar.Menu">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title"
+ parent="android:TextAppearance.Holo.Widget.ActionBar.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle"
+ parent="android:TextAppearance.Holo.Widget.ActionBar.Subtitle">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse"
+ parent="android:TextAppearance.Holo.Widget.ActionBar.Title.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse"
+ parent="android:TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title"
+ parent="android:TextAppearance.Holo.Widget.ActionMode.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle"
+ parent="android:TextAppearance.Holo.Widget.ActionMode.Subtitle">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse"
+ parent="android:TextAppearance.Holo.Widget.ActionMode.Title.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse"
+ parent="android:TextAppearance.Holo.Widget.ActionMode.Subtitle.Inverse">
+ </style>
+
+ <!-- Action Button Styles -->
+
+ <style name="Widget.AppCompat.Base.ActionButton" parent="android:Widget.Holo.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton"
+ parent="android:Widget.Holo.Light.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionButton.CloseMode"
+ parent="android:Widget.Holo.ActionButton.CloseMode">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton.CloseMode"
+ parent="android:Widget.Holo.Light.ActionButton.CloseMode">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionButton.Overflow"
+ parent="android:Widget.Holo.ActionButton.Overflow">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton.Overflow"
+ parent="android:Widget.Holo.Light.ActionButton.Overflow">
+ </style>
+
+ <!-- Spinner Widgets -->
+
+ <style name="Widget.AppCompat.Base.ListView.DropDown"
+ parent="android:Widget.Holo.ListView.DropDown"/>
+
+ <style name="Widget.AppCompat.Light.Base.ListView.DropDown"
+ parent="android:Widget.Holo.ListView.DropDown"/>
+
+ <style name="Widget.AppCompat.Base.DropDownItem.Spinner"
+ parent="android:Widget.Holo.DropDownItem.Spinner"/>
+
+ <style name="Widget.AppCompat.Light.Base.DropDownItem.Spinner"
+ parent="android:Widget.Holo.Light.DropDownItem.Spinner"/>
+
+ <style name="Widget.AppCompat.Base.Spinner" parent="android:Widget.Holo.Spinner" />
+
+ <style name="Widget.AppCompat.Light.Base.Spinner" parent="android:Widget.Holo.Light.Spinner"/>
+
+ <style name="Widget.AppCompat.Base.ListView.Menu" parent="android:Widget.ListView.Menu" />
+
+ <!-- Popup Menu -->
+
+ <style name="Widget.AppCompat.Base.ListPopupWindow"
+ parent="android:Widget.Holo.ListPopupWindow">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ListPopupWindow"
+ parent="android:Widget.Holo.Light.ListPopupWindow">
+ </style>
+
+ <style name="Widget.AppCompat.Base.PopupMenu" parent="android:Widget.Holo.PopupMenu">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.PopupMenu"
+ parent="android:Widget.Holo.Light.PopupMenu">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large"
+ parent="android:TextAppearance.Holo.Widget.PopupMenu.Large">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small"
+ parent="android:TextAppearance.Holo.Widget.PopupMenu.Small">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large"
+ parent="android:TextAppearance.Holo.Widget.PopupMenu.Large">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small"
+ parent="android:TextAppearance.Holo.Widget.PopupMenu.Small">
+ </style>
+
+ <!-- Search View result styles -->
+
+ <style name="TextAppearance.AppCompat.Base.SearchResult.Title"
+ parent="@android:TextAppearance.Holo.SearchResult.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.SearchResult.Subtitle"
+ parent="@android:TextAppearance.Holo.SearchResult.Subtitle">
+ </style>
+
+ <!--
+ TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default
+ versions instead (which are exactly the same).
+ -->
+ <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Title"
+ parent="@android:TextAppearance.Holo.SearchResult.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle"
+ parent="@android:TextAppearance.Holo.SearchResult.Subtitle">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActivityChooserView" parent="">
+ <item name="android:gravity">center</item>
+ <item name="android:background">@drawable/abc_ab_share_pack_holo_dark</item>
+ <item name="android:divider">?attr/dividerVertical</item>
+ <item name="android:showDividers">middle</item>
+ <item name="android:dividerPadding">6dip</item>
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values-v14/themes_base.xml b/external/appcompat/res/values-v14/themes_base.xml
new file mode 100644
index 0000000..26ad271
--- /dev/null
+++ b/external/appcompat/res/values-v14/themes_base.xml
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Themes in the "Theme.Base" family vary based on the current platform
+ version to provide the correct basis on each device. You probably don't
+ want to use them directly in your apps.
+
+ Themes in the "Theme.AppCompat" family are meant to be extended or used
+ directly by apps.
+
+ This is the values-v14/ file that only declares the Base themes for
+ Ice Cream Sandwich+. You probably want to edit values/themes.xml instead. -->
+ <eat-comment/>
+
+ <!-- Base platform-dependent theme providing an action bar in a dark-themed activity. -->
+ <style name="Theme.Base.AppCompat" parent="android:Theme.Holo">
+ <!-- Copy system flag values for our use -->
+ <item name="windowActionBar">?android:attr/windowActionBar</item>
+ <item name="actionBarSize">?android:attr/actionBarSize</item>
+ <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
+ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
+ <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
+ <item name="dividerVertical">?android:attr/dividerVertical</item>
+ <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
+ <item name="actionBarWidgetTheme">@null</item>
+ <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item>
+ <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
+ <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item>
+ <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item>
+ <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight
+ </item>
+
+ <!-- Attributes populated from the framework to be read by apps -->
+ <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
+ <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
+ </style>
+
+ <!-- Base platform-dependent theme providing an action bar in a light-themed activity. -->
+ <style name="Theme.Base.AppCompat.Light" parent="android:Theme.Holo.Light">
+ <!-- Copy system flag values for our use -->
+ <item name="windowActionBar">?android:attr/windowActionBar</item>
+ <item name="actionBarSize">?android:attr/actionBarSize</item>
+ <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
+ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
+ <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
+ <item name="dividerVertical">?android:attr/dividerVertical</item>
+ <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
+ <item name="actionBarWidgetTheme">@null</item>
+ <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item>
+ <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
+ <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item>
+ <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item>
+ <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight
+ </item>
+
+ <!-- Attributes populated from the framework to be read by apps -->
+ <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
+ <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
+ </style>
+
+ <!-- Base platform-dependent theme providing a dark action bar in a light-themed activity. -->
+ <style name="Theme.Base.AppCompat.Light.DarkActionBar"
+ parent="android:Theme.Holo.Light.DarkActionBar">
+ <!-- Copy system flag values for our use -->
+ <item name="windowActionBar">?android:attr/windowActionBar</item>
+ <item name="actionBarSize">?android:attr/actionBarSize</item>
+ <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
+ <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
+ <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
+ <item name="dividerVertical">?android:attr/dividerVertical</item>
+ <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
+ <item name="actionBarWidgetTheme">@style/Theme.AppCompat</item>
+ <item name="android:actionBarWidgetTheme">?attr/actionBarWidgetTheme</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item>
+ <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
+ <item name="listPreferredItemHeightLarge">?android:attr/listPreferredItemHeightLarge</item>
+ <item name="listPreferredItemPaddingLeft">?android:attr/listPreferredItemPaddingLeft</item>
+ <item name="listPreferredItemPaddingRight">?android:attr/listPreferredItemPaddingRight
+ </item>
+
+ <!-- Attributes populated from the framework to be read by apps -->
+ <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
+ <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values-vi/strings.xml b/external/appcompat/res/values-vi/strings.xml
new file mode 100644
index 0000000..0840f73
--- /dev/null
+++ b/external/appcompat/res/values-vi/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Xong"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Điều hướng về trang chủ"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Điều hướng lên trên"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Thêm tùy chọn"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Tìm kiếm"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Tìm kiếm truy vấn"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Xóa truy vấn"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Gửi truy vấn"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Tìm kiếm bằng giọng nói"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Chọn một ứng dụng"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Xem tất cả"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Chia sẻ với %s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Chia sẻ với"</string>
+</resources>
diff --git a/external/appcompat/res/values-w360dp/dimens.xml b/external/appcompat/res/values-w360dp/dimens.xml
new file mode 100644
index 0000000..e5b2456
--- /dev/null
+++ b/external/appcompat/res/values-w360dp/dimens.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">3</integer>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-w480dp/bools.xml b/external/appcompat/res/values-w480dp/bools.xml
new file mode 100644
index 0000000..6e6a3df
--- /dev/null
+++ b/external/appcompat/res/values-w480dp/bools.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources>
+ <bool name="abc_action_bar_embed_tabs_pre_jb">true</bool>
+ <bool name="abc_split_action_bar_is_narrow">false</bool>
+</resources>
diff --git a/external/appcompat/res/values-w480dp/config.xml b/external/appcompat/res/values-w480dp/config.xml
new file mode 100644
index 0000000..e95b6ff
--- /dev/null
+++ b/external/appcompat/res/values-w480dp/config.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources>
+ <bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool>
+</resources>
diff --git a/external/appcompat/res/values-w500dp/dimens.xml b/external/appcompat/res/values-w500dp/dimens.xml
new file mode 100644
index 0000000..dd6458b
--- /dev/null
+++ b/external/appcompat/res/values-w500dp/dimens.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">4</integer>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-w600dp/dimens.xml b/external/appcompat/res/values-w600dp/dimens.xml
new file mode 100644
index 0000000..5bbc34d
--- /dev/null
+++ b/external/appcompat/res/values-w600dp/dimens.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">5</integer>
+
+ <!-- Default height of an action bar. -->
+ <dimen name="abc_action_bar_default_height">56dip</dimen>
+ <!-- Vertical padding around action bar icons. -->
+ <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen>
+ <!-- Text size for action bar titles -->
+ <dimen name="abc_action_bar_title_text_size">18dp</dimen>
+ <!-- Text size for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_text_size">14dp</dimen>
+ <!-- Top margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_top_margin">-3dp</dimen>
+ <!-- Bottom margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_bottom_margin">9dip</dimen>
+ <!-- Minimum width for an action button in the menu area of an action bar -->
+ <dimen name="abc_action_button_min_width">64dip</dimen>
+
+ <!-- Minimum width of the search view text entry area. -->
+ <dimen name="abc_search_view_text_min_width">192dip</dimen>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-w720dp/bools.xml b/external/appcompat/res/values-w720dp/bools.xml
new file mode 100644
index 0000000..05c5aab
--- /dev/null
+++ b/external/appcompat/res/values-w720dp/bools.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="abc_action_bar_expanded_action_views_exclusive">false</bool>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-xlarge/bools.xml b/external/appcompat/res/values-xlarge/bools.xml
new file mode 100644
index 0000000..05c5aab
--- /dev/null
+++ b/external/appcompat/res/values-xlarge/bools.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="abc_action_bar_expanded_action_views_exclusive">false</bool>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values-xlarge/dimens.xml b/external/appcompat/res/values-xlarge/dimens.xml
new file mode 100644
index 0000000..6217586
--- /dev/null
+++ b/external/appcompat/res/values-xlarge/dimens.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">5</integer>
+
+ <!-- Default height of an action bar. -->
+ <dimen name="abc_action_bar_default_height">56dip</dimen>
+ <!-- Vertical padding around action bar icons. -->
+ <dimen name="abc_action_bar_icon_vertical_padding">4dip</dimen>
+ <!-- Text size for action bar titles -->
+ <dimen name="abc_action_bar_title_text_size">18dp</dimen>
+ <!-- Text size for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_text_size">14dp</dimen>
+ <!-- Top margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_top_margin">-3dp</dimen>
+ <!-- Bottom margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_bottom_margin">9dip</dimen>
+ <!-- Minimum width for an action button in the menu area of an action bar -->
+ <dimen name="abc_action_button_min_width">64dip</dimen>
+
+ <!-- Minimum width of the search view text entry area. -->
+ <dimen name="abc_search_view_text_min_width">192dip</dimen>
+
+</resources>
diff --git a/external/appcompat/res/values-zh-rCN/strings.xml b/external/appcompat/res/values-zh-rCN/strings.xml
new file mode 100644
index 0000000..87b36b0
--- /dev/null
+++ b/external/appcompat/res/values-zh-rCN/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"转到主屏幕"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"转到上一层级"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多选项"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜索"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜索查询"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查询"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查询"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"语音搜索"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"选择应用"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"查看全部"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"通过%s分享"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"分享方式"</string>
+</resources>
diff --git a/external/appcompat/res/values-zh-rHK/strings.xml b/external/appcompat/res/values-zh-rHK/strings.xml
new file mode 100644
index 0000000..f6a367d
--- /dev/null
+++ b/external/appcompat/res/values-zh-rHK/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"瀏覽主頁"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"向上瀏覽"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多選項"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜尋"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜尋查詢"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查詢"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查詢"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"語音搜尋"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"選擇應用程式"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"顯示全部"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"與「%s」分享"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"分享對象"</string>
+</resources>
diff --git a/external/appcompat/res/values-zh-rTW/strings.xml b/external/appcompat/res/values-zh-rTW/strings.xml
new file mode 100644
index 0000000..c804ccf
--- /dev/null
+++ b/external/appcompat/res/values-zh-rTW/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"瀏覽首頁"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"向上瀏覽"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多選項"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜尋"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜尋查詢"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查詢"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查詢"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"語音搜尋"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"選擇應用程式"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"查看全部"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"與「%s」分享"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"選擇分享對象"</string>
+</resources>
diff --git a/external/appcompat/res/values-zu/strings.xml b/external/appcompat/res/values-zu/strings.xml
new file mode 100644
index 0000000..92eac7e
--- /dev/null
+++ b/external/appcompat/res/values-zu/strings.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Kwenziwe"</string>
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Zulazulela ekhaya"</string>
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Zulazulela phezulu"</string>
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Izinketho eziningi"</string>
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Sesha"</string>
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Umbuzo wosesho"</string>
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Sula inkinga"</string>
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Hambisa umbuzo"</string>
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Ukusesha ngezwi"</string>
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Khetha uhlelo lokusebenza"</string>
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Buka konke"</string>
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Yabelana no-%s"</string>
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Yabelana no-"</string>
+</resources>
diff --git a/external/appcompat/res/values/attrs.xml b/external/appcompat/res/values/attrs.xml
new file mode 100644
index 0000000..89749c0
--- /dev/null
+++ b/external/appcompat/res/values/attrs.xml
@@ -0,0 +1,556 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- Many app-specific attributes are declared in this file.
+ Unless otherwise specified, they are intended to be set within
+ the context of a theme declaration.
+
+ Each cluster of attributes below states whether it is meant to
+ be set by the app and read by the system, or set by the system and
+ read by the app. -->
+ <eat-comment/>
+
+ <!-- These attributes are meant to be specified and customized by the app.
+ The system will read and apply them as needed. These attributes control
+ properties of the activity window, such as whether an action bar should
+ be present and whether it should overlay content. -->
+ <declare-styleable name="ActionBarWindow">
+ <attr name="windowActionBar" format="boolean"/>
+ <attr name="windowActionBarOverlay" format="boolean"/>
+ <attr name="windowSplitActionBar" format="boolean" />
+ </declare-styleable>
+
+ <!-- ============================================ -->
+
+ <!-- Action bar appearance and styling attributes.
+ These attributes are meant to be specified and customized by the
+ app. The system will read and apply them as needed. -->
+ <eat-comment/>
+
+ <!-- Default style for tabs within an action bar -->
+ <attr name="actionBarTabStyle" format="reference"/>
+ <attr name="actionBarTabBarStyle" format="reference"/>
+ <attr name="actionBarTabTextStyle" format="reference"/>
+ <attr name="actionOverflowButtonStyle" format="reference"/>
+ <!-- Reference to a style for the Action Bar -->
+ <attr name="actionBarStyle" format="reference"/>
+ <!-- Reference to a theme that should be used to inflate widgets
+ and layouts destined for the action bar. Most of the time
+ this will be a reference to the current theme, but when
+ the action bar has a significantly different contrast
+ profile than the rest of the activity the difference
+ can become important. If this is set to @null the current
+ theme will be used.-->
+ <attr name="actionBarSplitStyle" format="reference"/>
+ <!-- Reference to a theme that should be used to inflate widgets
+ and layouts destined for the action bar. Most of the time
+ this will be a reference to the current theme, but when
+ the action bar has a significantly different contrast
+ profile than the rest of the activity the difference
+ can become important. If this is set to @null the current
+ theme will be used.-->
+ <attr name="actionBarWidgetTheme" format="reference"/>
+ <!-- Size of the Action Bar, including the contextual
+ bar used to present Action Modes. -->
+ <attr name="actionBarSize" format="dimension"/>
+ <!-- Custom divider drawable to use for elements in the action bar. -->
+ <attr name="actionBarDivider" format="reference"/>
+ <!-- Custom item state list drawable background for action bar items. -->
+ <attr name="actionBarItemBackground" format="reference"/>
+ <!-- TextAppearance style that will be applied to text that
+ appears within action menu items. -->
+ <attr name="actionMenuTextAppearance" format="reference"/>
+ <!-- Color for text that appears within action menu items. -->
+ <attr name="actionMenuTextColor" format="color|reference"/>
+ <!-- Specifies a drawable to use for the 'home as up' indicator. -->
+ <attr name="homeAsUpIndicator" format="reference"/>
+ <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
+ <attr name="textAppearanceLargePopupMenu" format="reference"/>
+ <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
+ <attr name="textAppearanceSmallPopupMenu" format="reference"/>
+ <!-- Default action button style. -->
+ <attr name="actionButtonStyle" format="reference"/>
+
+ <!-- ============================================ -->
+
+ <!-- Assorted theme compatibility attributes.
+ These attributes are meant to be set by the system and read by apps
+ for use in layouts or other style declarations. -->
+ <eat-comment/>
+ <!-- A style that may be applied to horizontal LinearLayouts
+ to form a button bar. -->
+ <attr name="buttonBarStyle" format="reference"/>
+ <!-- A style that may be applied to Buttons placed within a
+ LinearLayout with the style buttonBarStyle to form a button bar. -->
+ <attr name="buttonBarButtonStyle" format="reference"/>
+ <!-- A style that may be applied to buttons or other selectable items
+ that should react to pressed and focus states, but that do not
+ have a clear visual border along the edges. -->
+ <attr name="selectableItemBackground" format="reference"/>
+ <!-- A drawable that may be used as a vertical divider between visual elements. -->
+ <attr name="dividerVertical" format="reference"/>
+ <!-- A drawable that may be used as a horizontal divider between visual elements. -->
+ <attr name="dividerHorizontal" format="reference"/>
+
+ <!-- The preferred list item height. -->
+ <attr name="listPreferredItemHeight" format="dimension"/>
+ <!-- A smaller, sleeker list item height. -->
+ <attr name="listPreferredItemHeightSmall" format="dimension"/>
+ <!-- A larger, more robust list item height. -->
+ <attr name="listPreferredItemHeightLarge" format="dimension"/>
+
+ <!-- The preferred padding along the left edge of list items. -->
+ <attr name="listPreferredItemPaddingLeft" format="dimension"/>
+ <!-- The preferred padding along the right edge of list items. -->
+ <attr name="listPreferredItemPaddingRight" format="dimension"/>
+
+ <!-- ListPopupWindow comaptibility -->
+ <attr name="dropDownListViewStyle" format="reference"/>
+ <attr name="listPopupWindowStyle" format="reference"/>
+
+
+ <!-- The preferred TextAppearance for the primary text of list items. -->
+ <attr name="textAppearanceListItem" format="reference"/>
+ <!-- The preferred TextAppearance for the primary text of small list items. -->
+ <attr name="textAppearanceListItemSmall" format="reference"/>
+
+ <attr name="title" format="string"/>
+ <attr name="height" format="dimension"/>
+
+
+ <!-- ============================================ -->
+
+ <!-- Attributes used to style the Action Bar.
+ These should be set on your theme; the default actionBarStyle will
+ propagate them to the correct elements as needed.
+
+ Please Note: when overriding attributes for an ActionBar style
+ you must specify each attribute twice: once with the "android:"
+ namespace prefix and once without. -->
+ <declare-styleable name="ActionBar">
+ <!-- The type of navigation to use. -->
+ <attr name="navigationMode">
+ <!-- Normal static title text -->
+ <enum name="normal" value="0"/>
+ <!-- The action bar will use a selection list for navigation. -->
+ <enum name="listMode" value="1"/>
+ <!-- The action bar will use a series of horizontal tabs for navigation. -->
+ <enum name="tabMode" value="2"/>
+ </attr>
+ <!-- Options affecting how the action bar is displayed. -->
+ <attr name="displayOptions">
+ <flag name="useLogo" value="0x1"/>
+ <flag name="showHome" value="0x2"/>
+ <flag name="homeAsUp" value="0x4"/>
+ <flag name="showTitle" value="0x8"/>
+ <flag name="showCustom" value="0x10"/>
+ <flag name="disableHome" value="0x20"/>
+ </attr>
+ <!-- Specifies title text used for navigationMode="normal" -->
+ <attr name="title"/>
+ <!-- Specifies subtitle text used for navigationMode="normal" -->
+ <attr name="subtitle" format="string"/>
+ <!-- Specifies a style to use for title text. -->
+ <attr name="titleTextStyle" format="reference"/>
+ <!-- Specifies a style to use for subtitle text. -->
+ <attr name="subtitleTextStyle" format="reference"/>
+ <!-- Specifies the drawable used for the application icon. -->
+ <attr name="icon" format="reference"/>
+ <!-- Specifies the drawable used for the application logo. -->
+ <attr name="logo" format="reference"/>
+ <!-- Specifies the drawable used for item dividers. -->
+ <attr name="divider" format="reference"/>
+ <!-- Specifies a background drawable for the action bar. -->
+ <attr name="background" format="reference"/>
+ <!-- Specifies a background drawable for a second stacked row of the action bar. -->
+ <attr name="backgroundStacked" format="reference|color"/>
+ <!-- Specifies a background drawable for the bottom component of a split action bar. -->
+ <attr name="backgroundSplit" format="reference|color"/>
+ <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
+ <attr name="customNavigationLayout" format="reference"/>
+ <!-- Specifies a fixed height. -->
+ <attr name="height"/>
+ <!-- Specifies a layout to use for the "home" section of the action bar. -->
+ <attr name="homeLayout" format="reference"/>
+ <!-- Specifies a style resource to use for an embedded progress bar. -->
+ <attr name="progressBarStyle" format="reference"/>
+ <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
+ <attr name="indeterminateProgressStyle" format="reference"/>
+ <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
+ <attr name="progressBarPadding" format="dimension"/>
+ <!-- Specifies padding that should be applied to the left and right sides of
+ system-provided items in the bar. -->
+ <attr name="itemPadding" format="dimension"/>
+ </declare-styleable>
+
+ <!-- Valid LayoutParams for views placed in the action bar as custom views. -->
+ <declare-styleable name="ActionBarLayout">
+ <attr name="android:layout_gravity"/>
+ </declare-styleable>
+
+ <declare-styleable name="ActionMenuItemView">
+ <attr name="android:minWidth"/>
+ </declare-styleable>
+
+ <declare-styleable name="ActionMode">
+ <!-- Specifies a style to use for title text. -->
+ <attr name="titleTextStyle"/>
+ <!-- Specifies a style to use for subtitle text. -->
+ <attr name="subtitleTextStyle"/>
+ <!-- Specifies a background for the action mode bar. -->
+ <attr name="background"/>
+ <!-- Specifies a background for the split action mode bar. -->
+ <attr name="backgroundSplit"/>
+ <!-- Specifies a fixed height for the action mode bar. -->
+ <attr name="height"/>
+ </declare-styleable>
+
+ <declare-styleable name="View">
+ <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
+ <attr name="paddingStart" format="dimension"/>
+ <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
+ <attr name="paddingEnd" format="dimension"/>
+
+ <!-- Boolean that controls whether a view can take focus. By default the user can not
+ move focus to a view; by setting this attribute to true the view is
+ allowed to take focus. This value does not impact the behavior of
+ directly calling {@link android.view.View#requestFocus}, which will
+ always request focus regardless of this view. It only impacts where
+ focus navigation will try to move focus. -->
+ <attr name="android:focusable" />
+ </declare-styleable>
+
+ <!-- =================== -->
+ <!-- Action mode styles -->
+ <!-- =================== -->
+ <eat-comment/>
+ <attr name="actionModeStyle" format="reference"/>
+ <attr name="actionModeCloseButtonStyle" format="reference"/>
+ <!-- Background drawable to use for action mode UI -->
+ <attr name="actionModeBackground" format="reference"/>
+ <!-- Background drawable to use for action mode UI in the lower split bar -->
+ <attr name="actionModeSplitBackground" format="reference"/>
+ <!-- Drawable to use for the close action mode button -->
+ <attr name="actionModeCloseDrawable" format="reference"/>
+
+ <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
+ <attr name="actionModeCutDrawable" format="reference"/>
+ <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
+ <attr name="actionModeCopyDrawable" format="reference"/>
+ <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
+ <attr name="actionModePasteDrawable" format="reference"/>
+ <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
+ <attr name="actionModeSelectAllDrawable" format="reference"/>
+ <!-- Drawable to use for the Share action button in WebView selection action modes -->
+ <attr name="actionModeShareDrawable" format="reference"/>
+ <!-- Drawable to use for the Find action button in WebView selection action modes -->
+ <attr name="actionModeFindDrawable" format="reference"/>
+ <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
+ <attr name="actionModeWebSearchDrawable" format="reference"/>
+
+ <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
+ <attr name="actionModePopupWindowStyle" format="reference"/>
+
+ <!-- These are the standard attributes that make up a complete theme. -->
+ <declare-styleable name="Theme">
+ <!-- Default ActionBar dropdown style. -->
+ <attr name="actionDropDownStyle" format="reference"/>
+ <!-- The preferred item height for dropdown lists. -->
+ <attr name="dropdownListPreferredItemHeight" format="dimension"/>
+ <!-- Default PopupMenu style. -->
+ <attr name="popupMenuStyle" format="reference"/>
+
+ <!-- ============ -->
+ <!-- Panel styles -->
+ <!-- ============ -->
+ <eat-comment />
+
+ <!-- Default Panel Menu width. -->
+ <attr name="panelMenuListWidth" format="dimension" />
+
+ <!-- Default Panel Menu style. -->
+ <attr name="panelMenuListTheme" format="reference" />
+
+ <!-- Drawable used as a background for selected list items. -->
+ <attr name="listChoiceBackgroundIndicator" format="reference" />
+
+ </declare-styleable>
+
+ <declare-styleable name="MenuView">
+ <!-- Default appearance of menu item text. -->
+ <attr name="android:itemTextAppearance"/>
+ <!-- Default horizontal divider between rows of menu items. -->
+ <attr name="android:horizontalDivider"/>
+ <!-- Default vertical divider between menu items. -->
+ <attr name="android:verticalDivider"/>
+ <!-- Default background for the menu header. -->
+ <attr name="android:headerBackground"/>
+ <!-- Default background for each menu item. -->
+ <attr name="android:itemBackground"/>
+ <!-- Default animations for the menu. -->
+ <attr name="android:windowAnimationStyle"/>
+ <!-- Default disabled icon alpha for each menu item that shows an icon. -->
+ <attr name="android:itemIconDisabledAlpha"/>
+ <!-- Whether space should be reserved in layout when an icon is missing. -->
+ <attr name="android:preserveIconSpacing"/>
+ </declare-styleable>
+ <declare-styleable name="ActionMenuView">
+ <!-- Size of padding on either end of a divider. -->
+ </declare-styleable>
+
+ <!-- Base attributes that are available to all groups. -->
+ <declare-styleable name="MenuGroup">
+
+ <!-- The ID of the group. -->
+ <attr name="android:id" />
+
+ <!-- The category applied to all items within this group.
+ (This will be or'ed with the orderInCategory attribute.) -->
+ <attr name="android:menuCategory" />
+
+ <!-- The order within the category applied to all items within this group.
+ (This will be or'ed with the category attribute.) -->
+ <attr name="android:orderInCategory" />
+
+ <!-- Whether the items are capable of displaying a check mark. -->
+ <attr name="android:checkableBehavior" />
+
+ <!-- Whether the items are shown/visible. -->
+ <attr name="android:visible" />
+
+ <!-- Whether the items are enabled. -->
+ <attr name="android:enabled" />
+
+ </declare-styleable>
+
+ <!-- Base attributes that are available to all Item objects. -->
+ <declare-styleable name="MenuItem">
+
+ <!-- The ID of the item. -->
+ <attr name="android:id" />
+
+ <!-- The category applied to the item.
+ (This will be or'ed with the orderInCategory attribute.) -->
+ <attr name="android:menuCategory" />
+
+ <!-- The order within the category applied to the item.
+ (This will be or'ed with the category attribute.) -->
+ <attr name="android:orderInCategory" />
+
+ <!-- The title associated with the item. -->
+ <attr name="android:title" />
+
+ <!-- The condensed title associated with the item. This is used in situations where the
+ normal title may be too long to be displayed. -->
+ <attr name="android:titleCondensed" />
+
+ <!-- The icon associated with this item. This icon will not always be shown, so
+ the title should be sufficient in describing this item. -->
+ <attr name="android:icon" />
+
+ <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
+ with alphabetic keys. -->
+ <attr name="android:alphabeticShortcut" />
+
+ <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
+ keyboard. -->
+ <attr name="android:numericShortcut" />
+
+ <!-- Whether the item is capable of displaying a check mark. -->
+ <attr name="android:checkable" />
+
+ <!-- Whether the item is checked. Note that you must first have enabled checking with
+ the checkable attribute or else the check mark will not appear. -->
+ <attr name="android:checked" />
+
+ <!-- Whether the item is shown/visible. -->
+ <attr name="android:visible" />
+
+ <!-- Whether the item is enabled. -->
+ <attr name="android:enabled" />
+
+ <!-- Name of a method on the Context used to inflate the menu that will be
+ called when the item is clicked. -->
+ <attr name="android:onClick" />
+
+ <!-- How this item should display in the Action Bar, if present. -->
+ <attr name="showAsAction">
+ <!-- Never show this item in an action bar, show it in the overflow menu instead.
+ Mutually exclusive with "ifRoom" and "always". -->
+ <flag name="never" value="0" />
+ <!-- Show this item in an action bar if there is room for it as determined
+ by the system. Favor this option over "always" where possible.
+ Mutually exclusive with "never" and "always". -->
+ <flag name="ifRoom" value="1" />
+ <!-- Always show this item in an actionbar, even if it would override
+ the system's limits of how much stuff to put there. This may make
+ your action bar look bad on some screens. In most cases you should
+ use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
+ <flag name="always" value="2" />
+ <!-- When this item is shown as an action in the action bar, show a text
+ label with it even if it has an icon representation. -->
+ <flag name="withText" value="4" />
+ <!-- This item's action view collapses to a normal menu
+ item. When expanded, the action view takes over a
+ larger segment of its container. -->
+ <flag name="collapseActionView" value="8" />
+ </attr>
+
+ <!-- An optional layout to be used as an action view.
+ See {@link android.view.MenuItem#setActionView(android.view.View)}
+ for more info. -->
+ <attr name="actionLayout" format="reference" />
+
+ <!-- The name of an optional View class to instantiate and use as an
+ action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
+ for more info. -->
+ <attr name="actionViewClass" format="string" />
+
+ <!-- The name of an optional ActionProvider class to instantiate an action view
+ and perform operations such as default action for that menu item.
+ See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
+ for more info. -->
+ <attr name="actionProviderClass" format="string" />
+
+ </declare-styleable>
+
+ <declare-styleable name="Spinner">
+ <!-- The prompt to display when the spinner's dialog is shown. -->
+ <attr name="prompt" format="reference" />
+ <!-- Display mode for spinner options. -->
+ <attr name="spinnerMode" format="enum">
+ <!-- Spinner options will be presented to the user as a dialog window. -->
+ <enum name="dialog" value="0" />
+ <!-- Spinner options will be presented to the user as an inline dropdown
+ anchored to the spinner widget itself. -->
+ <enum name="dropdown" value="1" />
+ </attr>
+ <!-- List selector to use for spinnerMode="dropdown" display. -->
+ <attr name="android:dropDownSelector" />
+ <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
+ <attr name="android:popupBackground" />
+ <!-- Vertical offset from the spinner widget for positioning the dropdown in
+ spinnerMode="dropdown". -->
+ <attr name="android:dropDownVerticalOffset" />
+ <!-- Horizontal offset from the spinner widget for positioning the dropdown
+ in spinnerMode="dropdown". -->
+ <attr name="android:dropDownHorizontalOffset" />
+ <!-- Width of the dropdown in spinnerMode="dropdown". -->
+ <attr name="android:dropDownWidth" />
+ <!-- Reference to a layout to use for displaying a prompt in the dropdown for
+ spinnerMode="dropdown". This layout must contain a TextView with the id
+ {@code @android:id/text1} to be populated with the prompt text. -->
+ <attr name="popupPromptView" format="reference" />
+ <!-- Gravity setting for positioning the currently selected item. -->
+ <attr name="android:gravity" />
+ <!-- Whether this spinner should mark child views as enabled/disabled when
+ the spinner itself is enabled/disabled. -->
+ <attr name="disableChildrenWhenDisabled" format="boolean" />
+ </declare-styleable>
+
+ <declare-styleable name="LinearLayoutICS">
+ <!-- Drawable to use as a vertical divider between buttons. -->
+ <attr name="divider" />
+ <!-- Setting for which dividers to show. -->
+ <attr name="showDividers">
+ <flag name="none" value="0" />
+ <flag name="beginning" value="1" />
+ <flag name="middle" value="2" />
+ <flag name="end" value="4" />
+ </attr>
+ <!-- Size of padding on either end of a divider. -->
+ <attr name="dividerPadding" format="dimension" />
+ </declare-styleable>
+
+ <!-- Default Spinner style. -->
+ <attr name="spinnerStyle" format="reference" />
+
+ <!-- Default Spinner style. -->
+ <attr name="spinnerDropDownItemStyle" format="reference" />
+
+ <!-- Specifies whether the theme is light, otherwise it is dark. -->
+ <attr name="isLightTheme" format="boolean" />
+
+ <declare-styleable name="SearchView">
+ <!-- The default state of the SearchView. If true, it will be iconified when not in
+ use and expanded when clicked. -->
+ <attr name="iconifiedByDefault" format="boolean"/>
+ <!-- An optional maximum width of the SearchView. -->
+ <attr name="android:maxWidth" />
+ <!-- An optional query hint string to be displayed in the empty query field. -->
+ <attr name="queryHint" format="string" />
+ <!-- The IME options to set on the query text field. -->
+ <attr name="android:imeOptions" />
+ <!-- The input type to set on the query text field. -->
+ <attr name="android:inputType" />
+ </declare-styleable>
+
+ <!-- ============================ -->
+ <!-- SearchView styles and assets -->
+ <!-- ============================ -->
+ <eat-comment />
+ <!-- SearchView dropdown background -->
+ <attr name="searchDropdownBackground" format="reference" />
+ <!-- SearchView close button icon -->
+ <attr name="searchViewCloseIcon" format="reference" />
+ <!-- SearchView Go button icon -->
+ <attr name="searchViewGoIcon" format="reference" />
+ <!-- SearchView Search icon -->
+ <attr name="searchViewSearchIcon" format="reference" />
+ <!-- SearchView Voice button icon -->
+ <attr name="searchViewVoiceIcon" format="reference" />
+ <!-- SearchView query refinement icon -->
+ <attr name="searchViewEditQuery" format="reference" />
+ <!-- SearchView query refinement icon background -->
+ <attr name="searchViewEditQueryBackground" format="reference" />
+ <!-- SearchView text field background for the left section -->
+ <attr name="searchViewTextField" format="reference" />
+ <!-- SearchView text field background for the right section -->
+ <attr name="searchViewTextFieldRight" format="reference" />
+ <!-- The list item height for search results. @hide -->
+ <attr name="searchResultListItemHeight" format="dimension" />
+ <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
+ <attr name="textAppearanceSearchResultTitle" format="reference" />
+ <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
+ <attr name="textAppearanceSearchResultSubtitle" format="reference" />
+ <!-- Text color for urls in search suggestions, used by things like global search -->
+ <attr name="textColorSearchUrl" format="reference|color" />
+ <!-- SearchView AutoCompleteTextView style -->
+ <attr name="searchViewAutoCompleteTextView" format="reference" />
+
+ <!-- Attrbitutes for a ActivityChooserView. -->
+ <declare-styleable name="ActivityChooserView">
+ <!-- The maximal number of items initially shown in the activity list. -->
+ <attr name="initialActivityCount" format="string" />
+ <!-- The drawable to show in the button for expanding the activities overflow popup.
+ <strong>Note:</strong> Clients would like to set this drawable
+ as a clue about the action the chosen activity will perform. For
+ example, if share activity is to be chosen the drawable should
+ give a clue that sharing is to be performed.
+ -->
+ <attr name="expandActivityOverflowButtonDrawable" format="reference" />
+ </declare-styleable>
+
+ <!-- Default ActivityChooserView style. -->
+ <attr name="activityChooserViewStyle" format="reference" />
+
+ <declare-styleable name="CompatTextView">
+ <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
+ <attr name="textAllCaps" format="reference|boolean" />
+ </declare-styleable>
+
+</resources>
diff --git a/external/appcompat/res/values/bools.xml b/external/appcompat/res/values/bools.xml
new file mode 100644
index 0000000..004d947
--- /dev/null
+++ b/external/appcompat/res/values/bools.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <bool name="abc_action_bar_embed_tabs_pre_jb">false</bool>
+ <bool name="abc_action_bar_expanded_action_views_exclusive">true</bool>
+ <bool name="abc_split_action_bar_is_narrow">true</bool>
+
+ <bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool>
+</resources>
diff --git a/external/appcompat/res/values/colors.xml b/external/appcompat/res/values/colors.xml
new file mode 100644
index 0000000..884387a
--- /dev/null
+++ b/external/appcompat/res/values/colors.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources>
+ <color name="abc_search_url_text_normal">#7fa87f</color>
+ <color name="abc_search_url_text_selected">@android:color/black</color>
+ <color name="abc_search_url_text_pressed">@android:color/black</color>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values/config.xml b/external/appcompat/res/values/config.xml
new file mode 100644
index 0000000..8c027d1
--- /dev/null
+++ b/external/appcompat/res/values/config.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<!-- These resources are around just to allow their values to be customized
+ for different hardware and product builds. -->
+<resources>
+ <!-- Whether action menu items should obey the "withText" showAsAction
+ flag. This may be set to false for situations where space is
+ extremely limited. -->
+ <bool name="abc_config_allowActionMenuItemTextWithIcon">false</bool>
+
+ <!-- The maximum width we would prefer dialogs to be. 0 if there is no
+ maximum (let them grow as large as the screen). Actual values are
+ specified for -large and -xlarge configurations. -->
+ <dimen name="abc_config_prefDialogWidth">320dp</dimen>
+
+ <!-- Whether action menu items should be displayed in ALLCAPS or not.
+ Defaults to true. If this is not appropriate for specific locales
+ it should be disabled in that locale's resources. -->
+ <bool name="abc_config_actionMenuItemAllCaps">true</bool>
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values/dimens.xml b/external/appcompat/res/values/dimens.xml
new file mode 100644
index 0000000..befb9f6
--- /dev/null
+++ b/external/appcompat/res/values/dimens.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- The maximum number of action buttons that should be permitted within
+ an action bar/action mode. This will be used to determine how many
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
+ <integer name="abc_max_action_buttons">2</integer>
+
+ <!-- Maximum width for a stacked action bar tab. This prevents
+ action bar tabs from becoming too wide on a wide screen when only
+ a few are present. -->
+ <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
+
+ <!-- Default height of an action bar. -->
+ <dimen name="abc_action_bar_default_height">48dip</dimen>
+ <!-- Vertical padding around action bar icons. -->
+ <dimen name="abc_action_bar_icon_vertical_padding">8dip</dimen>
+ <!-- Text size for action bar titles -->
+ <dimen name="abc_action_bar_title_text_size">18dp</dimen>
+ <!-- Text size for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_text_size">14dp</dimen>
+ <!-- Top margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_top_margin">-3dp</dimen>
+ <!-- Bottom margin for action bar subtitles -->
+ <dimen name="abc_action_bar_subtitle_bottom_margin">5dip</dimen>
+ <!-- Minimum width for an action button in the menu area of an action bar -->
+ <dimen name="abc_action_button_min_width">56dip</dimen>
+ <!-- Maximum height for a stacked tab bar as part of an action bar -->
+ <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
+ <!-- Size of the indeterminate Progress Bar -->
+ <dimen name="abc_action_bar_progress_bar_size">40dp</dimen>
+
+ <dimen name="abc_panel_menu_list_width">296dp</dimen>
+
+ <!-- Minimum width of the search view text entry area. -->
+ <dimen name="abc_search_view_text_min_width">160dip</dimen>
+ <!-- Preferred width of the search view. -->
+ <dimen name="abc_search_view_preferred_width">320dip</dimen>
+
+ <!-- Text padding for dropdown items -->
+ <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
+ <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
+ <!-- Width of the icon in a dropdown list -->
+ <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
+
+</resources>
diff --git a/external/appcompat/res/values/ids.xml b/external/appcompat/res/values/ids.xml
new file mode 100644
index 0000000..ebeed83
--- /dev/null
+++ b/external/appcompat/res/values/ids.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources>
+ <item type="id" name="home"/>
+ <item type="id" name="action_bar_activity_content"/>
+ <item type="id" name="action_menu_divider"/>
+ <item type="id" name="action_menu_presenter"/>
+ <item type="id" name="progress_circular"/>
+ <item type="id" name="progress_horizontal"/>
+</resources>
diff --git a/external/appcompat/res/values/strings.xml b/external/appcompat/res/values/strings.xml
new file mode 100644
index 0000000..eceee56
--- /dev/null
+++ b/external/appcompat/res/values/strings.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+ <!-- Label for the "Done" button on the far left of action mode toolbars. -->
+ <string name="abc_action_mode_done">Done</string>
+ <!-- Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] -->
+ <string name="abc_action_bar_home_description">Navigate home</string>
+ <!-- Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] -->
+ <string name="abc_action_bar_up_description">Navigate up</string>
+ <!-- Content description for the action menu overflow button. [CHAR LIMIT=NONE] -->
+ <string name="abc_action_menu_overflow_description">More options</string>
+
+ <!-- SearchView accessibility description for search button [CHAR LIMIT=NONE] -->
+ <string name="abc_searchview_description_search">Search</string>
+ <!-- SearchView accessibility description for search text field [CHAR LIMIT=NONE] -->
+ <string name="abc_searchview_description_query">Search query</string>
+ <!-- SearchView accessibility description for clear button [CHAR LIMIT=NONE] -->
+ <string name="abc_searchview_description_clear">Clear query</string>
+ <!-- SearchView accessibility description for submit button [CHAR LIMIT=NONE] -->
+ <string name="abc_searchview_description_submit">Submit query</string>
+ <!-- SearchView accessibility description for voice button [CHAR LIMIT=NONE] -->
+ <string name="abc_searchview_description_voice">Voice search</string>
+
+ <!-- ActivityChooserView - accessibility support -->
+ <!-- Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] -->
+ <string name="abc_activitychooserview_choose_application">Choose an app</string>
+ <!-- Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] -->
+ <string name="abc_activity_chooser_view_see_all">See all</string>
+ <!-- Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] -->
+ <string name="abc_shareactionprovider_share_with_application">Share with %s</string>
+ <!-- Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] -->
+ <string name="abc_shareactionprovider_share_with">Share with</string>
+
+</resources>
\ No newline at end of file
diff --git a/external/appcompat/res/values/styles.xml b/external/appcompat/res/values/styles.xml
new file mode 100644
index 0000000..94d2e88
--- /dev/null
+++ b/external/appcompat/res/values/styles.xml
@@ -0,0 +1,245 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Styles in here can be extended for customisation in your application. Each utilises
+ one of the Base styles. If Holo themes are available on the current platform version
+ they will be used instead of the compat styles. -->
+
+ <style name="Widget.AppCompat.ActionBar" parent="Widget.AppCompat.Base.ActionBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar" parent="Widget.AppCompat.Light.Base.ActionBar">
+ </style>
+
+ <style name="Widget.AppCompat.ActionBar.Solid"
+ parent="Widget.AppCompat.Base.ActionBar.Solid">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.Solid"
+ parent="Widget.AppCompat.Light.Base.ActionBar.Solid">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionBar.Title"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.ProgressBar.Horizontal"
+ parent="Widget.AppCompat.Base.ProgressBar.Horizontal">
+ </style>
+
+ <style name="Widget.AppCompat.ProgressBar"
+ parent="Widget.AppCompat.Base.ProgressBar">
+ </style>
+
+ <style name="Widget.AppCompat.ActionButton" parent="Widget.AppCompat.Base.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionButton"
+ parent="Widget.AppCompat.Light.Base.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.ActionButton.CloseMode"
+ parent="Widget.AppCompat.Base.ActionButton.CloseMode">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionButton.CloseMode"
+ parent="Widget.AppCompat.Light.Base.ActionButton.CloseMode">
+ </style>
+
+ <style name="Widget.AppCompat.ActionButton.Overflow"
+ parent="Widget.AppCompat.Base.ActionButton.Overflow">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionButton.Overflow"
+ parent="Widget.AppCompat.Light.Base.ActionButton.Overflow">
+ </style>
+
+ <style name="Widget.AppCompat.ActionBar.TabBar" parent="Widget.AppCompat.Base.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabBar"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse"></style>
+
+ <style name="Widget.AppCompat.ActionBar.TabView"
+ parent="Widget.AppCompat.Base.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabView"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse">
+ </style>
+
+ <style name="Widget.AppCompat.ActionBar.TabText"
+ parent="Widget.AppCompat.Base.ActionBar.TabText">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabText"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabText">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu">
+ </style>
+
+ <style name="Widget.AppCompat.ActionMode" parent="Widget.AppCompat.Base.ActionMode">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActionMode.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionMode.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionMode.Title"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse"
+ parent="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.DropDownItem"
+ parent="TextAppearance.AppCompat.Widget.Base.DropDownItem">
+ </style>
+
+ <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"
+ parent="Widget.AppCompat.Base.Spinner">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar"
+ parent="Widget.AppCompat.Light.Base.Spinner">
+ </style>
+
+ <style name="Widget.AppCompat.DropDownItem.Spinner"
+ parent="Widget.AppCompat.Base.DropDownItem.Spinner">
+ </style>
+ <style name="Widget.AppCompat.Light.DropDownItem.Spinner"
+ parent="Widget.AppCompat.Light.Base.DropDownItem.Spinner">
+ </style>
+
+ <style name="Widget.AppCompat.ListView.DropDown"
+ parent="Widget.AppCompat.Base.ListView.DropDown">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ListView.DropDown"
+ parent="Widget.AppCompat.Light.Base.ListView.DropDown">
+ </style>
+
+ <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item"
+ parent="TextAppearance.Widget.AppCompat.Base.ExpandedMenu.Item">
+ </style>
+
+ <style name="Widget.AppCompat.ListPopupWindow" parent="Widget.AppCompat.Base.ListPopupWindow">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ListPopupWindow"
+ parent="Widget.AppCompat.Light.Base.ListPopupWindow">
+ </style>
+
+ <style name="Widget.AppCompat.PopupMenu" parent="Widget.AppCompat.Base.PopupMenu">
+ </style>
+
+ <style name="Widget.AppCompat.Light.PopupMenu"
+ parent="Widget.AppCompat.Light.Base.PopupMenu">
+ </style>
+
+ <style name="Widget.AppCompat.ListView.Menu" parent="Widget.AppCompat.Base.ListView.Menu">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large"
+ parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small"
+ parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large"
+ parent="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small"
+ parent="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small">
+ </style>
+
+ <style name="TextAppearance.AppCompat.SearchResult.Title"
+ parent="TextAppearance.AppCompat.Base.SearchResult.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.SearchResult.Subtitle"
+ parent="TextAppearance.AppCompat.Base.SearchResult.Subtitle">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.SearchResult.Title"
+ parent="TextAppearance.AppCompat.Light.Base.SearchResult.Title">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle"
+ parent="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle">
+ </style>
+
+ <style name="Widget.AppCompat.AutoCompleteTextView"
+ parent="Widget.AppCompat.Base.AutoCompleteTextView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.AutoCompleteTextView"
+ parent="Widget.AppCompat.Light.Base.AutoCompleteTextView">
+ </style>
+
+ <style name="Widget.AppCompat.ActivityChooserView"
+ parent="Widget.AppCompat.Base.ActivityChooserView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.ActivityChooserView"
+ parent="Widget.AppCompat.Light.Base.ActivityChooserView">
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values/styles_base.xml b/external/appcompat/res/values/styles_base.xml
new file mode 100644
index 0000000..79dd732
--- /dev/null
+++ b/external/appcompat/res/values/styles_base.xml
@@ -0,0 +1,404 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Like in themes_base.xml, the namespace "*.AppCompat.Base" is used to
+ define base styles for the platform version. The "*.AppCompat"
+ variants are for direct use or use as parent styles by the app. -->
+ <eat-comment/>
+
+ <style name="Widget.AppCompat.Base.ActionBar" parent="">
+ <item name="displayOptions">useLogo|showHome|showTitle</item>
+ <item name="divider">?attr/dividerVertical</item>
+ <item name="height">?attr/actionBarSize</item>
+ <item name="homeLayout">@layout/abc_action_bar_home</item>
+
+ <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
+ <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle
+ </item>
+
+ <item name="background">@drawable/abc_ab_transparent_dark_holo</item>
+ <item name="backgroundStacked">@drawable/abc_ab_stacked_transparent_dark_holo</item>
+ <item name="backgroundSplit">@drawable/abc_ab_bottom_transparent_dark_holo</item>
+
+ <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
+
+ <item name="progressBarStyle">@style/Widget.AppCompat.ProgressBar.Horizontal</item>
+ <item name="indeterminateProgressStyle">@style/Widget.AppCompat.ProgressBar</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar" parent="Widget.AppCompat.Base.ActionBar">
+ <item name="background">@drawable/abc_ab_transparent_light_holo</item>
+ <item name="backgroundStacked">@drawable/abc_ab_stacked_transparent_light_holo</item>
+ <item name="backgroundSplit">@drawable/abc_ab_bottom_transparent_light_holo</item>
+
+ <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow
+ </item>
+
+ <item name="progressBarStyle">@style/Widget.AppCompat.ProgressBar.Horizontal</item>
+ <item name="indeterminateProgressStyle">@style/Widget.AppCompat.ProgressBar</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.Solid" parent="Widget.AppCompat.Base.ActionBar">
+ <item name="background">@drawable/abc_ab_solid_dark_holo</item>
+ <item name="backgroundStacked">@drawable/abc_ab_stacked_solid_dark_holo</item>
+ <item name="backgroundSplit">@drawable/abc_ab_bottom_solid_dark_holo</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.Solid"
+ parent="Widget.AppCompat.Light.Base.ActionBar">
+ <item name="background">@drawable/abc_ab_solid_light_holo</item>
+ <item name="backgroundStacked">@drawable/abc_ab_stacked_solid_light_holo</item>
+ <item name="backgroundSplit">@drawable/abc_ab_bottom_solid_light_holo</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.Solid.Inverse"
+ parent="Widget.AppCompat.Base.ActionBar.Solid">
+ <item name="titleTextStyle">
+ @style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse
+ </item>
+ <item name="subtitleTextStyle">
+ @style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse
+ </item>
+ <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow
+ </item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionButton" parent="">
+ <item name="android:background">?attr/actionBarItemBackground</item>
+ <item name="android:paddingLeft">12dip</item>
+ <item name="android:paddingRight">12dip</item>
+ <item name="android:minWidth">@dimen/abc_action_button_min_width</item>
+ <item name="android:minHeight">?attr/actionBarSize</item>
+ <item name="android:gravity">center</item>
+ <item name="android:maxLines">2</item>
+ <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton"
+ parent="Widget.AppCompat.Base.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionButton.CloseMode"
+ parent="Widget.AppCompat.Base.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton.CloseMode"
+ parent="Widget.AppCompat.Light.Base.ActionButton">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionButton.Overflow"
+ parent="Widget.AppCompat.Base.ActionButton">
+ <item name="android:src">@drawable/abc_ic_menu_moreoverflow_normal_holo_dark</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionButton.Overflow"
+ parent="Widget.AppCompat.Light.Base.ActionButton">
+ <item name="android:src">@drawable/abc_ic_menu_moreoverflow_normal_holo_light</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabBar" parent="">
+ <item name="divider">?attr/actionBarDivider</item>
+ <item name="showDividers">middle</item>
+ <item name="dividerPadding">12dip</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar"
+ parent="Widget.AppCompat.Base.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabBar">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabView" parent="">
+ <item name="android:background">@drawable/abc_tab_indicator_ab_holo</item>
+ <item name="android:gravity">center_horizontal</item>
+ <item name="android:paddingLeft">16dip</item>
+ <item name="android:paddingRight">16dip</item>
+ <item name="android:minWidth">80dip</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabView"
+ parent="Widget.AppCompat.Base.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabView.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabView">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionBar.TabText" parent="">
+ <item name="android:textAppearance">@null</item>
+ <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
+ <item name="android:textSize">12sp</item>
+ <item name="android:textStyle">bold</item>
+ <item name="android:ellipsize">marquee</item>
+ <item name="android:maxLines">2</item>
+ <item name="textAllCaps">true</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabText"
+ parent="Widget.AppCompat.Base.ActionBar.TabText">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionBar.TabText.Inverse"
+ parent="Widget.AppCompat.Light.Base.ActionBar.TabText">
+ <item name="android:textColor">?android:attr/textColorPrimaryInverseDisableOnly</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActionMode" parent="">
+ <item name="background">?attr/actionModeBackground</item>
+ <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
+ <item name="height">?attr/actionBarSize</item>
+ <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
+ <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle
+ </item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActionMode.Inverse"
+ parent="Widget.AppCompat.Base.ActionMode">
+ <item name="titleTextStyle">
+ @style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse
+ </item>
+ <item name="subtitleTextStyle">
+ @style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse
+ </item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title"
+ parent="android:TextAppearance.Medium">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle"
+ parent="android:TextAppearance.Small">
+ <item name="android:textColor">?android:attr/textColorSecondary</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Title.Inverse"
+ parent="android:TextAppearance.Medium.Inverse">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionMode.Subtitle.Inverse"
+ parent="android:TextAppearance.Small.Inverse">
+ <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Menu"
+ parent="android:TextAppearance.Small">
+ <item name="android:textSize">12sp</item>
+ <item name="android:textStyle">bold</item>
+ <item name="android:textColor">?attr/actionMenuTextColor</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title"
+ parent="android:TextAppearance.Medium">
+ <item name="android:textSize">@dimen/abc_action_bar_title_text_size</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle"
+ parent="android:TextAppearance.Small">
+ <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Title.Inverse"
+ parent="android:TextAppearance.Medium.Inverse">
+ <item name="android:textSize">@dimen/abc_action_bar_title_text_size</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.ActionBar.Subtitle.Inverse"
+ parent="android:TextAppearance.Small.Inverse">
+ <item name="android:textSize">@dimen/abc_action_bar_subtitle_text_size</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ProgressBar.Horizontal"
+ parent="android:Widget.ProgressBar.Horizontal">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ProgressBar" parent="android:Widget.ProgressBar">
+ <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
+ <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
+ <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
+ <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
+ </style>
+
+ <!-- Action Bar Spinner Widgets -->
+
+ <style name="Widget.AppCompat.Base.Spinner" parent="">
+ <item name="spinnerMode">dropdown</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item>
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item>
+ <item name="android:dropDownVerticalOffset">0dip</item>
+ <item name="android:dropDownHorizontalOffset">0dip</item>
+ <item name="android:dropDownWidth">wrap_content</item>
+ <item name="android:gravity">left|center_vertical</item>
+ <item name="android:clickable">true</item>
+ <item name="android:background">@drawable/abc_spinner_ab_holo_dark</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.Spinner" parent="Widget.AppCompat.Base.Spinner">
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item>
+ <item name="android:background">@drawable/abc_spinner_ab_holo_light</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.DropDownItem.Spinner" parent="">
+ <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem
+ </item>
+ <item name="android:paddingLeft">8dp</item>
+ <item name="android:paddingRight">8dp</item>
+ <item name="android:gravity">center_vertical</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.DropDownItem.Spinner"
+ parent="Widget.AppCompat.Base.DropDownItem.Spinner">
+ </style>
+
+ <style name="Widget.AppCompat.Base.ListView.DropDown" parent="android:Widget.ListView">
+ <item name="android:listSelector">@drawable/abc_list_selector_holo_dark</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ListView.DropDown"
+ parent="android:Widget.ListView">
+ <item name="android:listSelector">@drawable/abc_list_selector_holo_light</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Widget.Base.DropDownItem"
+ parent="android:TextAppearance.Small">
+ <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
+ </style>
+
+ <style name="TextAppearance.Widget.AppCompat.Base.ExpandedMenu.Item"
+ parent="android:TextAppearance.Medium">
+ <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
+ </style>
+
+ <!-- Mimic text appearance in select_dialog_item.xml -->
+ <style name="TextAppearance.AppCompat.Base.CompactMenu.Dialog"
+ parent="android:TextAppearance.Medium">
+ <item name="android:textColor">@android:color/primary_text_light</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ListView.Menu" parent="android:Widget.ListView.Menu">
+ <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
+ <item name="android:divider">?attr/dividerHorizontal</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ListPopupWindow" parent="">
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item>
+ <item name="android:dropDownVerticalOffset">0dip</item>
+ <item name="android:dropDownHorizontalOffset">0dip</item>
+ <item name="android:dropDownWidth">wrap_content</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ListPopupWindow" parent="">
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item>
+ <item name="android:dropDownVerticalOffset">0dip</item>
+ <item name="android:dropDownHorizontalOffset">0dip</item>
+ <item name="android:dropDownWidth">wrap_content</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.PopupMenu"
+ parent="@style/Widget.AppCompat.Base.ListPopupWindow">
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.PopupMenu"
+ parent="@style/Widget.AppCompat.Light.Base.ListPopupWindow">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large"
+ parent="android:TextAppearance.Widget">
+ <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
+ <item name="android:textSize">18sp</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small"
+ parent="android:TextAppearance.Widget">
+ <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
+ <item name="android:textSize">14sp</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Large"
+ parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Large">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.Widget.PopupMenu.Small"
+ parent="TextAppearance.AppCompat.Base.Widget.PopupMenu.Small">
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.SearchResult" parent="">
+ <item name="android:textStyle">normal</item>
+ <item name="android:textColor">?android:textColorPrimary</item>
+ <item name="android:textColorHint">?android:textColorHint</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.SearchResult.Title">
+ <item name="android:textSize">18sp</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Base.SearchResult.Subtitle">
+ <item name="android:textSize">14sp</item>
+ <item name="android:textColor">?android:textColorSecondary</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.SearchResult"
+ parent="TextAppearance.AppCompat.Base.SearchResult">
+ <item name="android:textColor">?android:textColorPrimary</item>
+ <item name="android:textColorHint">?android:textColorHint</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Title">
+ <item name="android:textSize">18sp</item>
+ </style>
+
+ <style name="TextAppearance.AppCompat.Light.Base.SearchResult.Subtitle">
+ <item name="android:textSize">14sp</item>
+ <item name="android:textColor">?android:textColorSecondary</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.AutoCompleteTextView"
+ parent="android:Widget.AutoCompleteTextView">
+ <item name="android:textColor">?attr/actionMenuTextColor</item>
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_dark</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_dark</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.AutoCompleteTextView"
+ parent="android:Widget.AutoCompleteTextView">
+ <item name="android:textColor">?attr/actionMenuTextColor</item>
+ <item name="android:dropDownSelector">@drawable/abc_list_selector_holo_light</item>
+ <item name="android:popupBackground">@drawable/abc_menu_dropdown_panel_holo_light</item>
+ </style>
+
+ <style name="Widget.AppCompat.Base.ActivityChooserView" parent="">
+ <item name="android:gravity">center</item>
+ <item name="android:background">@drawable/abc_ab_share_pack_holo_dark</item>
+ <item name="divider">?attr/dividerVertical</item>
+ <item name="showDividers">middle</item>
+ <item name="dividerPadding">6dip</item>
+ </style>
+
+ <style name="Widget.AppCompat.Light.Base.ActivityChooserView"
+ parent="Widget.AppCompat.Base.ActivityChooserView">
+ <item name="android:background">@drawable/abc_ab_share_pack_holo_light</item>
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values/themes.xml b/external/appcompat/res/values/themes.xml
new file mode 100644
index 0000000..7199f77
--- /dev/null
+++ b/external/appcompat/res/values/themes.xml
@@ -0,0 +1,193 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Themes in the "Theme.AppCompat" family will contain an action bar by default.
+ If Holo themes are available on the current platform version they will be used.
+ A limited Holo-styled action bar will be provided on platform versions older
+ than 3.0. (API 11)
+
+ These theme declarations contain any version-independent specification. Items
+ that need to vary based on platform version should be defined in the corresponding
+ "Theme.Base" theme. -->
+
+ <!-- Platform-independent theme providing an action bar in a dark-themed activity. -->
+ <style name="Theme.AppCompat" parent="Theme.Base.AppCompat">
+ <item name="isLightTheme">false</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="spinnerDropDownItemStyle">
+ @style/Widget.AppCompat.DropDownItem.Spinner
+ </item>
+ <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
+ <item name="searchResultListItemHeight">58dip</item>
+
+ <!-- Popup Menu styles -->
+ <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
+ <item name="textAppearanceLargePopupMenu">
+ @style/TextAppearance.AppCompat.Widget.PopupMenu.Large
+ </item>
+ <item name="textAppearanceSmallPopupMenu">
+ @style/TextAppearance.AppCompat.Widget.PopupMenu.Small
+ </item>
+
+ <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
+ <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
+
+ <!-- SearchView attributes -->
+ <item name="searchDropdownBackground">@drawable/abc_search_dropdown_dark</item>
+ <item name="searchViewTextField">@drawable/abc_textfield_searchview_holo_dark</item>
+ <item name="searchViewTextFieldRight">@drawable/abc_textfield_searchview_right_holo_dark
+ </item>
+ <item name="searchViewCloseIcon">@drawable/abc_ic_clear</item>
+ <item name="searchViewSearchIcon">@drawable/abc_ic_search</item>
+ <item name="searchViewGoIcon">@drawable/abc_ic_go</item>
+ <item name="searchViewVoiceIcon">@drawable/abc_ic_voice_search</item>
+ <item name="searchViewEditQuery">@drawable/abc_ic_commit_search_api_holo_dark</item>
+ <item name="searchViewEditQueryBackground">?attr/selectableItemBackground</item>
+ <item name="searchViewAutoCompleteTextView">
+ @style/Widget.AppCompat.AutoCompleteTextView</item>
+ <item name="textColorSearchUrl">@color/abc_search_url_text_holo</item>
+ <item name="textAppearanceSearchResultTitle">
+ @style/TextAppearance.AppCompat.SearchResult.Title
+ </item>
+ <item name="textAppearanceSearchResultSubtitle">
+ @style/TextAppearance.AppCompat.SearchResult.Subtitle
+ </item>
+
+ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_holo_dark</item>
+
+ <!-- ShareActionProvider attributes -->
+ <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
+
+ </style>
+
+ <!-- Platform-independent theme providing an action bar in a light-themed activity. -->
+ <style name="Theme.AppCompat.Light" parent="Theme.Base.AppCompat.Light">
+ <item name="isLightTheme">true</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="spinnerDropDownItemStyle">
+ @style/Widget.AppCompat.Light.DropDownItem.Spinner
+ </item>
+ <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
+ <item name="searchResultListItemHeight">58dip</item>
+
+ <!-- Popup Menu styles -->
+ <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
+ <item name="textAppearanceLargePopupMenu">
+ @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
+ </item>
+ <item name="textAppearanceSmallPopupMenu">
+ @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
+ </item>
+
+ <item name="listPopupWindowStyle">@style/Widget.AppCompat.Light.ListPopupWindow</item>
+ <item name="dropDownListViewStyle">@style/Widget.AppCompat.Light.ListView.DropDown</item>
+
+ <!-- SearchView attributes -->
+ <item name="searchDropdownBackground">@drawable/abc_search_dropdown_light</item>
+ <item name="searchViewTextField">@drawable/abc_textfield_searchview_holo_light</item>
+ <item name="searchViewTextFieldRight">@drawable/abc_textfield_searchview_right_holo_light
+ </item>
+ <item name="searchViewCloseIcon">@drawable/abc_ic_clear_holo_light</item>
+ <item name="searchViewSearchIcon">@drawable/abc_ic_search_api_holo_light</item>
+ <item name="searchViewGoIcon">@drawable/abc_ic_go_search_api_holo_light</item>
+ <item name="searchViewVoiceIcon">@drawable/abc_ic_voice_search_api_holo_light</item>
+ <item name="searchViewEditQuery">@drawable/abc_ic_commit_search_api_holo_light</item>
+ <item name="searchViewEditQueryBackground">?attr/selectableItemBackground</item>
+ <item name="searchViewAutoCompleteTextView">
+ @style/Widget.AppCompat.Light.AutoCompleteTextView</item>
+ <item name="textColorSearchUrl">@color/abc_search_url_text_holo</item>
+ <item name="textAppearanceSearchResultTitle">
+ @style/TextAppearance.AppCompat.Light.SearchResult.Title
+ </item>
+ <item name="textAppearanceSearchResultSubtitle">
+ @style/TextAppearance.AppCompat.Light.SearchResult.Subtitle
+ </item>
+
+ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_holo_light</item>
+
+ <!-- ShareActionProvider attributes -->
+ <item name="activityChooserViewStyle">@style/Widget.AppCompat.Light.ActivityChooserView
+ </item>
+
+ </style>
+
+ <!-- Platform-independent theme providing an action bar in a dark-themed activity. -->
+ <style name="Theme.AppCompat.Light.DarkActionBar"
+ parent="Theme.Base.AppCompat.Light.DarkActionBar">
+ <item name="isLightTheme">true</item>
+
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
+ <item name="spinnerDropDownItemStyle">
+ @style/Widget.AppCompat.Light.DropDownItem.Spinner
+ </item>
+ <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
+ <item name="searchResultListItemHeight">58dip</item>
+
+ <!-- Popup Menu styles -->
+ <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
+ <item name="textAppearanceLargePopupMenu">
+ @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
+ </item>
+ <item name="textAppearanceSmallPopupMenu">
+ @style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
+ </item>
+
+ <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
+ <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
+
+ <!-- SearchView attributes -->
+ <item name="searchDropdownBackground">@drawable/abc_search_dropdown_dark</item>
+ <item name="searchViewTextField">@drawable/abc_textfield_searchview_holo_dark</item>
+ <item name="searchViewTextFieldRight">@drawable/abc_textfield_searchview_right_holo_dark
+ </item>
+ <item name="searchViewCloseIcon">@drawable/abc_ic_clear</item>
+ <item name="searchViewSearchIcon">@drawable/abc_ic_search</item>
+ <item name="searchViewGoIcon">@drawable/abc_ic_go</item>
+ <item name="searchViewVoiceIcon">@drawable/abc_ic_voice_search</item>
+ <item name="searchViewEditQuery">@drawable/abc_ic_commit_search_api_holo_dark</item>
+ <item name="searchViewEditQueryBackground">?attr/selectableItemBackground</item>
+ <item name="searchViewAutoCompleteTextView">
+ @style/Widget.AppCompat.AutoCompleteTextView</item>
+ <item name="textColorSearchUrl">@color/abc_search_url_text_holo</item>
+ <item name="textAppearanceSearchResultTitle">
+ @style/TextAppearance.AppCompat.SearchResult.Title
+ </item>
+ <item name="textAppearanceSearchResultSubtitle">
+ @style/TextAppearance.AppCompat.SearchResult.Subtitle
+ </item>
+
+ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_holo_dark</item>
+
+ <!-- ShareActionProvider attributes -->
+ <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView
+ </item>
+
+ </style>
+
+
+ <!-- Menu/item attributes -->
+ <style name="Theme.AppCompat.CompactMenu" parent="Theme.AppCompat.Base.CompactMenu">
+ </style>
+
+ <style name="Theme.AppCompat.CompactMenu.Dialog"
+ parent="Theme.AppCompat.Base.CompactMenu.Dialog">
+ </style>
+
+</resources>
diff --git a/external/appcompat/res/values/themes_base.xml b/external/appcompat/res/values/themes_base.xml
new file mode 100644
index 0000000..3b514a8
--- /dev/null
+++ b/external/appcompat/res/values/themes_base.xml
@@ -0,0 +1,201 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<resources>
+
+ <!-- Themes in the "Theme.Base" family vary based on the current platform
+ version to provide the correct basis on each device. You probably don't
+ want to use them directly in your apps.
+
+ Themes in the "Theme.AppCompat" family are meant to be extended or used
+ directly by apps. -->
+ <eat-comment/>
+
+ <style name="Theme.Base" parent="android:Theme">
+ </style>
+
+ <style name="Theme.Base.Light" parent="android:Theme.Light">
+ </style>
+
+ <!-- Base platform-dependent theme providing an action bar in a dark-themed activity. -->
+ <style name="Theme.Base.AppCompat" parent="Theme.Base">
+ <item name="windowActionBar">true</item>
+ <!-- Remove system title bars; we will add the action bar ourselves. -->
+ <item name="android:windowNoTitle">true</item>
+
+ <item name="buttonBarStyle">@android:style/ButtonBar</item>
+ <item name="buttonBarButtonStyle">@android:style/Widget.Button</item>
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
+ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_dark</item>
+
+ <item name="dividerVertical">@drawable/abc_list_divider_holo_dark</item>
+ <item name="dividerHorizontal">@drawable/abc_list_divider_holo_dark</item>
+
+ <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item>
+ <item name="listPreferredItemHeightSmall">48dp</item>
+ <item name="listPreferredItemHeightLarge">80dp</item>
+ <item name="listPreferredItemPaddingLeft">8dip</item>
+ <item name="listPreferredItemPaddingRight">8dip</item>
+
+ <item name="textAppearanceListItem">?android:attr/textAppearanceMedium</item>
+ <item name="textAppearanceListItemSmall">?android:attr/textAppearanceMedium</item>
+
+ <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
+ <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
+ <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
+ <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
+ <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar</item>
+ <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
+ <item name="actionBarWidgetTheme">@null</item>
+ <item name="actionBarSize">@dimen/abc_action_bar_default_height</item>
+ <item name="actionBarDivider">?attr/dividerVertical</item>
+ <item name="actionBarItemBackground">?attr/selectableItemBackground</item>
+ <item name="actionMenuTextAppearance">
+ @style/TextAppearance.AppCompat.Widget.ActionBar.Menu
+ </item>
+ <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
+
+ <!-- Dropdown Spinner Attributes -->
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
+
+ <!-- Action Mode -->
+ <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
+ <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_dark</item>
+ <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_dark</item>
+ <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_dark</item>
+ <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode
+ </item>
+
+ <!-- Panel attributes -->
+ <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
+ <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
+ <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_dark</item>
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
+
+ </style>
+
+ <!-- Base platform-dependent theme providing an action bar in a light-themed activity. -->
+ <style name="Theme.Base.AppCompat.Light" parent="Theme.Base.Light">
+ <item name="windowActionBar">true</item>
+ <!-- Remove system title bars; we will add the action bar ourselves. -->
+ <item name="android:windowNoTitle">true</item>
+
+ <item name="buttonBarStyle">@android:style/ButtonBar</item>
+ <item name="buttonBarButtonStyle">@android:style/Widget.Button</item>
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
+ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_light</item>
+
+ <item name="dividerVertical">@drawable/abc_list_divider_holo_light</item>
+ <item name="dividerHorizontal">@drawable/abc_list_divider_holo_light</item>
+
+ <item name="listPreferredItemHeight">?android:attr/listPreferredItemHeight</item>
+ <item name="listPreferredItemHeightSmall">48dp</item>
+ <item name="listPreferredItemHeightLarge">80dp</item>
+ <item name="listPreferredItemPaddingLeft">8dip</item>
+ <item name="listPreferredItemPaddingRight">8dip</item>
+
+ <item name="textAppearanceListItem">?android:attr/textAppearanceMedium</item>
+ <item name="textAppearanceListItemSmall">?android:attr/textAppearanceMedium</item>
+
+ <!-- Action Bar Styles -->
+ <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
+ <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
+ <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
+ <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
+ <item name="actionOverflowButtonStyle">
+ @style/Widget.AppCompat.Light.ActionButton.Overflow
+ </item>
+ <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar</item>
+ <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
+ <item name="actionBarWidgetTheme">@null</item>
+ <item name="actionBarSize">@dimen/abc_action_bar_default_height</item>
+ <item name="actionBarDivider">?attr/dividerVertical</item>
+ <item name="actionBarItemBackground">?attr/selectableItemBackground</item>
+ <item name="actionMenuTextAppearance">
+ @style/TextAppearance.AppCompat.Widget.ActionBar.Menu
+ </item>
+ <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
+
+ <!-- Action Mode -->
+ <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
+ <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_light</item>
+ <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_light</item>
+ <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_light</item>
+ <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.Light.ActionButton.CloseMode
+ </item>
+
+ <!-- Dropdown Spinner Attributes -->
+ <item name="actionDropDownStyle">
+ @style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar
+ </item>
+
+ <!-- Panel attributes -->
+ <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
+ <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
+ <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_light</item>
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
+
+ </style>
+
+ <!-- Base platform-dependent theme providing a dark action bar in a light-themed activity. -->
+ <style name="Theme.Base.AppCompat.Light.DarkActionBar" parent="Theme.Base.AppCompat.Light">
+ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_holo_dark</item>
+
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
+ <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse</item>
+ <item name="actionBarWidgetTheme">@style/Theme.AppCompat</item>
+ <item name="actionBarDivider">@drawable/abc_list_divider_holo_dark</item>
+ <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
+ <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView.Inverse
+ </item>
+ <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse
+ </item>
+ <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText.Inverse
+ </item>
+ <item name="actionMenuTextColor">?android:attr/textColorPrimaryInverseDisableOnly</item>
+
+ <!-- Action Mode -->
+ <item name="actionModeStyle">@style/Widget.AppCompat.Light.ActionMode.Inverse</item>
+ <item name="actionModeBackground">@drawable/abc_cab_background_top_holo_dark</item>
+ <item name="actionModeSplitBackground">@drawable/abc_cab_background_bottom_holo_dark</item>
+ <item name="actionModeCloseDrawable">@drawable/abc_ic_cab_done_holo_dark</item>
+ <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode
+ </item>
+
+ <!-- Dropdown Spinner Attributes -->
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
+
+ <!-- Panel attributes -->
+ <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_dark</item>
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
+
+ </style>
+
+ <!-- Menu/item attributes -->
+ <style name="Theme.AppCompat.Base.CompactMenu" parent="">
+ <item name="android:itemTextAppearance">
+ @style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item</item>
+ <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
+ </style>
+
+ <style name="Theme.AppCompat.Base.CompactMenu.Dialog" parent="">
+ <item name="android:itemTextAppearance">
+ @style/TextAppearance.AppCompat.Base.CompactMenu.Dialog</item>
+ <item name="android:listViewStyle">@android:style/Widget.ListView.Menu</item>
+ </style>
+
+</resources>
diff --git a/external/appcompat/src/.readme b/external/appcompat/src/.readme
new file mode 100644
index 0000000..4bcebad
--- /dev/null
+++ b/external/appcompat/src/.readme
@@ -0,0 +1,2 @@
+This hidden file is there to ensure there is an src folder.
+Once we support binary library this will go away.
\ No newline at end of file
diff --git a/project.properties b/project.properties
index 3b45b07..1f292ac 100644
--- a/project.properties
+++ b/project.properties
@@ -9,4 +9,4 @@
# Project target.
target=android-19
-android.library.reference.1=external/ActionBarSherlock/actionbarsherlock
+android.library.reference.1=external/appcompat
diff --git a/src/org/torproject/android/Orbot.java b/src/org/torproject/android/Orbot.java
index 3ddf93c..f63ecd8 100644
--- a/src/org/torproject/android/Orbot.java
+++ b/src/org/torproject/android/Orbot.java
@@ -33,6 +33,7 @@ import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.os.RemoteException;
+import android.support.v7.app.ActionBarActivity;
import android.text.ClipboardManager;
import android.text.Layout;
import android.text.method.ScrollingMovementMethod;
@@ -40,6 +41,9 @@ import android.util.Log;
import android.view.GestureDetector;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.LayoutInflater;
+import android.view.Menu;
+import android.view.MenuInflater;
+import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnLongClickListener;
@@ -50,13 +54,8 @@ import android.widget.SlidingDrawer;
import android.widget.TextView;
import android.widget.Toast;
-import com.actionbarsherlock.app.SherlockActivity;
-import com.actionbarsherlock.view.Menu;
-import com.actionbarsherlock.view.MenuInflater;
-import com.actionbarsherlock.view.MenuItem;
-
-public class Orbot extends SherlockActivity implements TorConstants, OnLongClickListener, OnTouchListener, OnSharedPreferenceChangeListener
+public class Orbot extends ActionBarActivity implements TorConstants, OnLongClickListener, OnTouchListener, OnSharedPreferenceChangeListener
{
/* Useful UI bits */
private TextView lblStatus = null; //the main text display widget
@@ -184,7 +183,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
- MenuInflater inflater = getSupportMenuInflater();
+ MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main, menu);
mItemOnOff = menu.getItem(0);
@@ -215,11 +214,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
.setView(view)
.show();
}
-
- /* When a menu item is selected launch the appropriate view or activity
- * (non-Javadoc)
- * @see android.app.Activity#onMenuItemSelected(int, android.view.MenuItem)
- */
+ /**
public boolean onMenuItemSelected(int featureId, MenuItem item) {
super.onMenuItemSelected(featureId, item);
@@ -283,7 +278,8 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
return true;
}
-
+ */
+
/**
* This is our attempt to REALLY exit Orbot, and stop the background service
* However, Android doesn't like people "quitting" apps, and/or our code may not
diff --git a/src/org/torproject/android/settings/SettingsPreferences.java b/src/org/torproject/android/settings/SettingsPreferences.java
index 80a9f60..6cf1e0c 100644
--- a/src/org/torproject/android/settings/SettingsPreferences.java
+++ b/src/org/torproject/android/settings/SettingsPreferences.java
@@ -15,15 +15,14 @@ import android.os.Bundle;
import android.preference.CheckBoxPreference;
import android.preference.Preference;
import android.preference.Preference.OnPreferenceClickListener;
+import android.preference.PreferenceActivity;
import android.preference.PreferenceCategory;
import android.preference.PreferenceManager;
import android.widget.Toast;
-import com.actionbarsherlock.app.SherlockPreferenceActivity;
-
public class SettingsPreferences
- extends SherlockPreferenceActivity implements OnPreferenceClickListener {
+ extends PreferenceActivity implements OnPreferenceClickListener {
private CheckBoxPreference prefCBTransProxy = null;
private CheckBoxPreference prefcBTransProxyAll = null;
1
0

[translation/tails-misc_completed] Update translations for tails-misc_completed
by translation@torproject.org 03 Apr '14
by translation@torproject.org 03 Apr '14
03 Apr '14
commit f1002b7ad39112827d064cccc1725504edb6cdf3
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 3 21:15:39 2014 +0000
Update translations for tails-misc_completed
---
fr.po | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/fr.po b/fr.po
index 134ceb9..3d31708 100644
--- a/fr.po
+++ b/fr.po
@@ -15,7 +15,7 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-03 20:45+0000\n"
+"PO-Revision-Date: 2014-04-03 21:10+0000\n"
"Last-Translator: bassmax\n"
"Language-Team: French (http://www.transifex.com/projects/p/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -155,14 +155,14 @@ msgstr "Faites-vous confiance à ces clés ?"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
msgid "The following selected key is not fully trusted:"
msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] "La clé sélectionnée suivante n'est pas totalement de confiance :"
-msgstr[1] "Les clés sélectionnées suivantes ne sont pas totalement de confiance :"
+msgstr[0] "La clé suivante n'est pas totalement de confiance :"
+msgstr[1] "Les clés suivantes ne sont pas totalement de confiance :"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
msgid "Do you trust this key enough to use it anyway?"
msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] "Faites-vous quand même assez confiance à cette clé pour l'utiliser"
-msgstr[1] "Faites-vous quand même assez confiance à ces clés pour les utiliser"
+msgstr[0] "Faites-vous quand même assez confiance à cette clé pour l'utiliser ?"
+msgstr[1] "Faites-vous quand même assez confiance à ces clés pour les utiliser ?"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
msgid "No keys selected"
@@ -172,7 +172,7 @@ msgstr "Aucune clé sélectionnée"
msgid ""
"You must select a private key to sign the message, or some public keys to "
"encrypt the message, or both."
-msgstr "Vous devez sélectionner une clé privée pour signer le message, ou une clé publique pour le chiffrer, ou les deux."
+msgstr "Vous devez sélectionner une clé privée pour signer le message, une clé publique pour le chiffrer, ou les deux."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
msgid "No keys available"
@@ -189,11 +189,11 @@ msgstr "Erreur de GnuPG"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
msgid "Therefore the operation cannot be performed."
-msgstr "L'opération ne peut pas être effectuée."
+msgstr "L'opération ne peut donc pas être effectuée."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
msgid "GnuPG results"
-msgstr "Résultat de GnuPG"
+msgstr "Résultats de GnuPG"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
msgid "Output of GnuPG:"
@@ -201,7 +201,7 @@ msgstr "Voici la sortie de GnuPG :"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
msgid "Other messages provided by GnuPG:"
-msgstr "Autres messages de GnuPG :"
+msgstr "Autres messages fournis par GnuPG :"
#: config/chroot_local-includes/usr/local/bin/iceweasel:12
msgid "Tor is not ready"
@@ -249,7 +249,7 @@ msgstr "The Amnesic Incognito Live System"
msgid ""
"Build information:\n"
"%s"
-msgstr "Information de compilation:\n%s"
+msgstr "Informations de compilation:\n%s"
#: config/chroot_local-includes/usr/local/bin/tails-about:20
msgid "About Tails"
@@ -275,17 +275,17 @@ msgstr "La mise à jour a été réalisée avec succès."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr "Mise à jour de l'horloge système..."
+msgstr "Synchronisation de l'horloge système..."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
-msgstr "Tor a besoin d'une horloge bien réglée pour fonctionner correctement, en\nparticulier pour les services cachés. Veuillez patienter..."
+msgstr "Tor a besoin d'une horloge réglée avec précision pour fonctionner correctement, en\nparticulier pour les services cachés. Veuillez patienter..."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr "Échec de la mise à jour de l'horloge !"
+msgstr "Échec de la synchronisation de l'horloge !"
#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
msgid "Network connection blocked?"
@@ -301,7 +301,7 @@ msgstr "Il semble que votre connexion au réseau est bloquée. Cela peut être l
#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
msgid "This version of Tails has known security issues:"
-msgstr "Cette version de Tails a des problèmes de sécurité connus :"
+msgstr "Cette version de Tails a des problèmes de sécurité avérés :"
#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
#, sh-format
@@ -337,19 +337,19 @@ msgstr "La console du routeur I2P sera ouverte au démarrage."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
msgid "I2P failed to start"
-msgstr "Le redémarrage d'I2P a échoué."
+msgstr "Le démarrage d'I2P a échoué."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
msgid ""
"Make sure that you have a working Internet connection, then try to start I2P"
" again."
-msgstr "Assurez-vous que vous avez une connexion Internet active, puis essayez à nouveau de démarrer I2P."
+msgstr "Assurez-vous que vous avez une connexion Internet active, puis réessayez de démarrer I2P."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
msgid ""
"Something went wrong when I2P was starting. Look in the logs in the "
"following directory for more information:"
-msgstr "Quelque chose a mal tourné lors du démarrage de I2P. Regardez dans les journaux du répertoire suivant pour plus d'informations :"
+msgstr "Quelque chose s'est mal passé lors du démarrage de I2P. Vérifiez les logs dans le répertoire suivant pour plus d'informations :"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
1
0

[translation/tails-misc] Update translations for tails-misc
by translation@torproject.org 03 Apr '14
by translation@torproject.org 03 Apr '14
03 Apr '14
commit f682273e8a46ab5e8673ecb6766c94505edef5fc
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 3 21:15:35 2014 +0000
Update translations for tails-misc
---
fr.po | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/fr.po b/fr.po
index 134ceb9..3d31708 100644
--- a/fr.po
+++ b/fr.po
@@ -15,7 +15,7 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-03 20:45+0000\n"
+"PO-Revision-Date: 2014-04-03 21:10+0000\n"
"Last-Translator: bassmax\n"
"Language-Team: French (http://www.transifex.com/projects/p/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -155,14 +155,14 @@ msgstr "Faites-vous confiance à ces clés ?"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
msgid "The following selected key is not fully trusted:"
msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] "La clé sélectionnée suivante n'est pas totalement de confiance :"
-msgstr[1] "Les clés sélectionnées suivantes ne sont pas totalement de confiance :"
+msgstr[0] "La clé suivante n'est pas totalement de confiance :"
+msgstr[1] "Les clés suivantes ne sont pas totalement de confiance :"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
msgid "Do you trust this key enough to use it anyway?"
msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] "Faites-vous quand même assez confiance à cette clé pour l'utiliser"
-msgstr[1] "Faites-vous quand même assez confiance à ces clés pour les utiliser"
+msgstr[0] "Faites-vous quand même assez confiance à cette clé pour l'utiliser ?"
+msgstr[1] "Faites-vous quand même assez confiance à ces clés pour les utiliser ?"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
msgid "No keys selected"
@@ -172,7 +172,7 @@ msgstr "Aucune clé sélectionnée"
msgid ""
"You must select a private key to sign the message, or some public keys to "
"encrypt the message, or both."
-msgstr "Vous devez sélectionner une clé privée pour signer le message, ou une clé publique pour le chiffrer, ou les deux."
+msgstr "Vous devez sélectionner une clé privée pour signer le message, une clé publique pour le chiffrer, ou les deux."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
msgid "No keys available"
@@ -189,11 +189,11 @@ msgstr "Erreur de GnuPG"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
msgid "Therefore the operation cannot be performed."
-msgstr "L'opération ne peut pas être effectuée."
+msgstr "L'opération ne peut donc pas être effectuée."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
msgid "GnuPG results"
-msgstr "Résultat de GnuPG"
+msgstr "Résultats de GnuPG"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
msgid "Output of GnuPG:"
@@ -201,7 +201,7 @@ msgstr "Voici la sortie de GnuPG :"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
msgid "Other messages provided by GnuPG:"
-msgstr "Autres messages de GnuPG :"
+msgstr "Autres messages fournis par GnuPG :"
#: config/chroot_local-includes/usr/local/bin/iceweasel:12
msgid "Tor is not ready"
@@ -249,7 +249,7 @@ msgstr "The Amnesic Incognito Live System"
msgid ""
"Build information:\n"
"%s"
-msgstr "Information de compilation:\n%s"
+msgstr "Informations de compilation:\n%s"
#: config/chroot_local-includes/usr/local/bin/tails-about:20
msgid "About Tails"
@@ -275,17 +275,17 @@ msgstr "La mise à jour a été réalisée avec succès."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr "Mise à jour de l'horloge système..."
+msgstr "Synchronisation de l'horloge système..."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
-msgstr "Tor a besoin d'une horloge bien réglée pour fonctionner correctement, en\nparticulier pour les services cachés. Veuillez patienter..."
+msgstr "Tor a besoin d'une horloge réglée avec précision pour fonctionner correctement, en\nparticulier pour les services cachés. Veuillez patienter..."
#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr "Échec de la mise à jour de l'horloge !"
+msgstr "Échec de la synchronisation de l'horloge !"
#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
msgid "Network connection blocked?"
@@ -301,7 +301,7 @@ msgstr "Il semble que votre connexion au réseau est bloquée. Cela peut être l
#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
msgid "This version of Tails has known security issues:"
-msgstr "Cette version de Tails a des problèmes de sécurité connus :"
+msgstr "Cette version de Tails a des problèmes de sécurité avérés :"
#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
#, sh-format
@@ -337,19 +337,19 @@ msgstr "La console du routeur I2P sera ouverte au démarrage."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
msgid "I2P failed to start"
-msgstr "Le redémarrage d'I2P a échoué."
+msgstr "Le démarrage d'I2P a échoué."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
msgid ""
"Make sure that you have a working Internet connection, then try to start I2P"
" again."
-msgstr "Assurez-vous que vous avez une connexion Internet active, puis essayez à nouveau de démarrer I2P."
+msgstr "Assurez-vous que vous avez une connexion Internet active, puis réessayez de démarrer I2P."
#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
msgid ""
"Something went wrong when I2P was starting. Look in the logs in the "
"following directory for more information:"
-msgstr "Quelque chose a mal tourné lors du démarrage de I2P. Regardez dans les journaux du répertoire suivant pour plus d'informations :"
+msgstr "Quelque chose s'est mal passé lors du démarrage de I2P. Vérifiez les logs dans le répertoire suivant pour plus d'informations :"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
1
0

[translation/tails-misc_completed] Update translations for tails-misc_completed
by translation@torproject.org 03 Apr '14
by translation@torproject.org 03 Apr '14
03 Apr '14
commit b8feaeabae6c8db14f5e22745254bf1e3e6288eb
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 3 20:45:37 2014 +0000
Update translations for tails-misc_completed
---
fr.po | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/fr.po b/fr.po
index 14b062a..134ceb9 100644
--- a/fr.po
+++ b/fr.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# bassmax, 2014
# chioubaca <chioubaca(a)gmail.com>, 2014
# tneskovic <antoine_ecuador(a)yahoo.fr>, 2014
# Emmanuel Sd <emanwebdev(a)gmail.com>, 2014
@@ -14,8 +15,8 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-03-24 14:00+0000\n"
-"Last-Translator: chioubaca <chioubaca(a)gmail.com>\n"
+"PO-Revision-Date: 2014-04-03 20:45+0000\n"
+"Last-Translator: bassmax\n"
"Language-Team: French (http://www.transifex.com/projects/p/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -47,7 +48,7 @@ msgid ""
"<p>Anyone who can see this reply will probably infer you are\n"
"a Tails user. Time to wonder how much you trust your\n"
"Internet and mailbox providers?</p>\n"
-msgstr "<h1>Aidez-nous à résoudre votre problème !</h1>\n<p>Lire <a href=\"%s\">nos instructions sur le signalement de\nproblèmes</a>.</p>\n<p><strong>N'incluez pas plus d'informations personnelles que\nnécessaire !</strong></p>\n<h2>À propos de votre adresse email</h2>\n<p>Si cela ne vous dérange pas de divulguer des bribes\nd'information à votre sujet aux développeurs de Tails, vous\npouvez fournir une adresse email afin que nous puissions vous\ndemander davantage de détails sur le bug. Si vous fournissez\naussi une clé PGP publique, nous vous demanderons ces détails\npar email chiffré.</p>\n<p>Ceux qui pourront voir ces communication pourront sans\ndoute en déduire que vous êtes un utilisateur de Tails. C'est\npeut-être le moment de vous interroger sur la confiance que vous\naccordez à votre fournisseur d'accès à Internet et à votre\nhébergeur email...</p>\n"
+msgstr "<h1>Aidez-nous à résoudre votre problème !</h1>\n<p>Lire <a href=\"%s\">nos instructions sur le signalement de\nproblèmes</a>.</p>\n<p><strong>N'incluez pas plus d'informations personnelles que\nnécessaire !</strong></p>\n<h2>À propos de votre adresse email</h2>\n<p>Si cela ne vous dérange pas de divulguer des bribes\nd'information à votre sujet aux développeurs de Tails, vous\npouvez fournir une adresse email afin que nous puissions vous\ndemander davantage de détails sur le bug. Si vous fournissez \nune clé PGP publique, nous vous contacterons en utilisant une \ncommunication chiffrée</p>\n<p>Ceux qui pourront voir ces communications pourront sans\ndoute en déduire que vous utilisez Tails. C'est\npeut-être le moment de vous interroger sur la confiance que vous\naccordez à votre fournisseur d'accès à Internet et à votre\nhébergeur email...</p>\n"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
msgid "OpenPGP encryption applet"
@@ -89,7 +90,7 @@ msgstr "Confiance inconnue"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
msgid "Marginal Trust"
-msgstr "Confiance marginale"
+msgstr "Confiance minime"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
msgid "Full Trust"
@@ -97,7 +98,7 @@ msgstr "Confiance complète"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
msgid "Ultimate Trust"
-msgstr "Confiance ultime"
+msgstr "Confiance absolue"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
msgid "Name"
@@ -137,7 +138,7 @@ msgstr "Cacher les destinataires"
msgid ""
"Hide the user IDs of all recipients of an encrypted message. Otherwise "
"anyone that sees the encrypted message can see who the recipients are."
-msgstr "Cacher les identifiants d'utilisateur pour tous les destinataires du message chiffré. Sans quoi n'importe qui voyant le message chiffré peut savoir à qui il est destiné."
+msgstr "Cacher les identifiants utilisateur de tous les destinataires d'un message chiffré. Sans quoi n'importe qui interceptant le message chiffré peut savoir à qui il est destiné."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
msgid "Sign message as:"
1
0

[translation/tails-misc] Update translations for tails-misc
by translation@torproject.org 03 Apr '14
by translation@torproject.org 03 Apr '14
03 Apr '14
commit 003aa6d00f3fecb58cc1cbe689da52a64e6379b5
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 3 20:45:35 2014 +0000
Update translations for tails-misc
---
fr.po | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/fr.po b/fr.po
index 14b062a..134ceb9 100644
--- a/fr.po
+++ b/fr.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# bassmax, 2014
# chioubaca <chioubaca(a)gmail.com>, 2014
# tneskovic <antoine_ecuador(a)yahoo.fr>, 2014
# Emmanuel Sd <emanwebdev(a)gmail.com>, 2014
@@ -14,8 +15,8 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-03-24 14:00+0000\n"
-"Last-Translator: chioubaca <chioubaca(a)gmail.com>\n"
+"PO-Revision-Date: 2014-04-03 20:45+0000\n"
+"Last-Translator: bassmax\n"
"Language-Team: French (http://www.transifex.com/projects/p/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -47,7 +48,7 @@ msgid ""
"<p>Anyone who can see this reply will probably infer you are\n"
"a Tails user. Time to wonder how much you trust your\n"
"Internet and mailbox providers?</p>\n"
-msgstr "<h1>Aidez-nous à résoudre votre problème !</h1>\n<p>Lire <a href=\"%s\">nos instructions sur le signalement de\nproblèmes</a>.</p>\n<p><strong>N'incluez pas plus d'informations personnelles que\nnécessaire !</strong></p>\n<h2>À propos de votre adresse email</h2>\n<p>Si cela ne vous dérange pas de divulguer des bribes\nd'information à votre sujet aux développeurs de Tails, vous\npouvez fournir une adresse email afin que nous puissions vous\ndemander davantage de détails sur le bug. Si vous fournissez\naussi une clé PGP publique, nous vous demanderons ces détails\npar email chiffré.</p>\n<p>Ceux qui pourront voir ces communication pourront sans\ndoute en déduire que vous êtes un utilisateur de Tails. C'est\npeut-être le moment de vous interroger sur la confiance que vous\naccordez à votre fournisseur d'accès à Internet et à votre\nhébergeur email...</p>\n"
+msgstr "<h1>Aidez-nous à résoudre votre problème !</h1>\n<p>Lire <a href=\"%s\">nos instructions sur le signalement de\nproblèmes</a>.</p>\n<p><strong>N'incluez pas plus d'informations personnelles que\nnécessaire !</strong></p>\n<h2>À propos de votre adresse email</h2>\n<p>Si cela ne vous dérange pas de divulguer des bribes\nd'information à votre sujet aux développeurs de Tails, vous\npouvez fournir une adresse email afin que nous puissions vous\ndemander davantage de détails sur le bug. Si vous fournissez \nune clé PGP publique, nous vous contacterons en utilisant une \ncommunication chiffrée</p>\n<p>Ceux qui pourront voir ces communications pourront sans\ndoute en déduire que vous utilisez Tails. C'est\npeut-être le moment de vous interroger sur la confiance que vous\naccordez à votre fournisseur d'accès à Internet et à votre\nhébergeur email...</p>\n"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
msgid "OpenPGP encryption applet"
@@ -89,7 +90,7 @@ msgstr "Confiance inconnue"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
msgid "Marginal Trust"
-msgstr "Confiance marginale"
+msgstr "Confiance minime"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
msgid "Full Trust"
@@ -97,7 +98,7 @@ msgstr "Confiance complète"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
msgid "Ultimate Trust"
-msgstr "Confiance ultime"
+msgstr "Confiance absolue"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
msgid "Name"
@@ -137,7 +138,7 @@ msgstr "Cacher les destinataires"
msgid ""
"Hide the user IDs of all recipients of an encrypted message. Otherwise "
"anyone that sees the encrypted message can see who the recipients are."
-msgstr "Cacher les identifiants d'utilisateur pour tous les destinataires du message chiffré. Sans quoi n'importe qui voyant le message chiffré peut savoir à qui il est destiné."
+msgstr "Cacher les identifiants utilisateur de tous les destinataires d'un message chiffré. Sans quoi n'importe qui interceptant le message chiffré peut savoir à qui il est destiné."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
msgid "Sign message as:"
1
0

r26690: {website} Combined the two FAQ entries; added a warning. (website/trunk/docs/en)
by Matt Pagan 03 Apr '14
by Matt Pagan 03 Apr '14
03 Apr '14
Author: mttp
Date: 2014-04-03 19:46:58 +0000 (Thu, 03 Apr 2014)
New Revision: 26690
Modified:
website/trunk/docs/en/faq.wml
Log:
Combined the two FAQ entries; added a warning.
Modified: website/trunk/docs/en/faq.wml
===================================================================
--- website/trunk/docs/en/faq.wml 2014-04-03 03:41:33 UTC (rev 26689)
+++ website/trunk/docs/en/faq.wml 2014-04-03 19:46:58 UTC (rev 26690)
@@ -258,7 +258,6 @@
<li><a href="#RemotePhysicalDeviceFingerprinting">Does Tor resist
"remote physical device fingerprinting"?</a></li>
<li><a href="#IsTorLikeAVPN">Is Tor like a VPN?</a></li>
- <li><a href="#ShouldIUseTorWithAVPN">Should I use Tor with a VPN?</a></li>
<li><a href="#Proxychains">Aren't 10 proxies (proxychains) better than
Tor with only 3 hops?</a></li>
<li><a href="#AttacksOnOnionRouting">What attacks remain against onion
@@ -4180,7 +4179,14 @@
<h3><a class="anchor" href="#IsTorLikeAVPN">Is Tor like a VPN?</a></h3>
<p>
- Some people use Virtual Private Networks (VPNs) as a privacy solution.
+ <b>Do not use a VPN as an <a href="http://www.nbcnews.com/news/investigations/war-anonymous-british-spies-atta…">anonymity solution</a>.</b>
+ If you're looking for a trusted entry into the Tor network, or if you want
+ to obscure the fact that you're using Tor, <a
+ href="https://www.torproject.org/docs/bridges#RunningABridge">setting up
+ a private server as a bridge</a> works quite well.
+ </p>
+
+ <p>
VPNs encrypt the traffic between the user and the VPN provider,
and they can act as a proxy between a user and an online destination.
However, VPNs have a single point of failure: the VPN provider.
@@ -4217,20 +4223,6 @@
<hr>
- <a id="ShouldIUseTorWithAVPN"></a>
- <h3><a class="anchor" href="#ShouldIUseTorWithAVPN">Should I use Tor
- with a VPN?</a></h3>
-
- <p>
- This <a href="https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN">wiki
- page</a> discusses costs and benefits. However, if you're looking
- for a trusted entry into the Tor network, <a
- href="https://www.torproject.org/docs/bridges#RunningABridge">setting up
- a private Tor server as a bridge</a> is a great option.
- </p>
-
- <hr>
-
<a id="Proxychains"></a>
<h3><a class="anchor" href="#Proxychains">Aren't 10 proxies
(proxychains) better than Tor with only 3 hops?</a></h3>
1
0

03 Apr '14
commit 2c389fafe92afbed16eabcfbd00fd754f7c9b73f
Author: David Fifield <david(a)bamsoftware.com>
Date: Sun Mar 23 17:04:33 2014 -0700
Actually use the "profile-after-change" observer.
Before we were starting the listener as a side effect of the
constructor. Actually wait until we get the "profile-after-change"
notification before running.
---
firefox/components/main.js | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/firefox/components/main.js b/firefox/components/main.js
index a55eb8c..d4b4d35 100644
--- a/firefox/components/main.js
+++ b/firefox/components/main.js
@@ -37,16 +37,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
// nsIServerSocketListener.
function MeekHTTPHelper() {
this.wrappedJSObject = this;
-
- const LOCAL_PORT = 7000;
-
this.handlers = [];
-
- // https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIServe…
- var serverSocket = Components.classes["@mozilla.org/network/server-socket;1"]
- .createInstance(Components.interfaces.nsIServerSocket);
- serverSocket.init(LOCAL_PORT, true, -1);
- serverSocket.asyncListen(this);
}
MeekHTTPHelper.prototype = {
classDescription: "meek HTTP helper component",
@@ -55,10 +46,22 @@ MeekHTTPHelper.prototype = {
// https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/XP…
QueryInterface: XPCOMUtils.generateQI([
- Components.interfaces.nsIServerSocketListener,
Components.interfaces.nsIObserver,
+ Components.interfaces.nsIServerSocketListener,
]),
+ // nsIObserver implementation.
+ observe: function(subject, topic, data) {
+ if (topic !== "profile-after-change")
+ return
+
+ // https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIServe…
+ var serverSocket = Components.classes["@mozilla.org/network/server-socket;1"]
+ .createInstance(Components.interfaces.nsIServerSocket);
+ serverSocket.init(MeekHTTPHelper.LOCAL_PORT, true, -1);
+ serverSocket.asyncListen(this);
+ },
+
// nsIServerSocketListener implementation.
onSocketAccepted: function(server, transport) {
dump("onSocketAccepted " + transport.host + ":" + transport.port + "\n");
@@ -73,6 +76,7 @@ MeekHTTPHelper.prototype = {
// Global variables and functions.
+MeekHTTPHelper.LOCAL_PORT = 7000;
MeekHTTPHelper.LOCAL_READ_TIMEOUT = 2.0;
MeekHTTPHelper.LOCAL_WRITE_TIMEOUT = 2.0;
1
0