diff options
Diffstat (limited to 'core')
5853 files changed, 5764 insertions, 3142 deletions
diff --git a/core/java/android/app/ActivityManager.java b/core/java/android/app/ActivityManager.java index 9bbb4be..edebc28 100644 --- a/core/java/android/app/ActivityManager.java +++ b/core/java/android/app/ActivityManager.java @@ -2320,7 +2320,9 @@ public class ActivityManager { * in {@link RunningAppProcessInfo}, giving you the highest importance of all the * processes that this package has code running inside of. If there are no processes * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned. + * @hide */ + @SystemApi public int getPackageImportance(String packageName) { try { int procState = ActivityManagerNative.getDefault().getPackageProcessState(packageName); diff --git a/core/java/android/app/ActivityManagerNative.java b/core/java/android/app/ActivityManagerNative.java index a71a258..1e9bc54 100644 --- a/core/java/android/app/ActivityManagerNative.java +++ b/core/java/android/app/ActivityManagerNative.java @@ -2069,6 +2069,13 @@ public abstract class ActivityManagerNative extends Binder implements IActivityM return true; } + case KEYGUARD_GOING_AWAY_TRANSACTION: { + data.enforceInterface(IActivityManager.descriptor); + keyguardGoingAway(data.readInt() != 0, data.readInt() != 0); + reply.writeNoException(); + return true; + } + case SHOULD_UP_RECREATE_TASK_TRANSACTION: { data.enforceInterface(IActivityManager.descriptor); IBinder token = data.readStrongBinder(); @@ -5179,6 +5186,19 @@ class ActivityManagerProxy implements IActivityManager reply.recycle(); } + public void keyguardGoingAway(boolean disableWindowAnimations, + boolean keyguardGoingToNotificationShade) throws RemoteException { + Parcel data = Parcel.obtain(); + Parcel reply = Parcel.obtain(); + data.writeInterfaceToken(IActivityManager.descriptor); + data.writeInt(disableWindowAnimations ? 1 : 0); + data.writeInt(keyguardGoingToNotificationShade ? 1 : 0); + mRemote.transact(KEYGUARD_GOING_AWAY_TRANSACTION, data, reply, 0); + reply.readException(); + data.recycle(); + reply.recycle(); + } + public boolean shouldUpRecreateTask(IBinder token, String destAffinity) throws RemoteException { Parcel data = Parcel.obtain(); diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index f506d59..5dcbe37 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -96,7 +96,7 @@ import android.view.Window; import android.view.WindowManager; import android.view.WindowManagerGlobal; import android.renderscript.RenderScriptCacheDir; -import android.security.AndroidKeyStoreProvider; +import android.security.keystore.AndroidKeyStoreProvider; import com.android.internal.app.IVoiceInteractor; import com.android.internal.content.ReferrerIntent; diff --git a/core/java/android/app/AppOpsManager.java b/core/java/android/app/AppOpsManager.java index 7104185..e728971 100644 --- a/core/java/android/app/AppOpsManager.java +++ b/core/java/android/app/AppOpsManager.java @@ -227,8 +227,10 @@ public class AppOpsManager { public static final int OP_BODY_SENSORS = 56; /** @hide Read previously received cell broadcast messages. */ public static final int OP_READ_CELL_BROADCASTS = 57; + /** @hide Inject mock location into the system. */ + public static final int OP_MOCK_LOCATION = 58; /** @hide */ - public static final int _NUM_OP = 58; + public static final int _NUM_OP = 59; /** Access to coarse location information. */ public static final String OPSTR_COARSE_LOCATION = "android:coarse_location"; @@ -308,6 +310,9 @@ public class AppOpsManager { /** @hide Read previously received cell broadcast messages. */ public static final String OPSTR_READ_CELL_BROADCASTS = "android:read_cell_broadcasts"; + /** Inject mock location into the system. */ + public static final String OPSTR_MOCK_LOCATION + = "android:mock_location"; /** * This maps each operation to the operation that serves as the @@ -375,7 +380,8 @@ public class AppOpsManager { OP_PROCESS_OUTGOING_CALLS, OP_USE_FINGERPRINT, OP_BODY_SENSORS, - OP_READ_CELL_BROADCASTS + OP_READ_CELL_BROADCASTS, + OP_MOCK_LOCATION }; /** @@ -440,7 +446,8 @@ public class AppOpsManager { null, OPSTR_USE_FINGERPRINT, OPSTR_BODY_SENSORS, - OPSTR_READ_CELL_BROADCASTS + OPSTR_READ_CELL_BROADCASTS, + OPSTR_MOCK_LOCATION }; /** @@ -505,7 +512,8 @@ public class AppOpsManager { "PROCESS_OUTGOING_CALLS", "USE_FINGERPRINT", "BODY_SENSORS", - "READ_CELL_BROADCASTS" + "READ_CELL_BROADCASTS", + "MOCK_LOCATION" }; /** @@ -570,7 +578,8 @@ public class AppOpsManager { Manifest.permission.PROCESS_OUTGOING_CALLS, Manifest.permission.USE_FINGERPRINT, Manifest.permission.BODY_SENSORS, - Manifest.permission.READ_CELL_BROADCASTS + Manifest.permission.READ_CELL_BROADCASTS, + null }; /** @@ -636,7 +645,8 @@ public class AppOpsManager { null, // PROCESS_OUTGOING_CALLS null, // USE_FINGERPRINT null, // BODY_SENSORS - null // READ_CELL_BROADCASTS + null, // READ_CELL_BROADCASTS + null // MOCK_LOCATION }; /** @@ -701,7 +711,8 @@ public class AppOpsManager { false, // PROCESS_OUTGOING_CALLS false, // USE_FINGERPRINT false, // BODY_SENSORS - false // READ_CELL_BROADCASTS + false, // READ_CELL_BROADCASTS + false // MOCK_LOCATION }; /** @@ -765,7 +776,8 @@ public class AppOpsManager { AppOpsManager.MODE_ALLOWED, AppOpsManager.MODE_ALLOWED, AppOpsManager.MODE_ALLOWED, - AppOpsManager.MODE_ALLOWED + AppOpsManager.MODE_ALLOWED, + AppOpsManager.MODE_ERRORED // OP_MOCK_LOCATION }; /** @@ -833,6 +845,7 @@ public class AppOpsManager { false, false, false, + false, false }; diff --git a/core/java/android/app/FragmentManager.java b/core/java/android/app/FragmentManager.java index 6b5239d..e0a30ad 100644 --- a/core/java/android/app/FragmentManager.java +++ b/core/java/android/app/FragmentManager.java @@ -945,7 +945,7 @@ final class FragmentManagerImpl extends FragmentManager implements LayoutInflate if (f.mView != null) { // Need to save the current view state if not // done already. - if (!mHost.onShouldSaveFragmentState(f) && f.mSavedViewState == null) { + if (mHost.onShouldSaveFragmentState(f) && f.mSavedViewState == null) { saveFragmentViewState(f); } } diff --git a/core/java/android/app/IActivityManager.java b/core/java/android/app/IActivityManager.java index 5829fbe..05a936c 100644 --- a/core/java/android/app/IActivityManager.java +++ b/core/java/android/app/IActivityManager.java @@ -403,6 +403,9 @@ public interface IActivityManager extends IInterface { public void keyguardWaitingForActivityDrawn() throws RemoteException; + public void keyguardGoingAway(boolean disableWindowAnimations, + boolean keyguardGoingToNotificationShade) throws RemoteException; + public boolean shouldUpRecreateTask(IBinder token, String destAffinity) throws RemoteException; @@ -842,4 +845,5 @@ public interface IActivityManager extends IInterface { int SHOW_LOCK_TASK_ESCAPE_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+294; int UPDATE_DEVICE_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+295; int UPDATE_PREFERRED_SETUP_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+296; + int KEYGUARD_GOING_AWAY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+297; } diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index 49b2549..cb6f7d5 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -30,6 +30,7 @@ import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.PorterDuff; import android.graphics.drawable.Drawable; +import android.graphics.drawable.Icon; import android.media.AudioAttributes; import android.media.AudioManager; import android.media.session.MediaSession; @@ -885,6 +886,9 @@ public class Notification implements Parcelable */ public static final int HEADS_UP_REQUESTED = 2; + private Icon mSmallIcon; + private Icon mLargeIcon; + /** * Structure to encapsulate a named action that can be shown as part of this notification. * It must include an icon, a label, and a {@link PendingIntent} to be fired when the action is @@ -1362,7 +1366,7 @@ public class Notification implements Parcelable int version = parcel.readInt(); when = parcel.readLong(); - icon = parcel.readInt(); + mSmallIcon = Icon.CREATOR.createFromParcel(parcel); number = parcel.readInt(); if (parcel.readInt() != 0) { contentIntent = PendingIntent.CREATOR.createFromParcel(parcel); @@ -1380,7 +1384,7 @@ public class Notification implements Parcelable contentView = RemoteViews.CREATOR.createFromParcel(parcel); } if (parcel.readInt() != 0) { - largeIcon = Bitmap.CREATOR.createFromParcel(parcel); + mLargeIcon = Icon.CREATOR.createFromParcel(parcel); } defaults = parcel.readInt(); flags = parcel.readInt(); @@ -1445,7 +1449,7 @@ public class Notification implements Parcelable */ public void cloneInto(Notification that, boolean heavy) { that.when = this.when; - that.icon = this.icon; + that.mSmallIcon = this.mSmallIcon; that.number = this.number; // PendingIntents are global, so there's no reason (or way) to clone them. @@ -1462,8 +1466,8 @@ public class Notification implements Parcelable if (heavy && this.contentView != null) { that.contentView = this.contentView.clone(); } - if (heavy && this.largeIcon != null) { - that.largeIcon = Bitmap.createBitmap(this.largeIcon); + if (heavy && this.mLargeIcon != null) { + that.mLargeIcon = this.mLargeIcon; } that.iconLevel = this.iconLevel; that.sound = this.sound; // android.net.Uri is immutable @@ -1544,7 +1548,7 @@ public class Notification implements Parcelable contentView = null; bigContentView = null; headsUpContentView = null; - largeIcon = null; + mLargeIcon = null; if (extras != null) { extras.remove(Notification.EXTRA_LARGE_ICON); extras.remove(Notification.EXTRA_LARGE_ICON_BIG); @@ -1586,7 +1590,7 @@ public class Notification implements Parcelable parcel.writeInt(1); parcel.writeLong(when); - parcel.writeInt(icon); + mSmallIcon.writeToParcel(parcel, 0); parcel.writeInt(number); if (contentIntent != null) { parcel.writeInt(1); @@ -1618,9 +1622,9 @@ public class Notification implements Parcelable } else { parcel.writeInt(0); } - if (largeIcon != null) { + if (mLargeIcon != null) { parcel.writeInt(1); - largeIcon.writeToParcel(parcel, 0); + mLargeIcon.writeToParcel(parcel, 0); } else { parcel.writeInt(0); } @@ -1865,6 +1869,27 @@ public class Notification implements Parcelable } /** + * The small icon representing this notification in the status bar and content view. + * + * @return the small icon representing this notification. + * + * @see Builder#getSmallIcon() + * @see Builder#setSmallIcon(Icon) + */ + public Icon getSmallIcon() { + return mSmallIcon; + } + + /** + * The large icon shown in this notification's content view. + * @see Builder#getLargeIcon() + * @see Builder#setLargeIcon(Icon) + */ + public Icon getLargeIcon() { + return mLargeIcon; + } + + /** * @hide */ public boolean isValid() { @@ -1966,7 +1991,7 @@ public class Notification implements Parcelable private Context mContext; private long mWhen; - private int mSmallIcon; + private Icon mSmallIcon, mLargeIcon; private int mSmallIconLevel; private int mNumber; private CharSequence mContentTitle; @@ -1979,7 +2004,6 @@ public class Notification implements Parcelable private PendingIntent mFullScreenIntent; private CharSequence mTickerText; private RemoteViews mTickerView; - private Bitmap mLargeIcon; private Uri mSound; private int mAudioStreamType; private AudioAttributes mAudioAttributes; @@ -2160,8 +2184,7 @@ public class Notification implements Parcelable * @see Notification#icon */ public Builder setSmallIcon(@DrawableRes int icon) { - mSmallIcon = icon; - return this; + return setSmallIcon(Icon.createWithResource(mContext.getResources(), icon)); } /** @@ -2176,8 +2199,20 @@ public class Notification implements Parcelable * @see Notification#iconLevel */ public Builder setSmallIcon(@DrawableRes int icon, int level) { - mSmallIcon = icon; mSmallIconLevel = level; + return setSmallIcon(icon); + } + + /** + * Set the small icon, which will be used to represent the notification in the + * status bar and content view (unless overriden there by a + * {@link #setLargeIcon(Bitmap) large icon}). + * + * @param icon An Icon object to use. + * @see Notification#icon + */ + public Builder setSmallIcon(Icon icon) { + mSmallIcon = icon; return this; } @@ -2324,14 +2359,24 @@ public class Notification implements Parcelable } /** - * Add a large icon to the notification (and the ticker on some devices). + * Add a large icon to the notification content view. * * In the platform template, this image will be shown on the left of the notification view - * in place of the {@link #setSmallIcon(int) small icon} (which will move to the right side). + * in place of the {@link #setSmallIcon(Icon) small icon} (which will be placed in a small + * badge atop the large icon). + */ + public Builder setLargeIcon(Bitmap b) { + return setLargeIcon(b != null ? Icon.createWithBitmap(b) : null); + } + + /** + * Add a large icon to the notification content view. * - * @see Notification#largeIcon + * In the platform template, this image will be shown on the left of the notification view + * in place of the {@link #setSmallIcon(Icon) small icon} (which will be placed in a small + * badge atop the large icon). */ - public Builder setLargeIcon(Bitmap icon) { + public Builder setLargeIcon(Icon icon) { mLargeIcon = icon; return this; } @@ -2840,13 +2885,13 @@ public class Notification implements Parcelable boolean contentTextInLine2 = false; if (mLargeIcon != null) { - contentView.setImageViewBitmap(R.id.icon, mLargeIcon); + contentView.setImageViewIcon(R.id.icon, mLargeIcon); processLargeLegacyIcon(mLargeIcon, contentView); - contentView.setImageViewResource(R.id.right_icon, mSmallIcon); + contentView.setImageViewIcon(R.id.right_icon, mSmallIcon); contentView.setViewVisibility(R.id.right_icon, View.VISIBLE); processSmallRightIcon(mSmallIcon, contentView); } else { // small icon at left - contentView.setImageViewResource(R.id.icon, mSmallIcon); + contentView.setImageViewIcon(R.id.icon, mSmallIcon); contentView.setViewVisibility(R.id.icon, View.VISIBLE); processSmallIconAsLarge(mSmallIcon, contentView); } @@ -3086,14 +3131,16 @@ public class Notification implements Parcelable /** * Apply any necessary background to smallIcons being used in the largeIcon spot. */ - private void processSmallIconAsLarge(int largeIconId, RemoteViews contentView) { + private void processSmallIconAsLarge(Icon largeIcon, RemoteViews contentView) { if (!isLegacy()) { contentView.setDrawableParameters(R.id.icon, false, -1, 0xFFFFFFFF, PorterDuff.Mode.SRC_ATOP, -1); - } - if (!isLegacy() || mColorUtil.isGrayscaleIcon(mContext, largeIconId)) { applyLargeIconBackground(contentView); + } else { + if (mColorUtil.isGrayscaleIcon(mContext, largeIcon)) { + applyLargeIconBackground(contentView); + } } } @@ -3102,8 +3149,9 @@ public class Notification implements Parcelable * if it's grayscale). */ // TODO: also check bounds, transparency, that sort of thing. - private void processLargeLegacyIcon(Bitmap largeIcon, RemoteViews contentView) { - if (isLegacy() && mColorUtil.isGrayscaleIcon(largeIcon)) { + private void processLargeLegacyIcon(Icon largeIcon, RemoteViews contentView) { + if (largeIcon != null && isLegacy() + && mColorUtil.isGrayscaleIcon(mContext, largeIcon)) { applyLargeIconBackground(contentView); } else { removeLargeIconBackground(contentView); @@ -3137,14 +3185,16 @@ public class Notification implements Parcelable /** * Recolor small icons when used in the R.id.right_icon slot. */ - private void processSmallRightIcon(int smallIconDrawableId, - RemoteViews contentView) { + private void processSmallRightIcon(Icon smallIcon, RemoteViews contentView) { if (!isLegacy()) { contentView.setDrawableParameters(R.id.right_icon, false, -1, 0xFFFFFFFF, PorterDuff.Mode.SRC_ATOP, -1); } - if (!isLegacy() || mColorUtil.isGrayscaleIcon(mContext, smallIconDrawableId)) { + final boolean gray = isLegacy() + && smallIcon.getType() == Icon.TYPE_RESOURCE + && mColorUtil.isGrayscaleIcon(mContext, smallIcon.getResId()); + if (!isLegacy() || gray) { contentView.setInt(R.id.right_icon, "setBackgroundResource", R.drawable.notification_icon_legacy_bg); @@ -3180,7 +3230,10 @@ public class Notification implements Parcelable public Notification buildUnstyled() { Notification n = new Notification(); n.when = mWhen; - n.icon = mSmallIcon; + n.mSmallIcon = mSmallIcon; + if (mSmallIcon.getType() == Icon.TYPE_RESOURCE) { + n.icon = mSmallIcon.getResId(); + } n.iconLevel = mSmallIconLevel; n.number = mNumber; @@ -3192,7 +3245,10 @@ public class Notification implements Parcelable n.fullScreenIntent = mFullScreenIntent; n.tickerText = mTickerText; n.tickerView = makeTickerView(); - n.largeIcon = mLargeIcon; + n.mLargeIcon = mLargeIcon; + if (mLargeIcon != null && mLargeIcon.getType() == Icon.TYPE_BITMAP) { + n.largeIcon = mLargeIcon.getBitmap(); + } n.sound = mSound; n.audioStreamType = mAudioStreamType; n.audioAttributes = mAudioAttributes; @@ -3242,7 +3298,7 @@ public class Notification implements Parcelable extras.putCharSequence(EXTRA_TEXT, mContentText); extras.putCharSequence(EXTRA_SUB_TEXT, mSubText); extras.putCharSequence(EXTRA_INFO_TEXT, mContentInfo); - extras.putInt(EXTRA_SMALL_ICON, mSmallIcon); + extras.putParcelable(EXTRA_SMALL_ICON, mSmallIcon); extras.putInt(EXTRA_PROGRESS, mProgress); extras.putInt(EXTRA_PROGRESS_MAX, mProgressMax); extras.putBoolean(EXTRA_PROGRESS_INDETERMINATE, mProgressIndeterminate); @@ -3430,7 +3486,7 @@ public class Notification implements Parcelable // Notification fields. mWhen = n.when; - mSmallIcon = n.icon; + mSmallIcon = n.mSmallIcon; mSmallIconLevel = n.iconLevel; mNumber = n.number; @@ -3441,7 +3497,7 @@ public class Notification implements Parcelable mFullScreenIntent = n.fullScreenIntent; mTickerText = n.tickerText; mTickerView = n.tickerView; - mLargeIcon = n.largeIcon; + mLargeIcon = n.mLargeIcon; mSound = n.sound; mAudioStreamType = n.audioStreamType; mAudioAttributes = n.audioAttributes; @@ -3472,7 +3528,7 @@ public class Notification implements Parcelable mContentText = extras.getCharSequence(EXTRA_TEXT); mSubText = extras.getCharSequence(EXTRA_SUB_TEXT); mContentInfo = extras.getCharSequence(EXTRA_INFO_TEXT); - mSmallIcon = extras.getInt(EXTRA_SMALL_ICON); + mSmallIcon = extras.getParcelable(EXTRA_SMALL_ICON); mProgress = extras.getInt(EXTRA_PROGRESS); mProgressMax = extras.getInt(EXTRA_PROGRESS_MAX); mProgressIndeterminate = extras.getBoolean(EXTRA_PROGRESS_INDETERMINATE); @@ -3764,7 +3820,7 @@ public class Notification implements Parcelable */ public static class BigPictureStyle extends Style { private Bitmap mPicture; - private Bitmap mBigLargeIcon; + private Icon mBigLargeIcon; private boolean mBigLargeIconSet = false; public BigPictureStyle() { @@ -3803,8 +3859,15 @@ public class Notification implements Parcelable * Override the large icon when the big notification is shown. */ public BigPictureStyle bigLargeIcon(Bitmap b) { + return bigLargeIcon(b != null ? Icon.createWithBitmap(b) : null); + } + + /** + * Override the large icon when the big notification is shown. + */ + public BigPictureStyle bigLargeIcon(Icon icon) { mBigLargeIconSet = true; - mBigLargeIcon = b; + mBigLargeIcon = icon; return this; } @@ -3815,7 +3878,7 @@ public class Notification implements Parcelable // 1. mBigLargeIconSet -> mBigLargeIcon (null or non-null) applies, overrides // mLargeIcon // 2. !mBigLargeIconSet -> mLargeIcon applies - Bitmap oldLargeIcon = null; + Icon oldLargeIcon = null; if (mBigLargeIconSet) { oldLargeIcon = mBuilder.mLargeIcon; mBuilder.mLargeIcon = mBigLargeIcon; diff --git a/core/java/android/app/admin/DeviceAdminReceiver.java b/core/java/android/app/admin/DeviceAdminReceiver.java index 470804d..87e2f9a 100644 --- a/core/java/android/app/admin/DeviceAdminReceiver.java +++ b/core/java/android/app/admin/DeviceAdminReceiver.java @@ -24,6 +24,7 @@ import android.content.BroadcastReceiver; import android.content.ComponentName; import android.content.Context; import android.content.Intent; +import android.net.Uri; import android.os.Bundle; import android.security.KeyChain; @@ -249,13 +250,7 @@ public class DeviceAdminReceiver extends BroadcastReceiver { public static final String EXTRA_CHOOSE_PRIVATE_KEY_SENDER_UID = "android.app.extra.CHOOSE_PRIVATE_KEY_SENDER_UID"; /** @hide */ - public static final String EXTRA_CHOOSE_PRIVATE_KEY_HOST = "android.app.extra.CHOOSE_PRIVATE_KEY_HOST"; - - /** @hide */ - public static final String EXTRA_CHOOSE_PRIVATE_KEY_PORT = "android.app.extra.CHOOSE_PRIVATE_KEY_PORT"; - - /** @hide */ - public static final String EXTRA_CHOOSE_PRIVATE_KEY_URL = "android.app.extra.CHOOSE_PRIVATE_KEY_URL"; + public static final String EXTRA_CHOOSE_PRIVATE_KEY_URI = "android.app.extra.CHOOSE_PRIVATE_KEY_URI"; /** @hide */ public static final String EXTRA_CHOOSE_PRIVATE_KEY_ALIAS = "android.app.extra.CHOOSE_PRIVATE_KEY_ALIAS"; @@ -487,15 +482,13 @@ public class DeviceAdminReceiver extends BroadcastReceiver { * @param context The running context as per {@link #onReceive}. * @param intent The received intent as per {@link #onReceive}. * @param uid The uid asking for the private key and certificate pair. - * @param host The authentication host, may be null. - * @param port The authentication port, or -1. - * @param url The URL to authenticate, may be null. + * @param uri The URI to authenticate, may be null. * @param alias The alias preselected by the client, or null. * @return The private key alias to return and grant access to. * @see KeyChain#choosePrivateKeyAlias */ - public String onChoosePrivateKeyAlias(Context context, Intent intent, int uid, String host, - int port, String url, String alias) { + public String onChoosePrivateKeyAlias(Context context, Intent intent, int uid, Uri uri, + String alias) { return null; } @@ -546,12 +539,9 @@ public class DeviceAdminReceiver extends BroadcastReceiver { onProfileProvisioningComplete(context, intent); } else if (ACTION_CHOOSE_PRIVATE_KEY_ALIAS.equals(action)) { int uid = intent.getIntExtra(EXTRA_CHOOSE_PRIVATE_KEY_SENDER_UID, -1); - String host = intent.getStringExtra(EXTRA_CHOOSE_PRIVATE_KEY_HOST); - int port = intent.getIntExtra(EXTRA_CHOOSE_PRIVATE_KEY_PORT, -1); - String url = intent.getStringExtra(EXTRA_CHOOSE_PRIVATE_KEY_URL); + Uri uri = intent.getParcelableExtra(EXTRA_CHOOSE_PRIVATE_KEY_URI); String alias = intent.getStringExtra(EXTRA_CHOOSE_PRIVATE_KEY_ALIAS); - String chosenAlias = onChoosePrivateKeyAlias(context, intent, uid, host, port, url, - alias); + String chosenAlias = onChoosePrivateKeyAlias(context, intent, uid, uri, alias); setResultData(chosenAlias); } else if (ACTION_LOCK_TASK_ENTERING.equals(action)) { String pkg = intent.getStringExtra(EXTRA_LOCK_TASK_PACKAGE); diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java index 3fb7059..55ff85a 100644 --- a/core/java/android/app/admin/DevicePolicyManager.java +++ b/core/java/android/app/admin/DevicePolicyManager.java @@ -402,7 +402,7 @@ public class DevicePolicyManager { * has completed successfully. * * <p>The broadcast is limited to the primary profile, to the app specified in the provisioning - * intent (@see #ACTION_PROVISION_MANAGED_PROFILE). + * intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE}. * * <p>This intent will contain the extra {@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE} which * corresponds to the account requested to be migrated at provisioning time, if any. @@ -2523,13 +2523,26 @@ public class DevicePolicyManager { * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call * this method; if it has not, a security exception will be thrown. * - * <p>Calling this from a managed profile will throw a security exception. + * <p>Calling this from a managed profile before version + * {@link android.os.Build.VERSION_CODES#MNC} will throw a security exception. + * + * <p>From version {@link android.os.Build.VERSION_CODES#MNC} a profile owner can set: + * <ul> + * <li>{@link #KEYGUARD_DISABLE_TRUST_AGENTS}, {@link #KEYGUARD_DISABLE_FINGERPRINT} + * these will affect the profile's parent user. + * <li>{@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS} this will affect notifications + * generated by applications in the managed profile. + * </ul> + * <p>Requests to disable other features on a managed profile will be ignored. The admin + * can check which features have been disabled by calling + * {@link #getKeyguardDisabledFeatures(ComponentName)} * * @param admin Which {@link DeviceAdminReceiver} this request is associated with. * @param which {@link #KEYGUARD_DISABLE_FEATURES_NONE} (default), * {@link #KEYGUARD_DISABLE_WIDGETS_ALL}, {@link #KEYGUARD_DISABLE_SECURE_CAMERA}, * {@link #KEYGUARD_DISABLE_SECURE_NOTIFICATIONS}, {@link #KEYGUARD_DISABLE_TRUST_AGENTS}, - * {@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS}, {@link #KEYGUARD_DISABLE_FEATURES_ALL} + * {@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS}, {@link #KEYGUARD_DISABLE_FINGERPRINT}, + * {@link #KEYGUARD_DISABLE_FEATURES_ALL} */ public void setKeyguardDisabledFeatures(ComponentName admin, int which) { if (mService != null) { @@ -2793,17 +2806,16 @@ public class DevicePolicyManager { * @param who Which {@link DeviceAdminReceiver} this request is associated with, or null if not * called by the device owner. * @param initializer Which {@link DeviceAdminReceiver} to make device initializer. - * @param initializerName The user-visible name of the device initializer. * @return whether the component was successfully registered as the device initializer. * @throws IllegalArgumentException if the componentname is null or invalid * @throws IllegalStateException if the caller is not device owner or the device has * already been provisioned or a device initializer already exists. */ - public boolean setDeviceInitializer(ComponentName who, ComponentName initializer, - String initializerName) throws IllegalArgumentException, IllegalStateException { + public boolean setDeviceInitializer(ComponentName who, ComponentName initializer) + throws IllegalArgumentException, IllegalStateException { if (mService != null) { try { - return mService.setDeviceInitializer(who, initializer, initializerName); + return mService.setDeviceInitializer(who, initializer); } catch (RemoteException re) { Log.w(TAG, "Failed to set device initializer"); } diff --git a/core/java/android/app/admin/IDevicePolicyManager.aidl b/core/java/android/app/admin/IDevicePolicyManager.aidl index 481ff62..24ef604 100644 --- a/core/java/android/app/admin/IDevicePolicyManager.aidl +++ b/core/java/android/app/admin/IDevicePolicyManager.aidl @@ -23,6 +23,7 @@ import android.content.Intent; import android.content.IntentFilter; import android.graphics.Bitmap; import android.net.ProxyInfo; +import android.net.Uri; import android.os.Bundle; import android.os.PersistableBundle; import android.os.RemoteCallback; @@ -131,7 +132,7 @@ interface IDevicePolicyManager { void enforceCanManageCaCerts(in ComponentName admin); boolean installKeyPair(in ComponentName who, in byte[] privKeyBuffer, in byte[] certBuffer, String alias); - void choosePrivateKeyAlias(int uid, in String host, int port, in String url, in String alias, IBinder aliasCallback); + void choosePrivateKeyAlias(int uid, in Uri uri, in String alias, IBinder aliasCallback); void setCertInstallerPackage(in ComponentName who, String installerPackage); String getCertInstallerPackage(in ComponentName who); @@ -213,7 +214,7 @@ interface IDevicePolicyManager { boolean setUserEnabled(in ComponentName who); boolean isDeviceInitializer(String packageName); void clearDeviceInitializer(in ComponentName who); - boolean setDeviceInitializer(in ComponentName who, in ComponentName initializer, String initializerName); + boolean setDeviceInitializer(in ComponentName who, in ComponentName initializer); String getDeviceInitializer(); ComponentName getDeviceInitializerComponent(); diff --git a/core/java/android/app/usage/NetworkUsageStats.java b/core/java/android/app/usage/NetworkStats.java index 990d231..5193563 100644 --- a/core/java/android/app/usage/NetworkUsageStats.java +++ b/core/java/android/app/usage/NetworkStats.java @@ -19,7 +19,6 @@ package android.app.usage; import android.content.Context; import android.net.INetworkStatsService; import android.net.INetworkStatsSession; -import android.net.NetworkStats; import android.net.NetworkStatsHistory; import android.net.NetworkTemplate; import android.net.TrafficStats; @@ -33,7 +32,7 @@ import dalvik.system.CloseGuard; * Class providing enumeration over buckets of network usage statistics. NetworkUsageStats objects * are returned as results to various queries in {@link NetworkStatsManager}. */ -public final class NetworkUsageStats implements AutoCloseable { +public final class NetworkStats implements AutoCloseable { private final static String TAG = "NetworkUsageStats"; private final CloseGuard mCloseGuard = CloseGuard.get(); @@ -70,7 +69,7 @@ public final class NetworkUsageStats implements AutoCloseable { /** * Results of a summary query. */ - private NetworkStats mSummary = null; + private android.net.NetworkStats mSummary = null; /** * Results of detail queries. @@ -85,11 +84,11 @@ public final class NetworkUsageStats implements AutoCloseable { /** * Recycling entry objects to prevent heap fragmentation. */ - private NetworkStats.Entry mRecycledSummaryEntry = null; + private android.net.NetworkStats.Entry mRecycledSummaryEntry = null; private NetworkStatsHistory.Entry mRecycledHistoryEntry = null; /** @hide */ - NetworkUsageStats(Context context, NetworkTemplate template, long startTimestamp, + NetworkStats(Context context, NetworkTemplate template, long startTimestamp, long endTimestamp) throws RemoteException, SecurityException { final INetworkStatsService statsService = INetworkStatsService.Stub.asInterface( ServiceManager.getService(Context.NETWORK_STATS_SERVICE)); @@ -136,14 +135,19 @@ public final class NetworkUsageStats implements AutoCloseable { public static final int STATE_FOREGROUND = 0x2; /** + * Special UID value for aggregate/unspecified. + */ + public static final int UID_ALL = android.net.NetworkStats.UID_ALL; + + /** * Special UID value for removed apps. */ - public static final int UID_REMOVED = -4; + public static final int UID_REMOVED = TrafficStats.UID_REMOVED; /** * Special UID value for data usage by tethering. */ - public static final int UID_TETHERING = -5; + public static final int UID_TETHERING = TrafficStats.UID_TETHERING; private int mUid; private int mState; @@ -156,9 +160,9 @@ public final class NetworkUsageStats implements AutoCloseable { private static int convertState(int networkStatsSet) { switch (networkStatsSet) { - case NetworkStats.SET_ALL : return STATE_ALL; - case NetworkStats.SET_DEFAULT : return STATE_DEFAULT; - case NetworkStats.SET_FOREGROUND : return STATE_FOREGROUND; + case android.net.NetworkStats.SET_ALL : return STATE_ALL; + case android.net.NetworkStats.SET_DEFAULT : return STATE_DEFAULT; + case android.net.NetworkStats.SET_FOREGROUND : return STATE_FOREGROUND; } return 0; } @@ -337,8 +341,8 @@ public final class NetworkUsageStats implements AutoCloseable { void startHistoryEnumeration(int uid) { mHistory = null; try { - mHistory = mSession.getHistoryForUid(mTemplate, uid, NetworkStats.SET_ALL, - NetworkStats.TAG_NONE, NetworkStatsHistory.FIELD_ALL); + mHistory = mSession.getHistoryForUid(mTemplate, uid, android.net.NetworkStats.SET_ALL, + android.net.NetworkStats.TAG_NONE, NetworkStatsHistory.FIELD_ALL); setSingleUid(uid); } catch (RemoteException e) { Log.w(TAG, e); @@ -364,8 +368,9 @@ public final class NetworkUsageStats implements AutoCloseable { stepUid(); mHistory = null; try { - mHistory = mSession.getHistoryForUid(mTemplate, getUid(), NetworkStats.SET_ALL, - NetworkStats.TAG_NONE, NetworkStatsHistory.FIELD_ALL); + mHistory = mSession.getHistoryForUid(mTemplate, getUid(), + android.net.NetworkStats.SET_ALL, android.net.NetworkStats.TAG_NONE, + NetworkStatsHistory.FIELD_ALL); } catch (RemoteException e) { Log.w(TAG, e); // Leaving mHistory null @@ -405,7 +410,7 @@ public final class NetworkUsageStats implements AutoCloseable { } Bucket bucket = new Bucket(); if (mRecycledSummaryEntry == null) { - mRecycledSummaryEntry = new NetworkStats.Entry(); + mRecycledSummaryEntry = new android.net.NetworkStats.Entry(); } mSummary.getTotal(mRecycledSummaryEntry); fillBucketFromSummaryEntry(bucket); diff --git a/core/java/android/app/usage/NetworkStatsManager.java b/core/java/android/app/usage/NetworkStatsManager.java index af7c053..2ae0181 100644 --- a/core/java/android/app/usage/NetworkStatsManager.java +++ b/core/java/android/app/usage/NetworkStatsManager.java @@ -16,18 +16,17 @@ package android.app.usage; -import android.app.usage.NetworkUsageStats.Bucket; +import android.app.usage.NetworkStats.Bucket; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkIdentity; import android.net.NetworkTemplate; import android.os.RemoteException; -import android.os.UserHandle; import android.util.Log; /** * Provides access to network usage history and statistics. Usage data is collected in - * discrete bins of time called 'Buckets'. See {@link NetworkUsageStats.Bucket} for details. + * discrete bins of time called 'Buckets'. See {@link NetworkStats.Bucket} for details. * <p /> * Queries can define a time interval in the form of start and end timestamps (Long.MIN_VALUE and * Long.MAX_VALUE can be used to simulate open ended intervals). All queries (except @@ -37,15 +36,20 @@ import android.util.Log; * <h3> * Summary queries * </h3> + * {@link #querySummaryForDevice} <p /> + * {@link #querySummaryForUser} <p /> + * {@link #querySummary} <p /> * These queries aggregate network usage across the whole interval. Therefore there will be only one * bucket for a particular key and state combination. In case of the user-wide and device-wide * summaries a single bucket containing the totalised network usage is returned. * <h3> * History queries * </h3> + * {@link #queryDetailsForUid} <p /> + * {@link #queryDetails} <p /> * These queries do not aggregate over time but do aggregate over state. Therefore there can be * multiple buckets for a particular key but all Bucket's state is going to be - * {@link NetworkUsageStats.Bucket#STATE_ALL}. + * {@link NetworkStats.Bucket#STATE_ALL}. * <p /> * <b>NOTE:</b> This API requires the permission * {@link android.Manifest.permission#PACKAGE_USAGE_STATS}, which is a system-level permission and @@ -68,7 +72,10 @@ public class NetworkStatsManager { } /** * Query network usage statistics summaries. Result is summarised data usage for the whole - * device. Result is a single Bucket aggregated over time, state and uid. + * device. Result is a single Bucket aggregated over time, state and uid. This means the + * bucket's start and end timestamp are going to be the same as the 'startTime' and 'endTime' + * parameters, state is going to be {@link NetworkStats.Bucket#STATE_ALL} and uid + * {@link NetworkStats.Bucket#UID_ALL}. * * @param networkType As defined in {@link ConnectivityManager}, e.g. * {@link ConnectivityManager#TYPE_MOBILE}, {@link ConnectivityManager#TYPE_WIFI} @@ -89,7 +96,7 @@ public class NetworkStatsManager { } Bucket bucket = null; - NetworkUsageStats stats = new NetworkUsageStats(mContext, template, startTime, endTime); + NetworkStats stats = new NetworkStats(mContext, template, startTime, endTime); bucket = stats.getDeviceSummaryForNetwork(startTime, endTime); stats.close(); @@ -99,6 +106,9 @@ public class NetworkStatsManager { /** * Query network usage statistics summaries. Result is summarised data usage for all uids * belonging to calling user. Result is a single Bucket aggregated over time, state and uid. + * This means the bucket's start and end timestamp are going to be the same as the 'startTime' + * and 'endTime' parameters, state is going to be {@link NetworkStats.Bucket#STATE_ALL} and uid + * {@link NetworkStats.Bucket#UID_ALL}. * * @param networkType As defined in {@link ConnectivityManager}, e.g. * {@link ConnectivityManager#TYPE_MOBILE}, {@link ConnectivityManager#TYPE_WIFI} @@ -118,8 +128,8 @@ public class NetworkStatsManager { return null; } - NetworkUsageStats stats; - stats = new NetworkUsageStats(mContext, template, startTime, endTime); + NetworkStats stats; + stats = new NetworkStats(mContext, template, startTime, endTime); stats.startSummaryEnumeration(startTime, endTime); stats.close(); @@ -129,7 +139,9 @@ public class NetworkStatsManager { /** * Query network usage statistics summaries. Result filtered to include only uids belonging to * calling user. Result is aggregated over time, hence all buckets will have the same start and - * end timestamps. Not aggregated over state or uid. + * end timestamps. Not aggregated over state or uid. This means buckets' start and end + * timestamps are going to be the same as the 'startTime' and 'endTime' parameters, state and + * uid are going to vary. * * @param networkType As defined in {@link ConnectivityManager}, e.g. * {@link ConnectivityManager#TYPE_MOBILE}, {@link ConnectivityManager#TYPE_WIFI} @@ -142,15 +154,15 @@ public class NetworkStatsManager { * @return Statistics object or null if permissions are insufficient or error happened during * statistics collection. */ - public NetworkUsageStats querySummary(int networkType, String subscriberId, long startTime, + public NetworkStats querySummary(int networkType, String subscriberId, long startTime, long endTime) throws SecurityException, RemoteException { NetworkTemplate template = createTemplate(networkType, subscriberId); if (template == null) { return null; } - NetworkUsageStats result; - result = new NetworkUsageStats(mContext, template, startTime, endTime); + NetworkStats result; + result = new NetworkStats(mContext, template, startTime, endTime); result.startSummaryEnumeration(startTime, endTime); return result; @@ -158,7 +170,9 @@ public class NetworkStatsManager { /** * Query network usage statistics details. Only usable for uids belonging to calling user. - * Result is aggregated over state but not aggregated over time. + * Result is aggregated over state but not aggregated over time. This means buckets' start and + * end timestamps are going to be between 'startTime' and 'endTime' parameters, state is going + * to be {@link NetworkStats.Bucket#STATE_ALL} and uid the same as the 'uid' parameter. * * @param networkType As defined in {@link ConnectivityManager}, e.g. * {@link ConnectivityManager#TYPE_MOBILE}, {@link ConnectivityManager#TYPE_WIFI} @@ -172,15 +186,15 @@ public class NetworkStatsManager { * @return Statistics object or null if permissions are insufficient or error happened during * statistics collection. */ - public NetworkUsageStats queryDetailsForUid(int networkType, String subscriberId, + public NetworkStats queryDetailsForUid(int networkType, String subscriberId, long startTime, long endTime, int uid) throws SecurityException, RemoteException { NetworkTemplate template = createTemplate(networkType, subscriberId); if (template == null) { return null; } - NetworkUsageStats result; - result = new NetworkUsageStats(mContext, template, startTime, endTime); + NetworkStats result; + result = new NetworkStats(mContext, template, startTime, endTime); result.startHistoryEnumeration(uid); return result; @@ -188,7 +202,9 @@ public class NetworkStatsManager { /** * Query network usage statistics details. Result filtered to include only uids belonging to - * calling user. Result is aggregated over state but not aggregated over time or uid. + * calling user. Result is aggregated over state but not aggregated over time or uid. This means + * buckets' start and end timestamps are going to be between 'startTime' and 'endTime' + * parameters, state is going to be {@link NetworkStats.Bucket#STATE_ALL} and uid will vary. * * @param networkType As defined in {@link ConnectivityManager}, e.g. * {@link ConnectivityManager#TYPE_MOBILE}, {@link ConnectivityManager#TYPE_WIFI} @@ -201,14 +217,14 @@ public class NetworkStatsManager { * @return Statistics object or null if permissions are insufficient or error happened during * statistics collection. */ - public NetworkUsageStats queryDetails(int networkType, String subscriberId, long startTime, + public NetworkStats queryDetails(int networkType, String subscriberId, long startTime, long endTime) throws SecurityException, RemoteException { NetworkTemplate template = createTemplate(networkType, subscriberId); if (template == null) { return null; } - NetworkUsageStats result; - result = new NetworkUsageStats(mContext, template, startTime, endTime); + NetworkStats result; + result = new NetworkStats(mContext, template, startTime, endTime); result.startUserUidEnumeration(); return result; } diff --git a/core/java/android/app/usage/UsageStatsManager.java b/core/java/android/app/usage/UsageStatsManager.java index c74bbdd..34699d8 100644 --- a/core/java/android/app/usage/UsageStatsManager.java +++ b/core/java/android/app/usage/UsageStatsManager.java @@ -234,4 +234,15 @@ public final class UsageStatsManager { } return false; } + + /** + * @hide + */ + public void setAppInactive(String packageName, boolean inactive) { + try { + mService.setAppInactive(packageName, inactive, UserHandle.myUserId()); + } catch (RemoteException e) { + // fall through + } + } } diff --git a/core/java/android/content/pm/PackageManager.java b/core/java/android/content/pm/PackageManager.java index 202a8a7..2ca0306 100644 --- a/core/java/android/content/pm/PackageManager.java +++ b/core/java/android/content/pm/PackageManager.java @@ -653,6 +653,16 @@ public abstract class PackageManager { public static final int INSTALL_FAILED_VERSION_DOWNGRADE = -25; /** + * Installation return code: this is passed to the {@link IPackageInstallObserver} by + * {@link #installPackage(android.net.Uri, IPackageInstallObserver, int)} if + * the old package has target SDK high enough to support runtime permission and + * the new package has target SDK low enough to not support runtime permissions. + * @hide + */ + @SystemApi + public static final int INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE = -26; + + /** * Installation parse return code: this is passed to the {@link IPackageInstallObserver} by * {@link #installPackage(android.net.Uri, IPackageInstallObserver, int)} * if the parser was given a path that is not a file, or does not end with the expected @@ -4512,6 +4522,7 @@ public abstract class PackageManager { case INSTALL_FAILED_PACKAGE_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID; case INSTALL_FAILED_UID_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID; case INSTALL_FAILED_VERSION_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID; + case INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID; case INSTALL_PARSE_FAILED_NOT_APK: return PackageInstaller.STATUS_FAILURE_INVALID; case INSTALL_PARSE_FAILED_BAD_MANIFEST: return PackageInstaller.STATUS_FAILURE_INVALID; case INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION: return PackageInstaller.STATUS_FAILURE_INVALID; diff --git a/core/java/android/content/pm/RegisteredServicesCache.java b/core/java/android/content/pm/RegisteredServicesCache.java index c2d2f65..0bd2a3b 100644 --- a/core/java/android/content/pm/RegisteredServicesCache.java +++ b/core/java/android/content/pm/RegisteredServicesCache.java @@ -52,6 +52,7 @@ import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; @@ -573,7 +574,7 @@ public abstract class RegisteredServicesCache<V> { private void readPersistentServicesLocked(InputStream is) throws XmlPullParserException, IOException { XmlPullParser parser = Xml.newPullParser(); - parser.setInput(is, null); + parser.setInput(is, StandardCharsets.UTF_8.name()); int eventType = parser.getEventType(); while (eventType != XmlPullParser.START_TAG && eventType != XmlPullParser.END_DOCUMENT) { @@ -663,7 +664,7 @@ public abstract class RegisteredServicesCache<V> { try { fos = atomicFile.startWrite(); XmlSerializer out = new FastXmlSerializer(); - out.setOutput(fos, "utf-8"); + out.setOutput(fos, StandardCharsets.UTF_8.name()); out.startDocument(null, true); out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true); out.startTag(null, "services"); diff --git a/core/java/android/hardware/fingerprint/FingerprintManager.java b/core/java/android/hardware/fingerprint/FingerprintManager.java index cf96145..338bd76 100644 --- a/core/java/android/hardware/fingerprint/FingerprintManager.java +++ b/core/java/android/hardware/fingerprint/FingerprintManager.java @@ -32,7 +32,7 @@ import android.os.RemoteException; import android.os.UserHandle; import android.provider.Settings; import android.hardware.fingerprint.FingerprintManager.EnrollmentCallback; -import android.security.AndroidKeyStoreProvider; +import android.security.keystore.AndroidKeyStoreProvider; import android.util.Log; import android.util.Slog; @@ -686,7 +686,7 @@ public class FingerprintManager { private void sendAuthenticatedResult(Fingerprint fp) { if (mAuthenticationCallback != null) { - if (fp.getFingerId() == 0 && fp.getGroupId() == 0) { + if (fp.getFingerId() == 0) { // Fingerprint template valid but doesn't match one in database mAuthenticationCallback.onAuthenticationFailed(); } else { diff --git a/core/java/android/hardware/fingerprint/FingerprintUtils.java b/core/java/android/hardware/fingerprint/FingerprintUtils.java deleted file mode 100644 index 525f254..0000000 --- a/core/java/android/hardware/fingerprint/FingerprintUtils.java +++ /dev/null @@ -1,126 +0,0 @@ -/** - * Copyright (C) 2014 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package android.hardware.fingerprint; - -import android.content.ContentResolver; -import android.content.Context; -import android.os.Vibrator; -import android.provider.Settings; -import android.text.TextUtils; -import android.util.Log; - -import com.android.internal.util.ArrayUtils; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; - -/** - * Utility class for dealing with fingerprints and fingerprint settings. - * @hide - */ -public -class FingerprintUtils { - private static final boolean DEBUG = true; - private static final String TAG = "FingerprintUtils"; - private static final long[] FP_ERROR_VIBRATE_PATTERN = new long[] {0, 30, 100, 30}; - private static final long[] FP_SUCCESS_VIBRATE_PATTERN = new long[] {0, 30}; - - private static int[] toIntArray(List<Integer> list) { - if (list == null) { - return null; - } - int[] arr = new int[list.size()]; - int i = 0; - for (int elem : list) { - arr[i] = elem; - i++; - } - return arr; - } - - public static int[] getFingerprintIdsForUser(ContentResolver res, int userId) { - String fingerIdsRaw = Settings.Secure.getStringForUser(res, - Settings.Secure.USER_FINGERPRINT_IDS, userId); - ArrayList<Integer> tmp = new ArrayList<Integer>(); - if (!TextUtils.isEmpty(fingerIdsRaw)) { - String[] fingerStringIds = fingerIdsRaw.replace("[","").replace("]","").split(", "); - int length = fingerStringIds.length; - for (int i = 0; i < length; i++) { - try { - tmp.add(Integer.decode(fingerStringIds[i])); - } catch (NumberFormatException e) { - if (DEBUG) Log.w(TAG, "Error parsing finger id: '" + fingerStringIds[i] + "'"); - } - } - } - return toIntArray(tmp); - } - - public static void addFingerprintIdForUser(ContentResolver res, int fingerId, int userId) { - // FingerId 0 has special meaning. - if (fingerId == 0) { - Log.w(TAG, "Tried to add fingerId 0"); - return; - } - - int[] fingerIds = getFingerprintIdsForUser(res, userId); - - // Don't allow dups - if (ArrayUtils.contains(fingerIds, fingerId)) { - Log.w(TAG, "finger already added " + fingerId); - return; - } - int[] newList = Arrays.copyOf(fingerIds, fingerIds.length + 1); - newList[fingerIds.length] = fingerId; - Settings.Secure.putStringForUser(res, Settings.Secure.USER_FINGERPRINT_IDS, - Arrays.toString(newList), userId); - } - - public static boolean removeFingerprintIdForUser(int fingerId, ContentResolver res, int userId) - { - // FingerId 0 has special meaning. The HAL layer is supposed to remove each finger one - // at a time and invoke notify() for each fingerId. If we get called with 0 here, it means - // something bad has happened. - if (fingerId == 0) throw new IllegalArgumentException("fingerId can't be 0"); - - final int[] fingerIds = getFingerprintIdsForUser(res, userId); - if (ArrayUtils.contains(fingerIds, fingerId)) { - final int[] result = ArrayUtils.removeInt(fingerIds, fingerId); - Settings.Secure.putStringForUser(res, Settings.Secure.USER_FINGERPRINT_IDS, - Arrays.toString(result), userId); - return true; - } - return false; - } - - public static void vibrateFingerprintError(Context context) { - Vibrator vibrator = context.getSystemService(Vibrator.class); - if (vibrator != null) { - vibrator.vibrate(FP_ERROR_VIBRATE_PATTERN, -1); - } - } - - public static void vibrateFingerprintSuccess(Context context) { - Vibrator vibrator = context.getSystemService(Vibrator.class); - if (vibrator != null) { - vibrator.vibrate(FP_SUCCESS_VIBRATE_PATTERN, -1); - } - } - -}; - diff --git a/core/java/android/hardware/usb/IUsbManager.aidl b/core/java/android/hardware/usb/IUsbManager.aidl index e4ab3f2..881dc0f 100644 --- a/core/java/android/hardware/usb/IUsbManager.aidl +++ b/core/java/android/hardware/usb/IUsbManager.aidl @@ -83,7 +83,7 @@ interface IUsbManager void clearDefaults(String packageName, int userId); /* Sets the current USB function. */ - void setCurrentFunction(String function, boolean makeDefault); + void setCurrentFunction(String function); /* Allow USB debugging from the attached host. If alwaysAllow is true, add the * the public key to list of host keys that the user has approved. diff --git a/core/java/android/hardware/usb/UsbManager.java b/core/java/android/hardware/usb/UsbManager.java index a45d4ca..000d41f 100644 --- a/core/java/android/hardware/usb/UsbManager.java +++ b/core/java/android/hardware/usb/UsbManager.java @@ -228,6 +228,23 @@ public class UsbManager { */ public static final String EXTRA_PERMISSION_GRANTED = "permission"; + /** + * The persistent property which stores whether adb is enabled or not. Other values are ignored. + * Previously this value stored non-adb settings, but not anymore. + * TODO: rename this to something adb specific, rather than using usb. + * + * {@hide} + */ + public static final String ADB_PERSISTENT_PROPERTY = "persist.sys.usb.config"; + + /** + * The non-persistent property which stores the current USB settings. + * + * {@hide} + */ + public static final String USB_SETTINGS_PROPERTY = "sys.usb.config"; + + private final Context mContext; private final IUsbManager mService; @@ -410,21 +427,26 @@ public class UsbManager { } } + private static boolean propertyContainsFunction(String property, String function) { + String functions = SystemProperties.get(property, ""); + int index = functions.indexOf(function); + if (index < 0) return false; + if (index > 0 && functions.charAt(index - 1) != ',') return false; + int charAfter = index + function.length(); + if (charAfter < functions.length() && functions.charAt(charAfter) != ',') return false; + return true; + } + /** - * Returns the current default USB function. + * Returns true if the specified USB function is currently enabled. * - * @return name of the default function. + * @param function name of the USB function + * @return true if the USB function is enabled. * * {@hide} */ - public String getDefaultFunction() { - String functions = SystemProperties.get("persist.sys.usb.config", ""); - int commaIndex = functions.indexOf(','); - if (commaIndex > 0) { - return functions.substring(0, commaIndex); - } else { - return functions; - } + public boolean isFunctionEnabled(String function) { + return propertyContainsFunction(USB_SETTINGS_PROPERTY, function); } /** @@ -432,13 +454,12 @@ public class UsbManager { * If function is null, then the current function is set to the default function. * * @param function name of the USB function, or null to restore the default function - * @param makeDefault true if the function should be set as the new default function * * {@hide} */ - public void setCurrentFunction(String function, boolean makeDefault) { + public void setCurrentFunction(String function) { try { - mService.setCurrentFunction(function, makeDefault); + mService.setCurrentFunction(function); } catch (RemoteException e) { Log.e(TAG, "RemoteException in setCurrentFunction", e); } diff --git a/core/java/android/os/FileUtils.java b/core/java/android/os/FileUtils.java index 021e5e4..917271d 100644 --- a/core/java/android/os/FileUtils.java +++ b/core/java/android/os/FileUtils.java @@ -528,7 +528,7 @@ public class FileUtils { * {@code /after/foo/bar.txt}. */ public static File rewriteAfterRename(File beforeDir, File afterDir, File file) { - if (file == null) return null; + if (file == null || beforeDir == null || afterDir == null) return null; if (contains(beforeDir, file)) { final String splice = file.getAbsolutePath().substring( beforeDir.getAbsolutePath().length()); diff --git a/core/java/android/os/storage/StorageManager.java b/core/java/android/os/storage/StorageManager.java index 3fdabee..8c0bbbf 100644 --- a/core/java/android/os/storage/StorageManager.java +++ b/core/java/android/os/storage/StorageManager.java @@ -73,6 +73,8 @@ public class StorageManager { /** {@hide} */ public static final String PROP_PRIMARY_PHYSICAL = "ro.vold.primary_physical"; /** {@hide} */ + public static final String PROP_HAS_ADOPTABLE = "vold.has_adoptable"; + /** {@hide} */ public static final String PROP_FORCE_ADOPTABLE = "persist.fw.force_adoptable"; /** {@hide} */ diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index d3a5561..1f4020d 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -4133,7 +4133,10 @@ public final class Settings { * LocationManager service for testing purposes during application development. These * locations and status values override actual location and status information generated * by network, gps, or other location providers. + * + * @deprecated This settings is not used anymore. */ + @Deprecated public static final String ALLOW_MOCK_LOCATION = "mock_location"; /** @@ -4363,12 +4366,6 @@ public final class Settings { "lock_screen_appwidget_ids"; /** - * List of enrolled fingerprint identifiers (comma-delimited). - * @hide - */ - public static final String USER_FINGERPRINT_IDS = "user_fingerprint_ids"; - - /** * Id of the appwidget shown on the lock screen when appwidgets are disabled. * @hide */ diff --git a/core/java/android/provider/VoicemailContract.java b/core/java/android/provider/VoicemailContract.java index 879f26c..89668c1 100644 --- a/core/java/android/provider/VoicemailContract.java +++ b/core/java/android/provider/VoicemailContract.java @@ -306,6 +306,13 @@ public class VoicemailContract { contentValues.put(Voicemails.SOURCE_PACKAGE, voicemail.getSourcePackage()); contentValues.put(Voicemails.SOURCE_DATA, voicemail.getSourceData()); contentValues.put(Voicemails.IS_READ, voicemail.isRead() ? 1 : 0); + + PhoneAccountHandle phoneAccount = voicemail.getPhoneAccount(); + if (voicemail.getPhoneAccount() != null) { + contentValues.put(Voicemails.PHONE_ACCOUNT_COMPONENT_NAME, + phoneAccount.getComponentName().flattenToString()); + contentValues.put(Voicemails.PHONE_ACCOUNT_ID, phoneAccount.getId()); + } return contentValues; } } diff --git a/core/java/android/security/IKeystoreService.aidl b/core/java/android/security/IKeystoreService.aidl index 4809050..b0779c0 100644 --- a/core/java/android/security/IKeystoreService.aidl +++ b/core/java/android/security/IKeystoreService.aidl @@ -75,4 +75,6 @@ interface IKeystoreService { int abort(IBinder handle); boolean isOperationAuthorized(IBinder token); int addAuthToken(in byte[] authToken); + int onUserAdded(int userId, int parentId); + int onUserRemoved(int userId); } diff --git a/core/java/android/service/carrier/CarrierConfigService.java b/core/java/android/service/carrier/CarrierConfigService.java index 1880d16..bc42b6b 100644 --- a/core/java/android/service/carrier/CarrierConfigService.java +++ b/core/java/android/service/carrier/CarrierConfigService.java @@ -16,8 +16,8 @@ package android.service.carrier; import android.app.Service; import android.content.Intent; -import android.os.Bundle; import android.os.IBinder; +import android.os.PersistableBundle; /** * A service that sets carrier configuration for telephony services. @@ -68,16 +68,16 @@ public abstract class CarrierConfigService extends Service { * </p> * <p> * Implementations should use the keys defined in {@link android.telephony.CarrierConfigManager - * CarrierConfigManager}. Any configuration values not set in the returned {@link Bundle} may be - * overridden by the system's default configuration service. + * CarrierConfigManager}. Any configuration values not set in the returned {@link + * PersistableBundle} may be overridden by the system's default configuration service. * </p> * * @param id contains details about the current carrier that can be used do decide what * configuration values to return. - * @return a {@link Bundle} object containing the configuration or null if default values should - * be used. + * @return a {@link PersistableBundle} object containing the configuration or null if default + * values should be used. */ - public abstract Bundle onLoadConfig(CarrierIdentifier id); + public abstract PersistableBundle onLoadConfig(CarrierIdentifier id); /** @hide */ @Override @@ -97,7 +97,7 @@ public abstract class CarrierConfigService extends Service { private class ICarrierConfigServiceWrapper extends ICarrierConfigService.Stub { @Override - public Bundle getCarrierConfig(CarrierIdentifier id) { + public PersistableBundle getCarrierConfig(CarrierIdentifier id) { return CarrierConfigService.this.onLoadConfig(id); } } diff --git a/core/java/android/service/carrier/ICarrierConfigService.aidl b/core/java/android/service/carrier/ICarrierConfigService.aidl index d8390b6..abbc000 100644 --- a/core/java/android/service/carrier/ICarrierConfigService.aidl +++ b/core/java/android/service/carrier/ICarrierConfigService.aidl @@ -16,7 +16,7 @@ package android.service.carrier; -import android.os.Bundle; +import android.os.PersistableBundle; import android.service.carrier.CarrierIdentifier; /** @@ -28,5 +28,5 @@ import android.service.carrier.CarrierIdentifier; interface ICarrierConfigService { /** @see android.service.carrier.CarrierConfigService#onLoadConfig */ - Bundle getCarrierConfig(in CarrierIdentifier id); -}
\ No newline at end of file + PersistableBundle getCarrierConfig(in CarrierIdentifier id); +} diff --git a/core/java/android/service/notification/ZenModeConfig.java b/core/java/android/service/notification/ZenModeConfig.java index 599ac74..1e42913 100644 --- a/core/java/android/service/notification/ZenModeConfig.java +++ b/core/java/android/service/notification/ZenModeConfig.java @@ -573,24 +573,34 @@ public class ZenModeConfig implements Parcelable { } public static Condition toTimeCondition(Context context, int minutesFromNow, int userHandle) { + return toTimeCondition(context, minutesFromNow, userHandle, false /*shortVersion*/); + } + + public static Condition toTimeCondition(Context context, int minutesFromNow, int userHandle, + boolean shortVersion) { final long now = System.currentTimeMillis(); final long millis = minutesFromNow == 0 ? ZERO_VALUE_MS : minutesFromNow * MINUTES_MS; - return toTimeCondition(context, now + millis, minutesFromNow, now, userHandle); + return toTimeCondition(context, now + millis, minutesFromNow, now, userHandle, + shortVersion); } public static Condition toTimeCondition(Context context, long time, int minutes, long now, - int userHandle) { + int userHandle, boolean shortVersion) { final int num, summaryResId, line1ResId; if (minutes < 60) { // display as minutes num = minutes; - summaryResId = R.plurals.zen_mode_duration_minutes_summary; - line1ResId = R.plurals.zen_mode_duration_minutes; + summaryResId = shortVersion ? R.plurals.zen_mode_duration_minutes_summary_short + : R.plurals.zen_mode_duration_minutes_summary; + line1ResId = shortVersion ? R.plurals.zen_mode_duration_minutes_short + : R.plurals.zen_mode_duration_minutes; } else { // display as hours num = Math.round(minutes / 60f); - summaryResId = com.android.internal.R.plurals.zen_mode_duration_hours_summary; - line1ResId = com.android.internal.R.plurals.zen_mode_duration_hours; + summaryResId = shortVersion ? R.plurals.zen_mode_duration_hours_summary_short + : R.plurals.zen_mode_duration_hours_summary; + line1ResId = shortVersion ? R.plurals.zen_mode_duration_hours_short + : R.plurals.zen_mode_duration_hours; } final String skeleton = DateFormat.is24HourFormat(context, userHandle) ? "Hm" : "hma"; final String pattern = DateFormat.getBestDateTimePattern(Locale.getDefault(), skeleton); @@ -793,17 +803,17 @@ public class ZenModeConfig implements Parcelable { } public static String getConditionLine1(Context context, ZenModeConfig config, - int userHandle) { - return getConditionLine(context, config, userHandle, true /*useLine1*/); + int userHandle, boolean shortVersion) { + return getConditionLine(context, config, userHandle, true /*useLine1*/, shortVersion); } public static String getConditionSummary(Context context, ZenModeConfig config, - int userHandle) { - return getConditionLine(context, config, userHandle, false /*useLine1*/); + int userHandle, boolean shortVersion) { + return getConditionLine(context, config, userHandle, false /*useLine1*/, shortVersion); } private static String getConditionLine(Context context, ZenModeConfig config, - int userHandle, boolean useLine1) { + int userHandle, boolean useLine1, boolean shortVersion) { if (config == null) return ""; if (config.manualRule != null) { final Uri id = config.manualRule.conditionId; @@ -816,7 +826,7 @@ public class ZenModeConfig implements Parcelable { final long now = System.currentTimeMillis(); final long span = time - now; c = toTimeCondition(context, - time, Math.round(span / (float) MINUTES_MS), now, userHandle); + time, Math.round(span / (float) MINUTES_MS), now, userHandle, shortVersion); } final String rt = c == null ? "" : useLine1 ? c.line1 : c.summary; return TextUtils.isEmpty(rt) ? "" : rt; diff --git a/core/java/android/text/method/WordIterator.java b/core/java/android/text/method/WordIterator.java index c4dc5ed..5dda8a7 100644 --- a/core/java/android/text/method/WordIterator.java +++ b/core/java/android/text/method/WordIterator.java @@ -194,6 +194,87 @@ public class WordIterator implements Selection.PositionIterator { return BreakIterator.DONE; } + /** + * If <code>offset</code> is within a group of punctuation as defined + * by {@link #isPunctuation(int)}, returns the index of the first character + * of that group, otherwise returns BreakIterator.DONE. + * + * @param offset the offset to search from. + */ + public int getPunctuationBeginning(int offset) { + while (offset != BreakIterator.DONE && !isPunctuationStartBoundary(offset)) { + offset = prevBoundary(offset); + } + // No need to shift offset, prevBoundary handles that. + return offset; + } + + /** + * If <code>offset</code> is within a group of punctuation as defined + * by {@link #isPunctuation(int)}, returns the index of the last character + * of that group plus one, otherwise returns BreakIterator.DONE. + * + * @param offset the offset to search from. + */ + public int getPunctuationEnd(int offset) { + while (offset != BreakIterator.DONE && !isPunctuationEndBoundary(offset)) { + offset = nextBoundary(offset); + } + // No need to shift offset, nextBoundary handles that. + return offset; + } + + /** + * Indicates if the provided offset is after a punctuation character + * as defined by {@link #isPunctuation(int)}. + * + * @param offset the offset to check from. + * @return Whether the offset is after a punctuation character. + */ + public boolean isAfterPunctuation(int offset) { + final int shiftedOffset = offset - mOffsetShift; + if (shiftedOffset >= 1 && shiftedOffset <= mString.length()) { + final int codePoint = mString.codePointBefore(shiftedOffset); + return isPunctuation(codePoint); + } + return false; + } + + /** + * Indicates if the provided offset is at a punctuation character + * as defined by {@link #isPunctuation(int)}. + * + * @param offset the offset to check from. + * @return Whether the offset is at a punctuation character. + */ + public boolean isOnPunctuation(int offset) { + final int shiftedOffset = offset - mOffsetShift; + if (shiftedOffset >= 0 && shiftedOffset < mString.length()) { + final int codePoint = mString.codePointAt(shiftedOffset); + return isPunctuation(codePoint); + } + return false; + } + + private boolean isPunctuationStartBoundary(int offset) { + return isOnPunctuation(offset) && !isAfterPunctuation(offset); + } + + private boolean isPunctuationEndBoundary(int offset) { + return !isOnPunctuation(offset) && isAfterPunctuation(offset); + } + + private boolean isPunctuation(int cp) { + int type = Character.getType(cp); + return (type == Character.CONNECTOR_PUNCTUATION || + type == Character.DASH_PUNCTUATION || + type == Character.END_PUNCTUATION || + type == Character.FINAL_QUOTE_PUNCTUATION || + type == Character.INITIAL_QUOTE_PUNCTUATION || + type == Character.OTHER_PUNCTUATION || + type == Character.START_PUNCTUATION); + } + private boolean isAfterLetterOrDigit(int shiftedOffset) { if (shiftedOffset >= 1 && shiftedOffset <= mString.length()) { final int codePoint = mString.codePointBefore(shiftedOffset); diff --git a/core/java/android/view/IWindow.aidl b/core/java/android/view/IWindow.aidl index 9fc80fc..0fefdc7 100644 --- a/core/java/android/view/IWindow.aidl +++ b/core/java/android/view/IWindow.aidl @@ -80,11 +80,17 @@ oneway interface IWindow { int localValue, int localChanges); /** - * If the window manager returned RELAYOUT_RES_ANIMATING - * from relayout(), this method will be called when the animation - * is done. + * The window is beginning to animate. The application should stop drawing frames until the + * window is not animating anymore, indicated by being called {@link #windowEndAnimating}. + * + * @param remainingFrameCount how many frames the app might still draw before stopping drawing */ - void doneAnimating(); + void onAnimationStarted(int remainingFrameCount); + + /** + * The window has ended animating. See {@link #onAnimationStarted}. + */ + void onAnimationStopped(); /** * Called for non-application windows when the enter animation has completed. diff --git a/core/java/android/view/InputEventConsistencyVerifier.java b/core/java/android/view/InputEventConsistencyVerifier.java index c5e4c21..46ef379 100644 --- a/core/java/android/view/InputEventConsistencyVerifier.java +++ b/core/java/android/view/InputEventConsistencyVerifier.java @@ -97,6 +97,9 @@ public final class InputEventConsistencyVerifier { // Set to true if we received hover enter. private boolean mHoverEntered; + // The bitset of buttons which we've received ACTION_BUTTON_PRESS for. + private int mButtonsPressed; + // The current violation message. private StringBuilder mViolationMessage; @@ -148,6 +151,7 @@ public final class InputEventConsistencyVerifier { mTouchEventStreamIsTainted = false; mTouchEventStreamUnhandled = false; mHoverEntered = false; + mButtonsPressed = 0; while (mKeyStateList != null) { final KeyState state = mKeyStateList; @@ -466,6 +470,8 @@ public final class InputEventConsistencyVerifier { final int action = event.getAction(); final int source = event.getSource(); + final int buttonState = event.getButtonState(); + final int actionButton = event.getActionButton(); if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) { switch (action) { case MotionEvent.ACTION_HOVER_ENTER: @@ -486,6 +492,62 @@ public final class InputEventConsistencyVerifier { ensureHistorySizeIsZeroForThisAction(event); ensurePointerCountIsOneForThisAction(event); break; + case MotionEvent.ACTION_BUTTON_PRESS: + ensureActionButtonIsNonZeroForThisAction(event); + if ((mButtonsPressed & actionButton) != 0) { + problem("Action button for ACTION_BUTTON_PRESS event is " + + actionButton + ", but it has already been pressed and " + + "has yet to be released."); + } + + mButtonsPressed |= actionButton; + // The system will automatically mirror the stylus buttons onto the button + // state as the old set of generic buttons for apps targeting pre-M. If + // it looks this has happened, go ahead and set the generic buttons as + // pressed to prevent spurious errors. + if (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY && + (buttonState & MotionEvent.BUTTON_SECONDARY) != 0) { + mButtonsPressed |= MotionEvent.BUTTON_SECONDARY; + } else if (actionButton == MotionEvent.BUTTON_STYLUS_SECONDARY && + (buttonState & MotionEvent.BUTTON_TERTIARY) != 0) { + mButtonsPressed |= MotionEvent.BUTTON_TERTIARY; + } + + if (mButtonsPressed != buttonState) { + problem(String.format("Reported button state differs from " + + "expected button state based on press and release events. " + + "Is 0x%08x but expected 0x%08x.", + buttonState, mButtonsPressed)); + } + break; + case MotionEvent.ACTION_BUTTON_RELEASE: + ensureActionButtonIsNonZeroForThisAction(event); + if ((mButtonsPressed & actionButton) != actionButton) { + problem("Action button for ACTION_BUTTON_RELEASE event is " + + actionButton + ", but it was either never pressed or has " + + "already been released."); + } + + mButtonsPressed &= ~actionButton; + // The system will automatically mirror the stylus buttons onto the button + // state as the old set of generic buttons for apps targeting pre-M. If + // it looks this has happened, go ahead and set the generic buttons as + // released to prevent spurious errors. + if (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY && + (buttonState & MotionEvent.BUTTON_SECONDARY) == 0) { + mButtonsPressed &= ~MotionEvent.BUTTON_SECONDARY; + } else if (actionButton == MotionEvent.BUTTON_STYLUS_SECONDARY && + (buttonState & MotionEvent.BUTTON_TERTIARY) == 0) { + mButtonsPressed &= ~MotionEvent.BUTTON_TERTIARY; + } + + if (mButtonsPressed != buttonState) { + problem(String.format("Reported button state differs from " + + "expected button state based on press and release events. " + + "Is 0x%08x but expected 0x%08x.", + buttonState, mButtonsPressed)); + } + break; default: problem("Invalid action for generic pointer event."); break; @@ -563,6 +625,15 @@ public final class InputEventConsistencyVerifier { } } + private void ensureActionButtonIsNonZeroForThisAction(MotionEvent event) { + final int actionButton = event.getActionButton(); + if (actionButton == 0) { + problem("No action button set. Action button should always be non-zero for " + + MotionEvent.actionToString(event.getAction())); + + } + } + private void ensureHistorySizeIsZeroForThisAction(MotionEvent event) { final int historySize = event.getHistorySize(); if (historySize != 0) { diff --git a/core/java/android/view/MotionEvent.java b/core/java/android/view/MotionEvent.java index 5df596a..4394cd8 100644 --- a/core/java/android/view/MotionEvent.java +++ b/core/java/android/view/MotionEvent.java @@ -303,6 +303,32 @@ public final class MotionEvent extends InputEvent implements Parcelable { public static final int ACTION_HOVER_EXIT = 10; /** + * Constant for {@link #getActionMasked}: A button has been pressed. + * + * <p> + * Use {@link #getActionButton()} to get which button was pressed. + * </p><p> + * This action is not a touch event so it is delivered to + * {@link View#onGenericMotionEvent(MotionEvent)} rather than + * {@link View#onTouchEvent(MotionEvent)}. + * </p> + */ + public static final int ACTION_BUTTON_PRESS = 11; + + /** + * Constant for {@link #getActionMasked}: A button has been released. + * + * <p> + * Use {@link #getActionButton()} to get which button was released. + * </p><p> + * This action is not a touch event so it is delivered to + * {@link View#onGenericMotionEvent(MotionEvent)} rather than + * {@link View#onTouchEvent(MotionEvent)}. + * </p> + */ + public static final int ACTION_BUTTON_RELEASE = 12; + + /** * Bits in the action code that represent a pointer index, used with * {@link #ACTION_POINTER_DOWN} and {@link #ACTION_POINTER_UP}. Shifting * down by {@link #ACTION_POINTER_INDEX_SHIFT} provides the actual pointer @@ -1174,14 +1200,14 @@ public final class MotionEvent extends InputEvent implements Parcelable { public static final int BUTTON_PRIMARY = 1 << 0; /** - * Button constant: Secondary button (right mouse button, stylus first button). + * Button constant: Secondary button (right mouse button). * * @see #getButtonState */ public static final int BUTTON_SECONDARY = 1 << 1; /** - * Button constant: Tertiary button (middle mouse button, stylus second button). + * Button constant: Tertiary button (middle mouse button). * * @see #getButtonState */ @@ -1209,6 +1235,20 @@ public final class MotionEvent extends InputEvent implements Parcelable { */ public static final int BUTTON_FORWARD = 1 << 4; + /** + * Button constant: Primary stylus button pressed. + * + * @see #getButtonState + */ + public static final int BUTTON_STYLUS_PRIMARY = 1 << 5; + + /** + * Button constant: Secondary stylus button pressed. + * + * @see #getButtonState + */ + public static final int BUTTON_STYLUS_SECONDARY = 1 << 6; + // NOTE: If you add a new axis here you must also add it to: // native/include/android/input.h @@ -1220,8 +1260,8 @@ public final class MotionEvent extends InputEvent implements Parcelable { "BUTTON_TERTIARY", "BUTTON_BACK", "BUTTON_FORWARD", - "0x00000020", - "0x00000040", + "BUTTON_STYLUS_PRIMARY", + "BUTTON_STYLUS_SECONDARY", "0x00000080", "0x00000100", "0x00000200", @@ -1357,6 +1397,8 @@ public final class MotionEvent extends InputEvent implements Parcelable { private static native void nativeSetEdgeFlags(long nativePtr, int action); private static native int nativeGetMetaState(long nativePtr); private static native int nativeGetButtonState(long nativePtr); + private static native void nativeSetButtonState(long nativePtr, int buttonState); + private static native int nativeGetActionButton(long nativePtr); private static native void nativeOffsetLocation(long nativePtr, float deltaX, float deltaY); private static native float nativeGetXOffset(long nativePtr); private static native float nativeGetYOffset(long nativePtr); @@ -2212,12 +2254,36 @@ public final class MotionEvent extends InputEvent implements Parcelable { * @see #BUTTON_TERTIARY * @see #BUTTON_FORWARD * @see #BUTTON_BACK + * @see #BUTTON_STYLUS_PRIMARY + * @see #BUTTON_STYLUS_SECONDARY */ public final int getButtonState() { return nativeGetButtonState(mNativePtr); } /** + * Sets the bitfield indicating which buttons are pressed. + * + * @see #getButtonState() + * @hide + */ + public final void setButtonState(int buttonState) { + nativeSetButtonState(mNativePtr, buttonState); + } + + /** + * Gets which button has been modified during a press or release action. + * + * For actions other than {@link #ACTION_BUTTON_PRESS} and {@link #ACTION_BUTTON_RELEASE} + * the returned value is undefined. + * + * @see #getButtonState() + */ + public final int getActionButton() { + return nativeGetActionButton(mNativePtr); + } + + /** * Returns the original raw X coordinate of this event. For touch * events on the screen, this is the original location of the event * on the screen, before it had been adjusted for the containing window @@ -3013,6 +3079,7 @@ public final class MotionEvent extends InputEvent implements Parcelable { public String toString() { StringBuilder msg = new StringBuilder(); msg.append("MotionEvent { action=").append(actionToString(getAction())); + msg.append(", actionButton=").append(buttonStateToString(getActionButton())); final int pointerCount = getPointerCount(); for (int i = 0; i < pointerCount; i++) { @@ -3066,6 +3133,10 @@ public final class MotionEvent extends InputEvent implements Parcelable { return "ACTION_HOVER_ENTER"; case ACTION_HOVER_EXIT: return "ACTION_HOVER_EXIT"; + case ACTION_BUTTON_PRESS: + return "ACTION_BUTTON_PRESS"; + case ACTION_BUTTON_RELEASE: + return "ACTION_BUTTON_RELEASE"; } int index = (action & ACTION_POINTER_INDEX_MASK) >> ACTION_POINTER_INDEX_SHIFT; switch (action & ACTION_MASK) { @@ -3172,6 +3243,8 @@ public final class MotionEvent extends InputEvent implements Parcelable { * @see #BUTTON_TERTIARY * @see #BUTTON_FORWARD * @see #BUTTON_BACK + * @see #BUTTON_STYLUS_PRIMARY + * @see #BUTTON_STYLUS_SECONDARY */ public final boolean isButtonPressed(int button) { if (button == 0) { @@ -3180,18 +3253,6 @@ public final class MotionEvent extends InputEvent implements Parcelable { return (getButtonState() & button) == button; } - /** - * Checks if a stylus is being used and if the first stylus button is - * pressed. - * - * @return True if the tool is a stylus and if the first stylus button is - * pressed. - * @see #BUTTON_SECONDARY - */ - public final boolean isStylusButtonPressed() { - return (isButtonPressed(BUTTON_SECONDARY) && getToolType(0) == TOOL_TYPE_STYLUS); - } - public static final Parcelable.Creator<MotionEvent> CREATOR = new Parcelable.Creator<MotionEvent>() { public MotionEvent createFromParcel(Parcel in) { diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 9e16b4b..6ca320a 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -5221,8 +5221,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * @return True if the event was consumed. */ private boolean performStylusActionOnButtonPress(MotionEvent event) { - if (isStylusButtonPressable() && !mInStylusButtonPress - && !mHasPerformedLongPress && event.isStylusButtonPressed()) { + if (isStylusButtonPressable() && !mInStylusButtonPress && !mHasPerformedLongPress + && event.isButtonPressed(MotionEvent.BUTTON_STYLUS_SECONDARY)) { if (performStylusButtonPress()) { mInStylusButtonPress = true; setPressed(true, event.getX(), event.getY()); diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java index 57c6cbf..1cbd886 100644 --- a/core/java/android/view/ViewRootImpl.java +++ b/core/java/android/view/ViewRootImpl.java @@ -40,6 +40,7 @@ import android.hardware.display.DisplayManager; import android.hardware.display.DisplayManager.DisplayListener; import android.media.AudioManager; import android.os.Binder; +import android.os.Build; import android.os.Bundle; import android.os.Debug; import android.os.Handler; @@ -220,6 +221,9 @@ public final class ViewRootImpl implements ViewParent, boolean mLastWasImTarget; boolean mWindowsAnimating; boolean mDrawDuringWindowsAnimating; + + /** How many frames the app is still allowed to draw when a window animation is happening. */ + private int mRemainingFrameCount; boolean mIsDrawing; int mLastSystemUiVisibility; int mClientWindowLayoutFlags; @@ -1569,10 +1573,6 @@ public final class ViewRootImpl implements ViewParent, } final int surfaceGenerationId = mSurface.getGenerationId(); relayoutResult = relayoutWindow(params, viewVisibility, insetsPending); - if (!mDrawDuringWindowsAnimating && - (relayoutResult & WindowManagerGlobal.RELAYOUT_RES_ANIMATING) != 0) { - mWindowsAnimating = true; - } if (DEBUG_LAYOUT) Log.v(TAG, "relayout: frame=" + frame.toShortString() + " overscan=" + mPendingOverscanInsets.toShortString() @@ -1996,14 +1996,11 @@ public final class ViewRootImpl implements ViewParent, + mView.findFocus()); } } - if ((relayoutResult & WindowManagerGlobal.RELAYOUT_RES_ANIMATING) != 0) { - // The first time we relayout the window, if the system is - // doing window animations, we want to hold of on any future - // draws until the animation is done. - mWindowsAnimating = true; - } } else if (mWindowsAnimating) { - skipDraw = true; + if (mRemainingFrameCount <= 0) { + skipDraw = true; + } + mRemainingFrameCount--; } mFirst = false; @@ -2018,7 +2015,6 @@ public final class ViewRootImpl implements ViewParent, mLastWasImTarget = imTarget; InputMethodManager imm = InputMethodManager.peekInstance(); if (imm != null && imTarget) { - imm.startGettingWindowFocus(mView); imm.onWindowFocus(mView, mView.findFocus(), mWindowAttributes.softInputMode, !mHasHadWindowFocus, mWindowAttributes.flags); @@ -2800,7 +2796,7 @@ public final class ViewRootImpl implements ViewParent, public void setDrawDuringWindowsAnimating(boolean value) { mDrawDuringWindowsAnimating = value; if (value) { - handleDispatchDoneAnimating(); + handleDispatchWindowAnimationStopped(); } } @@ -3152,11 +3148,12 @@ public final class ViewRootImpl implements ViewParent, private final static int MSG_UPDATE_CONFIGURATION = 18; private final static int MSG_PROCESS_INPUT_EVENTS = 19; private final static int MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST = 21; - private final static int MSG_DISPATCH_DONE_ANIMATING = 22; - private final static int MSG_INVALIDATE_WORLD = 23; - private final static int MSG_WINDOW_MOVED = 24; - private final static int MSG_SYNTHESIZE_INPUT_EVENT = 25; - private final static int MSG_DISPATCH_WINDOW_SHOWN = 26; + private final static int MSG_INVALIDATE_WORLD = 22; + private final static int MSG_WINDOW_MOVED = 23; + private final static int MSG_SYNTHESIZE_INPUT_EVENT = 24; + private final static int MSG_DISPATCH_WINDOW_SHOWN = 25; + private final static int MSG_DISPATCH_WINDOW_ANIMATION_STOPPED = 26; + private final static int MSG_DISPATCH_WINDOW_ANIMATION_STARTED = 27; final class ViewRootHandler extends Handler { @Override @@ -3200,8 +3197,10 @@ public final class ViewRootImpl implements ViewParent, return "MSG_PROCESS_INPUT_EVENTS"; case MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST: return "MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST"; - case MSG_DISPATCH_DONE_ANIMATING: - return "MSG_DISPATCH_DONE_ANIMATING"; + case MSG_DISPATCH_WINDOW_ANIMATION_STARTED: + return "MSG_DISPATCH_WINDOW_ANIMATION_STARTED"; + case MSG_DISPATCH_WINDOW_ANIMATION_STOPPED: + return "MSG_DISPATCH_WINDOW_ANIMATION_STOPPED"; case MSG_WINDOW_MOVED: return "MSG_WINDOW_MOVED"; case MSG_SYNTHESIZE_INPUT_EVENT: @@ -3322,10 +3321,6 @@ public final class ViewRootImpl implements ViewParent, InputMethodManager imm = InputMethodManager.peekInstance(); if (mView != null) { - if (hasWindowFocus && imm != null && mLastWasImTarget && - !isInLocalFocusMode()) { - imm.startGettingWindowFocus(mView); - } mAttachInfo.mKeyDispatchState.reset(); mView.dispatchWindowFocusChanged(hasWindowFocus); mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus); @@ -3421,8 +3416,12 @@ public final class ViewRootImpl implements ViewParent, case MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST: { setAccessibilityFocus(null, null); } break; - case MSG_DISPATCH_DONE_ANIMATING: { - handleDispatchDoneAnimating(); + case MSG_DISPATCH_WINDOW_ANIMATION_STARTED: { + int remainingFrameCount = msg.arg1; + handleDispatchWindowAnimationStarted(remainingFrameCount); + } break; + case MSG_DISPATCH_WINDOW_ANIMATION_STOPPED: { + handleDispatchWindowAnimationStopped(); } break; case MSG_INVALIDATE_WORLD: { if (mView != null) { @@ -4038,7 +4037,7 @@ public final class ViewRootImpl implements ViewParent, } else { // If delivering a new non-key event, make sure the window is // now allowed to start updating. - handleDispatchDoneAnimating(); + handleDispatchWindowAnimationStopped(); final int source = q.mEvent.getSource(); if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) { return processPointerEvent(q); @@ -4068,7 +4067,7 @@ public final class ViewRootImpl implements ViewParent, if (event.getAction() != KeyEvent.ACTION_UP) { // If delivering a new key event, make sure the window is // now allowed to start updating. - handleDispatchDoneAnimating(); + handleDispatchWindowAnimationStopped(); } // Deliver the key to the view hierarchy. @@ -5285,7 +5284,14 @@ public final class ViewRootImpl implements ViewParent, } } - public void handleDispatchDoneAnimating() { + public void handleDispatchWindowAnimationStarted(int remainingFrameCount) { + if (!mDrawDuringWindowsAnimating) { + mRemainingFrameCount = remainingFrameCount; + mWindowsAnimating = true; + } + } + + public void handleDispatchWindowAnimationStopped() { if (mWindowsAnimating) { mWindowsAnimating = false; if (!mDirty.isEmpty() || mIsAnimating || mFullRedrawNeeded) { @@ -5347,7 +5353,7 @@ public final class ViewRootImpl implements ViewParent, //Log.d(TAG, ">>>>>> CALLING relayout"); if (params != null && mOrigWindowType != params.type) { // For compatibility with old apps, don't crash here. - if (mTargetSdkVersion < android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH) { + if (mTargetSdkVersion < Build.VERSION_CODES.ICE_CREAM_SANDWICH) { Slog.w(TAG, "Window type can not be changed after " + "the window is added; ignoring change of " + mView); params.type = mOrigWindowType; @@ -5772,6 +5778,7 @@ public final class ViewRootImpl implements ViewParent, void enqueueInputEvent(InputEvent event, InputEventReceiver receiver, int flags, boolean processImmediately) { + adjustInputEventForCompatibility(event); QueuedInputEvent q = obtainQueuedInputEvent(event, receiver, flags); // Always enqueue the input event in order, regardless of its time stamp. @@ -5877,6 +5884,19 @@ public final class ViewRootImpl implements ViewParent, recycleQueuedInputEvent(q); } + private void adjustInputEventForCompatibility(InputEvent e) { + if (mTargetSdkVersion < Build.VERSION_CODES.MNC && e instanceof MotionEvent) { + MotionEvent motion = (MotionEvent) e; + final int mask = + MotionEvent.BUTTON_STYLUS_PRIMARY | MotionEvent.BUTTON_STYLUS_SECONDARY; + final int buttonState = motion.getButtonState(); + final int compatButtonState = (buttonState & mask) >> 4; + if (compatButtonState != 0) { + motion.setButtonState(buttonState | compatButtonState); + } + } + } + static boolean isTerminalInputEvent(InputEvent event) { if (event instanceof KeyEvent) { final KeyEvent keyEvent = (KeyEvent)event; @@ -6189,8 +6209,13 @@ public final class ViewRootImpl implements ViewParent, mHandler.sendMessage(mHandler.obtainMessage(MSG_DISPATCH_SYSTEM_UI_VISIBILITY, args)); } - public void dispatchDoneAnimating() { - mHandler.sendEmptyMessage(MSG_DISPATCH_DONE_ANIMATING); + public void dispatchWindowAnimationStarted(int remainingFrameCount) { + mHandler.obtainMessage(MSG_DISPATCH_WINDOW_ANIMATION_STARTED, + remainingFrameCount, 0 /* unused */).sendToTarget(); + } + + public void dispatchWindowAnimationStopped() { + mHandler.sendEmptyMessage(MSG_DISPATCH_WINDOW_ANIMATION_STOPPED); } public void dispatchCheckFocus() { @@ -6713,10 +6738,18 @@ public final class ViewRootImpl implements ViewParent, } @Override - public void doneAnimating() { + public void onAnimationStarted(int remainingFrameCount) { + final ViewRootImpl viewAncestor = mViewAncestor.get(); + if (viewAncestor != null) { + viewAncestor.dispatchWindowAnimationStarted(remainingFrameCount); + } + } + + @Override + public void onAnimationStopped() { final ViewRootImpl viewAncestor = mViewAncestor.get(); if (viewAncestor != null) { - viewAncestor.dispatchDoneAnimating(); + viewAncestor.dispatchWindowAnimationStopped(); } } diff --git a/core/java/android/view/WindowManagerGlobal.java b/core/java/android/view/WindowManagerGlobal.java index e7a7ba8..c16578e 100644 --- a/core/java/android/view/WindowManagerGlobal.java +++ b/core/java/android/view/WindowManagerGlobal.java @@ -69,12 +69,6 @@ public final class WindowManagerGlobal { public static final int RELAYOUT_RES_SURFACE_CHANGED = 0x4; /** - * The window manager is currently animating. It will call - * IWindow.doneAnimating() when done. - */ - public static final int RELAYOUT_RES_ANIMATING = 0x8; - - /** * Flag for relayout: the client will be later giving * internal insets; as a result, the window will not impact other window * layouts until the insets are given. diff --git a/core/java/android/view/inputmethod/InputMethodManager.java b/core/java/android/view/inputmethod/InputMethodManager.java index 568e160..1fb791c 100644 --- a/core/java/android/view/inputmethod/InputMethodManager.java +++ b/core/java/android/view/inputmethod/InputMethodManager.java @@ -281,12 +281,7 @@ public final class InputMethodManager { boolean mFullscreenMode; // ----------------------------------------------------------- - - /** - * This is the root view of the overall window that currently has input - * method focus. - */ - View mCurRootView; + /** * This is the view that should currently be served by an input method, * regardless of the state of setting that up. @@ -806,7 +801,6 @@ public final class InputMethodManager { * Disconnect any existing input connection, clearing the served view. */ void finishInputLocked() { - mCurRootView = null; mNextServedView = null; if (mServedView != null) { if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); @@ -1290,10 +1284,9 @@ public final class InputMethodManager { void focusInLocked(View view) { if (DEBUG) Log.v(TAG, "focusIn: " + view); - if (mCurRootView != view.getRootView()) { - // This is a request from a window that isn't in the window with - // IME focus, so ignore it. - if (DEBUG) Log.v(TAG, "Not IME target window, ignoring"); + if (!view.hasWindowFocus()) { + // This is a request from a window that doesn't have window focus, so ignore it. + if (DEBUG) Log.v(TAG, "Not focused window, ignoring"); return; } @@ -1310,16 +1303,9 @@ public final class InputMethodManager { if (DEBUG) Log.v(TAG, "focusOut: " + view + " mServedView=" + mServedView + " winFocus=" + view.hasWindowFocus()); - if (mServedView != view) { - // The following code would auto-hide the IME if we end up - // with no more views with focus. This can happen, however, - // whenever we go into touch mode, so it ends up hiding - // at times when we don't really want it to. For now it - // seems better to just turn it all off. - if (false && view.hasWindowFocus()) { - mNextServedView = null; - scheduleCheckFocusLocked(view); - } + if (mServedView == view && view.hasWindowFocus()) { + mNextServedView = null; + scheduleCheckFocusLocked(view); } } } @@ -1442,13 +1428,6 @@ public final class InputMethodManager { } } - /** @hide */ - public void startGettingWindowFocus(View rootView) { - synchronized (mH) { - mCurRootView = rootView; - } - } - /** * Report the current selection range. * @@ -2156,7 +2135,6 @@ public final class InputMethodManager { + " mBindSequence=" + mBindSequence + " mCurId=" + mCurId); p.println(" mCurMethod=" + mCurMethod); - p.println(" mCurRootView=" + mCurRootView); p.println(" mServedView=" + mServedView); p.println(" mNextServedView=" + mNextServedView); p.println(" mServedConnecting=" + mServedConnecting); diff --git a/core/java/android/webkit/FindActionModeCallback.java b/core/java/android/webkit/FindActionModeCallback.java index ab6a2f9..6fef2d6 100644 --- a/core/java/android/webkit/FindActionModeCallback.java +++ b/core/java/android/webkit/FindActionModeCallback.java @@ -154,7 +154,6 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher, } public void showSoftInput() { - mInput.startGettingWindowFocus(mEditText.getRootView()); mInput.focusIn(mEditText); mInput.showSoftInput(mEditText, 0); } diff --git a/core/java/android/webkit/WebMessagePort.java b/core/java/android/webkit/WebMessagePort.java index eab27bd..5f33c7b 100644 --- a/core/java/android/webkit/WebMessagePort.java +++ b/core/java/android/webkit/WebMessagePort.java @@ -16,12 +16,13 @@ package android.webkit; +import android.annotation.SystemApi; import android.os.Handler; /** - * The Java representation of the HTML5 Message Port. See - * https://html.spec.whatwg.org/multipage/comms.html#messageport - * for definition of MessagePort in HTML5. + * The Java representation of the + * <a href="https://html.spec.whatwg.org/multipage/comms.html#messageport"> + * HTML5 message ports.</a> * * A Message port represents one endpoint of a Message Channel. In Android * webview, there is no separate Message Channel object. When a message channel @@ -32,6 +33,19 @@ import android.os.Handler; * When a message port is first created or received via transfer, it does not * have a WebMessageCallback to receive web messages. The messages are queued until * a WebMessageCallback is set. + * + * A message port should be closed when it is not used by the embedder application + * anymore. A closed port cannot be transferred or cannot be reopened to send + * messages. Close can be called multiple times. + * + * When a port is transferred to JS, it cannot be used to send or receive messages + * at the Java side anymore. Different from HTML5 Spec, a port cannot be transferred + * if one of these has ever happened: i. a message callback was set, ii. a message was + * posted on it. A transferred port cannot be closed by the application, since + * the ownership is also transferred. + * + * It is possible to transfer both ports of a channel to JS, for example for + * communication between subframes. */ public abstract class WebMessagePort { @@ -55,6 +69,13 @@ public abstract class WebMessagePort { } /** + * Constructor. + * @hide + */ + @SystemApi + public WebMessagePort() { } + + /** * Post a WebMessage to the entangled port. * * @param message the message from Java to JS. diff --git a/core/java/android/webkit/WebResourceError.java b/core/java/android/webkit/WebResourceError.java index 080d174..11f1b6f 100644 --- a/core/java/android/webkit/WebResourceError.java +++ b/core/java/android/webkit/WebResourceError.java @@ -16,6 +16,8 @@ package android.webkit; +import android.annotation.SystemApi; + /** * Encapsulates information about errors occured during loading of web resources. See * {@link WebViewClient#onReceivedError(WebView, WebResourceRequest, WebResourceError) WebViewClient.onReceivedError(WebView, WebResourceRequest, WebResourceError)} @@ -35,5 +37,12 @@ public abstract class WebResourceError { * * @return The description of the error */ - public abstract String getDescription(); + public abstract CharSequence getDescription(); + + /** + * This class can not be subclassed by applications. + * @hide + */ + @SystemApi + public WebResourceError() {} } diff --git a/core/java/android/webkit/WebResourceResponse.java b/core/java/android/webkit/WebResourceResponse.java index a42aaa7..3a925c8 100644 --- a/core/java/android/webkit/WebResourceResponse.java +++ b/core/java/android/webkit/WebResourceResponse.java @@ -20,12 +20,15 @@ import java.io.InputStream; import java.io.StringBufferInputStream; import java.util.Map; +import android.annotation.SystemApi; + /** * Encapsulates a resource response. Applications can return an instance of this * class from {@link WebViewClient#shouldInterceptRequest} to provide a custom * response when the WebView requests a particular resource. */ public class WebResourceResponse extends WebResourceResponseBase { + private boolean mImmutable; private String mMimeType; private String mEncoding; private int mStatusCode; @@ -80,13 +83,15 @@ public class WebResourceResponse extends WebResourceResponseBase { * @param mimeType The resource response's MIME type */ public void setMimeType(String mimeType) { + checkImmutable(); mMimeType = mimeType; } /** - * {@inheritDoc} + * Gets the resource response's MIME type. + * + * @return The resource response's MIME type */ - @Override public String getMimeType() { return mMimeType; } @@ -98,13 +103,15 @@ public class WebResourceResponse extends WebResourceResponseBase { * @param encoding The resource response's encoding */ public void setEncoding(String encoding) { + checkImmutable(); mEncoding = encoding; } /** - * {@inheritDoc} + * Gets the resource response's encoding. + * + * @return The resource response's encoding */ - @Override public String getEncoding() { return mEncoding; } @@ -118,6 +125,7 @@ public class WebResourceResponse extends WebResourceResponseBase { * and not empty. */ public void setStatusCodeAndReasonPhrase(int statusCode, String reasonPhrase) { + checkImmutable(); if (statusCode < 100) throw new IllegalArgumentException("statusCode can't be less than 100."); if (statusCode > 599) @@ -140,17 +148,19 @@ public class WebResourceResponse extends WebResourceResponseBase { } /** - * {@inheritDoc} + * Gets the resource response's status code. + * + * @return The resource response's status code. */ - @Override public int getStatusCode() { return mStatusCode; } /** - * {@inheritDoc} + * Gets the description of the resource response's status code. + * + * @return The description of the resource response's status code. */ - @Override public String getReasonPhrase() { return mReasonPhrase; } @@ -161,13 +171,15 @@ public class WebResourceResponse extends WebResourceResponseBase { * @param headers Mapping of header name -> header value. */ public void setResponseHeaders(Map<String, String> headers) { + checkImmutable(); mResponseHeaders = headers; } /** - * {@inheritDoc} + * Gets the headers for the resource response. + * + * @return The headers for the resource response. */ - @Override public Map<String, String> getResponseHeaders() { return mResponseHeaders; } @@ -180,6 +192,7 @@ public class WebResourceResponse extends WebResourceResponseBase { * StringBufferInputStream. */ public void setData(InputStream data) { + checkImmutable(); // If data is (or is a subclass of) StringBufferInputStream if (data != null && StringBufferInputStream.class.isAssignableFrom(data.getClass())) { throw new IllegalArgumentException("StringBufferInputStream is deprecated and must " + @@ -189,10 +202,32 @@ public class WebResourceResponse extends WebResourceResponseBase { } /** - * {@inheritDoc} + * Gets the input stream that provides the resource response's data. + * + * @return The input stream that provides the resource response's data */ - @Override public InputStream getData() { return mInputStream; } + + /** + * The internal version of the constructor that doesn't perform arguments checks. + * @hide + */ + @SystemApi + public WebResourceResponse(boolean immutable, String mimeType, String encoding, int statusCode, + String reasonPhrase, Map<String, String> responseHeaders, InputStream data) { + mImmutable = immutable; + mMimeType = mimeType; + mEncoding = encoding; + mStatusCode = statusCode; + mReasonPhrase = reasonPhrase; + mResponseHeaders = responseHeaders; + mInputStream = data; + } + + private void checkImmutable() { + if (mImmutable) + throw new IllegalStateException("This WebResourceResponse instance is immutable"); + } } diff --git a/core/java/android/webkit/WebResourceResponseBase.java b/core/java/android/webkit/WebResourceResponseBase.java index cffde82..69eb397 100644 --- a/core/java/android/webkit/WebResourceResponseBase.java +++ b/core/java/android/webkit/WebResourceResponseBase.java @@ -16,53 +16,9 @@ package android.webkit; -import java.io.InputStream; -import java.util.Map; - /** - * Encapsulates a resource response received from the server. - * This is an abstract class used by WebView callbacks. + * This class will be deleted after updated WebView.apk will be submitted + * into the Android tree. */ public abstract class WebResourceResponseBase { - /** - * Gets the resource response's MIME type. - * - * @return The resource response's MIME type - */ - public abstract String getMimeType(); - - /** - * Gets the resource response's encoding. - * - * @return The resource response's encoding - */ - public abstract String getEncoding(); - - /** - * Gets the resource response's status code. - * - * @return The resource response's status code. - */ - public abstract int getStatusCode(); - - /** - * Gets the description of the resource response's status code. - * - * @return The description of the resource response's status code. - */ - public abstract String getReasonPhrase(); - - /** - * Gets the headers for the resource response. - * - * @return The headers for the resource response. - */ - public abstract Map<String, String> getResponseHeaders(); - - /** - * Gets the input stream that provides the resource response's data. - * - * @return The input stream that provides the resource response's data - */ - public abstract InputStream getData(); } diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java index 453e4f5..cfa347f 100644 --- a/core/java/android/webkit/WebSettings.java +++ b/core/java/android/webkit/WebSettings.java @@ -1340,11 +1340,13 @@ public abstract class WebSettings { * offscreen but attached to a window. Turning this on can avoid * rendering artifacts when animating an offscreen WebView on-screen. * Offscreen WebViews in this mode use more memory. The default value is - * false. + * false.<br> * Please follow these guidelines to limit memory usage: - * - WebView size should be not be larger than the device screen size. - * - Limit use of this mode to a small number of WebViews. Use it for + * <ul> + * <li> WebView size should be not be larger than the device screen size. + * <li> Limit use of this mode to a small number of WebViews. Use it for * visible WebViews and WebViews about to be animated to visible. + * </ul> */ public abstract void setOffscreenPreRaster(boolean enabled); diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index f990e41..92615f3 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -1838,8 +1838,9 @@ public class WebView extends AbsoluteLayout /** * Creates a message channel to communicate with JS and returns the message * ports that represent the endpoints of this message channel. The HTML5 message - * channel functionality is described here: - * https://html.spec.whatwg.org/multipage/comms.html#messagechannel + * channel functionality is described + * <a href="https://html.spec.whatwg.org/multipage/comms.html#messagechannel">here + * </a> * * The returned message channels are entangled and already in started state. * @@ -1853,11 +1854,14 @@ public class WebView extends AbsoluteLayout /** * Post a message to main frame. The embedded application can restrict the * messages to a certain target origin. See - * https://html.spec.whatwg.org/multipage/comms.html#posting-messages - * for how target origin can be used. + * <a href="https://html.spec.whatwg.org/multipage/comms.html#posting-messages"> + * HTML5 spec</a> for how target origin can be used. * * @param message the WebMessage - * @param targetOrigin the target origin. + * @param targetOrigin the target origin. This is the origin of the page + * that is intended to receive the message. For best security + * practices, the user should not specify a wildcard (*) when + * specifying the origin. */ public void postMessageToMainFrame(WebMessage message, Uri targetOrigin) { checkThread(); diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java index 3a40de6..feed2b8 100644 --- a/core/java/android/webkit/WebViewClient.java +++ b/core/java/android/webkit/WebViewClient.java @@ -233,11 +233,20 @@ public class WebViewClient { public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) { if (request.isForMainFrame()) { onReceivedError(view, - error.getErrorCode(), error.getDescription(), request.getUrl().toString()); + error.getErrorCode(), error.getDescription().toString(), + request.getUrl().toString()); } } /** + * This method will be deleted after updated WebView.apk will be submitted + * into the Android tree. + */ + public void onReceivedHttpError( + WebView view, WebResourceRequest request, WebResourceResponseBase errorResponse) { + } + + /** * Notify the host application that an HTTP error has been received from the server while * loading a resource. HTTP errors have status codes >= 400. This callback will be called * for any resource (iframe, image, etc), not just for the main page. Thus, it is recommended to @@ -248,7 +257,7 @@ public class WebViewClient { * @param errorResponse Information about the error occured. */ public void onReceivedHttpError( - WebView view, WebResourceRequest request, WebResourceResponseBase errorResponse) { + WebView view, WebResourceRequest request, WebResourceResponse errorResponse) { } /** diff --git a/core/java/android/widget/ActivityChooserModel.java b/core/java/android/widget/ActivityChooserModel.java index 51174c3..75c857c 100644 --- a/core/java/android/widget/ActivityChooserModel.java +++ b/core/java/android/widget/ActivityChooserModel.java @@ -40,6 +40,7 @@ import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.math.BigDecimal; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -991,7 +992,7 @@ public class ActivityChooserModel extends DataSetObservable { } try { XmlPullParser parser = Xml.newPullParser(); - parser.setInput(fis, null); + parser.setInput(fis, StandardCharsets.UTF_8.name()); int type = XmlPullParser.START_DOCUMENT; while (type != XmlPullParser.END_DOCUMENT && type != XmlPullParser.START_TAG) { @@ -1074,7 +1075,7 @@ public class ActivityChooserModel extends DataSetObservable { try { serializer.setOutput(fos, null); - serializer.startDocument("UTF-8", true); + serializer.startDocument(StandardCharsets.UTF_8.name(), true); serializer.startTag(null, TAG_HISTORICAL_RECORDS); final int recordCount = historicalRecords.size(); diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index c81e2f0..5e33f83 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -286,6 +286,13 @@ public class Editor { mUndoManager.redo(owners, 1); // Redo 1 action. } + void replace() { + int middle = (mTextView.getSelectionStart() + mTextView.getSelectionEnd()) / 2; + stopSelectionActionMode(); + Selection.setSelection((Spannable) mTextView.getText(), middle); + showSuggestions(); + } + void onAttachedToWindow() { if (mShowErrorAfterAttach) { showError(); @@ -689,14 +696,12 @@ public class Editor { // FIXME - For this and similar methods we're not doing anything to check if there's // a LocaleSpan in the text, this may be something we should try handling or checking for. int retOffset = getWordIteratorWithText().prevBoundary(offset); - if (isPunctBoundaryBehind(retOffset, true /* isStart */)) { - // If we're on a punctuation boundary we should continue to get the - // previous offset until we're not longer on a punctuation boundary. - retOffset = getWordIteratorWithText().prevBoundary(retOffset); - while (!isPunctBoundaryBehind(retOffset, false /* isStart */) - && retOffset != BreakIterator.DONE) { - retOffset = getWordIteratorWithText().prevBoundary(retOffset); - } + if (getWordIteratorWithText().isOnPunctuation(retOffset)) { + // On punctuation boundary or within group of punctuation, find punctuation start. + retOffset = getWordIteratorWithText().getPunctuationBeginning(offset); + } else { + // Not on a punctuation boundary, find the word start. + retOffset = getWordIteratorWithText().getBeginning(offset); } if (retOffset == BreakIterator.DONE) { return offset; @@ -706,14 +711,12 @@ public class Editor { private int getWordEnd(int offset) { int retOffset = getWordIteratorWithText().nextBoundary(offset); - if (isPunctBoundaryForward(retOffset, true /* isStart */)) { - // If we're on a punctuation boundary we should continue to get the - // next offset until we're no longer on a punctuation boundary. - retOffset = getWordIteratorWithText().nextBoundary(retOffset); - while (!isPunctBoundaryForward(retOffset, false /* isStart */) - && retOffset != BreakIterator.DONE) { - retOffset = getWordIteratorWithText().nextBoundary(retOffset); - } + if (getWordIteratorWithText().isAfterPunctuation(retOffset)) { + // On punctuation boundary or within group of punctuation, find punctuation end. + retOffset = getWordIteratorWithText().getPunctuationEnd(offset); + } else { + // Not on a punctuation boundary, find the word end. + retOffset = getWordIteratorWithText().getEnd(offset); } if (retOffset == BreakIterator.DONE) { return offset; @@ -722,70 +725,6 @@ public class Editor { } /** - * Checks for punctuation boundaries for the provided offset and the - * previous character. - * - * @param offset The offset to check from. - * @param isStart Whether the boundary being checked for is at the start or - * end of a punctuation sequence. - * @return Whether this is a punctuation boundary. - */ - private boolean isPunctBoundaryBehind(int offset, boolean isStart) { - CharSequence text = mTextView.getText(); - if (offset == BreakIterator.DONE || offset > text.length() || offset == 0) { - return false; - } - int cp = Character.codePointAt(text, offset); - int prevCp = Character.codePointBefore(text, offset); - - if (isPunctuation(cp)) { - // If it's the start, the current cp and the prev cp are - // punctuation. If it's at the end of a punctuation sequence the - // current is punctuation and the prev is not. - return isStart ? isPunctuation(prevCp) : !isPunctuation(prevCp); - } - return false; - } - - /** - * Checks for punctuation boundaries for the provided offset and the next - * character. - * - * @param offset The offset to check from. - * @param isStart Whether the boundary being checked for is at the start or - * end of a punctuation sequence. - * @return Whether this is a punctuation boundary. - */ - private boolean isPunctBoundaryForward(int offset, boolean isStart) { - CharSequence text = mTextView.getText(); - if (offset == BreakIterator.DONE || offset > text.length() || offset == 0) { - return false; - } - int cp = Character.codePointBefore(text, offset); - int nextCpOffset = Math.min(offset + Character.charCount(cp), text.length() - 1); - int nextCp = Character.codePointBefore(text, nextCpOffset); - - if (isPunctuation(cp)) { - // If it's the start, the current cp and the next cp are - // punctuation. If it's at the end of a punctuation sequence the - // current is punctuation and the next is not. - return isStart ? isPunctuation(nextCp) : !isPunctuation(nextCp); - } - return false; - } - - private boolean isPunctuation(int cp) { - int type = Character.getType(cp); - return (type == Character.CONNECTOR_PUNCTUATION || - type == Character.DASH_PUNCTUATION || - type == Character.END_PUNCTUATION || - type == Character.FINAL_QUOTE_PUNCTUATION || - type == Character.INITIAL_QUOTE_PUNCTUATION || - type == Character.OTHER_PUNCTUATION || - type == Character.START_PUNCTUATION); - } - - /** * Adjusts selection to the word under last touch offset. Return true if the operation was * successfully performed. */ @@ -1867,6 +1806,7 @@ public class Editor { // When the cursor moves, the word that was typed may need spell check mSpellChecker.onSelectionChanged(); } + if (!extractedTextModeWillBeStarted()) { if (isCursorInsideEasyCorrectionSpan()) { mShowSuggestionRunnable = new Runnable() { @@ -3185,10 +3125,6 @@ public class Editor { mCustomSelectionActionModeCallback.onActionItemClicked(mode, item)) { return true; } - if (item.getItemId() == TextView.ID_REPLACE) { - onReplace(); - return true; - } return mTextView.onTextContextMenuItem(item.getItemId()); } @@ -3262,13 +3198,6 @@ public class Editor { } } - private void onReplace() { - int middle = (mTextView.getSelectionStart() + mTextView.getSelectionEnd()) / 2; - stopSelectionActionMode(); - Selection.setSelection((Spannable) mTextView.getText(), middle); - showSuggestions(); - } - /** * A listener to call {@link InputMethodManager#updateCursorAnchorInfo(View, CursorAnchorInfo)} * while the input method is requesting the cursor/anchor position. Does nothing as long as @@ -3793,9 +3722,9 @@ public class Editor { public void show() { super.show(); - final long durationSinceCutOrCopy = - SystemClock.uptimeMillis() - TextView.LAST_CUT_OR_COPY_TIME; - if (durationSinceCutOrCopy < RECENT_CUT_COPY_DURATION) { + final long durationSinceLastCutCopyOrTextChanged = + SystemClock.uptimeMillis() - TextView.sLastCutCopyOrTextChangedTime; + if (durationSinceLastCutCopyOrTextChanged < RECENT_CUT_COPY_DURATION) { startSelectionActionModeWithoutSelection(); } @@ -3923,8 +3852,8 @@ public class Editor { private class SelectionStartHandleView extends HandleView { // Indicates whether the cursor is making adjustments within a word. private boolean mInWord = false; - // Offset to track difference between touch and word boundary. - protected int mTouchWordOffset; + // Difference between touch position and word boundary position. + private float mTouchWordDelta; public SelectionStartHandleView(Drawable drawableLtr, Drawable drawableRtl) { super(drawableLtr, drawableRtl); @@ -3976,18 +3905,36 @@ public class Editor { offset = mPreviousOffset; } } - mTouchWordOffset = Math.max(trueOffset - offset, 0); - positionCursor = true; - } else if (offset - mTouchWordOffset > mPreviousOffset || currLine > mPrevLine) { - // User is shrinking the selection. - if (currLine > mPrevLine) { - // We're on a different line, so we'll snap to word boundaries. - offset = start; - mTouchWordOffset = Math.max(trueOffset - offset, 0); + final Layout layout = mTextView.getLayout(); + if (layout != null && offset < trueOffset) { + final float adjustedX = layout.getPrimaryHorizontal(offset); + mTouchWordDelta = + mTextView.convertToLocalHorizontalCoordinate(x) - adjustedX; } else { - offset -= mTouchWordOffset; + mTouchWordDelta = 0.0f; } positionCursor = true; + } else { + final int adjustedOffset = + mTextView.getOffsetAtCoordinate(currLine, x - mTouchWordDelta); + if (adjustedOffset > mPreviousOffset || currLine > mPrevLine) { + // User is shrinking the selection. + if (currLine > mPrevLine) { + // We're on a different line, so we'll snap to word boundaries. + offset = start; + final Layout layout = mTextView.getLayout(); + if (layout != null && offset < trueOffset) { + final float adjustedX = layout.getPrimaryHorizontal(offset); + mTouchWordDelta = + mTextView.convertToLocalHorizontalCoordinate(x) - adjustedX; + } else { + mTouchWordDelta = 0.0f; + } + } else { + offset = adjustedOffset; + } + positionCursor = true; + } } // Handles can not cross and selection is at least one character. @@ -4002,7 +3949,7 @@ public class Editor { } else { offset = alteredOffset; } - mTouchWordOffset = 0; + mTouchWordDelta = 0.0f; } mInWord = !getWordIteratorWithText().isBoundary(offset); positionAtCursorOffset(offset, false); @@ -4014,7 +3961,7 @@ public class Editor { boolean superResult = super.onTouchEvent(event); if (event.getActionMasked() == MotionEvent.ACTION_UP) { // Reset the touch word offset when the user has lifted their finger. - mTouchWordOffset = 0; + mTouchWordDelta = 0.0f; } return superResult; } @@ -4023,8 +3970,8 @@ public class Editor { private class SelectionEndHandleView extends HandleView { // Indicates whether the cursor is making adjustments within a word. private boolean mInWord = false; - // Offset to track difference between touch and word boundary. - protected int mTouchWordOffset; + // Difference between touch position and word boundary position. + private float mTouchWordDelta; public SelectionEndHandleView(Drawable drawableLtr, Drawable drawableRtl) { super(drawableLtr, drawableRtl); @@ -4076,18 +4023,36 @@ public class Editor { offset = mPreviousOffset; } } - mTouchWordOffset = Math.max(offset - trueOffset, 0); - positionCursor = true; - } else if (offset + mTouchWordOffset < mPreviousOffset || currLine < mPrevLine) { - // User is shrinking the selection. - if (currLine < mPrevLine) { - // We're on a different line, so we'll snap to word boundaries. - offset = end; - mTouchWordOffset = Math.max(offset - trueOffset, 0); + final Layout layout = mTextView.getLayout(); + if (layout != null && offset > trueOffset) { + final float adjustedX = layout.getPrimaryHorizontal(offset); + mTouchWordDelta = + adjustedX - mTextView.convertToLocalHorizontalCoordinate(x); } else { - offset += mTouchWordOffset; + mTouchWordDelta = 0.0f; } positionCursor = true; + } else { + final int adjustedOffset = + mTextView.getOffsetAtCoordinate(currLine, x + mTouchWordDelta); + if (adjustedOffset < mPreviousOffset || currLine < mPrevLine) { + // User is shrinking the selection. + if (currLine < mPrevLine) { + // We're on a different line, so we'll snap to word boundaries. + offset = end; + final Layout layout = mTextView.getLayout(); + if (layout != null && offset > trueOffset) { + final float adjustedX = layout.getPrimaryHorizontal(offset); + mTouchWordDelta = + adjustedX - mTextView.convertToLocalHorizontalCoordinate(x); + } else { + mTouchWordDelta = 0.0f; + } + } else { + offset = adjustedOffset; + } + positionCursor = true; + } } if (positionCursor) { @@ -4102,7 +4067,7 @@ public class Editor { } else { offset = Math.min(alteredOffset, length); } - mTouchWordOffset = 0; + mTouchWordDelta = 0.0f; } mInWord = !getWordIteratorWithText().isBoundary(offset); positionAtCursorOffset(offset, false); @@ -4114,7 +4079,7 @@ public class Editor { boolean superResult = super.onTouchEvent(event); if (event.getActionMasked() == MotionEvent.ACTION_UP) { // Reset the touch word offset when the user has lifted their finger. - mTouchWordOffset = 0; + mTouchWordDelta = 0.0f; } return superResult; } @@ -4149,6 +4114,10 @@ public class Editor { public void show() { getHandle().show(); + + if (mSelectionModifierCursorController != null) { + mSelectionModifierCursorController.hide(); + } } public void hide() { diff --git a/core/java/android/widget/ImageView.java b/core/java/android/widget/ImageView.java index 05059bc..73a873a 100644 --- a/core/java/android/widget/ImageView.java +++ b/core/java/android/widget/ImageView.java @@ -36,8 +36,10 @@ import android.graphics.RectF; import android.graphics.Xfermode; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; +import android.graphics.drawable.Icon; import android.net.Uri; import android.os.Build; +import android.os.Handler; import android.text.TextUtils; import android.util.AttributeSet; import android.util.Log; @@ -462,6 +464,21 @@ public class ImageView extends View { } /** + * Sets the content of this ImageView to the specified Icon. + * + * <p class="note">Depending on the Icon type, this may do Bitmap reading and decoding + * on the UI thread, which can cause UI jank. If that's a concern, consider using + * {@link Icon#loadDrawableAsync(Context, Icon.OnDrawableLoadedListener, Handler)} + * and then {@link #setImageDrawable(android.graphics.drawable.Drawable)} instead.</p> + * + * @param icon an Icon holding the desired image + */ + @android.view.RemotableViewMethod + public void setImageIcon(Icon icon) { + setImageDrawable(icon.loadDrawable(mContext)); + } + + /** * Applies a tint to the image drawable. Does not modify the current tint * mode, which is {@link PorterDuff.Mode#SRC_IN} by default. * <p> diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index a10be11..dc75fd0 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -35,6 +35,7 @@ import android.graphics.Bitmap; import android.graphics.PorterDuff; import android.graphics.Rect; import android.graphics.drawable.Drawable; +import android.graphics.drawable.Icon; import android.net.Uri; import android.os.Build; import android.os.Bundle; @@ -1072,6 +1073,7 @@ public class RemoteViews implements Parcelable, Filter { static final int BUNDLE = 13; static final int INTENT = 14; static final int COLOR_STATE_LIST = 15; + static final int ICON = 16; String methodName; int type; @@ -1150,6 +1152,10 @@ public class RemoteViews implements Parcelable, Filter { this.value = ColorStateList.CREATOR.createFromParcel(in); } break; + case ICON: + if (in.readInt() != 0) { + this.value = Icon.CREATOR.createFromParcel(in); + } default: break; } @@ -1225,6 +1231,13 @@ public class RemoteViews implements Parcelable, Filter { if (this.value != null) { ((ColorStateList)this.value).writeToParcel(out, flags); } + break; + case ICON: + out.writeInt(this.value != null ? 1 : 0); + if (this.value != null) { + ((Icon)this.value).writeToParcel(out, flags); + } + break; default: break; } @@ -1262,6 +1275,8 @@ public class RemoteViews implements Parcelable, Filter { return Intent.class; case COLOR_STATE_LIST: return ColorStateList.class; + case ICON: + return Icon.class; default: return null; } @@ -2082,6 +2097,16 @@ public class RemoteViews implements Parcelable, Filter { } /** + * Equivalent to calling ImageView.setImageIcon + * + * @param viewId The id of the view whose bitmap should change + * @param icon The new Icon for the ImageView + */ + public void setImageViewIcon(int viewId, Icon icon) { + setIcon(viewId, "setImageIcon", icon); + } + + /** * Equivalent to calling AdapterView.setEmptyView * * @param viewId The id of the view on which to set the empty view @@ -2519,6 +2544,17 @@ public class RemoteViews implements Parcelable, Filter { } /** + * Call a method taking one Icon on a view in the layout for this RemoteViews. + * + * @param viewId The id of the view on which to call the method. + * @param methodName The name of the method to call. + * @param value The {@link android.graphics.drawable.Icon} to pass the method. + */ + public void setIcon(int viewId, String methodName, Icon value) { + addAction(new ReflectionAction(viewId, methodName, ReflectionAction.ICON, value)); + } + + /** * Equivalent to calling View.setContentDescription(CharSequence). * * @param viewId The id of the view whose content description should change. diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index ee8e5c4..3df218e 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -292,8 +292,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener // New state used to change background based on whether this TextView is multiline. private static final int[] MULTILINE_STATE_SET = { R.attr.state_multiline }; - // System wide time for last cut or copy action. - static long LAST_CUT_OR_COPY_TIME; + // System wide time for last cut, copy or text changed action. + static long sLastCutCopyOrTextChangedTime; /** * @hide @@ -8005,6 +8005,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener * through a thunk. */ void sendAfterTextChanged(Editable text) { + sLastCutCopyOrTextChangedTime = 0; + if (mListeners != null) { final ArrayList<TextWatcher> list = mListeners; final int count = list.size(); @@ -9051,6 +9053,12 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener stopSelectionActionMode(); return true; + case ID_REPLACE: + if (mEditor != null) { + mEditor.replace(); + } + return true; + case ID_SHARE: shareSelectedText(); return true; @@ -9285,7 +9293,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener } } stopSelectionActionMode(); - LAST_CUT_OR_COPY_TIME = 0; + sLastCutCopyOrTextChangedTime = 0; } } @@ -9305,7 +9313,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener ClipboardManager clipboard = (ClipboardManager) getContext(). getSystemService(Context.CLIPBOARD_SERVICE); clipboard.setPrimaryClip(clip); - LAST_CUT_OR_COPY_TIME = SystemClock.uptimeMillis(); + sLastCutCopyOrTextChangedTime = SystemClock.uptimeMillis(); } /** diff --git a/core/java/com/android/internal/logging/MetricsConstants.java b/core/java/com/android/internal/logging/MetricsConstants.java index 6aa81ce..65dc743 100644 --- a/core/java/com/android/internal/logging/MetricsConstants.java +++ b/core/java/com/android/internal/logging/MetricsConstants.java @@ -21,7 +21,9 @@ package com.android.internal.logging; * @hide */ public interface MetricsConstants { - // These constants must match those in the analytic pipeline. + // These constants must match those in the analytic pipeline, do not edit. + public static final int VIEW_UNKNOWN = 0; + public static final int MAIN_SETTINGS = 1; public static final int ACCESSIBILITY = 2; public static final int ACCESSIBILITY_CAPTION_PROPERTIES = 3; public static final int ACCESSIBILITY_SERVICE = 4; @@ -32,16 +34,11 @@ public interface MetricsConstants { public static final int ACCOUNTS_ACCOUNT_SYNC = 9; public static final int ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10; public static final int ACCOUNTS_MANAGE_ACCOUNTS = 11; - public static final int ACTION_WIFI_ADD_NETWORK = 134; - public static final int ACTION_WIFI_CONNECT = 135; - public static final int ACTION_WIFI_FORCE_SCAN = 136; - public static final int ACTION_WIFI_FORGET = 137; - public static final int ACTION_WIFI_OFF = 138; - public static final int ACTION_WIFI_ON = 139; public static final int APN = 12; public static final int APN_EDITOR = 13; + public static final int APP_OPS_DETAILS = 14; + public static final int APP_OPS_SUMMARY = 15; public static final int APPLICATION = 16; - public static final int APPLICATIONS_ADVANCED = 130; public static final int APPLICATIONS_APP_LAUNCH = 17; public static final int APPLICATIONS_APP_PERMISSION = 18; public static final int APPLICATIONS_APP_STORAGE = 19; @@ -49,8 +46,6 @@ public interface MetricsConstants { public static final int APPLICATIONS_PROCESS_STATS_DETAIL = 21; public static final int APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22; public static final int APPLICATIONS_PROCESS_STATS_UI = 23; - public static final int APP_OPS_DETAILS = 14; - public static final int APP_OPS_SUMMARY = 15; public static final int BLUETOOTH = 24; public static final int BLUETOOTH_DEVICE_PICKER = 25; public static final int BLUETOOTH_DEVICE_PROFILES = 26; @@ -69,9 +64,7 @@ public interface MetricsConstants { public static final int DEVELOPMENT = 39; public static final int DEVICEINFO = 40; public static final int DEVICEINFO_IMEI_INFORMATION = 41; - @Deprecated public static final int DEVICEINFO_MEMORY = 42; - public static final int DEVICEINFO_STORAGE = 42; public static final int DEVICEINFO_SIM_STATUS = 43; public static final int DEVICEINFO_STATUS = 44; public static final int DEVICEINFO_USB = 45; @@ -86,21 +79,15 @@ public interface MetricsConstants { public static final int FUELGAUGE_POWER_USAGE_SUMMARY = 54; public static final int HOME = 55; public static final int ICC_LOCK = 56; - public static final int INPUTMETHOD_KEYBOARD = 58; public static final int INPUTMETHOD_LANGUAGE = 57; + public static final int INPUTMETHOD_KEYBOARD = 58; public static final int INPUTMETHOD_SPELL_CHECKERS = 59; public static final int INPUTMETHOD_SUBTYPE_ENABLER = 60; public static final int INPUTMETHOD_USER_DICTIONARY = 61; public static final int INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62; public static final int LOCATION = 63; public static final int LOCATION_MODE = 64; - public static final int LOCATION_SCANNING = 131; - public static final int MAIN_SETTINGS = 1; public static final int MANAGE_APPLICATIONS = 65; - public static final int MANAGE_APPLICATIONS_ALL = 132; - public static final int MANAGE_APPLICATIONS_NOTIFICATIONS = 133; - public static final int MANAGE_DOMAIN_URLS = 143; - public static final int MANAGE_PERMISSIONS = 140; public static final int MASTER_CLEAR = 66; public static final int MASTER_CLEAR_CONFIRM = 67; public static final int NET_DATA_USAGE_METERED = 68; @@ -108,37 +95,16 @@ public interface MetricsConstants { public static final int NFC_PAYMENT = 70; public static final int NOTIFICATION = 71; public static final int NOTIFICATION_APP_NOTIFICATION = 72; - public static final int NOTIFICATION_ITEM = 128; - public static final int NOTIFICATION_ITEM_ACTION = 129; public static final int NOTIFICATION_OTHER_SOUND = 73; - public static final int NOTIFICATION_PANEL = 127; public static final int NOTIFICATION_REDACTION = 74; public static final int NOTIFICATION_STATION = 75; public static final int NOTIFICATION_ZEN_MODE = 76; - public static final int NOTIFICATION_ZEN_MODE_AUTOMATION = 142; - public static final int NOTIFICATION_ZEN_MODE_PRIORITY = 141; public static final int OWNER_INFO = 77; public static final int PRINT_JOB_SETTINGS = 78; public static final int PRINT_SERVICE_SETTINGS = 79; public static final int PRINT_SETTINGS = 80; public static final int PRIVACY = 81; public static final int PROXY_SELECTOR = 82; - public static final int QS_AIRPLANEMODE = 112; - public static final int QS_BLUETOOTH = 113; - public static final int QS_CAST = 114; - public static final int QS_CELLULAR = 115; - public static final int QS_COLORINVERSION = 116; - public static final int QS_DATAUSAGEDETAIL = 117; - public static final int QS_DND = 118; - public static final int QS_FLASHLIGHT = 119; - public static final int QS_HOTSPOT = 120; - public static final int QS_INTENT = 121; - public static final int QS_LOCATION = 122; - public static final int QS_PANEL = 111; - public static final int QS_ROTATIONLOCK = 123; - public static final int QS_USERDETAIL = 125; - public static final int QS_USERDETAILITE = 124; - public static final int QS_WIFI = 126; public static final int RESET_NETWORK = 83; public static final int RESET_NETWORK_CONFIRM = 84; public static final int RUNNING_SERVICE_DETAILS = 85; @@ -147,25 +113,102 @@ public interface MetricsConstants { public static final int SIM = 88; public static final int TESTING = 89; public static final int TETHER = 90; - public static final int TRUSTED_CREDENTIALS = 92; public static final int TRUST_AGENT = 91; + public static final int TRUSTED_CREDENTIALS = 92; public static final int TTS_ENGINE_SETTINGS = 93; public static final int TTS_TEXT_TO_SPEECH = 94; public static final int USAGE_ACCESS = 95; public static final int USER = 96; public static final int USERS_APP_RESTRICTIONS = 97; public static final int USER_DETAILS = 98; - public static final int VIEW_UNKNOWN = 0; public static final int VOICE_INPUT = 99; public static final int VPN = 100; public static final int WALLPAPER_TYPE = 101; public static final int WFD_WIFI_DISPLAY = 102; public static final int WIFI = 103; public static final int WIFI_ADVANCED = 104; - public static final int WIFI_APITEST = 107; public static final int WIFI_CALLING = 105; + public static final int WIFI_SAVED_ACCESS_POINTS = 106; + public static final int WIFI_APITEST = 107; public static final int WIFI_INFO = 108; public static final int WIFI_P2P = 109; - public static final int WIFI_SAVED_ACCESS_POINTS = 106; public static final int WIRELESS = 110; + public static final int QS_PANEL = 111; + public static final int QS_AIRPLANEMODE = 112; + public static final int QS_BLUETOOTH = 113; + public static final int QS_CAST = 114; + public static final int QS_CELLULAR = 115; + public static final int QS_COLORINVERSION = 116; + public static final int QS_DATAUSAGEDETAIL = 117; + public static final int QS_DND = 118; + public static final int QS_FLASHLIGHT = 119; + public static final int QS_HOTSPOT = 120; + public static final int QS_INTENT = 121; + public static final int QS_LOCATION = 122; + public static final int QS_ROTATIONLOCK = 123; + public static final int QS_USERDETAILITE = 124; + public static final int QS_USERDETAIL = 125; + public static final int QS_WIFI = 126; + public static final int NOTIFICATION_PANEL = 127; + public static final int NOTIFICATION_ITEM = 128; + public static final int NOTIFICATION_ITEM_ACTION = 129; + public static final int APPLICATIONS_ADVANCED = 130; + public static final int LOCATION_SCANNING = 131; + public static final int MANAGE_APPLICATIONS_ALL = 132; + public static final int MANAGE_APPLICATIONS_NOTIFICATIONS = 133; + public static final int ACTION_WIFI_ADD_NETWORK = 134; + public static final int ACTION_WIFI_CONNECT = 135; + public static final int ACTION_WIFI_FORCE_SCAN = 136; + public static final int ACTION_WIFI_FORGET = 137; + public static final int ACTION_WIFI_OFF = 138; + public static final int ACTION_WIFI_ON = 139; + public static final int MANAGE_PERMISSIONS = 140; + public static final int NOTIFICATION_ZEN_MODE_PRIORITY = 141; + public static final int NOTIFICATION_ZEN_MODE_AUTOMATION = 142; + public static final int MANAGE_DOMAIN_URLS = 143; + public static final int NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; + public static final int NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; + public static final int NOTIFICATION_ZEN_MODE_EVENT_RULE = 146; + public static final int ACTION_BAN_APP_NOTES = 147; + public static final int ACTION_DISMISS_ALL_NOTES = 148; + public static final int QS_DND_DETAILS = 149; + public static final int QS_BLUETOOTH_DETAILS = 150; + public static final int QS_CAST_DETAILS = 151; + public static final int QS_WIFI_DETAILS = 152; + public static final int QS_WIFI_TOGGLE = 153; + public static final int QS_BLUETOOTH_TOGGLE = 154; + public static final int QS_CELLULAR_TOGGLE = 155; + public static final int QS_SWITCH_USER = 156; + public static final int QS_CAST_SELECT = 157; + public static final int QS_CAST_DISCONNECT = 158; + public static final int ACTION_BLUETOOTH_TOGGLE = 159; + public static final int ACTION_BLUETOOTH_SCAN = 160; + public static final int ACTION_BLUETOOTH_RENAME = 161; + public static final int ACTION_BLUETOOTH_FILES = 162; + public static final int QS_DND_TIME = 163; + public static final int QS_DND_CONDITION_SELECT = 164; + public static final int QS_DND_ZEN_SELECT = 165; + public static final int QS_DND_TOGGLE = 166; + public static final int ACTION_ZEN_ALLOW_REMINDERS = 167; + public static final int ACTION_ZEN_ALLOW_EVENTS = 168; + public static final int ACTION_ZEN_ALLOW_MESSAGES = 169; + public static final int ACTION_ZEN_ALLOW_CALLS = 170; + public static final int ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; + public static final int ACTION_ZEN_ADD_RULE = 172; + public static final int ACTION_ZEN_ADD_RULE_OK = 173; + public static final int ACTION_ZEN_DELETE_RULE = 174; + public static final int ACTION_ZEN_DELETE_RULE_OK = 175; + public static final int ACTION_ZEN_ENABLE_RULE = 176; + public static final int ACTION_AIRPLANE_TOGGLE = 177; + public static final int ACTION_CELL_DATA_TOGGLE = 178; + public static final int NOTIFICATION_ACCESS = 179; + public static final int NOTIFICATION_ZEN_MODE_ACCESS = 180; + public static final int APPLICATIONS_DEFAULT_APPS = 181; + public static final int APPLICATIONS_STORAGE_APPS = 182; + public static final int APPLICATIONS_USAGE_ACCESS_DETAIL = 183; + public static final int APPLICATIONS_HIGH_POWER_APPS = 184; + public static final int FUELGAUGE_HIGH_POWER_DETAILS = 185; + + //aliases + public static final int DEVICEINFO_STORAGE = DEVICEINFO_MEMORY; } diff --git a/core/java/com/android/internal/logging/MetricsLogger.java b/core/java/com/android/internal/logging/MetricsLogger.java index cf25cef..230d96d 100644 --- a/core/java/com/android/internal/logging/MetricsLogger.java +++ b/core/java/com/android/internal/logging/MetricsLogger.java @@ -26,45 +26,7 @@ import android.view.View; * @hide */ public class MetricsLogger implements MetricsConstants { - // These constants are temporary, they should migrate to MetricsConstants. - - public static final int NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; - public static final int NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; - public static final int ACTION_BAN_APP_NOTES = 146; - public static final int NOTIFICATION_ZEN_MODE_EVENT_RULE = 147; - public static final int ACTION_DISMISS_ALL_NOTES = 148; - public static final int QS_DND_DETAILS = 149; - public static final int QS_BLUETOOTH_DETAILS = 150; - public static final int QS_CAST_DETAILS = 151; - public static final int QS_WIFI_DETAILS = 152; - public static final int QS_WIFI_TOGGLE = 153; - public static final int QS_BLUETOOTH_TOGGLE = 154; - public static final int QS_CELLULAR_TOGGLE = 155; - public static final int QS_SWITCH_USER = 156; - public static final int QS_CAST_SELECT = 157; - public static final int QS_CAST_DISCONNECT = 158; - public static final int ACTION_BLUETOOTH_TOGGLE = 159; - public static final int ACTION_BLUETOOTH_SCAN = 160; - public static final int ACTION_BLUETOOTH_RENAME = 161; - public static final int ACTION_BLUETOOTH_FILES = 162; - public static final int QS_DND_TIME = 163; - public static final int QS_DND_CONDITION_SELECT = 164; - public static final int QS_DND_ZEN_SELECT = 165; - public static final int QS_DND_TOGGLE = 166; - public static final int ACTION_ZEN_ALLOW_REMINDERS = 167; - public static final int ACTION_ZEN_ALLOW_EVENTS = 168; - public static final int ACTION_ZEN_ALLOW_MESSAGES = 169; - public static final int ACTION_ZEN_ALLOW_CALLS = 170; - public static final int ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; - public static final int ACTION_ZEN_ADD_RULE = 172; - public static final int ACTION_ZEN_ADD_RULE_OK = 173; - public static final int ACTION_ZEN_DELETE_RULE = 174; - public static final int ACTION_ZEN_DELETE_RULE_OK = 175; - public static final int ACTION_ZEN_ENABLE_RULE = 176; - public static final int ACTION_AIRPLANE_TOGGLE = 177; - public static final int ACTION_CELL_DATA_TOGGLE = 178; - public static final int NOTIFICATION_ACCESS = 179; - public static final int NOTIFICATION_ZEN_MODE_ACCESS = 180; + // Temporary constants go here, to await migration to MetricsConstants. public static void visible(Context context, int category) throws IllegalArgumentException { if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) { diff --git a/core/java/com/android/internal/os/BatteryStatsImpl.java b/core/java/com/android/internal/os/BatteryStatsImpl.java index 405c861..c2212f7 100644 --- a/core/java/com/android/internal/os/BatteryStatsImpl.java +++ b/core/java/com/android/internal/os/BatteryStatsImpl.java @@ -78,6 +78,7 @@ import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintWriter; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; @@ -302,9 +303,6 @@ public final class BatteryStatsImpl extends BatteryStats { String mStartPlatformVersion; String mEndPlatformVersion; - long mLastRecordedClockTime; - long mLastRecordedClockRealtime; - long mUptime; long mUptimeStart; long mRealtime; @@ -2329,8 +2327,6 @@ public final class BatteryStatsImpl extends BatteryStats { if (dataSize == 0) { // The history is currently empty; we need it to start with a time stamp. cur.currentTime = System.currentTimeMillis(); - mLastRecordedClockTime = cur.currentTime; - mLastRecordedClockRealtime = elapsedRealtimeMs; addHistoryBufferLocked(elapsedRealtimeMs, uptimeMs, HistoryItem.CMD_RESET, cur); } addHistoryBufferLocked(elapsedRealtimeMs, uptimeMs, HistoryItem.CMD_UPDATE, cur); @@ -2503,8 +2499,6 @@ public final class BatteryStatsImpl extends BatteryStats { mHistoryOverflow = false; mActiveHistoryStates = 0xffffffff; mActiveHistoryStates2 = 0xffffffff; - mLastRecordedClockTime = 0; - mLastRecordedClockRealtime = 0; } public void updateTimeBasesLocked(boolean unplugged, boolean screenOff, long uptime, @@ -2554,18 +2548,6 @@ public final class BatteryStatsImpl extends BatteryStats { final long currentTime = System.currentTimeMillis(); final long elapsedRealtime = SystemClock.elapsedRealtime(); final long uptime = SystemClock.uptimeMillis(); - if (isStartClockTimeValid()) { - // Has the time changed sufficiently that it is really worth recording? - if (mLastRecordedClockTime != 0) { - long expectedClockTime = mLastRecordedClockTime - + (elapsedRealtime - mLastRecordedClockRealtime); - if (currentTime >= (expectedClockTime-500) - && currentTime <= (expectedClockTime+500)) { - // Not sufficiently changed, skip! - return; - } - } - } recordCurrentTimeChangeLocked(currentTime, elapsedRealtime, uptime); if (isStartClockTimeValid()) { mStartClockTime = currentTime; @@ -6833,7 +6815,7 @@ public final class BatteryStatsImpl extends BatteryStats { final ByteArrayOutputStream memStream = new ByteArrayOutputStream(); try { XmlSerializer out = new FastXmlSerializer(); - out.setOutput(memStream, "utf-8"); + out.setOutput(memStream, StandardCharsets.UTF_8.name()); writeDailyItemsLocked(out); BackgroundThread.getHandler().post(new Runnable() { @Override @@ -6919,7 +6901,7 @@ public final class BatteryStatsImpl extends BatteryStats { } try { XmlPullParser parser = Xml.newPullParser(); - parser.setInput(stream, null); + parser.setInput(stream, StandardCharsets.UTF_8.name()); readDailyItemsLocked(parser); } catch (XmlPullParserException e) { } finally { @@ -7941,8 +7923,6 @@ public final class BatteryStatsImpl extends BatteryStats { boolean reset) { mRecordingHistory = true; mHistoryCur.currentTime = System.currentTimeMillis(); - mLastRecordedClockTime = mHistoryCur.currentTime; - mLastRecordedClockRealtime = elapsedRealtimeMs; addHistoryBufferLocked(elapsedRealtimeMs, uptimeMs, reset ? HistoryItem.CMD_RESET : HistoryItem.CMD_CURRENT_TIME, mHistoryCur); @@ -7956,8 +7936,6 @@ public final class BatteryStatsImpl extends BatteryStats { final long uptimeMs) { if (mRecordingHistory) { mHistoryCur.currentTime = currentTime; - mLastRecordedClockTime = currentTime; - mLastRecordedClockRealtime = elapsedRealtimeMs; addHistoryBufferLocked(elapsedRealtimeMs, uptimeMs, HistoryItem.CMD_CURRENT_TIME, mHistoryCur); mHistoryCur.currentTime = 0; @@ -7967,8 +7945,6 @@ public final class BatteryStatsImpl extends BatteryStats { private void recordShutdownLocked(final long elapsedRealtimeMs, final long uptimeMs) { if (mRecordingHistory) { mHistoryCur.currentTime = System.currentTimeMillis(); - mLastRecordedClockTime = mHistoryCur.currentTime; - mLastRecordedClockRealtime = elapsedRealtimeMs; addHistoryBufferLocked(elapsedRealtimeMs, uptimeMs, HistoryItem.CMD_SHUTDOWN, mHistoryCur); mHistoryCur.currentTime = 0; diff --git a/core/java/com/android/internal/statusbar/StatusBarIcon.java b/core/java/com/android/internal/statusbar/StatusBarIcon.java index e0792cb..4693d4b 100644 --- a/core/java/com/android/internal/statusbar/StatusBarIcon.java +++ b/core/java/com/android/internal/statusbar/StatusBarIcon.java @@ -16,40 +16,46 @@ package com.android.internal.statusbar; +import android.graphics.drawable.Icon; import android.os.Parcel; import android.os.Parcelable; import android.os.UserHandle; public class StatusBarIcon implements Parcelable { - public String iconPackage; public UserHandle user; - public int iconId; + public Icon icon; public int iconLevel; public boolean visible = true; public int number; public CharSequence contentDescription; - public StatusBarIcon(String iconPackage, UserHandle user, int iconId, int iconLevel, int number, + public StatusBarIcon(UserHandle user, Icon icon, int iconLevel, int number, CharSequence contentDescription) { - this.iconPackage = iconPackage; this.user = user; - this.iconId = iconId; + this.icon = icon; this.iconLevel = iconLevel; this.number = number; this.contentDescription = contentDescription; } + public StatusBarIcon(String iconPackage, UserHandle user, + int iconId, int iconLevel, int number, + CharSequence contentDescription) { + this(user, Icon.createWithResource(iconPackage, iconId), + iconLevel, number, contentDescription); + } + @Override public String toString() { - return "StatusBarIcon(pkg=" + this.iconPackage + "user=" + user.getIdentifier() - + " id=0x" + Integer.toHexString(this.iconId) + return "StatusBarIcon(icon=" + this.icon + + " user=" + user.getIdentifier() + " level=" + this.iconLevel + " visible=" + visible + " num=" + this.number + " )"; } @Override public StatusBarIcon clone() { - StatusBarIcon that = new StatusBarIcon(this.iconPackage, this.user, this.iconId, + StatusBarIcon that = new StatusBarIcon(this.user, this.icon, this.iconLevel, this.number, this.contentDescription); that.visible = this.visible; return that; @@ -63,9 +69,8 @@ public class StatusBarIcon implements Parcelable { } public void readFromParcel(Parcel in) { - this.iconPackage = in.readString(); + this.icon = (Icon) in.readParcelable(null); this.user = (UserHandle) in.readParcelable(null); - this.iconId = in.readInt(); this.iconLevel = in.readInt(); this.visible = in.readInt() != 0; this.number = in.readInt(); @@ -73,9 +78,8 @@ public class StatusBarIcon implements Parcelable { } public void writeToParcel(Parcel out, int flags) { - out.writeString(this.iconPackage); + out.writeParcelable(this.icon, 0); out.writeParcelable(this.user, 0); - out.writeInt(this.iconId); out.writeInt(this.iconLevel); out.writeInt(this.visible ? 1 : 0); out.writeInt(this.number); diff --git a/core/java/com/android/internal/util/NotificationColorUtil.java b/core/java/com/android/internal/util/NotificationColorUtil.java index 3249ea3..6076973 100644 --- a/core/java/com/android/internal/util/NotificationColorUtil.java +++ b/core/java/com/android/internal/util/NotificationColorUtil.java @@ -24,6 +24,7 @@ import android.graphics.Color; import android.graphics.drawable.AnimationDrawable; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; +import android.graphics.drawable.Icon; import android.graphics.drawable.VectorDrawable; import android.text.SpannableStringBuilder; import android.text.Spanned; @@ -129,6 +130,20 @@ public class NotificationColorUtil { } } + public boolean isGrayscaleIcon(Context context, Icon icon) { + if (icon == null) { + return false; + } + switch (icon.getType()) { + case Icon.TYPE_BITMAP: + return isGrayscaleIcon(icon.getBitmap()); + case Icon.TYPE_RESOURCE: + return isGrayscaleIcon(context, icon.getResId()); + default: + return false; + } + } + /** * Checks whether a drawable with a resoure id is a small grayscale icon. * Grayscale here means "very close to a perfect gray"; icon means "no larger than 64dp". diff --git a/core/java/com/android/internal/util/XmlUtils.java b/core/java/com/android/internal/util/XmlUtils.java index 0350d61..32746c2 100644 --- a/core/java/com/android/internal/util/XmlUtils.java +++ b/core/java/com/android/internal/util/XmlUtils.java @@ -33,6 +33,7 @@ import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ProtocolException; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; @@ -182,7 +183,7 @@ public class XmlUtils { public static final void writeMapXml(Map val, OutputStream out) throws XmlPullParserException, java.io.IOException { XmlSerializer serializer = new FastXmlSerializer(); - serializer.setOutput(out, "utf-8"); + serializer.setOutput(out, StandardCharsets.UTF_8.name()); serializer.startDocument(null, true); serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true); writeMapXml(val, null, serializer); @@ -205,7 +206,7 @@ public class XmlUtils { throws XmlPullParserException, java.io.IOException { XmlSerializer serializer = Xml.newSerializer(); - serializer.setOutput(out, "utf-8"); + serializer.setOutput(out, StandardCharsets.UTF_8.name()); serializer.startDocument(null, true); serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true); writeListXml(val, null, serializer); @@ -732,7 +733,7 @@ public class XmlUtils { throws XmlPullParserException, java.io.IOException { XmlPullParser parser = Xml.newPullParser(); - parser.setInput(in, null); + parser.setInput(in, StandardCharsets.UTF_8.name()); return (HashMap<String, ?>) readValueXml(parser, new String[1]); } @@ -753,7 +754,7 @@ public class XmlUtils { throws XmlPullParserException, java.io.IOException { XmlPullParser parser = Xml.newPullParser(); - parser.setInput(in, null); + parser.setInput(in, StandardCharsets.UTF_8.name()); return (ArrayList)readValueXml(parser, new String[1]); } diff --git a/core/java/com/android/internal/view/BaseIWindow.java b/core/java/com/android/internal/view/BaseIWindow.java index 993ab58..e27ba13 100644 --- a/core/java/com/android/internal/view/BaseIWindow.java +++ b/core/java/com/android/internal/view/BaseIWindow.java @@ -100,7 +100,11 @@ public class BaseIWindow extends IWindow.Stub { } @Override - public void doneAnimating() { + public void onAnimationStarted(int remainingFrameCount) { + } + + @Override + public void onAnimationStopped() { } @Override diff --git a/core/java/org/apache/http/conn/ssl/SSLSocketFactory.java b/core/java/org/apache/http/conn/ssl/SSLSocketFactory.java index 4d53d40..250932b 100644 --- a/core/java/org/apache/http/conn/ssl/SSLSocketFactory.java +++ b/core/java/org/apache/http/conn/ssl/SSLSocketFactory.java @@ -329,6 +329,14 @@ public class SSLSocketFactory implements LayeredSocketFactory { sslsock.setSoTimeout(soTimeout); try { + // BEGIN android-added + /* + * Make sure we have started the handshake before verifying. + * Otherwise when we go to the hostname verifier, it directly calls + * SSLSocket#getSession() which swallows SSL handshake errors. + */ + sslsock.startHandshake(); + // END android-added hostnameVerifier.verify(host, sslsock); // verifyHostName() didn't blowup - good! } catch (IOException iox) { @@ -389,6 +397,14 @@ public class SSLSocketFactory implements LayeredSocketFactory { port, autoClose ); + // BEGIN android-added + /* + * Make sure we have started the handshake before verifying. + * Otherwise when we go to the hostname verifier, it directly calls + * SSLSocket#getSession() which swallows SSL handshake errors. + */ + sslSocket.startHandshake(); + // END android-added hostnameVerifier.verify(host, sslSocket); // verifyHostName() didn't blowup - good! return sslSocket; diff --git a/core/jni/android/opengl/util.cpp b/core/jni/android/opengl/util.cpp index bce2b33..40029bb 100644 --- a/core/jni/android/opengl/util.cpp +++ b/core/jni/android/opengl/util.cpp @@ -150,7 +150,105 @@ int visibilityTest(float* pWS, float* pPositions, int positionsLength, return result; } -template<class JArray, class T> +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jint mode) { + _env->ReleaseByteArrayElements(array, data, mode); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jint mode) { + _env->ReleaseBooleanArrayElements(array, data, mode); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jint mode) { + _env->ReleaseCharArrayElements(array, data, mode); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jint mode) { + _env->ReleaseShortArrayElements(array, data, mode); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jint mode) { + _env->ReleaseIntArrayElements(array, data, mode); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jint mode) { + _env->ReleaseLongArrayElements(array, data, mode); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jint mode) { + _env->ReleaseFloatArrayElements(array, data, mode); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jint mode) { + _env->ReleaseDoubleArrayElements(array, data, mode); + } +}; + +template<class JArray, class T, class ArrayGetter, class ArrayReleaser> class ArrayHelper { public: ArrayHelper(JNIEnv* env, JArray ref, jint offset, jint minSize) { @@ -164,7 +262,7 @@ public: ~ArrayHelper() { if (mBase) { - mEnv->ReleasePrimitiveArrayCritical(mRef, mBase, mReleaseParam); + ArrayReleaser::Release(mEnv, mRef, mBase, mReleaseParam); } } @@ -195,7 +293,7 @@ public: // Bind the array. void bind() { - mBase = (T*) mEnv->GetPrimitiveArrayCritical(mRef, (jboolean *) 0); + mBase = (T*) ArrayGetter::Get(mEnv, mRef, (jboolean *) 0); mData = mBase + mOffset; } @@ -215,10 +313,10 @@ private: int mReleaseParam; }; -typedef ArrayHelper<jfloatArray, float> FloatArrayHelper; -typedef ArrayHelper<jcharArray, unsigned short> UnsignedShortArrayHelper; -typedef ArrayHelper<jintArray, int> IntArrayHelper; -typedef ArrayHelper<jbyteArray, unsigned char> ByteArrayHelper; +typedef ArrayHelper<jfloatArray, float, FloatArrayGetter, FloatArrayReleaser> FloatArrayHelper; +typedef ArrayHelper<jcharArray, unsigned short, CharArrayGetter, CharArrayReleaser> UnsignedShortArrayHelper; +typedef ArrayHelper<jintArray, int, IntArrayGetter, IntArrayReleaser> IntArrayHelper; +typedef ArrayHelper<jbyteArray, unsigned char, ByteArrayGetter, ByteArrayReleaser> ByteArrayHelper; inline float distance2(float x, float y, float z) { return x * x + y * y + z * z; diff --git a/core/jni/android_media_AudioTrack.cpp b/core/jni/android_media_AudioTrack.cpp index aeb058b..daafd5e 100644 --- a/core/jni/android_media_AudioTrack.cpp +++ b/core/jni/android_media_AudioTrack.cpp @@ -702,18 +702,40 @@ static void android_media_AudioTrack_set_playback_params(JNIEnv *env, jobject t return; } - PlaybackParams pbs; - pbs.fillFromJobject(env, gPlaybackParamsFields, params); + PlaybackParams pbp; + pbp.fillFromJobject(env, gPlaybackParamsFields, params); ALOGV("setPlaybackParams: %d:%f %d:%f %d:%u %d:%u", - pbs.speedSet, pbs.audioRate.mSpeed, - pbs.pitchSet, pbs.audioRate.mPitch, - pbs.audioFallbackModeSet, pbs.audioRate.mFallbackMode, - pbs.audioStretchModeSet, pbs.audioRate.mStretchMode); - - if (lpTrack->setPlaybackRate(pbs.audioRate) != OK) { - jniThrowException(env, "java/lang/IllegalArgumentException", - "arguments out of range"); + pbp.speedSet, pbp.audioRate.mSpeed, + pbp.pitchSet, pbp.audioRate.mPitch, + pbp.audioFallbackModeSet, pbp.audioRate.mFallbackMode, + pbp.audioStretchModeSet, pbp.audioRate.mStretchMode); + + // to simulate partially set params, we do a read-modify-write. + // TODO: pass in the valid set mask into AudioTrack. + AudioPlaybackRate rate = lpTrack->getPlaybackRate(); + bool updatedRate = false; + if (pbp.speedSet) { + rate.mSpeed = pbp.audioRate.mSpeed; + updatedRate = true; + } + if (pbp.pitchSet) { + rate.mPitch = pbp.audioRate.mPitch; + updatedRate = true; + } + if (pbp.audioFallbackModeSet) { + rate.mFallbackMode = pbp.audioRate.mFallbackMode; + updatedRate = true; + } + if (pbp.audioStretchModeSet) { + rate.mStretchMode = pbp.audioRate.mStretchMode; + updatedRate = true; + } + if (updatedRate) { + if (lpTrack->setPlaybackRate(rate) != OK) { + jniThrowException(env, "java/lang/IllegalArgumentException", + "arguments out of range"); + } } } diff --git a/core/jni/android_opengl_EGL14.cpp b/core/jni/android_opengl_EGL14.cpp index 36f7963..9f5b3bc 100644 --- a/core/jni/android_opengl_EGL14.cpp +++ b/core/jni/android_opengl_EGL14.cpp @@ -204,7 +204,7 @@ android_eglInitialize goto exit; } major_base = (EGLint *) - _env->GetPrimitiveArrayCritical(major_ref, (jboolean *)0); + _env->GetIntArrayElements(major_ref, (jboolean *)0); major = major_base + majorOffset; if (!minor_ref) { @@ -227,7 +227,7 @@ android_eglInitialize goto exit; } minor_base = (EGLint *) - _env->GetPrimitiveArrayCritical(minor_ref, (jboolean *)0); + _env->GetIntArrayElements(minor_ref, (jboolean *)0); minor = minor_base + minorOffset; _returnValue = eglInitialize( @@ -238,11 +238,11 @@ android_eglInitialize exit: if (minor_base) { - _env->ReleasePrimitiveArrayCritical(minor_ref, minor_base, + _env->ReleaseIntArrayElements(minor_ref, (jint*)minor_base, _exception ? JNI_ABORT: 0); } if (major_base) { - _env->ReleasePrimitiveArrayCritical(major_ref, major_base, + _env->ReleaseIntArrayElements(major_ref, (jint*)major_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -324,7 +324,7 @@ android_eglGetConfigs } _num_configRemaining = _env->GetArrayLength(num_config_ref) - num_configOffset; num_config_base = (EGLint *) - _env->GetPrimitiveArrayCritical(num_config_ref, (jboolean *)0); + _env->GetIntArrayElements(num_config_ref, (jboolean *)0); num_config = num_config_base + num_configOffset; _returnValue = eglGetConfigs( @@ -336,7 +336,7 @@ android_eglGetConfigs exit: if (num_config_base) { - _env->ReleasePrimitiveArrayCritical(num_config_ref, num_config_base, + _env->ReleaseIntArrayElements(num_config_ref, (jint*)num_config_base, _exception ? JNI_ABORT: 0); } if (configs) { @@ -385,7 +385,7 @@ android_eglChooseConfig } _attrib_listRemaining = _env->GetArrayLength(attrib_list_ref) - attrib_listOffset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + attrib_listOffset; attrib_list_sentinel = false; for (int i = _attrib_listRemaining - 1; i >= 0; i--) { @@ -442,7 +442,7 @@ android_eglChooseConfig goto exit; } num_config_base = (EGLint *) - _env->GetPrimitiveArrayCritical(num_config_ref, (jboolean *)0); + _env->GetIntArrayElements(num_config_ref, (jboolean *)0); num_config = num_config_base + num_configOffset; _returnValue = eglChooseConfig( @@ -455,11 +455,11 @@ android_eglChooseConfig exit: if (num_config_base) { - _env->ReleasePrimitiveArrayCritical(num_config_ref, num_config_base, + _env->ReleaseIntArrayElements(num_config_ref, (jint*)num_config_base, _exception ? JNI_ABORT: 0); } if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, (jint*)attrib_list_base, JNI_ABORT); } if (configs) { @@ -509,7 +509,7 @@ android_eglGetConfigAttrib goto exit; } value_base = (EGLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; _returnValue = eglGetConfigAttrib( @@ -521,7 +521,7 @@ android_eglGetConfigAttrib exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -573,7 +573,7 @@ not_valid_surface: _remaining = _env->GetArrayLength(attrib_list_ref) - offset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + offset; attrib_list_sentinel = 0; for (int i = _remaining - 1; i >= 0; i--) { @@ -598,7 +598,7 @@ not_valid_surface: exit: if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, attrib_list_base, JNI_ABORT); } if (_exception) { @@ -655,7 +655,7 @@ not_valid_surface: _remaining = _env->GetArrayLength(attrib_list_ref) - offset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + offset; attrib_list_sentinel = 0; for (int i = _remaining - 1; i >= 0; i--) { @@ -680,7 +680,7 @@ not_valid_surface: exit: if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, attrib_list_base, JNI_ABORT); } if (_exception) { @@ -717,7 +717,7 @@ android_eglCreatePbufferSurface } _remaining = _env->GetArrayLength(attrib_list_ref) - offset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + offset; attrib_list_sentinel = false; for (int i = _remaining - 1; i >= 0; i--) { @@ -741,7 +741,7 @@ android_eglCreatePbufferSurface exit: if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, (jint*)attrib_list_base, JNI_ABORT); } if (_exception) { @@ -808,7 +808,7 @@ android_eglQuerySurface goto exit; } value_base = (EGLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; _returnValue = eglQuerySurface( @@ -820,7 +820,7 @@ android_eglQuerySurface exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -896,7 +896,7 @@ android_eglCreatePbufferFromClientBuffer } _remaining = _env->GetArrayLength(attrib_list_ref) - offset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + offset; attrib_list_sentinel = false; for (int i = _remaining - 1; i >= 0; i--) { @@ -922,7 +922,7 @@ android_eglCreatePbufferFromClientBuffer exit: if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, attrib_list_base, JNI_ABORT); } if (_exception) { @@ -940,7 +940,6 @@ android_eglCreatePbufferFromClientBufferInt } return android_eglCreatePbufferFromClientBuffer(_env, _this, dpy, buftype, buffer, config, attrib_list_ref, offset); } - /* EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value ) */ static jboolean android_eglSurfaceAttrib @@ -1034,7 +1033,7 @@ android_eglCreateContext } _remaining = _env->GetArrayLength(attrib_list_ref) - offset; attrib_list_base = (EGLint *) - _env->GetPrimitiveArrayCritical(attrib_list_ref, (jboolean *)0); + _env->GetIntArrayElements(attrib_list_ref, (jboolean *)0); attrib_list = attrib_list_base + offset; attrib_list_sentinel = false; for (int i = _remaining - 1; i >= 0; i--) { @@ -1059,7 +1058,7 @@ android_eglCreateContext exit: if (attrib_list_base) { - _env->ReleasePrimitiveArrayCritical(attrib_list_ref, attrib_list_base, + _env->ReleaseIntArrayElements(attrib_list_ref, (jint*)attrib_list_base, JNI_ABORT); } if (_exception) { @@ -1165,7 +1164,7 @@ android_eglQueryContext goto exit; } value_base = (EGLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; _returnValue = eglQueryContext( @@ -1177,7 +1176,7 @@ android_eglQueryContext exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, _exception ? JNI_ABORT: 0); } if (_exception) { diff --git a/core/jni/android_opengl_GLES10.cpp b/core/jni/android_opengl_GLES10.cpp index c9b68bf..dac98de 100644 --- a/core/jni/android_opengl_GLES10.cpp +++ b/core/jni/android_opengl_GLES10.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -515,7 +629,7 @@ android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -544,7 +658,7 @@ android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -637,7 +751,7 @@ android_glDeleteTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glDeleteTextures( @@ -647,7 +761,7 @@ android_glDeleteTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, JNI_ABORT); } if (_exception) { @@ -662,12 +776,12 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -675,7 +789,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glDeleteTextures( @@ -685,7 +799,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -771,7 +885,7 @@ android_glDrawElements__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *indices = (GLvoid *) 0; - indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset); + indices = (GLvoid *)getPointer(_env, indices_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count) { _exception = 1; _exceptionType = "java/lang/ArrayIndexOutOfBoundsException"; @@ -882,7 +996,7 @@ android_glFogfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glFogfv( @@ -892,7 +1006,7 @@ android_glFogfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -907,12 +1021,12 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_FOG_COLOR) @@ -931,7 +1045,7 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glFogfv( @@ -941,7 +1055,7 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1000,7 +1114,7 @@ android_glFogxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glFogxv( @@ -1010,7 +1124,7 @@ android_glFogxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1025,12 +1139,12 @@ android_glFogxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_FOG_COLOR) @@ -1049,7 +1163,7 @@ android_glFogxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glFogxv( @@ -1059,7 +1173,7 @@ android_glFogxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1134,7 +1248,7 @@ android_glGenTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glGenTextures( @@ -1144,7 +1258,7 @@ android_glGenTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1159,12 +1273,12 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1172,7 +1286,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glGenTextures( @@ -1182,7 +1296,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1202,16 +1316,17 @@ android_glGetError__ static void android_glGetIntegerv__I_3II (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) { - get<jintArray, GLint, glGetIntegerv>(_env, _this, pname, params_ref, offset); + get<jintArray, IntArrayGetter, jint*, IntArrayReleaser, GLint, glGetIntegerv>( + _env, _this, pname, params_ref, offset); } /* void glGetIntegerv ( GLenum pname, GLint *params ) */ static void android_glGetIntegerv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLint, glGetIntegerv>(_env, _this, pname, params_buf); + getarray<GLint, jintArray, IntArrayGetter, jint*, IntArrayReleaser, glGetIntegerv>( + _env, _this, pname, params_buf); } - /* const GLubyte * glGetString ( GLenum name ) */ static jstring android_glGetString(JNIEnv* _env, jobject, jint name) { const char* chars = (const char*) glGetString((GLenum) name); @@ -1279,7 +1394,7 @@ android_glLightModelfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightModelfv( @@ -1289,7 +1404,7 @@ android_glLightModelfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -1304,12 +1419,12 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_LIGHT_MODEL_AMBIENT) @@ -1328,7 +1443,7 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glLightModelfv( @@ -1338,7 +1453,7 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1397,7 +1512,7 @@ android_glLightModelxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightModelxv( @@ -1407,7 +1522,7 @@ android_glLightModelxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1422,12 +1537,12 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_LIGHT_MODEL_AMBIENT) @@ -1446,7 +1561,7 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightModelxv( @@ -1456,7 +1571,7 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1530,7 +1645,7 @@ android_glLightfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightfv( @@ -1541,7 +1656,7 @@ android_glLightfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -1556,12 +1671,12 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_DIRECTION) @@ -1594,7 +1709,7 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glLightfv( @@ -1605,7 +1720,7 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1679,7 +1794,7 @@ android_glLightxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightxv( @@ -1690,7 +1805,7 @@ android_glLightxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1705,12 +1820,12 @@ android_glLightxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_DIRECTION) @@ -1743,7 +1858,7 @@ android_glLightxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightxv( @@ -1754,7 +1869,7 @@ android_glLightxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1811,7 +1926,7 @@ android_glLoadMatrixf___3FI } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetFloatArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glLoadMatrixf( @@ -1820,7 +1935,7 @@ android_glLoadMatrixf___3FI exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseFloatArrayElements(m_ref, (jfloat*)m_base, JNI_ABORT); } if (_exception) { @@ -1832,21 +1947,21 @@ exit: static void android_glLoadMatrixf__Ljava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *m = (GLfloat *) 0; - m = (GLfloat *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfloat *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); m = (GLfloat *) (_mBase + _bufferOffset); } glLoadMatrixf( (GLfloat *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)m, JNI_ABORT); } } @@ -1875,7 +1990,7 @@ android_glLoadMatrixx___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glLoadMatrixx( @@ -1884,7 +1999,7 @@ android_glLoadMatrixx___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -1896,21 +2011,21 @@ exit: static void android_glLoadMatrixx__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glLoadMatrixx( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -1988,7 +2103,7 @@ android_glMaterialfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glMaterialfv( @@ -1999,7 +2114,7 @@ android_glMaterialfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2014,12 +2129,12 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_AMBIENT) @@ -2050,7 +2165,7 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glMaterialfv( @@ -2061,7 +2176,7 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2133,7 +2248,7 @@ android_glMaterialxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glMaterialxv( @@ -2144,7 +2259,7 @@ android_glMaterialxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2159,12 +2274,12 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_AMBIENT) @@ -2195,7 +2310,7 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glMaterialxv( @@ -2206,7 +2321,7 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2247,7 +2362,7 @@ android_glMultMatrixf___3FI } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetFloatArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glMultMatrixf( @@ -2256,7 +2371,7 @@ android_glMultMatrixf___3FI exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseFloatArrayElements(m_ref, (jfloat*)m_base, JNI_ABORT); } if (_exception) { @@ -2268,21 +2383,21 @@ exit: static void android_glMultMatrixf__Ljava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *m = (GLfloat *) 0; - m = (GLfloat *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfloat *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); m = (GLfloat *) (_mBase + _bufferOffset); } glMultMatrixf( (GLfloat *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)m, JNI_ABORT); } } @@ -2311,7 +2426,7 @@ android_glMultMatrixx___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glMultMatrixx( @@ -2320,7 +2435,7 @@ android_glMultMatrixx___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -2332,21 +2447,21 @@ exit: static void android_glMultMatrixx__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glMultMatrixx( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -2520,7 +2635,7 @@ android_glReadPixels__IIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *pixels = (GLvoid *) 0; - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); pixels = (GLvoid *) (_pixelsBase + _bufferOffset); @@ -2734,7 +2849,7 @@ android_glTexEnvfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnvfv( @@ -2745,7 +2860,7 @@ android_glTexEnvfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2760,12 +2875,12 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -2784,7 +2899,7 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexEnvfv( @@ -2795,7 +2910,7 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2855,7 +2970,7 @@ android_glTexEnvxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnvxv( @@ -2866,7 +2981,7 @@ android_glTexEnvxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2881,12 +2996,12 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -2905,7 +3020,7 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexEnvxv( @@ -2916,7 +3031,7 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2933,7 +3048,7 @@ android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); @@ -2987,7 +3102,7 @@ android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); diff --git a/core/jni/android_opengl_GLES10Ext.cpp b/core/jni/android_opengl_GLES10Ext.cpp index 4f1eaa5..95be11b 100644 --- a/core/jni/android_opengl_GLES10Ext.cpp +++ b/core/jni/android_opengl_GLES10Ext.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -363,7 +477,7 @@ android_glQueryMatrixxOES___3II_3II goto exit; } mantissa_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(mantissa_ref, (jboolean *)0); + _env->GetIntArrayElements(mantissa_ref, (jboolean *)0); mantissa = mantissa_base + mantissaOffset; if (!exponent_ref) { @@ -386,7 +500,7 @@ android_glQueryMatrixxOES___3II_3II goto exit; } exponent_base = (GLint *) - _env->GetPrimitiveArrayCritical(exponent_ref, (jboolean *)0); + _env->GetIntArrayElements(exponent_ref, (jboolean *)0); exponent = exponent_base + exponentOffset; _returnValue = glQueryMatrixxOES( @@ -396,11 +510,11 @@ android_glQueryMatrixxOES___3II_3II exit: if (exponent_base) { - _env->ReleasePrimitiveArrayCritical(exponent_ref, exponent_base, + _env->ReleaseIntArrayElements(exponent_ref, (jint*)exponent_base, _exception ? JNI_ABORT: 0); } if (mantissa_base) { - _env->ReleasePrimitiveArrayCritical(mantissa_ref, mantissa_base, + _env->ReleaseIntArrayElements(mantissa_ref, (jint*)mantissa_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -416,9 +530,9 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _mantissaArray = (jarray) 0; + jintArray _mantissaArray = (jintArray) 0; jint _mantissaBufferOffset = (jint) 0; - jarray _exponentArray = (jarray) 0; + jintArray _exponentArray = (jintArray) 0; jint _exponentBufferOffset = (jint) 0; GLbitfield _returnValue = -1; jint _mantissaRemaining; @@ -426,14 +540,14 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exponentRemaining; GLint *exponent = (GLint *) 0; - mantissa = (GLfixed *)getPointer(_env, mantissa_buf, &_mantissaArray, &_mantissaRemaining, &_mantissaBufferOffset); + mantissa = (GLfixed *)getPointer(_env, mantissa_buf, (jarray*)&_mantissaArray, &_mantissaRemaining, &_mantissaBufferOffset); if (_mantissaRemaining < 16) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; _exceptionMessage = "remaining() < 16 < needed"; goto exit; } - exponent = (GLint *)getPointer(_env, exponent_buf, &_exponentArray, &_exponentRemaining, &_exponentBufferOffset); + exponent = (GLint *)getPointer(_env, exponent_buf, (jarray*)&_exponentArray, &_exponentRemaining, &_exponentBufferOffset); if (_exponentRemaining < 16) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -441,11 +555,11 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 goto exit; } if (mantissa == NULL) { - char * _mantissaBase = (char *)_env->GetPrimitiveArrayCritical(_mantissaArray, (jboolean *) 0); + char * _mantissaBase = (char *)_env->GetIntArrayElements(_mantissaArray, (jboolean *) 0); mantissa = (GLfixed *) (_mantissaBase + _mantissaBufferOffset); } if (exponent == NULL) { - char * _exponentBase = (char *)_env->GetPrimitiveArrayCritical(_exponentArray, (jboolean *) 0); + char * _exponentBase = (char *)_env->GetIntArrayElements(_exponentArray, (jboolean *) 0); exponent = (GLint *) (_exponentBase + _exponentBufferOffset); } _returnValue = glQueryMatrixxOES( @@ -455,10 +569,10 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 exit: if (_exponentArray) { - releasePointer(_env, _exponentArray, exponent, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_exponentArray, (jint*)exponent, _exception ? JNI_ABORT : 0); } if (_mantissaArray) { - releasePointer(_env, _mantissaArray, mantissa, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_mantissaArray, (jint*)mantissa, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); diff --git a/core/jni/android_opengl_GLES11.cpp b/core/jni/android_opengl_GLES11.cpp index 08c4740..6970a3c 100644 --- a/core/jni/android_opengl_GLES11.cpp +++ b/core/jni/android_opengl_GLES11.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -351,7 +465,7 @@ android_glBufferData__IILjava_nio_Buffer_2I GLvoid *data = (GLvoid *) 0; if (data_buf) { - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -391,7 +505,7 @@ android_glBufferSubData__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -443,7 +557,7 @@ android_glClipPlanef__I_3FI } _remaining = _env->GetArrayLength(equation_ref) - offset; equation_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetFloatArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanef( @@ -453,7 +567,7 @@ android_glClipPlanef__I_3FI exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseFloatArrayElements(equation_ref, (jfloat*)equation_base, JNI_ABORT); } if (_exception) { @@ -468,14 +582,14 @@ android_glClipPlanef__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *equation = (GLfloat *) 0; - equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); equation = (GLfloat *) (_equationBase + _bufferOffset); } glClipPlanef( @@ -483,7 +597,7 @@ android_glClipPlanef__ILjava_nio_FloatBuffer_2 (GLfloat *)equation ); if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)equation, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -515,7 +629,7 @@ android_glClipPlanex__I_3II } _remaining = _env->GetArrayLength(equation_ref) - offset; equation_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetIntArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanex( @@ -525,7 +639,7 @@ android_glClipPlanex__I_3II exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseIntArrayElements(equation_ref, (jint*)equation_base, JNI_ABORT); } if (_exception) { @@ -540,14 +654,14 @@ android_glClipPlanex__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *equation = (GLfixed *) 0; - equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfixed *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); equation = (GLfixed *) (_equationBase + _bufferOffset); } glClipPlanex( @@ -555,7 +669,7 @@ android_glClipPlanex__ILjava_nio_IntBuffer_2 (GLfixed *)equation ); if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)equation, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -617,7 +731,7 @@ android_glDeleteBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glDeleteBuffers( @@ -627,7 +741,7 @@ android_glDeleteBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, JNI_ABORT); } if (_exception) { @@ -642,12 +756,12 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -655,7 +769,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glDeleteBuffers( @@ -665,7 +779,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -721,7 +835,7 @@ android_glGenBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glGenBuffers( @@ -731,7 +845,7 @@ android_glGenBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -746,12 +860,12 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -759,7 +873,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glGenBuffers( @@ -769,7 +883,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -780,14 +894,16 @@ exit: static void android_glGetBooleanv__I_3ZI (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) { - get<jbooleanArray, GLboolean, glGetBooleanv>(_env, _this, pname, params_ref, offset); + get<jbooleanArray, BooleanArrayGetter, jboolean*, BooleanArrayReleaser, GLboolean, glGetBooleanv>( + _env, _this, pname, params_ref, offset); } /* void glGetBooleanv ( GLenum pname, GLboolean *params ) */ static void android_glGetBooleanv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLboolean, glGetBooleanv>(_env, _this, pname, params_buf); + getarray<GLboolean, jintArray, IntArrayGetter, jint*, IntArrayReleaser, glGetBooleanv>( + _env, _this, pname, params_buf); } /* void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params ) */ static void @@ -820,7 +936,7 @@ android_glGetBufferParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetBufferParameteriv( @@ -831,7 +947,7 @@ android_glGetBufferParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -846,12 +962,12 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -859,7 +975,7 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetBufferParameteriv( @@ -870,7 +986,7 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -908,7 +1024,7 @@ android_glGetClipPlanef__I_3FI goto exit; } eqn_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetFloatArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanef( @@ -918,7 +1034,7 @@ android_glGetClipPlanef__I_3FI exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseFloatArrayElements(eqn_ref, (jfloat*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -933,12 +1049,12 @@ android_glGetClipPlanef__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *eqn = (GLfloat *) 0; - eqn = (GLfloat *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfloat *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -946,7 +1062,7 @@ android_glGetClipPlanef__ILjava_nio_FloatBuffer_2 goto exit; } if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); eqn = (GLfloat *) (_eqnBase + _bufferOffset); } glGetClipPlanef( @@ -956,7 +1072,7 @@ android_glGetClipPlanef__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, eqn, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)eqn, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -994,7 +1110,7 @@ android_glGetClipPlanex__I_3II goto exit; } eqn_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetIntArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanex( @@ -1004,7 +1120,7 @@ android_glGetClipPlanex__I_3II exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseIntArrayElements(eqn_ref, (jint*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1019,12 +1135,12 @@ android_glGetClipPlanex__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *eqn = (GLfixed *) 0; - eqn = (GLfixed *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfixed *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1032,7 +1148,7 @@ android_glGetClipPlanex__ILjava_nio_IntBuffer_2 goto exit; } if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); eqn = (GLfixed *) (_eqnBase + _bufferOffset); } glGetClipPlanex( @@ -1042,7 +1158,7 @@ android_glGetClipPlanex__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, eqn, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)eqn, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1074,7 +1190,7 @@ android_glGetFixedv__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFixedv( @@ -1084,7 +1200,7 @@ android_glGetFixedv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1096,14 +1212,14 @@ exit: static void android_glGetFixedv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetFixedv( @@ -1111,7 +1227,7 @@ android_glGetFixedv__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1119,14 +1235,16 @@ android_glGetFixedv__ILjava_nio_IntBuffer_2 static void android_glGetFloatv__I_3FI (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) { - get<jfloatArray, GLfloat, glGetFloatv>(_env, _this, pname, params_ref, offset); + get<jfloatArray, FloatArrayGetter, jfloat*, FloatArrayReleaser, GLfloat, glGetFloatv>( + _env, _this, pname, params_ref, offset); } /* void glGetFloatv ( GLenum pname, GLfloat *params ) */ static void android_glGetFloatv__ILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLfloat, glGetFloatv>(_env, _this, pname, params_buf); + getarray<GLfloat, jfloatArray, FloatArrayGetter, jfloat*, FloatArrayReleaser, glGetFloatv>( + _env, _this, pname, params_buf); } /* void glGetLightfv ( GLenum light, GLenum pname, GLfloat *params ) */ static void @@ -1184,7 +1302,7 @@ android_glGetLightfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetLightfv( @@ -1195,7 +1313,7 @@ android_glGetLightfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1210,12 +1328,12 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_DIRECTION) @@ -1248,7 +1366,7 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetLightfv( @@ -1259,7 +1377,7 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1322,7 +1440,7 @@ android_glGetLightxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetLightxv( @@ -1333,7 +1451,7 @@ android_glGetLightxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1348,12 +1466,12 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_DIRECTION) @@ -1386,7 +1504,7 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetLightxv( @@ -1397,7 +1515,7 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1458,7 +1576,7 @@ android_glGetMaterialfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetMaterialfv( @@ -1469,7 +1587,7 @@ android_glGetMaterialfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1484,12 +1602,12 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_AMBIENT) @@ -1520,7 +1638,7 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetMaterialfv( @@ -1531,7 +1649,7 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1592,7 +1710,7 @@ android_glGetMaterialxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetMaterialxv( @@ -1603,7 +1721,7 @@ android_glGetMaterialxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1618,12 +1736,12 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_AMBIENT) @@ -1654,7 +1772,7 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetMaterialxv( @@ -1665,7 +1783,7 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1714,7 +1832,7 @@ android_glGetTexEnvfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnvfv( @@ -1725,7 +1843,7 @@ android_glGetTexEnvfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1740,12 +1858,12 @@ android_glGetTexEnvfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -1764,7 +1882,7 @@ android_glGetTexEnvfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexEnvfv( @@ -1775,7 +1893,7 @@ android_glGetTexEnvfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1824,7 +1942,7 @@ android_glGetTexEnviv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnviv( @@ -1835,7 +1953,7 @@ android_glGetTexEnviv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1850,12 +1968,12 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -1874,7 +1992,7 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexEnviv( @@ -1885,7 +2003,7 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1934,7 +2052,7 @@ android_glGetTexEnvxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnvxv( @@ -1945,7 +2063,7 @@ android_glGetTexEnvxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1960,12 +2078,12 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -1984,7 +2102,7 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexEnvxv( @@ -1995,7 +2113,7 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2033,7 +2151,7 @@ android_glGetTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterfv( @@ -2044,7 +2162,7 @@ android_glGetTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2059,12 +2177,12 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2072,7 +2190,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexParameterfv( @@ -2083,7 +2201,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2121,7 +2239,7 @@ android_glGetTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameteriv( @@ -2132,7 +2250,7 @@ android_glGetTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2147,12 +2265,12 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2160,7 +2278,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexParameteriv( @@ -2171,7 +2289,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2209,7 +2327,7 @@ android_glGetTexParameterxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterxv( @@ -2220,7 +2338,7 @@ android_glGetTexParameterxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2235,12 +2353,12 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2248,7 +2366,7 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexParameterxv( @@ -2259,7 +2377,7 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2351,7 +2469,7 @@ android_glPointParameterfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glPointParameterfv( @@ -2361,7 +2479,7 @@ android_glPointParameterfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2376,12 +2494,12 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2389,7 +2507,7 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glPointParameterfv( @@ -2399,7 +2517,7 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2447,7 +2565,7 @@ android_glPointParameterxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glPointParameterxv( @@ -2457,7 +2575,7 @@ android_glPointParameterxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2472,12 +2590,12 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2485,7 +2603,7 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glPointParameterxv( @@ -2495,7 +2613,7 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2590,7 +2708,7 @@ android_glTexEnviv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnviv( @@ -2601,7 +2719,7 @@ android_glTexEnviv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2616,12 +2734,12 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_COLOR) @@ -2640,7 +2758,7 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexEnviv( @@ -2651,7 +2769,7 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2689,7 +2807,7 @@ android_glTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterfv( @@ -2700,7 +2818,7 @@ android_glTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2715,12 +2833,12 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2728,7 +2846,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexParameterfv( @@ -2739,7 +2857,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2788,7 +2906,7 @@ android_glTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameteriv( @@ -2799,7 +2917,7 @@ android_glTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2814,12 +2932,12 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2827,7 +2945,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexParameteriv( @@ -2838,7 +2956,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2876,7 +2994,7 @@ android_glTexParameterxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterxv( @@ -2887,7 +3005,7 @@ android_glTexParameterxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2902,12 +3020,12 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2915,7 +3033,7 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexParameterxv( @@ -2926,7 +3044,7 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); diff --git a/core/jni/android_opengl_GLES11Ext.cpp b/core/jni/android_opengl_GLES11Ext.cpp index 21e5670f..6422ff2 100644 --- a/core/jni/android_opengl_GLES11Ext.cpp +++ b/core/jni/android_opengl_GLES11Ext.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -429,7 +543,7 @@ android_glDrawTexsvOES___3SI goto exit; } coords_base = (GLshort *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetShortArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexsvOES( @@ -438,7 +552,7 @@ android_glDrawTexsvOES___3SI exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseShortArrayElements(coords_ref, (jshort*)coords_base, JNI_ABORT); } if (_exception) { @@ -453,12 +567,12 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jshortArray _array = (jshortArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLshort *coords = (GLshort *) 0; - coords = (GLshort *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLshort *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -466,7 +580,7 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetShortArrayElements(_array, (jboolean *) 0); coords = (GLshort *) (_coordsBase + _bufferOffset); } glDrawTexsvOES( @@ -475,7 +589,7 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseShortArrayElements(_array, (jshort*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -513,7 +627,7 @@ android_glDrawTexivOES___3II goto exit; } coords_base = (GLint *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetIntArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexivOES( @@ -522,7 +636,7 @@ android_glDrawTexivOES___3II exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseIntArrayElements(coords_ref, (jint*)coords_base, JNI_ABORT); } if (_exception) { @@ -537,12 +651,12 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *coords = (GLint *) 0; - coords = (GLint *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLint *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -550,7 +664,7 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); coords = (GLint *) (_coordsBase + _bufferOffset); } glDrawTexivOES( @@ -559,7 +673,7 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -597,7 +711,7 @@ android_glDrawTexxvOES___3II goto exit; } coords_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetIntArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexxvOES( @@ -606,7 +720,7 @@ android_glDrawTexxvOES___3II exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseIntArrayElements(coords_ref, (jint*)coords_base, JNI_ABORT); } if (_exception) { @@ -621,12 +735,12 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *coords = (GLfixed *) 0; - coords = (GLfixed *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLfixed *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -634,7 +748,7 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); coords = (GLfixed *) (_coordsBase + _bufferOffset); } glDrawTexxvOES( @@ -643,7 +757,7 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -694,7 +808,7 @@ android_glDrawTexfvOES___3FI goto exit; } coords_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetFloatArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexfvOES( @@ -703,7 +817,7 @@ android_glDrawTexfvOES___3FI exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseFloatArrayElements(coords_ref, (jfloat*)coords_base, JNI_ABORT); } if (_exception) { @@ -718,12 +832,12 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *coords = (GLfloat *) 0; - coords = (GLfloat *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLfloat *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -731,7 +845,7 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); coords = (GLfloat *) (_coordsBase + _bufferOffset); } glDrawTexfvOES( @@ -740,7 +854,7 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -756,7 +870,7 @@ android_glEGLImageTargetTexture2DOES__ILjava_nio_Buffer_2 jint _remaining; GLeglImageOES image = (GLeglImageOES) 0; - image = (GLeglImageOES)getPointer(_env, image_buf, &_array, &_remaining, &_bufferOffset); + image = (GLeglImageOES)getPointer(_env, image_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (image == NULL) { char * _imageBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); image = (GLeglImageOES) (_imageBase + _bufferOffset); @@ -779,7 +893,7 @@ android_glEGLImageTargetRenderbufferStorageOES__ILjava_nio_Buffer_2 jint _remaining; GLeglImageOES image = (GLeglImageOES) 0; - image = (GLeglImageOES)getPointer(_env, image_buf, &_array, &_remaining, &_bufferOffset); + image = (GLeglImageOES)getPointer(_env, image_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (image == NULL) { char * _imageBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); image = (GLeglImageOES) (_imageBase + _bufferOffset); @@ -849,7 +963,7 @@ android_glClipPlanexOES__I_3II } _remaining = _env->GetArrayLength(equation_ref) - offset; equation_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetIntArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanexOES( @@ -859,7 +973,7 @@ android_glClipPlanexOES__I_3II exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseIntArrayElements(equation_ref, (jint*)equation_base, JNI_ABORT); } if (_exception) { @@ -871,14 +985,14 @@ exit: static void android_glClipPlanexOES__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *equation = (GLfixed *) 0; - equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfixed *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); equation = (GLfixed *) (_equationBase + _bufferOffset); } glClipPlanexOES( @@ -886,7 +1000,7 @@ android_glClipPlanexOES__ILjava_nio_IntBuffer_2 (GLfixed *)equation ); if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)equation, JNI_ABORT); } } @@ -947,7 +1061,7 @@ android_glFogxvOES__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glFogxvOES( @@ -957,7 +1071,7 @@ android_glFogxvOES__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -969,14 +1083,14 @@ exit: static void android_glFogxvOES__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glFogxvOES( @@ -984,7 +1098,7 @@ android_glFogxvOES__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -1033,7 +1147,7 @@ android_glGetClipPlanexOES__I_3II goto exit; } eqn_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetIntArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanexOES( @@ -1043,7 +1157,7 @@ android_glGetClipPlanexOES__I_3II exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseIntArrayElements(eqn_ref, (jint*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1058,12 +1172,12 @@ android_glGetClipPlanexOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *eqn = (GLfixed *) 0; - eqn = (GLfixed *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfixed *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1071,7 +1185,7 @@ android_glGetClipPlanexOES__ILjava_nio_IntBuffer_2 goto exit; } if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); eqn = (GLfixed *) (_eqnBase + _bufferOffset); } glGetClipPlanexOES( @@ -1081,7 +1195,7 @@ android_glGetClipPlanexOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, eqn, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)eqn, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1113,7 +1227,7 @@ android_glGetFixedvOES__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFixedvOES( @@ -1123,7 +1237,7 @@ android_glGetFixedvOES__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1135,14 +1249,14 @@ exit: static void android_glGetFixedvOES__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetFixedvOES( @@ -1150,7 +1264,7 @@ android_glGetFixedvOES__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1179,7 +1293,7 @@ android_glGetLightxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetLightxvOES( @@ -1190,7 +1304,7 @@ android_glGetLightxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1202,14 +1316,14 @@ exit: static void android_glGetLightxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetLightxvOES( @@ -1218,7 +1332,7 @@ android_glGetLightxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1247,7 +1361,7 @@ android_glGetMaterialxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetMaterialxvOES( @@ -1258,7 +1372,7 @@ android_glGetMaterialxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1270,14 +1384,14 @@ exit: static void android_glGetMaterialxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetMaterialxvOES( @@ -1286,7 +1400,7 @@ android_glGetMaterialxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1315,7 +1429,7 @@ android_glGetTexEnvxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnvxvOES( @@ -1326,7 +1440,7 @@ android_glGetTexEnvxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1338,14 +1452,14 @@ exit: static void android_glGetTexEnvxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint env, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexEnvxvOES( @@ -1354,7 +1468,7 @@ android_glGetTexEnvxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1383,7 +1497,7 @@ android_glGetTexParameterxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterxvOES( @@ -1394,7 +1508,7 @@ android_glGetTexParameterxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1406,14 +1520,14 @@ exit: static void android_glGetTexParameterxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexParameterxvOES( @@ -1422,7 +1536,7 @@ android_glGetTexParameterxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1461,7 +1575,7 @@ android_glLightModelxvOES__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightModelxvOES( @@ -1471,7 +1585,7 @@ android_glLightModelxvOES__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1483,14 +1597,14 @@ exit: static void android_glLightModelxvOES__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightModelxvOES( @@ -1498,7 +1612,7 @@ android_glLightModelxvOES__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -1538,7 +1652,7 @@ android_glLightxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightxvOES( @@ -1549,7 +1663,7 @@ android_glLightxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1561,14 +1675,14 @@ exit: static void android_glLightxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightxvOES( @@ -1577,7 +1691,7 @@ android_glLightxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -1615,7 +1729,7 @@ android_glLoadMatrixxOES___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glLoadMatrixxOES( @@ -1624,7 +1738,7 @@ android_glLoadMatrixxOES___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -1636,21 +1750,21 @@ exit: static void android_glLoadMatrixxOES__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glLoadMatrixxOES( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -1690,7 +1804,7 @@ android_glMaterialxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glMaterialxvOES( @@ -1701,7 +1815,7 @@ android_glMaterialxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1713,14 +1827,14 @@ exit: static void android_glMaterialxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glMaterialxvOES( @@ -1729,7 +1843,7 @@ android_glMaterialxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -1758,7 +1872,7 @@ android_glMultMatrixxOES___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glMultMatrixxOES( @@ -1767,7 +1881,7 @@ android_glMultMatrixxOES___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -1779,21 +1893,21 @@ exit: static void android_glMultMatrixxOES__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glMultMatrixxOES( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -1870,7 +1984,7 @@ android_glPointParameterxvOES__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glPointParameterxvOES( @@ -1880,7 +1994,7 @@ android_glPointParameterxvOES__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1892,14 +2006,14 @@ exit: static void android_glPointParameterxvOES__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glPointParameterxvOES( @@ -1907,7 +2021,7 @@ android_glPointParameterxvOES__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -1999,7 +2113,7 @@ android_glTexEnvxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnvxvOES( @@ -2010,7 +2124,7 @@ android_glTexEnvxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2022,14 +2136,14 @@ exit: static void android_glTexEnvxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexEnvxvOES( @@ -2038,7 +2152,7 @@ android_glTexEnvxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -2078,7 +2192,7 @@ android_glTexParameterxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterxvOES( @@ -2089,7 +2203,7 @@ android_glTexParameterxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2101,14 +2215,14 @@ exit: static void android_glTexParameterxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexParameterxvOES( @@ -2117,7 +2231,7 @@ android_glTexParameterxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -2184,7 +2298,7 @@ android_glDeleteRenderbuffersOES__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glDeleteRenderbuffersOES( @@ -2194,7 +2308,7 @@ android_glDeleteRenderbuffersOES__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, JNI_ABORT); } if (_exception) { @@ -2209,12 +2323,12 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2222,7 +2336,7 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glDeleteRenderbuffersOES( @@ -2232,7 +2346,7 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2270,7 +2384,7 @@ android_glGenRenderbuffersOES__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glGenRenderbuffersOES( @@ -2280,7 +2394,7 @@ android_glGenRenderbuffersOES__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2295,12 +2409,12 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2308,7 +2422,7 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glGenRenderbuffersOES( @@ -2318,7 +2432,7 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2368,7 +2482,7 @@ android_glGetRenderbufferParameterivOES__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetRenderbufferParameterivOES( @@ -2379,7 +2493,7 @@ android_glGetRenderbufferParameterivOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2394,12 +2508,12 @@ android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2407,7 +2521,7 @@ android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetRenderbufferParameterivOES( @@ -2418,7 +2532,7 @@ android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2477,7 +2591,7 @@ android_glDeleteFramebuffersOES__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glDeleteFramebuffersOES( @@ -2487,7 +2601,7 @@ android_glDeleteFramebuffersOES__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, JNI_ABORT); } if (_exception) { @@ -2502,12 +2616,12 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2515,7 +2629,7 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glDeleteFramebuffersOES( @@ -2525,7 +2639,7 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2563,7 +2677,7 @@ android_glGenFramebuffersOES__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glGenFramebuffersOES( @@ -2573,7 +2687,7 @@ android_glGenFramebuffersOES__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2588,12 +2702,12 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2601,7 +2715,7 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glGenFramebuffersOES( @@ -2611,7 +2725,7 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2685,7 +2799,7 @@ android_glGetFramebufferAttachmentParameterivOES__III_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFramebufferAttachmentParameterivOES( @@ -2697,7 +2811,7 @@ android_glGetFramebufferAttachmentParameterivOES__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2712,12 +2826,12 @@ android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2725,7 +2839,7 @@ android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetFramebufferAttachmentParameterivOES( @@ -2737,7 +2851,7 @@ android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2880,7 +2994,7 @@ android_glClipPlanefOES__I_3FI } _remaining = _env->GetArrayLength(equation_ref) - offset; equation_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetFloatArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanefOES( @@ -2890,7 +3004,7 @@ android_glClipPlanefOES__I_3FI exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseFloatArrayElements(equation_ref, (jfloat*)equation_base, JNI_ABORT); } if (_exception) { @@ -2902,14 +3016,14 @@ exit: static void android_glClipPlanefOES__ILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *equation = (GLfloat *) 0; - equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); equation = (GLfloat *) (_equationBase + _bufferOffset); } glClipPlanefOES( @@ -2917,7 +3031,7 @@ android_glClipPlanefOES__ILjava_nio_FloatBuffer_2 (GLfloat *)equation ); if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)equation, JNI_ABORT); } } @@ -2952,7 +3066,7 @@ android_glGetClipPlanefOES__I_3FI goto exit; } eqn_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetFloatArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanefOES( @@ -2962,7 +3076,7 @@ android_glGetClipPlanefOES__I_3FI exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseFloatArrayElements(eqn_ref, (jfloat*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2977,12 +3091,12 @@ android_glGetClipPlanefOES__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *eqn = (GLfloat *) 0; - eqn = (GLfloat *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfloat *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2990,7 +3104,7 @@ android_glGetClipPlanefOES__ILjava_nio_FloatBuffer_2 goto exit; } if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); eqn = (GLfloat *) (_eqnBase + _bufferOffset); } glGetClipPlanefOES( @@ -3000,7 +3114,7 @@ android_glGetClipPlanefOES__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, eqn, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)eqn, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3052,7 +3166,7 @@ android_glTexGenfvOES__II_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGenfvOES( @@ -3063,7 +3177,7 @@ android_glTexGenfvOES__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -3075,14 +3189,14 @@ exit: static void android_glTexGenfvOES__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexGenfvOES( @@ -3091,7 +3205,7 @@ android_glTexGenfvOES__IILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } } @@ -3131,7 +3245,7 @@ android_glTexGenivOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGenivOES( @@ -3142,7 +3256,7 @@ android_glTexGenivOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -3154,14 +3268,14 @@ exit: static void android_glTexGenivOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexGenivOES( @@ -3170,7 +3284,7 @@ android_glTexGenivOES__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -3210,7 +3324,7 @@ android_glTexGenxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGenxvOES( @@ -3221,7 +3335,7 @@ android_glTexGenxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -3233,14 +3347,14 @@ exit: static void android_glTexGenxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexGenxvOES( @@ -3249,7 +3363,7 @@ android_glTexGenxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -3278,7 +3392,7 @@ android_glGetTexGenfvOES__II_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGenfvOES( @@ -3289,7 +3403,7 @@ android_glGetTexGenfvOES__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3301,14 +3415,14 @@ exit: static void android_glGetTexGenfvOES__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexGenfvOES( @@ -3317,7 +3431,7 @@ android_glGetTexGenfvOES__IILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } @@ -3346,7 +3460,7 @@ android_glGetTexGenivOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGenivOES( @@ -3357,7 +3471,7 @@ android_glGetTexGenivOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3369,14 +3483,14 @@ exit: static void android_glGetTexGenivOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexGenivOES( @@ -3385,7 +3499,7 @@ android_glGetTexGenivOES__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -3414,7 +3528,7 @@ android_glGetTexGenxvOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGenxvOES( @@ -3425,7 +3539,7 @@ android_glGetTexGenxvOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3437,14 +3551,14 @@ exit: static void android_glGetTexGenxvOES__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexGenxvOES( @@ -3453,7 +3567,7 @@ android_glGetTexGenxvOES__IILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } diff --git a/core/jni/android_opengl_GLES20.cpp b/core/jni/android_opengl_GLES20.cpp index cd0c135..f9a0dfe 100644 --- a/core/jni/android_opengl_GLES20.cpp +++ b/core/jni/android_opengl_GLES20.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -486,7 +600,7 @@ android_glBufferData__IILjava_nio_Buffer_2I GLvoid *data = (GLvoid *) 0; if (data_buf) { - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -526,7 +640,7 @@ android_glBufferSubData__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -633,7 +747,7 @@ android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -662,7 +776,7 @@ android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -775,7 +889,7 @@ android_glDeleteBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glDeleteBuffers( @@ -785,7 +899,7 @@ android_glDeleteBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, JNI_ABORT); } if (_exception) { @@ -800,12 +914,12 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -813,7 +927,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glDeleteBuffers( @@ -823,7 +937,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -861,7 +975,7 @@ android_glDeleteFramebuffers__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glDeleteFramebuffers( @@ -871,7 +985,7 @@ android_glDeleteFramebuffers__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, JNI_ABORT); } if (_exception) { @@ -886,12 +1000,12 @@ android_glDeleteFramebuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -899,7 +1013,7 @@ android_glDeleteFramebuffers__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glDeleteFramebuffers( @@ -909,7 +1023,7 @@ android_glDeleteFramebuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -956,7 +1070,7 @@ android_glDeleteRenderbuffers__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glDeleteRenderbuffers( @@ -966,7 +1080,7 @@ android_glDeleteRenderbuffers__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, JNI_ABORT); } if (_exception) { @@ -981,12 +1095,12 @@ android_glDeleteRenderbuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -994,7 +1108,7 @@ android_glDeleteRenderbuffers__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glDeleteRenderbuffers( @@ -1004,7 +1118,7 @@ android_glDeleteRenderbuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1051,7 +1165,7 @@ android_glDeleteTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glDeleteTextures( @@ -1061,7 +1175,7 @@ android_glDeleteTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, JNI_ABORT); } if (_exception) { @@ -1076,12 +1190,12 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1089,7 +1203,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glDeleteTextures( @@ -1099,7 +1213,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1203,7 +1317,7 @@ android_glDrawElements__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *indices = (GLvoid *) 0; - indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset); + indices = (GLvoid *)getPointer(_env, indices_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count) { _exception = 1; _exceptionType = "java/lang/ArrayIndexOutOfBoundsException"; @@ -1327,7 +1441,7 @@ android_glGenBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glGenBuffers( @@ -1337,7 +1451,7 @@ android_glGenBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1352,12 +1466,12 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1365,7 +1479,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glGenBuffers( @@ -1375,7 +1489,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1422,7 +1536,7 @@ android_glGenFramebuffers__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glGenFramebuffers( @@ -1432,7 +1546,7 @@ android_glGenFramebuffers__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1447,12 +1561,12 @@ android_glGenFramebuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1460,7 +1574,7 @@ android_glGenFramebuffers__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glGenFramebuffers( @@ -1470,7 +1584,7 @@ android_glGenFramebuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1508,7 +1622,7 @@ android_glGenRenderbuffers__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glGenRenderbuffers( @@ -1518,7 +1632,7 @@ android_glGenRenderbuffers__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1533,12 +1647,12 @@ android_glGenRenderbuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1546,7 +1660,7 @@ android_glGenRenderbuffers__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glGenRenderbuffers( @@ -1556,7 +1670,7 @@ android_glGenRenderbuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1594,7 +1708,7 @@ android_glGenTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glGenTextures( @@ -1604,7 +1718,7 @@ android_glGenTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1619,12 +1733,12 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1632,7 +1746,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glGenTextures( @@ -1642,7 +1756,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1683,7 +1797,7 @@ android_glGetActiveAttrib__III_3II_3II_3II_3BI } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!size_ref) { @@ -1700,7 +1814,7 @@ android_glGetActiveAttrib__III_3II_3II_3II_3BI } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -1717,7 +1831,7 @@ android_glGetActiveAttrib__III_3II_3II_3II_3BI } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; if (!name_ref) { @@ -1734,7 +1848,7 @@ android_glGetActiveAttrib__III_3II_3II_3II_3BI } _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset; name_base = (char *) - _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0); + _env->GetByteArrayElements(name_ref, (jboolean *)0); name = name_base + nameOffset; glGetActiveAttrib( @@ -1749,19 +1863,19 @@ android_glGetActiveAttrib__III_3II_3II_3II_3BI exit: if (name_base) { - _env->ReleasePrimitiveArrayCritical(name_ref, name_base, + _env->ReleaseByteArrayElements(name_ref, (jbyte*)name_base, _exception ? JNI_ABORT: 0); } if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1773,11 +1887,11 @@ exit: static void android_glGetActiveAttrib__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) { - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -1786,19 +1900,19 @@ android_glGetActiveAttrib__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_ni jint _typeRemaining; GLenum *type = (GLenum *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetActiveAttrib( @@ -1811,13 +1925,13 @@ android_glGetActiveAttrib__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_ni reinterpret_cast<char *>(name) ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _lengthArray, (jint*)length, JNI_TRUE); } } @@ -1862,7 +1976,7 @@ android_glGetActiveAttrib1 } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -1879,7 +1993,7 @@ android_glGetActiveAttrib1 } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; glGetActiveAttrib( @@ -1893,11 +2007,11 @@ android_glGetActiveAttrib1 ); exit: if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (_exception != 1) { @@ -1920,9 +2034,9 @@ exit: static jstring android_glGetActiveAttrib2 (JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) { - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -1945,14 +2059,14 @@ android_glGetActiveAttrib2 return NULL; } - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetActiveAttrib( @@ -1966,10 +2080,10 @@ android_glGetActiveAttrib2 ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } result = _env->NewStringUTF(buf); if (buf) { @@ -2011,7 +2125,7 @@ android_glGetActiveUniform__III_3II_3II_3II_3BI } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!size_ref) { @@ -2028,7 +2142,7 @@ android_glGetActiveUniform__III_3II_3II_3II_3BI } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -2045,7 +2159,7 @@ android_glGetActiveUniform__III_3II_3II_3II_3BI } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; if (!name_ref) { @@ -2062,7 +2176,7 @@ android_glGetActiveUniform__III_3II_3II_3II_3BI } _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset; name_base = (char *) - _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0); + _env->GetByteArrayElements(name_ref, (jboolean *)0); name = name_base + nameOffset; glGetActiveUniform( @@ -2077,19 +2191,19 @@ android_glGetActiveUniform__III_3II_3II_3II_3BI exit: if (name_base) { - _env->ReleasePrimitiveArrayCritical(name_ref, name_base, + _env->ReleaseByteArrayElements(name_ref, (jbyte*)name_base, _exception ? JNI_ABORT: 0); } if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2101,11 +2215,11 @@ exit: static void android_glGetActiveUniform__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) { - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -2114,19 +2228,19 @@ android_glGetActiveUniform__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_n jint _typeRemaining; GLenum *type = (GLenum *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetActiveUniform( @@ -2139,13 +2253,13 @@ android_glGetActiveUniform__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_n reinterpret_cast<char *>(name) ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _lengthArray, (jint*)length, JNI_TRUE); } } @@ -2193,7 +2307,7 @@ android_glGetActiveUniform1 } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -2210,7 +2324,7 @@ android_glGetActiveUniform1 } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; glGetActiveUniform( @@ -2225,11 +2339,11 @@ android_glGetActiveUniform1 exit: if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (_exception != 1) { @@ -2251,9 +2365,9 @@ exit: static jstring android_glGetActiveUniform2 (JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) { - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _sizeRemaining; GLint *size = (GLint *) 0; @@ -2273,15 +2387,15 @@ android_glGetActiveUniform2 return NULL; } - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetActiveUniform( @@ -2295,10 +2409,10 @@ android_glGetActiveUniform2 ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } result = _env->NewStringUTF(buf); if (buf) { @@ -2340,7 +2454,7 @@ android_glGetAttachedShaders__II_3II_3II goto exit; } count_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(count_ref, (jboolean *)0); + _env->GetIntArrayElements(count_ref, (jboolean *)0); count = count_base + countOffset; if (!shaders_ref) { @@ -2363,7 +2477,7 @@ android_glGetAttachedShaders__II_3II_3II goto exit; } shaders_base = (GLuint *) - _env->GetPrimitiveArrayCritical(shaders_ref, (jboolean *)0); + _env->GetIntArrayElements(shaders_ref, (jboolean *)0); shaders = shaders_base + shadersOffset; glGetAttachedShaders( @@ -2375,11 +2489,11 @@ android_glGetAttachedShaders__II_3II_3II exit: if (shaders_base) { - _env->ReleasePrimitiveArrayCritical(shaders_ref, shaders_base, + _env->ReleaseIntArrayElements(shaders_ref, (jint*)shaders_base, _exception ? JNI_ABORT: 0); } if (count_base) { - _env->ReleasePrimitiveArrayCritical(count_ref, count_base, + _env->ReleaseIntArrayElements(count_ref, (jint*)count_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2394,9 +2508,9 @@ android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _countArray = (jarray) 0; + jintArray _countArray = (jintArray) 0; jint _countBufferOffset = (jint) 0; - jarray _shadersArray = (jarray) 0; + jintArray _shadersArray = (jintArray) 0; jint _shadersBufferOffset = (jint) 0; jint _countRemaining; GLsizei *count = (GLsizei *) 0; @@ -2404,7 +2518,7 @@ android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 GLuint *shaders = (GLuint *) 0; if (count_buf) { - count = (GLsizei *)getPointer(_env, count_buf, &_countArray, &_countRemaining, &_countBufferOffset); + count = (GLsizei *)getPointer(_env, count_buf, (jarray*)&_countArray, &_countRemaining, &_countBufferOffset); if (_countRemaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2413,7 +2527,7 @@ android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 } } if (shaders_buf) { - shaders = (GLuint *)getPointer(_env, shaders_buf, &_shadersArray, &_shadersRemaining, &_shadersBufferOffset); + shaders = (GLuint *)getPointer(_env, shaders_buf, (jarray*)&_shadersArray, &_shadersRemaining, &_shadersBufferOffset); if (_shadersRemaining < maxcount) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2422,11 +2536,11 @@ android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 } } if (count_buf && count == NULL) { - char * _countBase = (char *)_env->GetPrimitiveArrayCritical(_countArray, (jboolean *) 0); + char * _countBase = (char *)_env->GetIntArrayElements(_countArray, (jboolean *) 0); count = (GLsizei *) (_countBase + _countBufferOffset); } if (shaders_buf && shaders == NULL) { - char * _shadersBase = (char *)_env->GetPrimitiveArrayCritical(_shadersArray, (jboolean *) 0); + char * _shadersBase = (char *)_env->GetIntArrayElements(_shadersArray, (jboolean *) 0); shaders = (GLuint *) (_shadersBase + _shadersBufferOffset); } glGetAttachedShaders( @@ -2438,10 +2552,10 @@ android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 exit: if (_shadersArray) { - releasePointer(_env, _shadersArray, shaders, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_shadersArray, (jint*)shaders, _exception ? JNI_ABORT : 0); } if (_countArray) { - releasePointer(_env, _countArray, count, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_countArray, (jint*)count, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2486,14 +2600,16 @@ exit: static void android_glGetBooleanv__I_3ZI (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) { - get<jbooleanArray, GLboolean, glGetBooleanv>(_env, _this, pname, params_ref, offset); + get<jbooleanArray, BooleanArrayGetter, jboolean*, BooleanArrayReleaser, GLboolean, glGetBooleanv>( + _env, _this, pname, params_ref, offset); } /* void glGetBooleanv ( GLenum pname, GLboolean *params ) */ static void android_glGetBooleanv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLboolean, glGetBooleanv>(_env, _this, pname, params_buf); + getarray<GLboolean, jintArray, IntArrayGetter, jint*, IntArrayReleaser, glGetBooleanv>( + _env, _this, pname, params_buf); } /* void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params ) */ static void @@ -2526,7 +2642,7 @@ android_glGetBufferParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetBufferParameteriv( @@ -2537,7 +2653,7 @@ android_glGetBufferParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2552,12 +2668,12 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2565,7 +2681,7 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetBufferParameteriv( @@ -2576,7 +2692,7 @@ android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2596,14 +2712,16 @@ android_glGetError__ static void android_glGetFloatv__I_3FI (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) { - get<jfloatArray, GLfloat, glGetFloatv>(_env, _this, pname, params_ref, offset); + get<jfloatArray, FloatArrayGetter, jfloat*, FloatArrayReleaser, GLfloat, glGetFloatv>( + _env, _this, pname, params_ref, offset); } /* void glGetFloatv ( GLenum pname, GLfloat *params ) */ static void android_glGetFloatv__ILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLfloat, glGetFloatv>(_env, _this, pname, params_buf); + getarray<GLfloat, jfloatArray, FloatArrayGetter, jfloat*, FloatArrayReleaser, glGetFloatv>( + _env, _this, pname, params_buf); } /* void glGetFramebufferAttachmentParameteriv ( GLenum target, GLenum attachment, GLenum pname, GLint *params ) */ static void @@ -2630,7 +2748,7 @@ android_glGetFramebufferAttachmentParameteriv__III_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFramebufferAttachmentParameteriv( @@ -2642,7 +2760,7 @@ android_glGetFramebufferAttachmentParameteriv__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2654,14 +2772,14 @@ exit: static void android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetFramebufferAttachmentParameteriv( @@ -2671,7 +2789,7 @@ android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -2679,16 +2797,17 @@ android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2 static void android_glGetIntegerv__I_3II (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) { - get<jintArray, GLint, glGetIntegerv>(_env, _this, pname, params_ref, offset); + get<jintArray, IntArrayGetter, jint*, IntArrayReleaser, GLint, glGetIntegerv>( + _env, _this, pname, params_ref, offset); } /* void glGetIntegerv ( GLenum pname, GLint *params ) */ static void android_glGetIntegerv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - getarray<GLint, glGetIntegerv>(_env, _this, pname, params_buf); + getarray<GLint, jintArray, IntArrayGetter, jint*, IntArrayReleaser, glGetIntegerv>( + _env, _this, pname, params_buf); } - /* void glGetProgramiv ( GLuint program, GLenum pname, GLint *params ) */ static void android_glGetProgramiv__II_3II @@ -2720,7 +2839,7 @@ android_glGetProgramiv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetProgramiv( @@ -2731,7 +2850,7 @@ android_glGetProgramiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2746,12 +2865,12 @@ android_glGetProgramiv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2759,7 +2878,7 @@ android_glGetProgramiv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetProgramiv( @@ -2770,7 +2889,7 @@ android_glGetProgramiv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2827,7 +2946,7 @@ android_glGetRenderbufferParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetRenderbufferParameteriv( @@ -2838,7 +2957,7 @@ android_glGetRenderbufferParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2853,12 +2972,12 @@ android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2866,7 +2985,7 @@ android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetRenderbufferParameteriv( @@ -2877,7 +2996,7 @@ android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2915,7 +3034,7 @@ android_glGetShaderiv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetShaderiv( @@ -2926,7 +3045,7 @@ android_glGetShaderiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2941,12 +3060,12 @@ android_glGetShaderiv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -2954,7 +3073,7 @@ android_glGetShaderiv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetShaderiv( @@ -2965,7 +3084,7 @@ android_glGetShaderiv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3025,7 +3144,7 @@ android_glGetShaderPrecisionFormat__II_3II_3II goto exit; } range_base = (GLint *) - _env->GetPrimitiveArrayCritical(range_ref, (jboolean *)0); + _env->GetIntArrayElements(range_ref, (jboolean *)0); range = range_base + rangeOffset; if (!precision_ref) { @@ -3048,7 +3167,7 @@ android_glGetShaderPrecisionFormat__II_3II_3II goto exit; } precision_base = (GLint *) - _env->GetPrimitiveArrayCritical(precision_ref, (jboolean *)0); + _env->GetIntArrayElements(precision_ref, (jboolean *)0); precision = precision_base + precisionOffset; glGetShaderPrecisionFormat( @@ -3060,11 +3179,11 @@ android_glGetShaderPrecisionFormat__II_3II_3II exit: if (precision_base) { - _env->ReleasePrimitiveArrayCritical(precision_ref, precision_base, + _env->ReleaseIntArrayElements(precision_ref, (jint*)precision_base, _exception ? JNI_ABORT: 0); } if (range_base) { - _env->ReleasePrimitiveArrayCritical(range_ref, range_base, + _env->ReleaseIntArrayElements(range_ref, (jint*)range_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3079,23 +3198,23 @@ android_glGetShaderPrecisionFormat__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _rangeArray = (jarray) 0; + jintArray _rangeArray = (jintArray) 0; jint _rangeBufferOffset = (jint) 0; - jarray _precisionArray = (jarray) 0; + jintArray _precisionArray = (jintArray) 0; jint _precisionBufferOffset = (jint) 0; jint _rangeRemaining; GLint *range = (GLint *) 0; jint _precisionRemaining; GLint *precision = (GLint *) 0; - range = (GLint *)getPointer(_env, range_buf, &_rangeArray, &_rangeRemaining, &_rangeBufferOffset); + range = (GLint *)getPointer(_env, range_buf, (jarray*)&_rangeArray, &_rangeRemaining, &_rangeBufferOffset); if (_rangeRemaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; _exceptionMessage = "remaining() < 1 < needed"; goto exit; } - precision = (GLint *)getPointer(_env, precision_buf, &_precisionArray, &_precisionRemaining, &_precisionBufferOffset); + precision = (GLint *)getPointer(_env, precision_buf, (jarray*)&_precisionArray, &_precisionRemaining, &_precisionBufferOffset); if (_precisionRemaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -3103,11 +3222,11 @@ android_glGetShaderPrecisionFormat__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 goto exit; } if (range == NULL) { - char * _rangeBase = (char *)_env->GetPrimitiveArrayCritical(_rangeArray, (jboolean *) 0); + char * _rangeBase = (char *)_env->GetIntArrayElements(_rangeArray, (jboolean *) 0); range = (GLint *) (_rangeBase + _rangeBufferOffset); } if (precision == NULL) { - char * _precisionBase = (char *)_env->GetPrimitiveArrayCritical(_precisionArray, (jboolean *) 0); + char * _precisionBase = (char *)_env->GetIntArrayElements(_precisionArray, (jboolean *) 0); precision = (GLint *) (_precisionBase + _precisionBufferOffset); } glGetShaderPrecisionFormat( @@ -3119,10 +3238,10 @@ android_glGetShaderPrecisionFormat__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 exit: if (_precisionArray) { - releasePointer(_env, _precisionArray, precision, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_precisionArray, (jint*)precision, _exception ? JNI_ABORT : 0); } if (_rangeArray) { - releasePointer(_env, _rangeArray, range, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_rangeArray, (jint*)range, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3157,7 +3276,7 @@ android_glGetShaderSource__II_3II_3BI } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!source_ref) { @@ -3174,7 +3293,7 @@ android_glGetShaderSource__II_3II_3BI } _sourceRemaining = _env->GetArrayLength(source_ref) - sourceOffset; source_base = (char *) - _env->GetPrimitiveArrayCritical(source_ref, (jboolean *)0); + _env->GetByteArrayElements(source_ref, (jboolean *)0); source = source_base + sourceOffset; glGetShaderSource( @@ -3186,11 +3305,11 @@ android_glGetShaderSource__II_3II_3BI exit: if (source_base) { - _env->ReleasePrimitiveArrayCritical(source_ref, source_base, + _env->ReleaseByteArrayElements(source_ref, (jbyte*)source_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3202,14 +3321,14 @@ exit: static void android_glGetShaderSource__IILjava_nio_IntBuffer_2B (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLsizei *length = (GLsizei *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_array, &_remaining, &_bufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _bufferOffset); } glGetShaderSource( @@ -3219,7 +3338,7 @@ android_glGetShaderSource__IILjava_nio_IntBuffer_2B reinterpret_cast<char *>(source) ); if (_array) { - releasePointer(_env, _array, length, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _array, (jint*)length, JNI_TRUE); } } @@ -3276,7 +3395,7 @@ android_glGetTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterfv( @@ -3287,7 +3406,7 @@ android_glGetTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3302,12 +3421,12 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -3315,7 +3434,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexParameterfv( @@ -3326,7 +3445,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3364,7 +3483,7 @@ android_glGetTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameteriv( @@ -3375,7 +3494,7 @@ android_glGetTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3390,12 +3509,12 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -3403,7 +3522,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexParameteriv( @@ -3414,7 +3533,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3452,7 +3571,7 @@ android_glGetUniformfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetUniformfv( @@ -3463,7 +3582,7 @@ android_glGetUniformfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3478,12 +3597,12 @@ android_glGetUniformfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -3491,7 +3610,7 @@ android_glGetUniformfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetUniformfv( @@ -3502,7 +3621,7 @@ android_glGetUniformfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3540,7 +3659,7 @@ android_glGetUniformiv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetUniformiv( @@ -3551,7 +3670,7 @@ android_glGetUniformiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3566,12 +3685,12 @@ android_glGetUniformiv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -3579,7 +3698,7 @@ android_glGetUniformiv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetUniformiv( @@ -3590,7 +3709,7 @@ android_glGetUniformiv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3673,7 +3792,7 @@ android_glGetVertexAttribfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetVertexAttribfv( @@ -3684,7 +3803,7 @@ android_glGetVertexAttribfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3699,12 +3818,12 @@ android_glGetVertexAttribfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_CURRENT_VERTEX_ATTRIB) @@ -3723,7 +3842,7 @@ android_glGetVertexAttribfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetVertexAttribfv( @@ -3734,7 +3853,7 @@ android_glGetVertexAttribfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3783,7 +3902,7 @@ android_glGetVertexAttribiv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetVertexAttribiv( @@ -3794,7 +3913,7 @@ android_glGetVertexAttribiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3809,12 +3928,12 @@ android_glGetVertexAttribiv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_CURRENT_VERTEX_ATTRIB) @@ -3833,7 +3952,7 @@ android_glGetVertexAttribiv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetVertexAttribiv( @@ -3844,7 +3963,7 @@ android_glGetVertexAttribiv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3985,7 +4104,7 @@ android_glReadPixels__IIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *pixels = (GLvoid *) 0; - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); pixels = (GLvoid *) (_pixelsBase + _bufferOffset); @@ -4074,10 +4193,10 @@ android_glShaderBinary__I_3IIILjava_nio_Buffer_2I } _shadersRemaining = _env->GetArrayLength(shaders_ref) - offset; shaders_base = (GLuint *) - _env->GetPrimitiveArrayCritical(shaders_ref, (jboolean *)0); + _env->GetIntArrayElements(shaders_ref, (jboolean *)0); shaders = shaders_base + offset; - binary = (GLvoid *)getPointer(_env, binary_buf, &_array, &_binaryRemaining, &_bufferOffset); + binary = (GLvoid *)getPointer(_env, binary_buf, (jarray*)&_array, &_binaryRemaining, &_bufferOffset); if (_binaryRemaining < length) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4101,7 +4220,7 @@ exit: releasePointer(_env, _array, binary, JNI_FALSE); } if (shaders_base) { - _env->ReleasePrimitiveArrayCritical(shaders_ref, shaders_base, + _env->ReleaseIntArrayElements(shaders_ref, (jint*)shaders_base, JNI_ABORT); } if (_exception) { @@ -4116,17 +4235,17 @@ android_glShaderBinary__ILjava_nio_IntBuffer_2ILjava_nio_Buffer_2I jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _shadersArray = (jarray) 0; + jintArray _shadersArray = (jintArray) 0; jint _shadersBufferOffset = (jint) 0; - jarray _binaryArray = (jarray) 0; + jintArray _binaryArray = (jintArray) 0; jint _binaryBufferOffset = (jint) 0; jint _shadersRemaining; GLuint *shaders = (GLuint *) 0; jint _binaryRemaining; GLvoid *binary = (GLvoid *) 0; - shaders = (GLuint *)getPointer(_env, shaders_buf, &_shadersArray, &_shadersRemaining, &_shadersBufferOffset); - binary = (GLvoid *)getPointer(_env, binary_buf, &_binaryArray, &_binaryRemaining, &_binaryBufferOffset); + shaders = (GLuint *)getPointer(_env, shaders_buf, (jarray*)&_shadersArray, &_shadersRemaining, &_shadersBufferOffset); + binary = (GLvoid *)getPointer(_env, binary_buf, (jarray*)&_binaryArray, &_binaryRemaining, &_binaryBufferOffset); if (_binaryRemaining < length) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4134,7 +4253,7 @@ android_glShaderBinary__ILjava_nio_IntBuffer_2ILjava_nio_Buffer_2I goto exit; } if (shaders == NULL) { - char * _shadersBase = (char *)_env->GetPrimitiveArrayCritical(_shadersArray, (jboolean *) 0); + char * _shadersBase = (char *)_env->GetIntArrayElements(_shadersArray, (jboolean *) 0); shaders = (GLuint *) (_shadersBase + _shadersBufferOffset); } if (binary == NULL) { @@ -4154,7 +4273,7 @@ exit: releasePointer(_env, _binaryArray, binary, JNI_FALSE); } if (_shadersArray) { - releasePointer(_env, _shadersArray, shaders, JNI_FALSE); + _env->ReleaseIntArrayElements(_shadersArray, (jint*)shaders, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4253,7 +4372,7 @@ android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); @@ -4317,7 +4436,7 @@ android_glTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterfv( @@ -4328,7 +4447,7 @@ android_glTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -4343,12 +4462,12 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4356,7 +4475,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexParameterfv( @@ -4367,7 +4486,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4416,7 +4535,7 @@ android_glTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameteriv( @@ -4427,7 +4546,7 @@ android_glTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -4442,12 +4561,12 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4455,7 +4574,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexParameteriv( @@ -4466,7 +4585,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4483,7 +4602,7 @@ android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); @@ -4546,7 +4665,7 @@ android_glUniform1fv__II_3FI goto exit; } v_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetFloatArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform1fv( @@ -4557,7 +4676,7 @@ android_glUniform1fv__II_3FI exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseFloatArrayElements(v_ref, (jfloat*)v_base, JNI_ABORT); } if (_exception) { @@ -4572,12 +4691,12 @@ android_glUniform1fv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *v = (GLfloat *) 0; - v = (GLfloat *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLfloat *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4585,7 +4704,7 @@ android_glUniform1fv__IILjava_nio_FloatBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); v = (GLfloat *) (_vBase + _bufferOffset); } glUniform1fv( @@ -4596,7 +4715,7 @@ android_glUniform1fv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4644,7 +4763,7 @@ android_glUniform1iv__II_3II goto exit; } v_base = (GLint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform1iv( @@ -4655,7 +4774,7 @@ android_glUniform1iv__II_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -4670,12 +4789,12 @@ android_glUniform1iv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *v = (GLint *) 0; - v = (GLint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4683,7 +4802,7 @@ android_glUniform1iv__IILjava_nio_IntBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLint *) (_vBase + _bufferOffset); } glUniform1iv( @@ -4694,7 +4813,7 @@ android_glUniform1iv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4743,7 +4862,7 @@ android_glUniform2fv__II_3FI goto exit; } v_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetFloatArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform2fv( @@ -4754,7 +4873,7 @@ android_glUniform2fv__II_3FI exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseFloatArrayElements(v_ref, (jfloat*)v_base, JNI_ABORT); } if (_exception) { @@ -4769,12 +4888,12 @@ android_glUniform2fv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *v = (GLfloat *) 0; - v = (GLfloat *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLfloat *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*2) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4782,7 +4901,7 @@ android_glUniform2fv__IILjava_nio_FloatBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); v = (GLfloat *) (_vBase + _bufferOffset); } glUniform2fv( @@ -4793,7 +4912,7 @@ android_glUniform2fv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4842,7 +4961,7 @@ android_glUniform2iv__II_3II goto exit; } v_base = (GLint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform2iv( @@ -4853,7 +4972,7 @@ android_glUniform2iv__II_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -4868,12 +4987,12 @@ android_glUniform2iv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *v = (GLint *) 0; - v = (GLint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*2) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4881,7 +5000,7 @@ android_glUniform2iv__IILjava_nio_IntBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLint *) (_vBase + _bufferOffset); } glUniform2iv( @@ -4892,7 +5011,7 @@ android_glUniform2iv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4942,7 +5061,7 @@ android_glUniform3fv__II_3FI goto exit; } v_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetFloatArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform3fv( @@ -4953,7 +5072,7 @@ android_glUniform3fv__II_3FI exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseFloatArrayElements(v_ref, (jfloat*)v_base, JNI_ABORT); } if (_exception) { @@ -4968,12 +5087,12 @@ android_glUniform3fv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *v = (GLfloat *) 0; - v = (GLfloat *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLfloat *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*3) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4981,7 +5100,7 @@ android_glUniform3fv__IILjava_nio_FloatBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); v = (GLfloat *) (_vBase + _bufferOffset); } glUniform3fv( @@ -4992,7 +5111,7 @@ android_glUniform3fv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5042,7 +5161,7 @@ android_glUniform3iv__II_3II goto exit; } v_base = (GLint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform3iv( @@ -5053,7 +5172,7 @@ android_glUniform3iv__II_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -5068,12 +5187,12 @@ android_glUniform3iv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *v = (GLint *) 0; - v = (GLint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*3) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5081,7 +5200,7 @@ android_glUniform3iv__IILjava_nio_IntBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLint *) (_vBase + _bufferOffset); } glUniform3iv( @@ -5092,7 +5211,7 @@ android_glUniform3iv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5143,7 +5262,7 @@ android_glUniform4fv__II_3FI goto exit; } v_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetFloatArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform4fv( @@ -5154,7 +5273,7 @@ android_glUniform4fv__II_3FI exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseFloatArrayElements(v_ref, (jfloat*)v_base, JNI_ABORT); } if (_exception) { @@ -5169,12 +5288,12 @@ android_glUniform4fv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *v = (GLfloat *) 0; - v = (GLfloat *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLfloat *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5182,7 +5301,7 @@ android_glUniform4fv__IILjava_nio_FloatBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); v = (GLfloat *) (_vBase + _bufferOffset); } glUniform4fv( @@ -5193,7 +5312,7 @@ android_glUniform4fv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5244,7 +5363,7 @@ android_glUniform4iv__II_3II goto exit; } v_base = (GLint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glUniform4iv( @@ -5255,7 +5374,7 @@ android_glUniform4iv__II_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -5270,12 +5389,12 @@ android_glUniform4iv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *v = (GLint *) 0; - v = (GLint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5283,7 +5402,7 @@ android_glUniform4iv__IILjava_nio_IntBuffer_2 goto exit; } if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLint *) (_vBase + _bufferOffset); } glUniform4iv( @@ -5294,7 +5413,7 @@ android_glUniform4iv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5332,7 +5451,7 @@ android_glUniformMatrix2fv__IIZ_3FI goto exit; } value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix2fv( @@ -5344,7 +5463,7 @@ android_glUniformMatrix2fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -5359,12 +5478,12 @@ android_glUniformMatrix2fv__IIZLjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5372,7 +5491,7 @@ android_glUniformMatrix2fv__IIZLjava_nio_FloatBuffer_2 goto exit; } if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix2fv( @@ -5384,7 +5503,7 @@ android_glUniformMatrix2fv__IIZLjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5422,7 +5541,7 @@ android_glUniformMatrix3fv__IIZ_3FI goto exit; } value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix3fv( @@ -5434,7 +5553,7 @@ android_glUniformMatrix3fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -5449,12 +5568,12 @@ android_glUniformMatrix3fv__IIZLjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*9) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5462,7 +5581,7 @@ android_glUniformMatrix3fv__IIZLjava_nio_FloatBuffer_2 goto exit; } if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix3fv( @@ -5474,7 +5593,7 @@ android_glUniformMatrix3fv__IIZLjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5512,7 +5631,7 @@ android_glUniformMatrix4fv__IIZ_3FI goto exit; } value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix4fv( @@ -5524,7 +5643,7 @@ android_glUniformMatrix4fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -5539,12 +5658,12 @@ android_glUniformMatrix4fv__IIZLjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count*16) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5552,7 +5671,7 @@ android_glUniformMatrix4fv__IIZLjava_nio_FloatBuffer_2 goto exit; } if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix4fv( @@ -5564,7 +5683,7 @@ android_glUniformMatrix4fv__IIZLjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5630,7 +5749,7 @@ android_glVertexAttrib1fv__I_3FI goto exit; } values_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(values_ref, (jboolean *)0); + _env->GetFloatArrayElements(values_ref, (jboolean *)0); values = values_base + offset; glVertexAttrib1fv( @@ -5640,7 +5759,7 @@ android_glVertexAttrib1fv__I_3FI exit: if (values_base) { - _env->ReleasePrimitiveArrayCritical(values_ref, values_base, + _env->ReleaseFloatArrayElements(values_ref, (jfloat*)values_base, JNI_ABORT); } if (_exception) { @@ -5655,12 +5774,12 @@ android_glVertexAttrib1fv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *values = (GLfloat *) 0; - values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining, &_bufferOffset); + values = (GLfloat *)getPointer(_env, values_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5668,7 +5787,7 @@ android_glVertexAttrib1fv__ILjava_nio_FloatBuffer_2 goto exit; } if (values == NULL) { - char * _valuesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valuesBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); values = (GLfloat *) (_valuesBase + _bufferOffset); } glVertexAttrib1fv( @@ -5678,7 +5797,7 @@ android_glVertexAttrib1fv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, values, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)values, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5727,7 +5846,7 @@ android_glVertexAttrib2fv__I_3FI goto exit; } values_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(values_ref, (jboolean *)0); + _env->GetFloatArrayElements(values_ref, (jboolean *)0); values = values_base + offset; glVertexAttrib2fv( @@ -5737,7 +5856,7 @@ android_glVertexAttrib2fv__I_3FI exit: if (values_base) { - _env->ReleasePrimitiveArrayCritical(values_ref, values_base, + _env->ReleaseFloatArrayElements(values_ref, (jfloat*)values_base, JNI_ABORT); } if (_exception) { @@ -5752,12 +5871,12 @@ android_glVertexAttrib2fv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *values = (GLfloat *) 0; - values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining, &_bufferOffset); + values = (GLfloat *)getPointer(_env, values_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 2) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5765,7 +5884,7 @@ android_glVertexAttrib2fv__ILjava_nio_FloatBuffer_2 goto exit; } if (values == NULL) { - char * _valuesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valuesBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); values = (GLfloat *) (_valuesBase + _bufferOffset); } glVertexAttrib2fv( @@ -5775,7 +5894,7 @@ android_glVertexAttrib2fv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, values, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)values, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5825,7 +5944,7 @@ android_glVertexAttrib3fv__I_3FI goto exit; } values_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(values_ref, (jboolean *)0); + _env->GetFloatArrayElements(values_ref, (jboolean *)0); values = values_base + offset; glVertexAttrib3fv( @@ -5835,7 +5954,7 @@ android_glVertexAttrib3fv__I_3FI exit: if (values_base) { - _env->ReleasePrimitiveArrayCritical(values_ref, values_base, + _env->ReleaseFloatArrayElements(values_ref, (jfloat*)values_base, JNI_ABORT); } if (_exception) { @@ -5850,12 +5969,12 @@ android_glVertexAttrib3fv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *values = (GLfloat *) 0; - values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining, &_bufferOffset); + values = (GLfloat *)getPointer(_env, values_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 3) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5863,7 +5982,7 @@ android_glVertexAttrib3fv__ILjava_nio_FloatBuffer_2 goto exit; } if (values == NULL) { - char * _valuesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valuesBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); values = (GLfloat *) (_valuesBase + _bufferOffset); } glVertexAttrib3fv( @@ -5873,7 +5992,7 @@ android_glVertexAttrib3fv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, values, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)values, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5924,7 +6043,7 @@ android_glVertexAttrib4fv__I_3FI goto exit; } values_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(values_ref, (jboolean *)0); + _env->GetFloatArrayElements(values_ref, (jboolean *)0); values = values_base + offset; glVertexAttrib4fv( @@ -5934,7 +6053,7 @@ android_glVertexAttrib4fv__I_3FI exit: if (values_base) { - _env->ReleasePrimitiveArrayCritical(values_ref, values_base, + _env->ReleaseFloatArrayElements(values_ref, (jfloat*)values_base, JNI_ABORT); } if (_exception) { @@ -5949,12 +6068,12 @@ android_glVertexAttrib4fv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *values = (GLfloat *) 0; - values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining, &_bufferOffset); + values = (GLfloat *)getPointer(_env, values_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5962,7 +6081,7 @@ android_glVertexAttrib4fv__ILjava_nio_FloatBuffer_2 goto exit; } if (values == NULL) { - char * _valuesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valuesBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); values = (GLfloat *) (_valuesBase + _bufferOffset); } glVertexAttrib4fv( @@ -5972,7 +6091,7 @@ android_glVertexAttrib4fv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, values, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)values, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); diff --git a/core/jni/android_opengl_GLES30.cpp b/core/jni/android_opengl_GLES30.cpp index 226162d..1d92cd4 100644 --- a/core/jni/android_opengl_GLES30.cpp +++ b/core/jni/android_opengl_GLES30.cpp @@ -126,6 +126,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -229,7 +339,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -264,8 +375,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -275,8 +386,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -284,20 +395,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -310,7 +422,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -320,7 +433,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -346,7 +460,7 @@ android_glDrawRangeElements__IIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *indices = (GLvoid *) 0; - indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset); + indices = (GLvoid *)getPointer(_env, indices_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (indices == NULL) { char * _indicesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); indices = (GLvoid *) (_indicesBase + _bufferOffset); @@ -387,7 +501,7 @@ android_glTexImage3D__IIIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *pixels = (GLvoid *) 0; - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); pixels = (GLvoid *) (_pixelsBase + _bufferOffset); @@ -436,7 +550,7 @@ android_glTexSubImage3D__IIIIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *pixels = (GLvoid *) 0; - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); pixels = (GLvoid *) (_pixelsBase + _bufferOffset); @@ -504,7 +618,7 @@ android_glCompressedTexImage3D__IIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -551,7 +665,7 @@ android_glCompressedTexSubImage3D__IIIIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -618,7 +732,7 @@ android_glGenQueries__I_3II } _remaining = _env->GetArrayLength(ids_ref) - offset; ids_base = (GLuint *) - _env->GetPrimitiveArrayCritical(ids_ref, (jboolean *)0); + _env->GetIntArrayElements(ids_ref, (jboolean *)0); ids = ids_base + offset; glGenQueries( @@ -628,7 +742,7 @@ android_glGenQueries__I_3II exit: if (ids_base) { - _env->ReleasePrimitiveArrayCritical(ids_ref, ids_base, + _env->ReleaseIntArrayElements(ids_ref, (jint*)ids_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -640,14 +754,14 @@ exit: static void android_glGenQueries__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject ids_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *ids = (GLuint *) 0; - ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset); + ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (ids == NULL) { - char * _idsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _idsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); ids = (GLuint *) (_idsBase + _bufferOffset); } glGenQueries( @@ -655,7 +769,7 @@ android_glGenQueries__ILjava_nio_IntBuffer_2 (GLuint *)ids ); if (_array) { - releasePointer(_env, _array, ids, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)ids, 0); } } @@ -684,7 +798,7 @@ android_glDeleteQueries__I_3II } _remaining = _env->GetArrayLength(ids_ref) - offset; ids_base = (GLuint *) - _env->GetPrimitiveArrayCritical(ids_ref, (jboolean *)0); + _env->GetIntArrayElements(ids_ref, (jboolean *)0); ids = ids_base + offset; glDeleteQueries( @@ -694,7 +808,7 @@ android_glDeleteQueries__I_3II exit: if (ids_base) { - _env->ReleasePrimitiveArrayCritical(ids_ref, ids_base, + _env->ReleaseIntArrayElements(ids_ref, (jint*)ids_base, JNI_ABORT); } if (_exception) { @@ -706,14 +820,14 @@ exit: static void android_glDeleteQueries__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject ids_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *ids = (GLuint *) 0; - ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset); + ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (ids == NULL) { - char * _idsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _idsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); ids = (GLuint *) (_idsBase + _bufferOffset); } glDeleteQueries( @@ -721,7 +835,7 @@ android_glDeleteQueries__ILjava_nio_IntBuffer_2 (GLuint *)ids ); if (_array) { - releasePointer(_env, _array, ids, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)ids, JNI_ABORT); } } @@ -780,7 +894,7 @@ android_glGetQueryiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetQueryiv( @@ -791,7 +905,7 @@ android_glGetQueryiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -803,14 +917,14 @@ exit: static void android_glGetQueryiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetQueryiv( @@ -819,7 +933,7 @@ android_glGetQueryiv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -848,7 +962,7 @@ android_glGetQueryObjectuiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetQueryObjectuiv( @@ -859,7 +973,7 @@ android_glGetQueryObjectuiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -871,14 +985,14 @@ exit: static void android_glGetQueryObjectuiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint id, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glGetQueryObjectuiv( @@ -887,7 +1001,7 @@ android_glGetQueryObjectuiv__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -938,7 +1052,7 @@ android_glDrawBuffers__I_3II } _remaining = _env->GetArrayLength(bufs_ref) - offset; bufs_base = (GLenum *) - _env->GetPrimitiveArrayCritical(bufs_ref, (jboolean *)0); + _env->GetIntArrayElements(bufs_ref, (jboolean *)0); bufs = bufs_base + offset; glDrawBuffers( @@ -948,7 +1062,7 @@ android_glDrawBuffers__I_3II exit: if (bufs_base) { - _env->ReleasePrimitiveArrayCritical(bufs_ref, bufs_base, + _env->ReleaseIntArrayElements(bufs_ref, (jint*)bufs_base, JNI_ABORT); } if (_exception) { @@ -960,14 +1074,14 @@ exit: static void android_glDrawBuffers__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject bufs_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLenum *bufs = (GLenum *) 0; - bufs = (GLenum *)getPointer(_env, bufs_buf, &_array, &_remaining, &_bufferOffset); + bufs = (GLenum *)getPointer(_env, bufs_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (bufs == NULL) { - char * _bufsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _bufsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); bufs = (GLenum *) (_bufsBase + _bufferOffset); } glDrawBuffers( @@ -975,7 +1089,7 @@ android_glDrawBuffers__ILjava_nio_IntBuffer_2 (GLenum *)bufs ); if (_array) { - releasePointer(_env, _array, bufs, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)bufs, JNI_ABORT); } } @@ -1004,7 +1118,7 @@ android_glUniformMatrix2x3fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix2x3fv( @@ -1016,7 +1130,7 @@ android_glUniformMatrix2x3fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1028,14 +1142,14 @@ exit: static void android_glUniformMatrix2x3fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix2x3fv( @@ -1045,7 +1159,7 @@ android_glUniformMatrix2x3fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1074,7 +1188,7 @@ android_glUniformMatrix3x2fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix3x2fv( @@ -1086,7 +1200,7 @@ android_glUniformMatrix3x2fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1098,14 +1212,14 @@ exit: static void android_glUniformMatrix3x2fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix3x2fv( @@ -1115,7 +1229,7 @@ android_glUniformMatrix3x2fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1144,7 +1258,7 @@ android_glUniformMatrix2x4fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix2x4fv( @@ -1156,7 +1270,7 @@ android_glUniformMatrix2x4fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1168,14 +1282,14 @@ exit: static void android_glUniformMatrix2x4fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix2x4fv( @@ -1185,7 +1299,7 @@ android_glUniformMatrix2x4fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1214,7 +1328,7 @@ android_glUniformMatrix4x2fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix4x2fv( @@ -1226,7 +1340,7 @@ android_glUniformMatrix4x2fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1238,14 +1352,14 @@ exit: static void android_glUniformMatrix4x2fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix4x2fv( @@ -1255,7 +1369,7 @@ android_glUniformMatrix4x2fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1284,7 +1398,7 @@ android_glUniformMatrix3x4fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix3x4fv( @@ -1296,7 +1410,7 @@ android_glUniformMatrix3x4fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1308,14 +1422,14 @@ exit: static void android_glUniformMatrix3x4fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix3x4fv( @@ -1325,7 +1439,7 @@ android_glUniformMatrix3x4fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1354,7 +1468,7 @@ android_glUniformMatrix4x3fv__IIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniformMatrix4x3fv( @@ -1366,7 +1480,7 @@ android_glUniformMatrix4x3fv__IIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1378,14 +1492,14 @@ exit: static void android_glUniformMatrix4x3fv__IIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glUniformMatrix4x3fv( @@ -1395,7 +1509,7 @@ android_glUniformMatrix4x3fv__IIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1501,7 +1615,7 @@ android_glDeleteVertexArrays__I_3II } _remaining = _env->GetArrayLength(arrays_ref) - offset; arrays_base = (GLuint *) - _env->GetPrimitiveArrayCritical(arrays_ref, (jboolean *)0); + _env->GetIntArrayElements(arrays_ref, (jboolean *)0); arrays = arrays_base + offset; glDeleteVertexArrays( @@ -1511,7 +1625,7 @@ android_glDeleteVertexArrays__I_3II exit: if (arrays_base) { - _env->ReleasePrimitiveArrayCritical(arrays_ref, arrays_base, + _env->ReleaseIntArrayElements(arrays_ref, (jint*)arrays_base, JNI_ABORT); } if (_exception) { @@ -1523,14 +1637,14 @@ exit: static void android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *arrays = (GLuint *) 0; - arrays = (GLuint *)getPointer(_env, arrays_buf, &_array, &_remaining, &_bufferOffset); + arrays = (GLuint *)getPointer(_env, arrays_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (arrays == NULL) { - char * _arraysBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _arraysBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); arrays = (GLuint *) (_arraysBase + _bufferOffset); } glDeleteVertexArrays( @@ -1538,7 +1652,7 @@ android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2 (GLuint *)arrays ); if (_array) { - releasePointer(_env, _array, arrays, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)arrays, JNI_ABORT); } } @@ -1567,7 +1681,7 @@ android_glGenVertexArrays__I_3II } _remaining = _env->GetArrayLength(arrays_ref) - offset; arrays_base = (GLuint *) - _env->GetPrimitiveArrayCritical(arrays_ref, (jboolean *)0); + _env->GetIntArrayElements(arrays_ref, (jboolean *)0); arrays = arrays_base + offset; glGenVertexArrays( @@ -1577,7 +1691,7 @@ android_glGenVertexArrays__I_3II exit: if (arrays_base) { - _env->ReleasePrimitiveArrayCritical(arrays_ref, arrays_base, + _env->ReleaseIntArrayElements(arrays_ref, (jint*)arrays_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1589,14 +1703,14 @@ exit: static void android_glGenVertexArrays__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *arrays = (GLuint *) 0; - arrays = (GLuint *)getPointer(_env, arrays_buf, &_array, &_remaining, &_bufferOffset); + arrays = (GLuint *)getPointer(_env, arrays_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (arrays == NULL) { - char * _arraysBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _arraysBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); arrays = (GLuint *) (_arraysBase + _bufferOffset); } glGenVertexArrays( @@ -1604,7 +1718,7 @@ android_glGenVertexArrays__ILjava_nio_IntBuffer_2 (GLuint *)arrays ); if (_array) { - releasePointer(_env, _array, arrays, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)arrays, 0); } } @@ -1644,7 +1758,7 @@ android_glGetIntegeri_v__II_3II } _remaining = _env->GetArrayLength(data_ref) - offset; data_base = (GLint *) - _env->GetPrimitiveArrayCritical(data_ref, (jboolean *)0); + _env->GetIntArrayElements(data_ref, (jboolean *)0); data = data_base + offset; glGetIntegeri_v( @@ -1655,7 +1769,7 @@ android_glGetIntegeri_v__II_3II exit: if (data_base) { - _env->ReleasePrimitiveArrayCritical(data_ref, data_base, + _env->ReleaseIntArrayElements(data_ref, (jint*)data_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1667,14 +1781,14 @@ exit: static void android_glGetIntegeri_v__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *data = (GLint *) 0; - data = (GLint *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLint *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { - char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _dataBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); data = (GLint *) (_dataBase + _bufferOffset); } glGetIntegeri_v( @@ -1683,7 +1797,7 @@ android_glGetIntegeri_v__IILjava_nio_IntBuffer_2 (GLint *)data ); if (_array) { - releasePointer(_env, _array, data, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)data, 0); } } @@ -1810,7 +1924,7 @@ android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!size_ref) { @@ -1827,7 +1941,7 @@ android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -1844,7 +1958,7 @@ android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; if (!name_ref) { @@ -1861,7 +1975,7 @@ android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI } _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset; name_base = (char *) - _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0); + _env->GetByteArrayElements(name_ref, (jboolean *)0); name = name_base + nameOffset; glGetTransformFeedbackVarying( @@ -1876,19 +1990,19 @@ android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI exit: if (name_base) { - _env->ReleasePrimitiveArrayCritical(name_ref, name_base, + _env->ReleaseByteArrayElements(name_ref, (jbyte*)name_base, _exception ? JNI_ABORT: 0); } if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1900,11 +2014,11 @@ exit: static void android_glGetTransformFeedbackVarying__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) { - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -1913,19 +2027,19 @@ android_glGetTransformFeedbackVarying__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuff jint _typeRemaining; GLenum *type = (GLenum *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetTransformFeedbackVarying( @@ -1942,13 +2056,13 @@ android_glGetTransformFeedbackVarying__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuff (char *)static_cast<uintptr_t>(name) ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _lengthArray, (jint*)length, JNI_TRUE); } } @@ -1993,7 +2107,7 @@ android_glGetTransformFeedbackVarying1 } _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset; size_base = (GLint *) - _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0); + _env->GetIntArrayElements(size_ref, (jboolean *)0); size = size_base + sizeOffset; if (!type_ref) { @@ -2010,7 +2124,7 @@ android_glGetTransformFeedbackVarying1 } _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset; type_base = (GLenum *) - _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0); + _env->GetIntArrayElements(type_ref, (jboolean *)0); type = type_base + typeOffset; glGetTransformFeedbackVarying( @@ -2024,11 +2138,11 @@ android_glGetTransformFeedbackVarying1 ); exit: if (type_base) { - _env->ReleasePrimitiveArrayCritical(type_ref, type_base, + _env->ReleaseIntArrayElements(type_ref, (jint*)type_base, _exception ? JNI_ABORT: 0); } if (size_base) { - _env->ReleasePrimitiveArrayCritical(size_ref, size_base, + _env->ReleaseIntArrayElements(size_ref, (jint*)size_base, _exception ? JNI_ABORT: 0); } if (_exception != 1) { @@ -2051,9 +2165,9 @@ exit: static jstring android_glGetTransformFeedbackVarying2 (JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) { - jarray _sizeArray = (jarray) 0; + jintArray _sizeArray = (jintArray) 0; jint _sizeBufferOffset = (jint) 0; - jarray _typeArray = (jarray) 0; + jintArray _typeArray = (jintArray) 0; jint _typeBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -2076,14 +2190,14 @@ android_glGetTransformFeedbackVarying2 return NULL; } - size = (GLint *)getPointer(_env, size_buf, &_sizeArray, &_sizeRemaining, &_sizeBufferOffset); - type = (GLenum *)getPointer(_env, type_buf, &_typeArray, &_typeRemaining, &_typeBufferOffset); + size = (GLint *)getPointer(_env, size_buf, (jarray*)&_sizeArray, &_sizeRemaining, &_sizeBufferOffset); + type = (GLenum *)getPointer(_env, type_buf, (jarray*)&_typeArray, &_typeRemaining, &_typeBufferOffset); if (size == NULL) { - char * _sizeBase = (char *)_env->GetPrimitiveArrayCritical(_sizeArray, (jboolean *) 0); + char * _sizeBase = (char *)_env->GetIntArrayElements(_sizeArray, (jboolean *) 0); size = (GLint *) (_sizeBase + _sizeBufferOffset); } if (type == NULL) { - char * _typeBase = (char *)_env->GetPrimitiveArrayCritical(_typeArray, (jboolean *) 0); + char * _typeBase = (char *)_env->GetIntArrayElements(_typeArray, (jboolean *) 0); type = (GLenum *) (_typeBase + _typeBufferOffset); } glGetTransformFeedbackVarying( @@ -2097,10 +2211,10 @@ android_glGetTransformFeedbackVarying2 ); if (_typeArray) { - releasePointer(_env, _typeArray, type, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _typeArray, (jint*)type, JNI_TRUE); } if (_sizeArray) { - releasePointer(_env, _sizeArray, size, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>(_env, _sizeArray, (jint*)size, JNI_TRUE); } result = _env->NewStringUTF(buf); if (buf) { @@ -2171,7 +2285,7 @@ android_glGetVertexAttribIiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetVertexAttribIiv( @@ -2182,7 +2296,7 @@ android_glGetVertexAttribIiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2194,14 +2308,14 @@ exit: static void android_glGetVertexAttribIiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetVertexAttribIiv( @@ -2210,7 +2324,7 @@ android_glGetVertexAttribIiv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -2239,7 +2353,7 @@ android_glGetVertexAttribIuiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetVertexAttribIuiv( @@ -2250,7 +2364,7 @@ android_glGetVertexAttribIuiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2262,14 +2376,14 @@ exit: static void android_glGetVertexAttribIuiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glGetVertexAttribIuiv( @@ -2278,7 +2392,7 @@ android_glGetVertexAttribIuiv__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -2333,7 +2447,7 @@ android_glVertexAttribI4iv__I_3II } _remaining = _env->GetArrayLength(v_ref) - offset; v_base = (GLint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glVertexAttribI4iv( @@ -2343,7 +2457,7 @@ android_glVertexAttribI4iv__I_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -2355,14 +2469,14 @@ exit: static void android_glVertexAttribI4iv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint index, jobject v_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *v = (GLint *) 0; - v = (GLint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLint *) (_vBase + _bufferOffset); } glVertexAttribI4iv( @@ -2370,7 +2484,7 @@ android_glVertexAttribI4iv__ILjava_nio_IntBuffer_2 (GLint *)v ); if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } } @@ -2399,7 +2513,7 @@ android_glVertexAttribI4uiv__I_3II } _remaining = _env->GetArrayLength(v_ref) - offset; v_base = (GLuint *) - _env->GetPrimitiveArrayCritical(v_ref, (jboolean *)0); + _env->GetIntArrayElements(v_ref, (jboolean *)0); v = v_base + offset; glVertexAttribI4uiv( @@ -2409,7 +2523,7 @@ android_glVertexAttribI4uiv__I_3II exit: if (v_base) { - _env->ReleasePrimitiveArrayCritical(v_ref, v_base, + _env->ReleaseIntArrayElements(v_ref, (jint*)v_base, JNI_ABORT); } if (_exception) { @@ -2421,14 +2535,14 @@ exit: static void android_glVertexAttribI4uiv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint index, jobject v_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *v = (GLuint *) 0; - v = (GLuint *)getPointer(_env, v_buf, &_array, &_remaining, &_bufferOffset); + v = (GLuint *)getPointer(_env, v_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (v == NULL) { - char * _vBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _vBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); v = (GLuint *) (_vBase + _bufferOffset); } glVertexAttribI4uiv( @@ -2436,7 +2550,7 @@ android_glVertexAttribI4uiv__ILjava_nio_IntBuffer_2 (GLuint *)v ); if (_array) { - releasePointer(_env, _array, v, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)v, JNI_ABORT); } } @@ -2465,7 +2579,7 @@ android_glGetUniformuiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetUniformuiv( @@ -2476,7 +2590,7 @@ android_glGetUniformuiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2488,14 +2602,14 @@ exit: static void android_glGetUniformuiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glGetUniformuiv( @@ -2504,7 +2618,7 @@ android_glGetUniformuiv__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -2613,7 +2727,7 @@ android_glUniform1uiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniform1uiv( @@ -2624,7 +2738,7 @@ android_glUniform1uiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2636,14 +2750,14 @@ exit: static void android_glUniform1uiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glUniform1uiv( @@ -2652,7 +2766,7 @@ android_glUniform1uiv__IILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -2681,7 +2795,7 @@ android_glUniform2uiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniform2uiv( @@ -2692,7 +2806,7 @@ android_glUniform2uiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2704,14 +2818,14 @@ exit: static void android_glUniform2uiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glUniform2uiv( @@ -2720,7 +2834,7 @@ android_glUniform2uiv__IILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -2749,7 +2863,7 @@ android_glUniform3uiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniform3uiv( @@ -2760,7 +2874,7 @@ android_glUniform3uiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2772,14 +2886,14 @@ exit: static void android_glUniform3uiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glUniform3uiv( @@ -2788,7 +2902,7 @@ android_glUniform3uiv__IILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -2817,7 +2931,7 @@ android_glUniform4uiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glUniform4uiv( @@ -2828,7 +2942,7 @@ android_glUniform4uiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2840,14 +2954,14 @@ exit: static void android_glUniform4uiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glUniform4uiv( @@ -2856,7 +2970,7 @@ android_glUniform4uiv__IILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -2885,7 +2999,7 @@ android_glClearBufferiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glClearBufferiv( @@ -2896,7 +3010,7 @@ android_glClearBufferiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2908,14 +3022,14 @@ exit: static void android_glClearBufferiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *value = (GLint *) 0; - value = (GLint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLint *) (_valueBase + _bufferOffset); } glClearBufferiv( @@ -2924,7 +3038,7 @@ android_glClearBufferiv__IILjava_nio_IntBuffer_2 (GLint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -2953,7 +3067,7 @@ android_glClearBufferuiv__II_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glClearBufferuiv( @@ -2964,7 +3078,7 @@ android_glClearBufferuiv__II_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -2976,14 +3090,14 @@ exit: static void android_glClearBufferuiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glClearBufferuiv( @@ -2992,7 +3106,7 @@ android_glClearBufferuiv__IILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -3021,7 +3135,7 @@ android_glClearBufferfv__II_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glClearBufferfv( @@ -3032,7 +3146,7 @@ android_glClearBufferfv__II_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -3044,14 +3158,14 @@ exit: static void android_glClearBufferfv__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glClearBufferfv( @@ -3060,7 +3174,7 @@ android_glClearBufferfv__IILjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -3148,7 +3262,7 @@ android_glGetUniformIndices_array _exceptionMessage = "not enough space in uniformIndices"; goto exit; } - _indices_base = (GLuint*)_env->GetPrimitiveArrayCritical( + _indices_base = (GLuint*)_env->GetIntArrayElements( uniformIndices_ref, 0); _indices = _indices_base + uniformIndicesOffset; @@ -3156,8 +3270,8 @@ android_glGetUniformIndices_array exit: if (_indices_base) { - _env->ReleasePrimitiveArrayCritical(uniformIndices_ref, _indices_base, - _exception ? JNI_ABORT : 0); + _env->ReleaseIntArrayElements(uniformIndices_ref, (jint*)_indices_base, + _exception ? JNI_ABORT : 0); } for (_i = _count - 1; _i >= 0; _i--) { if (_names[_i]) { @@ -3184,7 +3298,7 @@ android_glGetUniformIndices_buffer jint _count = 0; jint _i; const char** _names = NULL; - jarray _uniformIndicesArray = (jarray)0; + jintArray _uniformIndicesArray = (jintArray)0; jint _uniformIndicesRemaining; jint _uniformIndicesOffset = 0; GLuint* _indices = NULL; @@ -3217,11 +3331,11 @@ android_glGetUniformIndices_buffer } _indices = (GLuint*)getPointer(_env, uniformIndices_buf, - &_uniformIndicesArray, &_uniformIndicesRemaining, + (jarray*)&_uniformIndicesArray, &_uniformIndicesRemaining, &_uniformIndicesOffset); if (!_indices) { - _indicesBase = (char*)_env->GetPrimitiveArrayCritical( - _uniformIndicesArray, 0); + _indicesBase = (char*)_env->GetIntArrayElements( + _uniformIndicesArray, 0); _indices = (GLuint*)(_indicesBase + _uniformIndicesOffset); } if (_uniformIndicesRemaining < _count) { @@ -3235,7 +3349,8 @@ android_glGetUniformIndices_buffer exit: if (_uniformIndicesArray) { - releasePointer(_env, _uniformIndicesArray, _indicesBase, JNI_TRUE); + releaseArrayPointer<jintArray, jint*, IntArrayReleaser>( + _env, _uniformIndicesArray, (jint*)_indicesBase, JNI_TRUE); } for (_i = _count - 1; _i >= 0; _i--) { if (_names[_i]) { @@ -3250,7 +3365,6 @@ exit: jniThrowException(_env, _exceptionType, _exceptionMessage); } } - /* void glGetActiveUniformsiv ( GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params ) */ static void android_glGetActiveUniformsiv__II_3III_3II @@ -3279,7 +3393,7 @@ android_glGetActiveUniformsiv__II_3III_3II } _uniformIndicesRemaining = _env->GetArrayLength(uniformIndices_ref) - uniformIndicesOffset; uniformIndices_base = (GLuint *) - _env->GetPrimitiveArrayCritical(uniformIndices_ref, (jboolean *)0); + _env->GetIntArrayElements(uniformIndices_ref, (jboolean *)0); uniformIndices = uniformIndices_base + uniformIndicesOffset; if (!params_ref) { @@ -3296,7 +3410,7 @@ android_glGetActiveUniformsiv__II_3III_3II } _paramsRemaining = _env->GetArrayLength(params_ref) - paramsOffset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + paramsOffset; glGetActiveUniformsiv( @@ -3309,11 +3423,11 @@ android_glGetActiveUniformsiv__II_3III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (uniformIndices_base) { - _env->ReleasePrimitiveArrayCritical(uniformIndices_ref, uniformIndices_base, + _env->ReleaseIntArrayElements(uniformIndices_ref, (jint*)uniformIndices_base, JNI_ABORT); } if (_exception) { @@ -3325,23 +3439,23 @@ exit: static void android_glGetActiveUniformsiv__IILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint uniformCount, jobject uniformIndices_buf, jint pname, jobject params_buf) { - jarray _uniformIndicesArray = (jarray) 0; + jintArray _uniformIndicesArray = (jintArray) 0; jint _uniformIndicesBufferOffset = (jint) 0; - jarray _paramsArray = (jarray) 0; + jintArray _paramsArray = (jintArray) 0; jint _paramsBufferOffset = (jint) 0; jint _uniformIndicesRemaining; GLuint *uniformIndices = (GLuint *) 0; jint _paramsRemaining; GLint *params = (GLint *) 0; - uniformIndices = (GLuint *)getPointer(_env, uniformIndices_buf, &_uniformIndicesArray, &_uniformIndicesRemaining, &_uniformIndicesBufferOffset); - params = (GLint *)getPointer(_env, params_buf, &_paramsArray, &_paramsRemaining, &_paramsBufferOffset); + uniformIndices = (GLuint *)getPointer(_env, uniformIndices_buf, (jarray*)&_uniformIndicesArray, &_uniformIndicesRemaining, &_uniformIndicesBufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_paramsArray, &_paramsRemaining, &_paramsBufferOffset); if (uniformIndices == NULL) { - char * _uniformIndicesBase = (char *)_env->GetPrimitiveArrayCritical(_uniformIndicesArray, (jboolean *) 0); + char * _uniformIndicesBase = (char *)_env->GetIntArrayElements(_uniformIndicesArray, (jboolean *) 0); uniformIndices = (GLuint *) (_uniformIndicesBase + _uniformIndicesBufferOffset); } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_paramsArray, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_paramsArray, (jboolean *) 0); params = (GLint *) (_paramsBase + _paramsBufferOffset); } glGetActiveUniformsiv( @@ -3352,10 +3466,10 @@ android_glGetActiveUniformsiv__IILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2 (GLint *)params ); if (_paramsArray) { - releasePointer(_env, _paramsArray, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_paramsArray, (jint*)params, 0); } if (_uniformIndicesArray) { - releasePointer(_env, _uniformIndicesArray, uniformIndices, JNI_FALSE); + _env->ReleaseIntArrayElements(_uniformIndicesArray, (jint*)uniformIndices, JNI_ABORT); } } @@ -3418,7 +3532,7 @@ android_glGetActiveUniformBlockiv__III_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetActiveUniformBlockiv( @@ -3430,7 +3544,7 @@ android_glGetActiveUniformBlockiv__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3442,14 +3556,14 @@ exit: static void android_glGetActiveUniformBlockiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetActiveUniformBlockiv( @@ -3459,7 +3573,7 @@ android_glGetActiveUniformBlockiv__IIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -3490,7 +3604,7 @@ android_glGetActiveUniformBlockName_III_3II_3BI goto exit; } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; - _length_base = (GLsizei*)_env->GetPrimitiveArrayCritical( + _length_base = (GLsizei*)_env->GetIntArrayElements( length_ref, (jboolean*)0); _length = _length_base + lengthOffset; @@ -3507,7 +3621,7 @@ android_glGetActiveUniformBlockName_III_3II_3BI goto exit; } _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset; - _name_base = (GLchar*)_env->GetPrimitiveArrayCritical( + _name_base = (GLchar*)_env->GetByteArrayElements( name_ref, (jboolean*)0); _name = _name_base + nameOffset; @@ -3521,11 +3635,11 @@ android_glGetActiveUniformBlockName_III_3II_3BI exit: if (_name_base) { - _env->ReleasePrimitiveArrayCritical(name_ref, _name_base, + _env->ReleaseByteArrayElements(name_ref, (jbyte*)_name_base, _exception ? JNI_ABORT: 0); } if (_length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, _length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)_length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3589,7 +3703,6 @@ android_glGetActiveUniformBlockName_II free(name); return result; } - /* void glUniformBlockBinding ( GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding ) */ static void android_glUniformBlockBinding__III @@ -3651,7 +3764,6 @@ android_glDrawElementsInstanced__IIIII (GLsizei)instanceCount ); } - /* GLsync glFenceSync ( GLenum condition, GLbitfield flags ) */ static jlong android_glFenceSync__II @@ -3733,7 +3845,7 @@ android_glGetInteger64v__I_3JI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint64 *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetLongArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetInteger64v( @@ -3743,7 +3855,7 @@ android_glGetInteger64v__I_3JI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseLongArrayElements(params_ref, (jlong*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3755,14 +3867,14 @@ exit: static void android_glGetInteger64v__ILjava_nio_LongBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jlongArray _array = (jlongArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint64 *params = (GLint64 *) 0; - params = (GLint64 *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint64 *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetLongArrayElements(_array, (jboolean *) 0); params = (GLint64 *) (_paramsBase + _bufferOffset); } glGetInteger64v( @@ -3770,7 +3882,7 @@ android_glGetInteger64v__ILjava_nio_LongBuffer_2 (GLint64 *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseLongArrayElements(_array, (jlong*)params, 0); } } @@ -3802,7 +3914,7 @@ android_glGetSynciv__JII_3II_3II } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!values_ref) { @@ -3819,7 +3931,7 @@ android_glGetSynciv__JII_3II_3II } _valuesRemaining = _env->GetArrayLength(values_ref) - valuesOffset; values_base = (GLint *) - _env->GetPrimitiveArrayCritical(values_ref, (jboolean *)0); + _env->GetIntArrayElements(values_ref, (jboolean *)0); values = values_base + valuesOffset; glGetSynciv( @@ -3832,11 +3944,11 @@ android_glGetSynciv__JII_3II_3II exit: if (values_base) { - _env->ReleasePrimitiveArrayCritical(values_ref, values_base, + _env->ReleaseIntArrayElements(values_ref, (jint*)values_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3848,23 +3960,23 @@ exit: static void android_glGetSynciv__JIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jlong sync, jint pname, jint bufSize, jobject length_buf, jobject values_buf) { - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _valuesArray = (jarray) 0; + jintArray _valuesArray = (jintArray) 0; jint _valuesBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; jint _valuesRemaining; GLint *values = (GLint *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - values = (GLint *)getPointer(_env, values_buf, &_valuesArray, &_valuesRemaining, &_valuesBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + values = (GLint *)getPointer(_env, values_buf, (jarray*)&_valuesArray, &_valuesRemaining, &_valuesBufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (values == NULL) { - char * _valuesBase = (char *)_env->GetPrimitiveArrayCritical(_valuesArray, (jboolean *) 0); + char * _valuesBase = (char *)_env->GetIntArrayElements(_valuesArray, (jboolean *) 0); values = (GLint *) (_valuesBase + _valuesBufferOffset); } glGetSynciv( @@ -3875,10 +3987,10 @@ android_glGetSynciv__JIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 (GLint *)values ); if (_valuesArray) { - releasePointer(_env, _valuesArray, values, JNI_TRUE); + _env->ReleaseIntArrayElements(_valuesArray, (jint*)values, 0); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + _env->ReleaseIntArrayElements(_lengthArray, (jint*)length, 0); } } @@ -3907,7 +4019,7 @@ android_glGetInteger64i_v__II_3JI } _remaining = _env->GetArrayLength(data_ref) - offset; data_base = (GLint64 *) - _env->GetPrimitiveArrayCritical(data_ref, (jboolean *)0); + _env->GetLongArrayElements(data_ref, (jboolean *)0); data = data_base + offset; glGetInteger64i_v( @@ -3918,7 +4030,7 @@ android_glGetInteger64i_v__II_3JI exit: if (data_base) { - _env->ReleasePrimitiveArrayCritical(data_ref, data_base, + _env->ReleaseLongArrayElements(data_ref, (jlong*)data_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3930,14 +4042,14 @@ exit: static void android_glGetInteger64i_v__IILjava_nio_LongBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) { - jarray _array = (jarray) 0; + jlongArray _array = (jlongArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint64 *data = (GLint64 *) 0; - data = (GLint64 *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLint64 *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { - char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _dataBase = (char *)_env->GetLongArrayElements(_array, (jboolean *) 0); data = (GLint64 *) (_dataBase + _bufferOffset); } glGetInteger64i_v( @@ -3946,7 +4058,7 @@ android_glGetInteger64i_v__IILjava_nio_LongBuffer_2 (GLint64 *)data ); if (_array) { - releasePointer(_env, _array, data, JNI_TRUE); + _env->ReleaseLongArrayElements(_array, (jlong*)data, 0); } } @@ -3975,7 +4087,7 @@ android_glGetBufferParameteri64v__II_3JI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint64 *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetLongArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetBufferParameteri64v( @@ -3986,7 +4098,7 @@ android_glGetBufferParameteri64v__II_3JI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseLongArrayElements(params_ref, (jlong*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -3998,14 +4110,14 @@ exit: static void android_glGetBufferParameteri64v__IILjava_nio_LongBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jlongArray _array = (jlongArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint64 *params = (GLint64 *) 0; - params = (GLint64 *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint64 *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetLongArrayElements(_array, (jboolean *) 0); params = (GLint64 *) (_paramsBase + _bufferOffset); } glGetBufferParameteri64v( @@ -4014,7 +4126,7 @@ android_glGetBufferParameteri64v__IILjava_nio_LongBuffer_2 (GLint64 *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseLongArrayElements(_array, (jlong*)params, 0); } } @@ -4043,7 +4155,7 @@ android_glGenSamplers__I_3II } _remaining = _env->GetArrayLength(samplers_ref) - offset; samplers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(samplers_ref, (jboolean *)0); + _env->GetIntArrayElements(samplers_ref, (jboolean *)0); samplers = samplers_base + offset; glGenSamplers( @@ -4053,7 +4165,7 @@ android_glGenSamplers__I_3II exit: if (samplers_base) { - _env->ReleasePrimitiveArrayCritical(samplers_ref, samplers_base, + _env->ReleaseIntArrayElements(samplers_ref, (jint*)samplers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4065,14 +4177,14 @@ exit: static void android_glGenSamplers__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *samplers = (GLuint *) 0; - samplers = (GLuint *)getPointer(_env, samplers_buf, &_array, &_remaining, &_bufferOffset); + samplers = (GLuint *)getPointer(_env, samplers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (samplers == NULL) { - char * _samplersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _samplersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); samplers = (GLuint *) (_samplersBase + _bufferOffset); } glGenSamplers( @@ -4080,7 +4192,7 @@ android_glGenSamplers__ILjava_nio_IntBuffer_2 (GLuint *)samplers ); if (_array) { - releasePointer(_env, _array, samplers, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)samplers, 0); } } @@ -4109,7 +4221,7 @@ android_glDeleteSamplers__I_3II } _remaining = _env->GetArrayLength(samplers_ref) - offset; samplers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(samplers_ref, (jboolean *)0); + _env->GetIntArrayElements(samplers_ref, (jboolean *)0); samplers = samplers_base + offset; glDeleteSamplers( @@ -4119,7 +4231,7 @@ android_glDeleteSamplers__I_3II exit: if (samplers_base) { - _env->ReleasePrimitiveArrayCritical(samplers_ref, samplers_base, + _env->ReleaseIntArrayElements(samplers_ref, (jint*)samplers_base, JNI_ABORT); } if (_exception) { @@ -4131,14 +4243,14 @@ exit: static void android_glDeleteSamplers__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *samplers = (GLuint *) 0; - samplers = (GLuint *)getPointer(_env, samplers_buf, &_array, &_remaining, &_bufferOffset); + samplers = (GLuint *)getPointer(_env, samplers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (samplers == NULL) { - char * _samplersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _samplersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); samplers = (GLuint *) (_samplersBase + _bufferOffset); } glDeleteSamplers( @@ -4146,7 +4258,7 @@ android_glDeleteSamplers__ILjava_nio_IntBuffer_2 (GLuint *)samplers ); if (_array) { - releasePointer(_env, _array, samplers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)samplers, JNI_ABORT); } } @@ -4207,7 +4319,7 @@ android_glSamplerParameteriv__II_3II } _remaining = _env->GetArrayLength(param_ref) - offset; param_base = (GLint *) - _env->GetPrimitiveArrayCritical(param_ref, (jboolean *)0); + _env->GetIntArrayElements(param_ref, (jboolean *)0); param = param_base + offset; glSamplerParameteriv( @@ -4218,7 +4330,7 @@ android_glSamplerParameteriv__II_3II exit: if (param_base) { - _env->ReleasePrimitiveArrayCritical(param_ref, param_base, + _env->ReleaseIntArrayElements(param_ref, (jint*)param_base, JNI_ABORT); } if (_exception) { @@ -4230,14 +4342,14 @@ exit: static void android_glSamplerParameteriv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *param = (GLint *) 0; - param = (GLint *)getPointer(_env, param_buf, &_array, &_remaining, &_bufferOffset); + param = (GLint *)getPointer(_env, param_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (param == NULL) { - char * _paramBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); param = (GLint *) (_paramBase + _bufferOffset); } glSamplerParameteriv( @@ -4246,7 +4358,7 @@ android_glSamplerParameteriv__IILjava_nio_IntBuffer_2 (GLint *)param ); if (_array) { - releasePointer(_env, _array, param, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)param, JNI_ABORT); } } @@ -4286,7 +4398,7 @@ android_glSamplerParameterfv__II_3FI } _remaining = _env->GetArrayLength(param_ref) - offset; param_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(param_ref, (jboolean *)0); + _env->GetFloatArrayElements(param_ref, (jboolean *)0); param = param_base + offset; glSamplerParameterfv( @@ -4297,7 +4409,7 @@ android_glSamplerParameterfv__II_3FI exit: if (param_base) { - _env->ReleasePrimitiveArrayCritical(param_ref, param_base, + _env->ReleaseFloatArrayElements(param_ref, (jfloat*)param_base, JNI_ABORT); } if (_exception) { @@ -4309,14 +4421,14 @@ exit: static void android_glSamplerParameterfv__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *param = (GLfloat *) 0; - param = (GLfloat *)getPointer(_env, param_buf, &_array, &_remaining, &_bufferOffset); + param = (GLfloat *)getPointer(_env, param_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (param == NULL) { - char * _paramBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); param = (GLfloat *) (_paramBase + _bufferOffset); } glSamplerParameterfv( @@ -4325,7 +4437,7 @@ android_glSamplerParameterfv__IILjava_nio_FloatBuffer_2 (GLfloat *)param ); if (_array) { - releasePointer(_env, _array, param, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)param, JNI_ABORT); } } @@ -4354,7 +4466,7 @@ android_glGetSamplerParameteriv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetSamplerParameteriv( @@ -4365,7 +4477,7 @@ android_glGetSamplerParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4377,14 +4489,14 @@ exit: static void android_glGetSamplerParameteriv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetSamplerParameteriv( @@ -4393,7 +4505,7 @@ android_glGetSamplerParameteriv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -4422,7 +4534,7 @@ android_glGetSamplerParameterfv__II_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetSamplerParameterfv( @@ -4433,7 +4545,7 @@ android_glGetSamplerParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4445,14 +4557,14 @@ exit: static void android_glGetSamplerParameterfv__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetSamplerParameterfv( @@ -4461,7 +4573,7 @@ android_glGetSamplerParameterfv__IILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } @@ -4510,7 +4622,7 @@ android_glDeleteTransformFeedbacks__I_3II } _remaining = _env->GetArrayLength(ids_ref) - offset; ids_base = (GLuint *) - _env->GetPrimitiveArrayCritical(ids_ref, (jboolean *)0); + _env->GetIntArrayElements(ids_ref, (jboolean *)0); ids = ids_base + offset; glDeleteTransformFeedbacks( @@ -4520,7 +4632,7 @@ android_glDeleteTransformFeedbacks__I_3II exit: if (ids_base) { - _env->ReleasePrimitiveArrayCritical(ids_ref, ids_base, + _env->ReleaseIntArrayElements(ids_ref, (jint*)ids_base, JNI_ABORT); } if (_exception) { @@ -4532,14 +4644,14 @@ exit: static void android_glDeleteTransformFeedbacks__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject ids_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *ids = (GLuint *) 0; - ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset); + ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (ids == NULL) { - char * _idsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _idsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); ids = (GLuint *) (_idsBase + _bufferOffset); } glDeleteTransformFeedbacks( @@ -4547,7 +4659,7 @@ android_glDeleteTransformFeedbacks__ILjava_nio_IntBuffer_2 (GLuint *)ids ); if (_array) { - releasePointer(_env, _array, ids, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)ids, JNI_ABORT); } } @@ -4576,7 +4688,7 @@ android_glGenTransformFeedbacks__I_3II } _remaining = _env->GetArrayLength(ids_ref) - offset; ids_base = (GLuint *) - _env->GetPrimitiveArrayCritical(ids_ref, (jboolean *)0); + _env->GetIntArrayElements(ids_ref, (jboolean *)0); ids = ids_base + offset; glGenTransformFeedbacks( @@ -4586,7 +4698,7 @@ android_glGenTransformFeedbacks__I_3II exit: if (ids_base) { - _env->ReleasePrimitiveArrayCritical(ids_ref, ids_base, + _env->ReleaseIntArrayElements(ids_ref, (jint*)ids_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4598,14 +4710,14 @@ exit: static void android_glGenTransformFeedbacks__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject ids_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *ids = (GLuint *) 0; - ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset); + ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (ids == NULL) { - char * _idsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _idsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); ids = (GLuint *) (_idsBase + _bufferOffset); } glGenTransformFeedbacks( @@ -4613,7 +4725,7 @@ android_glGenTransformFeedbacks__ILjava_nio_IntBuffer_2 (GLuint *)ids ); if (_array) { - releasePointer(_env, _array, ids, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)ids, 0); } } @@ -4674,7 +4786,7 @@ android_glGetProgramBinary__II_3II_3IILjava_nio_Buffer_2 } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!binaryFormat_ref) { @@ -4691,10 +4803,10 @@ android_glGetProgramBinary__II_3II_3IILjava_nio_Buffer_2 } _binaryFormatRemaining = _env->GetArrayLength(binaryFormat_ref) - binaryFormatOffset; binaryFormat_base = (GLenum *) - _env->GetPrimitiveArrayCritical(binaryFormat_ref, (jboolean *)0); + _env->GetIntArrayElements(binaryFormat_ref, (jboolean *)0); binaryFormat = binaryFormat_base + binaryFormatOffset; - binary = (GLvoid *)getPointer(_env, binary_buf, &_array, &_binaryRemaining, &_bufferOffset); + binary = (GLvoid *)getPointer(_env, binary_buf, (jarray*)&_array, &_binaryRemaining, &_bufferOffset); if (binary == NULL) { char * _binaryBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); binary = (GLvoid *) (_binaryBase + _bufferOffset); @@ -4712,11 +4824,11 @@ exit: releasePointer(_env, _array, binary, _exception ? JNI_FALSE : JNI_TRUE); } if (binaryFormat_base) { - _env->ReleasePrimitiveArrayCritical(binaryFormat_ref, binaryFormat_base, + _env->ReleaseIntArrayElements(binaryFormat_ref, (jint*)binaryFormat_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4728,11 +4840,11 @@ exit: static void android_glGetProgramBinary__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_Buffer_2 (JNIEnv *_env, jobject _this, jint program, jint bufSize, jobject length_buf, jobject binaryFormat_buf, jobject binary_buf) { - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _binaryFormatArray = (jarray) 0; + jintArray _binaryFormatArray = (jintArray) 0; jint _binaryFormatBufferOffset = (jint) 0; - jarray _binaryArray = (jarray) 0; + jintArray _binaryArray = (jintArray) 0; jint _binaryBufferOffset = (jint) 0; jint _lengthRemaining; GLsizei *length = (GLsizei *) 0; @@ -4741,15 +4853,15 @@ android_glGetProgramBinary__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_ni jint _binaryRemaining; GLvoid *binary = (GLvoid *) 0; - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - binaryFormat = (GLenum *)getPointer(_env, binaryFormat_buf, &_binaryFormatArray, &_binaryFormatRemaining, &_binaryFormatBufferOffset); - binary = (GLvoid *)getPointer(_env, binary_buf, &_binaryArray, &_binaryRemaining, &_binaryBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + binaryFormat = (GLenum *)getPointer(_env, binaryFormat_buf, (jarray*)&_binaryFormatArray, &_binaryFormatRemaining, &_binaryFormatBufferOffset); + binary = (GLvoid *)getPointer(_env, binary_buf, (jarray*)&_binaryArray, &_binaryRemaining, &_binaryBufferOffset); if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (binaryFormat == NULL) { - char * _binaryFormatBase = (char *)_env->GetPrimitiveArrayCritical(_binaryFormatArray, (jboolean *) 0); + char * _binaryFormatBase = (char *)_env->GetIntArrayElements(_binaryFormatArray, (jboolean *) 0); binaryFormat = (GLenum *) (_binaryFormatBase + _binaryFormatBufferOffset); } if (binary == NULL) { @@ -4767,10 +4879,10 @@ android_glGetProgramBinary__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_ni releasePointer(_env, _binaryArray, binary, JNI_TRUE); } if (_binaryFormatArray) { - releasePointer(_env, _binaryFormatArray, binaryFormat, JNI_TRUE); + _env->ReleaseIntArrayElements(_binaryFormatArray, (jint*)binaryFormat, 0); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + _env->ReleaseIntArrayElements(_lengthArray, (jint*)length, 0); } } @@ -4783,7 +4895,7 @@ android_glProgramBinary__IILjava_nio_Buffer_2I jint _remaining; GLvoid *binary = (GLvoid *) 0; - binary = (GLvoid *)getPointer(_env, binary_buf, &_array, &_remaining, &_bufferOffset); + binary = (GLvoid *)getPointer(_env, binary_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (binary == NULL) { char * _binaryBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); binary = (GLvoid *) (_binaryBase + _bufferOffset); @@ -4835,7 +4947,7 @@ android_glInvalidateFramebuffer__II_3II } _remaining = _env->GetArrayLength(attachments_ref) - offset; attachments_base = (GLenum *) - _env->GetPrimitiveArrayCritical(attachments_ref, (jboolean *)0); + _env->GetIntArrayElements(attachments_ref, (jboolean *)0); attachments = attachments_base + offset; glInvalidateFramebuffer( @@ -4846,7 +4958,7 @@ android_glInvalidateFramebuffer__II_3II exit: if (attachments_base) { - _env->ReleasePrimitiveArrayCritical(attachments_ref, attachments_base, + _env->ReleaseIntArrayElements(attachments_ref, (jint*)attachments_base, JNI_ABORT); } if (_exception) { @@ -4858,14 +4970,14 @@ exit: static void android_glInvalidateFramebuffer__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint numAttachments, jobject attachments_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLenum *attachments = (GLenum *) 0; - attachments = (GLenum *)getPointer(_env, attachments_buf, &_array, &_remaining, &_bufferOffset); + attachments = (GLenum *)getPointer(_env, attachments_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (attachments == NULL) { - char * _attachmentsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _attachmentsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); attachments = (GLenum *) (_attachmentsBase + _bufferOffset); } glInvalidateFramebuffer( @@ -4874,7 +4986,7 @@ android_glInvalidateFramebuffer__IILjava_nio_IntBuffer_2 (GLenum *)attachments ); if (_array) { - releasePointer(_env, _array, attachments, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)attachments, JNI_ABORT); } } @@ -4903,7 +5015,7 @@ android_glInvalidateSubFramebuffer__II_3IIIIII } _remaining = _env->GetArrayLength(attachments_ref) - offset; attachments_base = (GLenum *) - _env->GetPrimitiveArrayCritical(attachments_ref, (jboolean *)0); + _env->GetIntArrayElements(attachments_ref, (jboolean *)0); attachments = attachments_base + offset; glInvalidateSubFramebuffer( @@ -4918,7 +5030,7 @@ android_glInvalidateSubFramebuffer__II_3IIIIII exit: if (attachments_base) { - _env->ReleasePrimitiveArrayCritical(attachments_ref, attachments_base, + _env->ReleaseIntArrayElements(attachments_ref, (jint*)attachments_base, JNI_ABORT); } if (_exception) { @@ -4930,14 +5042,14 @@ exit: static void android_glInvalidateSubFramebuffer__IILjava_nio_IntBuffer_2IIII (JNIEnv *_env, jobject _this, jint target, jint numAttachments, jobject attachments_buf, jint x, jint y, jint width, jint height) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLenum *attachments = (GLenum *) 0; - attachments = (GLenum *)getPointer(_env, attachments_buf, &_array, &_remaining, &_bufferOffset); + attachments = (GLenum *)getPointer(_env, attachments_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (attachments == NULL) { - char * _attachmentsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _attachmentsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); attachments = (GLenum *) (_attachmentsBase + _bufferOffset); } glInvalidateSubFramebuffer( @@ -4950,7 +5062,7 @@ android_glInvalidateSubFramebuffer__IILjava_nio_IntBuffer_2IIII (GLsizei)height ); if (_array) { - releasePointer(_env, _array, attachments, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)attachments, JNI_ABORT); } } @@ -5006,7 +5118,7 @@ android_glGetInternalformativ__IIII_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetInternalformativ( @@ -5019,7 +5131,7 @@ android_glGetInternalformativ__IIII_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5031,14 +5143,14 @@ exit: static void android_glGetInternalformativ__IIIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint internalformat, jint pname, jint bufSize, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetInternalformativ( @@ -5049,7 +5161,7 @@ android_glGetInternalformativ__IIIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } diff --git a/core/jni/android_opengl_GLES31.cpp b/core/jni/android_opengl_GLES31.cpp index e5ea950..92ecbe0 100644 --- a/core/jni/android_opengl_GLES31.cpp +++ b/core/jni/android_opengl_GLES31.cpp @@ -124,6 +124,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -227,7 +337,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -262,8 +373,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -273,8 +384,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -282,20 +393,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -308,7 +420,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -318,7 +431,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -410,7 +524,7 @@ android_glGetFramebufferParameteriv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFramebufferParameteriv( @@ -421,7 +535,7 @@ android_glGetFramebufferParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -433,14 +547,14 @@ exit: static void android_glGetFramebufferParameteriv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetFramebufferParameteriv( @@ -449,7 +563,7 @@ android_glGetFramebufferParameteriv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -478,7 +592,7 @@ android_glGetProgramInterfaceiv__III_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetProgramInterfaceiv( @@ -490,7 +604,7 @@ android_glGetProgramInterfaceiv__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -502,14 +616,14 @@ exit: static void android_glGetProgramInterfaceiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint programInterface, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetProgramInterfaceiv( @@ -519,7 +633,7 @@ android_glGetProgramInterfaceiv__IIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -597,7 +711,7 @@ android_glGetProgramResourceiv__IIII_3III_3II_3II } _propsRemaining = _env->GetArrayLength(props_ref) - propsOffset; props_base = (GLenum *) - _env->GetPrimitiveArrayCritical(props_ref, (jboolean *)0); + _env->GetIntArrayElements(props_ref, (jboolean *)0); props = props_base + propsOffset; if (!length_ref) { @@ -614,7 +728,7 @@ android_glGetProgramResourceiv__IIII_3III_3II_3II } _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset; length_base = (GLsizei *) - _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0); + _env->GetIntArrayElements(length_ref, (jboolean *)0); length = length_base + lengthOffset; if (!params_ref) { @@ -631,7 +745,7 @@ android_glGetProgramResourceiv__IIII_3III_3II_3II } _paramsRemaining = _env->GetArrayLength(params_ref) - paramsOffset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + paramsOffset; glGetProgramResourceiv( @@ -647,15 +761,15 @@ android_glGetProgramResourceiv__IIII_3III_3II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (length_base) { - _env->ReleasePrimitiveArrayCritical(length_ref, length_base, + _env->ReleaseIntArrayElements(length_ref, (jint*)length_base, _exception ? JNI_ABORT: 0); } if (props_base) { - _env->ReleasePrimitiveArrayCritical(props_ref, props_base, + _env->ReleaseIntArrayElements(props_ref, (jint*)props_base, JNI_ABORT); } if (_exception) { @@ -667,11 +781,11 @@ exit: static void android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint programInterface, jint index, jint propCount, jobject props_buf, jint bufSize, jobject length_buf, jobject params_buf) { - jarray _propsArray = (jarray) 0; + jintArray _propsArray = (jintArray) 0; jint _propsBufferOffset = (jint) 0; - jarray _lengthArray = (jarray) 0; + jintArray _lengthArray = (jintArray) 0; jint _lengthBufferOffset = (jint) 0; - jarray _paramsArray = (jarray) 0; + jintArray _paramsArray = (jintArray) 0; jint _paramsBufferOffset = (jint) 0; jint _propsRemaining; GLenum *props = (GLenum *) 0; @@ -680,19 +794,19 @@ android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2L jint _paramsRemaining; GLint *params = (GLint *) 0; - props = (GLenum *)getPointer(_env, props_buf, &_propsArray, &_propsRemaining, &_propsBufferOffset); - length = (GLsizei *)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset); - params = (GLint *)getPointer(_env, params_buf, &_paramsArray, &_paramsRemaining, &_paramsBufferOffset); + props = (GLenum *)getPointer(_env, props_buf, (jarray*)&_propsArray, &_propsRemaining, &_propsBufferOffset); + length = (GLsizei *)getPointer(_env, length_buf, (jarray*)&_lengthArray, &_lengthRemaining, &_lengthBufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_paramsArray, &_paramsRemaining, &_paramsBufferOffset); if (props == NULL) { - char * _propsBase = (char *)_env->GetPrimitiveArrayCritical(_propsArray, (jboolean *) 0); + char * _propsBase = (char *)_env->GetIntArrayElements(_propsArray, (jboolean *) 0); props = (GLenum *) (_propsBase + _propsBufferOffset); } if (length == NULL) { - char * _lengthBase = (char *)_env->GetPrimitiveArrayCritical(_lengthArray, (jboolean *) 0); + char * _lengthBase = (char *)_env->GetIntArrayElements(_lengthArray, (jboolean *) 0); length = (GLsizei *) (_lengthBase + _lengthBufferOffset); } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_paramsArray, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_paramsArray, (jboolean *) 0); params = (GLint *) (_paramsBase + _paramsBufferOffset); } glGetProgramResourceiv( @@ -706,13 +820,13 @@ android_glGetProgramResourceiv__IIIILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2L (GLint *)params ); if (_paramsArray) { - releasePointer(_env, _paramsArray, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_paramsArray, (jint*)params, 0); } if (_lengthArray) { - releasePointer(_env, _lengthArray, length, JNI_TRUE); + _env->ReleaseIntArrayElements(_lengthArray, (jint*)length, 0); } if (_propsArray) { - releasePointer(_env, _propsArray, props, JNI_FALSE); + _env->ReleaseIntArrayElements(_propsArray, (jint*)props, JNI_ABORT); } } @@ -814,7 +928,7 @@ android_glDeleteProgramPipelines__I_3II } _remaining = _env->GetArrayLength(pipelines_ref) - offset; pipelines_base = (GLuint *) - _env->GetPrimitiveArrayCritical(pipelines_ref, (jboolean *)0); + _env->GetIntArrayElements(pipelines_ref, (jboolean *)0); pipelines = pipelines_base + offset; glDeleteProgramPipelines( @@ -824,7 +938,7 @@ android_glDeleteProgramPipelines__I_3II exit: if (pipelines_base) { - _env->ReleasePrimitiveArrayCritical(pipelines_ref, pipelines_base, + _env->ReleaseIntArrayElements(pipelines_ref, (jint*)pipelines_base, JNI_ABORT); } if (_exception) { @@ -836,14 +950,14 @@ exit: static void android_glDeleteProgramPipelines__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject pipelines_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *pipelines = (GLuint *) 0; - pipelines = (GLuint *)getPointer(_env, pipelines_buf, &_array, &_remaining, &_bufferOffset); + pipelines = (GLuint *)getPointer(_env, pipelines_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pipelines == NULL) { - char * _pipelinesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _pipelinesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); pipelines = (GLuint *) (_pipelinesBase + _bufferOffset); } glDeleteProgramPipelines( @@ -851,7 +965,7 @@ android_glDeleteProgramPipelines__ILjava_nio_IntBuffer_2 (GLuint *)pipelines ); if (_array) { - releasePointer(_env, _array, pipelines, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)pipelines, JNI_ABORT); } } @@ -880,7 +994,7 @@ android_glGenProgramPipelines__I_3II } _remaining = _env->GetArrayLength(pipelines_ref) - offset; pipelines_base = (GLuint *) - _env->GetPrimitiveArrayCritical(pipelines_ref, (jboolean *)0); + _env->GetIntArrayElements(pipelines_ref, (jboolean *)0); pipelines = pipelines_base + offset; glGenProgramPipelines( @@ -890,7 +1004,7 @@ android_glGenProgramPipelines__I_3II exit: if (pipelines_base) { - _env->ReleasePrimitiveArrayCritical(pipelines_ref, pipelines_base, + _env->ReleaseIntArrayElements(pipelines_ref, (jint*)pipelines_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -902,14 +1016,14 @@ exit: static void android_glGenProgramPipelines__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint n, jobject pipelines_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *pipelines = (GLuint *) 0; - pipelines = (GLuint *)getPointer(_env, pipelines_buf, &_array, &_remaining, &_bufferOffset); + pipelines = (GLuint *)getPointer(_env, pipelines_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pipelines == NULL) { - char * _pipelinesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _pipelinesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); pipelines = (GLuint *) (_pipelinesBase + _bufferOffset); } glGenProgramPipelines( @@ -917,7 +1031,7 @@ android_glGenProgramPipelines__ILjava_nio_IntBuffer_2 (GLuint *)pipelines ); if (_array) { - releasePointer(_env, _array, pipelines, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)pipelines, 0); } } @@ -957,7 +1071,7 @@ android_glGetProgramPipelineiv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetProgramPipelineiv( @@ -968,7 +1082,7 @@ android_glGetProgramPipelineiv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -980,14 +1094,14 @@ exit: static void android_glGetProgramPipelineiv__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pipeline, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetProgramPipelineiv( @@ -996,7 +1110,7 @@ android_glGetProgramPipelineiv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1175,7 +1289,7 @@ android_glProgramUniform1iv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform1iv( @@ -1187,7 +1301,7 @@ android_glProgramUniform1iv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1199,14 +1313,14 @@ exit: static void android_glProgramUniform1iv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *value = (GLint *) 0; - value = (GLint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLint *) (_valueBase + _bufferOffset); } glProgramUniform1iv( @@ -1216,7 +1330,7 @@ android_glProgramUniform1iv__IIILjava_nio_IntBuffer_2 (GLint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1245,7 +1359,7 @@ android_glProgramUniform2iv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform2iv( @@ -1257,7 +1371,7 @@ android_glProgramUniform2iv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1269,14 +1383,14 @@ exit: static void android_glProgramUniform2iv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *value = (GLint *) 0; - value = (GLint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLint *) (_valueBase + _bufferOffset); } glProgramUniform2iv( @@ -1286,7 +1400,7 @@ android_glProgramUniform2iv__IIILjava_nio_IntBuffer_2 (GLint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1315,7 +1429,7 @@ android_glProgramUniform3iv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform3iv( @@ -1327,7 +1441,7 @@ android_glProgramUniform3iv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1339,14 +1453,14 @@ exit: static void android_glProgramUniform3iv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *value = (GLint *) 0; - value = (GLint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLint *) (_valueBase + _bufferOffset); } glProgramUniform3iv( @@ -1356,7 +1470,7 @@ android_glProgramUniform3iv__IIILjava_nio_IntBuffer_2 (GLint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1385,7 +1499,7 @@ android_glProgramUniform4iv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform4iv( @@ -1397,7 +1511,7 @@ android_glProgramUniform4iv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1409,14 +1523,14 @@ exit: static void android_glProgramUniform4iv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *value = (GLint *) 0; - value = (GLint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLint *) (_valueBase + _bufferOffset); } glProgramUniform4iv( @@ -1426,7 +1540,7 @@ android_glProgramUniform4iv__IIILjava_nio_IntBuffer_2 (GLint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1455,7 +1569,7 @@ android_glProgramUniform1uiv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform1uiv( @@ -1467,7 +1581,7 @@ android_glProgramUniform1uiv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1479,14 +1593,14 @@ exit: static void android_glProgramUniform1uiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glProgramUniform1uiv( @@ -1496,7 +1610,7 @@ android_glProgramUniform1uiv__IIILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1525,7 +1639,7 @@ android_glProgramUniform2uiv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform2uiv( @@ -1537,7 +1651,7 @@ android_glProgramUniform2uiv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1549,14 +1663,14 @@ exit: static void android_glProgramUniform2uiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glProgramUniform2uiv( @@ -1566,7 +1680,7 @@ android_glProgramUniform2uiv__IIILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1595,7 +1709,7 @@ android_glProgramUniform3uiv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform3uiv( @@ -1607,7 +1721,7 @@ android_glProgramUniform3uiv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1619,14 +1733,14 @@ exit: static void android_glProgramUniform3uiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glProgramUniform3uiv( @@ -1636,7 +1750,7 @@ android_glProgramUniform3uiv__IIILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1665,7 +1779,7 @@ android_glProgramUniform4uiv__III_3II } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLuint *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetIntArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform4uiv( @@ -1677,7 +1791,7 @@ android_glProgramUniform4uiv__III_3II exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseIntArrayElements(value_ref, (jint*)value_base, JNI_ABORT); } if (_exception) { @@ -1689,14 +1803,14 @@ exit: static void android_glProgramUniform4uiv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *value = (GLuint *) 0; - value = (GLuint *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLuint *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); value = (GLuint *) (_valueBase + _bufferOffset); } glProgramUniform4uiv( @@ -1706,7 +1820,7 @@ android_glProgramUniform4uiv__IIILjava_nio_IntBuffer_2 (GLuint *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)value, JNI_ABORT); } } @@ -1735,7 +1849,7 @@ android_glProgramUniform1fv__III_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform1fv( @@ -1747,7 +1861,7 @@ android_glProgramUniform1fv__III_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1759,14 +1873,14 @@ exit: static void android_glProgramUniform1fv__IIILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniform1fv( @@ -1776,7 +1890,7 @@ android_glProgramUniform1fv__IIILjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1805,7 +1919,7 @@ android_glProgramUniform2fv__III_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform2fv( @@ -1817,7 +1931,7 @@ android_glProgramUniform2fv__III_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1829,14 +1943,14 @@ exit: static void android_glProgramUniform2fv__IIILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniform2fv( @@ -1846,7 +1960,7 @@ android_glProgramUniform2fv__IIILjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1875,7 +1989,7 @@ android_glProgramUniform3fv__III_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform3fv( @@ -1887,7 +2001,7 @@ android_glProgramUniform3fv__III_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1899,14 +2013,14 @@ exit: static void android_glProgramUniform3fv__IIILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniform3fv( @@ -1916,7 +2030,7 @@ android_glProgramUniform3fv__IIILjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -1945,7 +2059,7 @@ android_glProgramUniform4fv__III_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniform4fv( @@ -1957,7 +2071,7 @@ android_glProgramUniform4fv__III_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -1969,14 +2083,14 @@ exit: static void android_glProgramUniform4fv__IIILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniform4fv( @@ -1986,7 +2100,7 @@ android_glProgramUniform4fv__IIILjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2015,7 +2129,7 @@ android_glProgramUniformMatrix2fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix2fv( @@ -2028,7 +2142,7 @@ android_glProgramUniformMatrix2fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2040,14 +2154,14 @@ exit: static void android_glProgramUniformMatrix2fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix2fv( @@ -2058,7 +2172,7 @@ android_glProgramUniformMatrix2fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2087,7 +2201,7 @@ android_glProgramUniformMatrix3fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix3fv( @@ -2100,7 +2214,7 @@ android_glProgramUniformMatrix3fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2112,14 +2226,14 @@ exit: static void android_glProgramUniformMatrix3fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix3fv( @@ -2130,7 +2244,7 @@ android_glProgramUniformMatrix3fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2159,7 +2273,7 @@ android_glProgramUniformMatrix4fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix4fv( @@ -2172,7 +2286,7 @@ android_glProgramUniformMatrix4fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2184,14 +2298,14 @@ exit: static void android_glProgramUniformMatrix4fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix4fv( @@ -2202,7 +2316,7 @@ android_glProgramUniformMatrix4fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2231,7 +2345,7 @@ android_glProgramUniformMatrix2x3fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix2x3fv( @@ -2244,7 +2358,7 @@ android_glProgramUniformMatrix2x3fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2256,14 +2370,14 @@ exit: static void android_glProgramUniformMatrix2x3fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix2x3fv( @@ -2274,7 +2388,7 @@ android_glProgramUniformMatrix2x3fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2303,7 +2417,7 @@ android_glProgramUniformMatrix3x2fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix3x2fv( @@ -2316,7 +2430,7 @@ android_glProgramUniformMatrix3x2fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2328,14 +2442,14 @@ exit: static void android_glProgramUniformMatrix3x2fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix3x2fv( @@ -2346,7 +2460,7 @@ android_glProgramUniformMatrix3x2fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2375,7 +2489,7 @@ android_glProgramUniformMatrix2x4fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix2x4fv( @@ -2388,7 +2502,7 @@ android_glProgramUniformMatrix2x4fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2400,14 +2514,14 @@ exit: static void android_glProgramUniformMatrix2x4fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix2x4fv( @@ -2418,7 +2532,7 @@ android_glProgramUniformMatrix2x4fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2447,7 +2561,7 @@ android_glProgramUniformMatrix4x2fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix4x2fv( @@ -2460,7 +2574,7 @@ android_glProgramUniformMatrix4x2fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2472,14 +2586,14 @@ exit: static void android_glProgramUniformMatrix4x2fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix4x2fv( @@ -2490,7 +2604,7 @@ android_glProgramUniformMatrix4x2fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2519,7 +2633,7 @@ android_glProgramUniformMatrix3x4fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix3x4fv( @@ -2532,7 +2646,7 @@ android_glProgramUniformMatrix3x4fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2544,14 +2658,14 @@ exit: static void android_glProgramUniformMatrix3x4fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix3x4fv( @@ -2562,7 +2676,7 @@ android_glProgramUniformMatrix3x4fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2591,7 +2705,7 @@ android_glProgramUniformMatrix4x3fv__IIIZ_3FI } _remaining = _env->GetArrayLength(value_ref) - offset; value_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(value_ref, (jboolean *)0); + _env->GetFloatArrayElements(value_ref, (jboolean *)0); value = value_base + offset; glProgramUniformMatrix4x3fv( @@ -2604,7 +2718,7 @@ android_glProgramUniformMatrix4x3fv__IIIZ_3FI exit: if (value_base) { - _env->ReleasePrimitiveArrayCritical(value_ref, value_base, + _env->ReleaseFloatArrayElements(value_ref, (jfloat*)value_base, JNI_ABORT); } if (_exception) { @@ -2616,14 +2730,14 @@ exit: static void android_glProgramUniformMatrix4x3fv__IIIZLjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *value = (GLfloat *) 0; - value = (GLfloat *)getPointer(_env, value_buf, &_array, &_remaining, &_bufferOffset); + value = (GLfloat *)getPointer(_env, value_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (value == NULL) { - char * _valueBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valueBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); value = (GLfloat *) (_valueBase + _bufferOffset); } glProgramUniformMatrix4x3fv( @@ -2634,7 +2748,7 @@ android_glProgramUniformMatrix4x3fv__IIIZLjava_nio_FloatBuffer_2 (GLfloat *)value ); if (_array) { - releasePointer(_env, _array, value, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)value, JNI_ABORT); } } @@ -2706,7 +2820,7 @@ android_glGetBooleani_v__II_3ZI } _remaining = _env->GetArrayLength(data_ref) - offset; data_base = (GLboolean *) - _env->GetPrimitiveArrayCritical(data_ref, (jboolean *)0); + _env->GetBooleanArrayElements(data_ref, (jboolean *)0); data = data_base + offset; glGetBooleani_v( @@ -2717,7 +2831,7 @@ android_glGetBooleani_v__II_3ZI exit: if (data_base) { - _env->ReleasePrimitiveArrayCritical(data_ref, data_base, + _env->ReleaseBooleanArrayElements(data_ref, (jboolean*)data_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2729,14 +2843,14 @@ exit: static void android_glGetBooleani_v__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLboolean *data = (GLboolean *) 0; - data = (GLboolean *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLboolean *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { - char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _dataBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); data = (GLboolean *) (_dataBase + _bufferOffset); } glGetBooleani_v( @@ -2745,7 +2859,7 @@ android_glGetBooleani_v__IILjava_nio_IntBuffer_2 (GLboolean *)data ); if (_array) { - releasePointer(_env, _array, data, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)data, 0); } } @@ -2806,7 +2920,7 @@ android_glGetMultisamplefv__II_3FI } _remaining = _env->GetArrayLength(val_ref) - offset; val_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(val_ref, (jboolean *)0); + _env->GetFloatArrayElements(val_ref, (jboolean *)0); val = val_base + offset; glGetMultisamplefv( @@ -2817,7 +2931,7 @@ android_glGetMultisamplefv__II_3FI exit: if (val_base) { - _env->ReleasePrimitiveArrayCritical(val_ref, val_base, + _env->ReleaseFloatArrayElements(val_ref, (jfloat*)val_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2829,14 +2943,14 @@ exit: static void android_glGetMultisamplefv__IILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jint index, jobject val_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *val = (GLfloat *) 0; - val = (GLfloat *)getPointer(_env, val_buf, &_array, &_remaining, &_bufferOffset); + val = (GLfloat *)getPointer(_env, val_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (val == NULL) { - char * _valBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _valBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); val = (GLfloat *) (_valBase + _bufferOffset); } glGetMultisamplefv( @@ -2845,7 +2959,7 @@ android_glGetMultisamplefv__IILjava_nio_FloatBuffer_2 (GLfloat *)val ); if (_array) { - releasePointer(_env, _array, val, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)val, 0); } } @@ -2884,7 +2998,7 @@ android_glGetTexLevelParameteriv__III_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexLevelParameteriv( @@ -2896,7 +3010,7 @@ android_glGetTexLevelParameteriv__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2908,14 +3022,14 @@ exit: static void android_glGetTexLevelParameteriv__IIILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint level, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexLevelParameteriv( @@ -2925,7 +3039,7 @@ android_glGetTexLevelParameteriv__IIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -2954,7 +3068,7 @@ android_glGetTexLevelParameterfv__III_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexLevelParameterfv( @@ -2966,7 +3080,7 @@ android_glGetTexLevelParameterfv__III_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -2978,14 +3092,14 @@ exit: static void android_glGetTexLevelParameterfv__IIILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint level, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexLevelParameterfv( @@ -2995,7 +3109,7 @@ android_glGetTexLevelParameterfv__IIILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } diff --git a/core/jni/android_opengl_GLES31Ext.cpp b/core/jni/android_opengl_GLES31Ext.cpp index 7317e9f..2856308 100644 --- a/core/jni/android_opengl_GLES31Ext.cpp +++ b/core/jni/android_opengl_GLES31Ext.cpp @@ -125,6 +125,116 @@ getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *o return NULL; } +class ByteArrayGetter { +public: + static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) { + return _env->GetByteArrayElements(array, is_copy); + } +}; +class BooleanArrayGetter { +public: + static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) { + return _env->GetBooleanArrayElements(array, is_copy); + } +}; +class CharArrayGetter { +public: + static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) { + return _env->GetCharArrayElements(array, is_copy); + } +}; +class ShortArrayGetter { +public: + static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) { + return _env->GetShortArrayElements(array, is_copy); + } +}; +class IntArrayGetter { +public: + static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) { + return _env->GetIntArrayElements(array, is_copy); + } +}; +class LongArrayGetter { +public: + static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) { + return _env->GetLongArrayElements(array, is_copy); + } +}; +class FloatArrayGetter { +public: + static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) { + return _env->GetFloatArrayElements(array, is_copy); + } +}; +class DoubleArrayGetter { +public: + static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) { + return _env->GetDoubleArrayElements(array, is_copy); + } +}; + +template<typename JTYPEARRAY, typename ARRAYGETTER> +static void* +getArrayPointer(JNIEnv *_env, JTYPEARRAY array, jboolean* is_copy) { + return ARRAYGETTER::Get(_env, array, is_copy); +} + +class ByteArrayReleaser { +public: + static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { + _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class BooleanArrayReleaser { +public: + static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { + _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class CharArrayReleaser { +public: + static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { + _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class ShortArrayReleaser { +public: + static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { + _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class IntArrayReleaser { +public: + static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { + _env->ReleaseIntArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class LongArrayReleaser { +public: + static void Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) { + _env->ReleaseLongArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class FloatArrayReleaser { +public: + static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) { + _env->ReleaseFloatArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; +class DoubleArrayReleaser { +public: + static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) { + _env->ReleaseDoubleArrayElements(array, data, commit ? 0 : JNI_ABORT); + } +}; + +template<typename JTYPEARRAY, typename NTYPEARRAY, typename ARRAYRELEASER> +static void +releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) { + ARRAYRELEASER::Release(_env, array, data, commit); +} + static void releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) { @@ -228,7 +338,8 @@ static int getNeededCount(GLint pname) { return needed; } -template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, typename CTYPE, void GET(GLenum, CTYPE*)> static void get (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { @@ -263,8 +374,8 @@ get _exceptionMessage = "length - offset < needed"; goto exit; } - params_base = (CTYPE *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + params_base = (CTYPE *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, params_ref, (jboolean *)0); params = params_base + offset; GET( @@ -274,8 +385,8 @@ get exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, - _exception ? JNI_ABORT: 0); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, params_ref, params_base, !_exception); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -283,20 +394,21 @@ exit: } -template <typename CTYPE, void GET(GLenum, CTYPE*)> +template <typename CTYPE, typename JTYPEARRAY, typename ARRAYGETTER, typename NTYPEARRAY, + typename ARRAYRELEASER, void GET(GLenum, CTYPE*)> static void getarray (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { jint _exception = 0; const char * _exceptionType; const char * _exceptionMessage; - jarray _array = (jarray) 0; + JTYPEARRAY _array = (JTYPEARRAY) 0; jint _bufferOffset = (jint) 0; jint _remaining; CTYPE *params = (CTYPE *) 0; int _needed = 0; - params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (CTYPE *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); _remaining /= sizeof(CTYPE); // convert from bytes to item count _needed = getNeededCount(pname); // if we didn't find this pname, we just assume the user passed @@ -309,7 +421,8 @@ getarray goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *) getArrayPointer<JTYPEARRAY, ARRAYGETTER>( + _env, _array, (jboolean *) 0); params = (CTYPE *) (_paramsBase + _bufferOffset); } GET( @@ -319,7 +432,8 @@ getarray exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + releaseArrayPointer<JTYPEARRAY, NTYPEARRAY, ARRAYRELEASER>( + _env, _array, (NTYPEARRAY)params, _exception ? JNI_FALSE : JNI_TRUE); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -359,7 +473,7 @@ android_glDebugMessageControlKHR__IIII_3IIZ } _remaining = _env->GetArrayLength(ids_ref) - offset; ids_base = (GLuint *) - _env->GetPrimitiveArrayCritical(ids_ref, (jboolean *)0); + _env->GetIntArrayElements(ids_ref, (jboolean *)0); ids = ids_base + offset; glDebugMessageControlKHR( @@ -373,7 +487,7 @@ android_glDebugMessageControlKHR__IIII_3IIZ exit: if (ids_base) { - _env->ReleasePrimitiveArrayCritical(ids_ref, ids_base, + _env->ReleaseIntArrayElements(ids_ref, (jint*)ids_base, JNI_ABORT); } if (_exception) { @@ -385,14 +499,14 @@ exit: static void android_glDebugMessageControlKHR__IIIILjava_nio_IntBuffer_2Z (JNIEnv *_env, jobject _this, jint source, jint type, jint severity, jint count, jobject ids_buf, jboolean enabled) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *ids = (GLuint *) 0; - ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset); + ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (ids == NULL) { - char * _idsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _idsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); ids = (GLuint *) (_idsBase + _bufferOffset); } glDebugMessageControlKHR( @@ -404,7 +518,7 @@ android_glDebugMessageControlKHR__IIIILjava_nio_IntBuffer_2Z (GLboolean)enabled ); if (_array) { - releasePointer(_env, _array, ids, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)ids, JNI_ABORT); } } @@ -784,7 +898,7 @@ android_glTexParameterIivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterIivEXT( @@ -795,7 +909,7 @@ android_glTexParameterIivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -807,14 +921,14 @@ exit: static void android_glTexParameterIivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexParameterIivEXT( @@ -823,7 +937,7 @@ android_glTexParameterIivEXT__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -852,7 +966,7 @@ android_glTexParameterIuivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterIuivEXT( @@ -863,7 +977,7 @@ android_glTexParameterIuivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -875,14 +989,14 @@ exit: static void android_glTexParameterIuivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glTexParameterIuivEXT( @@ -891,7 +1005,7 @@ android_glTexParameterIuivEXT__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } } @@ -920,7 +1034,7 @@ android_glGetTexParameterIivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterIivEXT( @@ -931,7 +1045,7 @@ android_glGetTexParameterIivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -943,14 +1057,14 @@ exit: static void android_glGetTexParameterIivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexParameterIivEXT( @@ -959,7 +1073,7 @@ android_glGetTexParameterIivEXT__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -988,7 +1102,7 @@ android_glGetTexParameterIuivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterIuivEXT( @@ -999,7 +1113,7 @@ android_glGetTexParameterIuivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1011,14 +1125,14 @@ exit: static void android_glGetTexParameterIuivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glGetTexParameterIuivEXT( @@ -1027,7 +1141,7 @@ android_glGetTexParameterIuivEXT__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1056,7 +1170,7 @@ android_glSamplerParameterIivEXT__II_3II } _remaining = _env->GetArrayLength(param_ref) - offset; param_base = (GLint *) - _env->GetPrimitiveArrayCritical(param_ref, (jboolean *)0); + _env->GetIntArrayElements(param_ref, (jboolean *)0); param = param_base + offset; glSamplerParameterIivEXT( @@ -1067,7 +1181,7 @@ android_glSamplerParameterIivEXT__II_3II exit: if (param_base) { - _env->ReleasePrimitiveArrayCritical(param_ref, param_base, + _env->ReleaseIntArrayElements(param_ref, (jint*)param_base, JNI_ABORT); } if (_exception) { @@ -1079,14 +1193,14 @@ exit: static void android_glSamplerParameterIivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *param = (GLint *) 0; - param = (GLint *)getPointer(_env, param_buf, &_array, &_remaining, &_bufferOffset); + param = (GLint *)getPointer(_env, param_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (param == NULL) { - char * _paramBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); param = (GLint *) (_paramBase + _bufferOffset); } glSamplerParameterIivEXT( @@ -1095,7 +1209,7 @@ android_glSamplerParameterIivEXT__IILjava_nio_IntBuffer_2 (GLint *)param ); if (_array) { - releasePointer(_env, _array, param, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)param, JNI_ABORT); } } @@ -1124,7 +1238,7 @@ android_glSamplerParameterIuivEXT__II_3II } _remaining = _env->GetArrayLength(param_ref) - offset; param_base = (GLuint *) - _env->GetPrimitiveArrayCritical(param_ref, (jboolean *)0); + _env->GetIntArrayElements(param_ref, (jboolean *)0); param = param_base + offset; glSamplerParameterIuivEXT( @@ -1135,7 +1249,7 @@ android_glSamplerParameterIuivEXT__II_3II exit: if (param_base) { - _env->ReleasePrimitiveArrayCritical(param_ref, param_base, + _env->ReleaseIntArrayElements(param_ref, (jint*)param_base, JNI_ABORT); } if (_exception) { @@ -1147,14 +1261,14 @@ exit: static void android_glSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *param = (GLuint *) 0; - param = (GLuint *)getPointer(_env, param_buf, &_array, &_remaining, &_bufferOffset); + param = (GLuint *)getPointer(_env, param_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (param == NULL) { - char * _paramBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); param = (GLuint *) (_paramBase + _bufferOffset); } glSamplerParameterIuivEXT( @@ -1163,7 +1277,7 @@ android_glSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2 (GLuint *)param ); if (_array) { - releasePointer(_env, _array, param, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)param, JNI_ABORT); } } @@ -1192,7 +1306,7 @@ android_glGetSamplerParameterIivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetSamplerParameterIivEXT( @@ -1203,7 +1317,7 @@ android_glGetSamplerParameterIivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1215,14 +1329,14 @@ exit: static void android_glGetSamplerParameterIivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetSamplerParameterIivEXT( @@ -1231,7 +1345,7 @@ android_glGetSamplerParameterIivEXT__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -1260,7 +1374,7 @@ android_glGetSamplerParameterIuivEXT__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLuint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetSamplerParameterIuivEXT( @@ -1271,7 +1385,7 @@ android_glGetSamplerParameterIuivEXT__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1283,14 +1397,14 @@ exit: static void android_glGetSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *params = (GLuint *) 0; - params = (GLuint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLuint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLuint *) (_paramsBase + _bufferOffset); } glGetSamplerParameterIuivEXT( @@ -1299,7 +1413,7 @@ android_glGetSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2 (GLuint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } diff --git a/core/jni/android_view_InputEventSender.cpp b/core/jni/android_view_InputEventSender.cpp index 265daeb..d61dee7 100644 --- a/core/jni/android_view_InputEventSender.cpp +++ b/core/jni/android_view_InputEventSender.cpp @@ -135,7 +135,8 @@ status_t NativeInputEventSender::sendMotionEvent(uint32_t seq, const MotionEvent for (size_t i = 0; i <= event->getHistorySize(); i++) { publishedSeq = mNextPublishedSeq++; status_t status = mInputPublisher.publishMotionEvent(publishedSeq, - event->getDeviceId(), event->getSource(), event->getAction(), event->getFlags(), + event->getDeviceId(), event->getSource(), + event->getAction(), event->getActionButton(), event->getFlags(), event->getEdgeFlags(), event->getMetaState(), event->getButtonState(), event->getXOffset(), event->getYOffset(), event->getXPrecision(), event->getYPrecision(), diff --git a/core/jni/android_view_MotionEvent.cpp b/core/jni/android_view_MotionEvent.cpp index e622768..1f28643 100644 --- a/core/jni/android_view_MotionEvent.cpp +++ b/core/jni/android_view_MotionEvent.cpp @@ -370,7 +370,7 @@ static jlong android_view_MotionEvent_nativeInitialize(JNIEnv* env, jclass clazz env->DeleteLocalRef(pointerCoordsObj); } - event->initialize(deviceId, source, action, flags, edgeFlags, metaState, buttonState, + event->initialize(deviceId, source, action, flags, edgeFlags, metaState, buttonState, 0, xOffset, yOffset, xPrecision, yPrecision, downTimeNanos, eventTimeNanos, pointerCount, pointerProperties, rawPointerCoords); @@ -456,6 +456,12 @@ static void android_view_MotionEvent_nativeSetAction(JNIEnv* env, jclass clazz, event->setAction(action); } +static int android_view_MotionEvent_nativeGetActionButton(JNIEnv* env, jclass clazz, + jlong nativePtr) { + MotionEvent* event = reinterpret_cast<MotionEvent*>(nativePtr); + return event->getActionButton(); +} + static jboolean android_view_MotionEvent_nativeIsTouchEvent(JNIEnv* env, jclass clazz, jlong nativePtr) { MotionEvent* event = reinterpret_cast<MotionEvent*>(nativePtr); @@ -498,6 +504,12 @@ static jint android_view_MotionEvent_nativeGetButtonState(JNIEnv* env, jclass cl return event->getButtonState(); } +static void android_view_MotionEvent_nativeSetButtonState(JNIEnv* env, jclass clazz, + jlong nativePtr, jint buttonState) { + MotionEvent* event = reinterpret_cast<MotionEvent*>(nativePtr); + event->setButtonState(buttonState); +} + static void android_view_MotionEvent_nativeOffsetLocation(JNIEnv* env, jclass clazz, jlong nativePtr, jfloat deltaX, jfloat deltaY) { MotionEvent* event = reinterpret_cast<MotionEvent*>(nativePtr); @@ -764,6 +776,9 @@ static JNINativeMethod gMotionEventMethods[] = { { "nativeSetAction", "(JI)V", (void*)android_view_MotionEvent_nativeSetAction }, + { "nativeGetActionButton", + "(J)I", + (void*)android_view_MotionEvent_nativeGetActionButton}, { "nativeIsTouchEvent", "(J)Z", (void*)android_view_MotionEvent_nativeIsTouchEvent }, @@ -785,6 +800,9 @@ static JNINativeMethod gMotionEventMethods[] = { { "nativeGetButtonState", "(J)I", (void*)android_view_MotionEvent_nativeGetButtonState }, + { "nativeSetButtonState", + "(JI)V", + (void*)android_view_MotionEvent_nativeSetButtonState }, { "nativeOffsetLocation", "(JFF)V", (void*)android_view_MotionEvent_nativeOffsetLocation }, diff --git a/core/jni/com_google_android_gles_jni_GLImpl.cpp b/core/jni/com_google_android_gles_jni_GLImpl.cpp index c5f330e..f15f957 100644 --- a/core/jni/com_google_android_gles_jni_GLImpl.cpp +++ b/core/jni/com_google_android_gles_jni_GLImpl.cpp @@ -449,7 +449,7 @@ android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -478,7 +478,7 @@ android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (data == NULL) { char * _dataBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); data = (GLvoid *) (_dataBase + _bufferOffset); @@ -571,7 +571,7 @@ android_glDeleteTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glDeleteTextures( @@ -581,7 +581,7 @@ android_glDeleteTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, JNI_ABORT); } if (_exception) { @@ -596,12 +596,12 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -609,7 +609,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glDeleteTextures( @@ -619,7 +619,7 @@ android_glDeleteTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -705,7 +705,7 @@ android_glDrawElements__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *indices = (GLvoid *) 0; - indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset); + indices = (GLvoid *)getPointer(_env, indices_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < count) { _exception = 1; _exceptionType = "java/lang/ArrayIndexOutOfBoundsException"; @@ -830,7 +830,7 @@ android_glFogfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glFogfv( @@ -840,7 +840,7 @@ android_glFogfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -855,12 +855,12 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_FOG_MODE) @@ -893,7 +893,7 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glFogfv( @@ -903,7 +903,7 @@ android_glFogfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -976,7 +976,7 @@ android_glFogxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glFogxv( @@ -986,7 +986,7 @@ android_glFogxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -1001,12 +1001,12 @@ android_glFogxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_FOG_MODE) @@ -1039,7 +1039,7 @@ android_glFogxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glFogxv( @@ -1049,7 +1049,7 @@ android_glFogxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1124,7 +1124,7 @@ android_glGenTextures__I_3II goto exit; } textures_base = (GLuint *) - _env->GetPrimitiveArrayCritical(textures_ref, (jboolean *)0); + _env->GetIntArrayElements(textures_ref, (jboolean *)0); textures = textures_base + offset; glGenTextures( @@ -1134,7 +1134,7 @@ android_glGenTextures__I_3II exit: if (textures_base) { - _env->ReleasePrimitiveArrayCritical(textures_ref, textures_base, + _env->ReleaseIntArrayElements(textures_ref, (jint*)textures_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1149,12 +1149,12 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *textures = (GLuint *) 0; - textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset); + textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -1162,7 +1162,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 goto exit; } if (textures == NULL) { - char * _texturesBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _texturesBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); textures = (GLuint *) (_texturesBase + _bufferOffset); } glGenTextures( @@ -1172,7 +1172,7 @@ android_glGenTextures__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, textures, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)textures, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -1550,7 +1550,7 @@ android_glGetIntegerv__I_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetIntegerv( @@ -1560,7 +1560,7 @@ android_glGetIntegerv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -1575,12 +1575,12 @@ android_glGetIntegerv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_ALPHA_BITS) @@ -1919,7 +1919,7 @@ android_glGetIntegerv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetIntegerv( @@ -1929,7 +1929,7 @@ android_glGetIntegerv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2008,7 +2008,7 @@ android_glLightModelfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightModelfv( @@ -2018,7 +2018,7 @@ android_glLightModelfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2033,12 +2033,12 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_LIGHT_MODEL_TWO_SIDE) @@ -2062,7 +2062,7 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glLightModelfv( @@ -2072,7 +2072,7 @@ android_glLightModelfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2136,7 +2136,7 @@ android_glLightModelxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightModelxv( @@ -2146,7 +2146,7 @@ android_glLightModelxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2161,12 +2161,12 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_LIGHT_MODEL_TWO_SIDE) @@ -2190,7 +2190,7 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightModelxv( @@ -2200,7 +2200,7 @@ android_glLightModelxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2291,7 +2291,7 @@ android_glLightfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightfv( @@ -2302,7 +2302,7 @@ android_glLightfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2317,12 +2317,12 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_EXPONENT) @@ -2372,7 +2372,7 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glLightfv( @@ -2383,7 +2383,7 @@ android_glLightfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2474,7 +2474,7 @@ android_glLightxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glLightxv( @@ -2485,7 +2485,7 @@ android_glLightxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2500,12 +2500,12 @@ android_glLightxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_EXPONENT) @@ -2555,7 +2555,7 @@ android_glLightxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glLightxv( @@ -2566,7 +2566,7 @@ android_glLightxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2623,7 +2623,7 @@ android_glLoadMatrixf___3FI } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetFloatArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glLoadMatrixf( @@ -2632,7 +2632,7 @@ android_glLoadMatrixf___3FI exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseFloatArrayElements(m_ref, (jfloat*)m_base, JNI_ABORT); } if (_exception) { @@ -2644,21 +2644,21 @@ exit: static void android_glLoadMatrixf__Ljava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *m = (GLfloat *) 0; - m = (GLfloat *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfloat *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); m = (GLfloat *) (_mBase + _bufferOffset); } glLoadMatrixf( (GLfloat *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)m, JNI_ABORT); } } @@ -2687,7 +2687,7 @@ android_glLoadMatrixx___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glLoadMatrixx( @@ -2696,7 +2696,7 @@ android_glLoadMatrixx___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -2708,21 +2708,21 @@ exit: static void android_glLoadMatrixx__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glLoadMatrixx( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -2805,7 +2805,7 @@ android_glMaterialfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glMaterialfv( @@ -2816,7 +2816,7 @@ android_glMaterialfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -2831,12 +2831,12 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SHININESS) @@ -2872,7 +2872,7 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glMaterialfv( @@ -2883,7 +2883,7 @@ android_glMaterialfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -2960,7 +2960,7 @@ android_glMaterialxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glMaterialxv( @@ -2971,7 +2971,7 @@ android_glMaterialxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -2986,12 +2986,12 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SHININESS) @@ -3027,7 +3027,7 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glMaterialxv( @@ -3038,7 +3038,7 @@ android_glMaterialxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3079,7 +3079,7 @@ android_glMultMatrixf___3FI } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetFloatArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glMultMatrixf( @@ -3088,7 +3088,7 @@ android_glMultMatrixf___3FI exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseFloatArrayElements(m_ref, (jfloat*)m_base, JNI_ABORT); } if (_exception) { @@ -3100,21 +3100,21 @@ exit: static void android_glMultMatrixf__Ljava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *m = (GLfloat *) 0; - m = (GLfloat *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfloat *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); m = (GLfloat *) (_mBase + _bufferOffset); } glMultMatrixf( (GLfloat *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)m, JNI_ABORT); } } @@ -3143,7 +3143,7 @@ android_glMultMatrixx___3II } _remaining = _env->GetArrayLength(m_ref) - offset; m_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(m_ref, (jboolean *)0); + _env->GetIntArrayElements(m_ref, (jboolean *)0); m = m_base + offset; glMultMatrixx( @@ -3152,7 +3152,7 @@ android_glMultMatrixx___3II exit: if (m_base) { - _env->ReleasePrimitiveArrayCritical(m_ref, m_base, + _env->ReleaseIntArrayElements(m_ref, (jint*)m_base, JNI_ABORT); } if (_exception) { @@ -3164,21 +3164,21 @@ exit: static void android_glMultMatrixx__Ljava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jobject m_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *m = (GLfixed *) 0; - m = (GLfixed *)getPointer(_env, m_buf, &_array, &_remaining, &_bufferOffset); + m = (GLfixed *)getPointer(_env, m_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (m == NULL) { - char * _mBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _mBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); m = (GLfixed *) (_mBase + _bufferOffset); } glMultMatrixx( (GLfixed *)m ); if (_array) { - releasePointer(_env, _array, m, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)m, JNI_ABORT); } } @@ -3352,7 +3352,7 @@ android_glReadPixels__IIIIIILjava_nio_Buffer_2 jint _remaining; GLvoid *pixels = (GLvoid *) 0; - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); pixels = (GLvoid *) (_pixelsBase + _bufferOffset); @@ -3577,7 +3577,7 @@ android_glTexEnvfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnvfv( @@ -3588,7 +3588,7 @@ android_glTexEnvfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -3603,12 +3603,12 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_MODE) @@ -3638,7 +3638,7 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexEnvfv( @@ -3649,7 +3649,7 @@ android_glTexEnvfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3720,7 +3720,7 @@ android_glTexEnvxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnvxv( @@ -3731,7 +3731,7 @@ android_glTexEnvxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -3746,12 +3746,12 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_MODE) @@ -3781,7 +3781,7 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexEnvxv( @@ -3792,7 +3792,7 @@ android_glTexEnvxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -3809,7 +3809,7 @@ android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); @@ -3863,7 +3863,7 @@ android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2 GLvoid *pixels = (GLvoid *) 0; if (pixels_buf) { - pixels = (GLvoid *)getPointer(_env, pixels_buf, &_array, &_remaining, &_bufferOffset); + pixels = (GLvoid *)getPointer(_env, pixels_buf, (jarray*)&_array, &_remaining, &_bufferOffset); } if (pixels_buf && pixels == NULL) { char * _pixelsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); @@ -3978,7 +3978,7 @@ android_glQueryMatrixxOES___3II_3II goto exit; } mantissa_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(mantissa_ref, (jboolean *)0); + _env->GetIntArrayElements(mantissa_ref, (jboolean *)0); mantissa = mantissa_base + mantissaOffset; if (!exponent_ref) { @@ -4001,7 +4001,7 @@ android_glQueryMatrixxOES___3II_3II goto exit; } exponent_base = (GLint *) - _env->GetPrimitiveArrayCritical(exponent_ref, (jboolean *)0); + _env->GetIntArrayElements(exponent_ref, (jboolean *)0); exponent = exponent_base + exponentOffset; _returnValue = glQueryMatrixxOES( @@ -4011,11 +4011,11 @@ android_glQueryMatrixxOES___3II_3II exit: if (exponent_base) { - _env->ReleasePrimitiveArrayCritical(exponent_ref, exponent_base, + _env->ReleaseIntArrayElements(exponent_ref, (jint*)exponent_base, _exception ? JNI_ABORT: 0); } if (mantissa_base) { - _env->ReleasePrimitiveArrayCritical(mantissa_ref, mantissa_base, + _env->ReleaseIntArrayElements(mantissa_ref, (jint*)mantissa_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4031,9 +4031,9 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _mantissaArray = (jarray) 0; + jintArray _mantissaArray = (jintArray) 0; jint _mantissaBufferOffset = (jint) 0; - jarray _exponentArray = (jarray) 0; + jintArray _exponentArray = (jintArray) 0; jint _exponentBufferOffset = (jint) 0; GLbitfield _returnValue = -1; jint _mantissaRemaining; @@ -4041,14 +4041,14 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 jint _exponentRemaining; GLint *exponent = (GLint *) 0; - mantissa = (GLfixed *)getPointer(_env, mantissa_buf, &_mantissaArray, &_mantissaRemaining, &_mantissaBufferOffset); + mantissa = (GLfixed *)getPointer(_env, mantissa_buf, (jarray*)&_mantissaArray, &_mantissaRemaining, &_mantissaBufferOffset); if (_mantissaRemaining < 16) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; _exceptionMessage = "remaining() < 16 < needed"; goto exit; } - exponent = (GLint *)getPointer(_env, exponent_buf, &_exponentArray, &_exponentRemaining, &_exponentBufferOffset); + exponent = (GLint *)getPointer(_env, exponent_buf, (jarray*)&_exponentArray, &_exponentRemaining, &_exponentBufferOffset); if (_exponentRemaining < 16) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4056,11 +4056,11 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 goto exit; } if (mantissa == NULL) { - char * _mantissaBase = (char *)_env->GetPrimitiveArrayCritical(_mantissaArray, (jboolean *) 0); + char * _mantissaBase = (char *)_env->GetIntArrayElements(_mantissaArray, (jboolean *) 0); mantissa = (GLfixed *) (_mantissaBase + _mantissaBufferOffset); } if (exponent == NULL) { - char * _exponentBase = (char *)_env->GetPrimitiveArrayCritical(_exponentArray, (jboolean *) 0); + char * _exponentBase = (char *)_env->GetIntArrayElements(_exponentArray, (jboolean *) 0); exponent = (GLint *) (_exponentBase + _exponentBufferOffset); } _returnValue = glQueryMatrixxOES( @@ -4070,10 +4070,10 @@ android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2 exit: if (_exponentArray) { - releasePointer(_env, _exponentArray, exponent, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_exponentArray, (jint*)exponent, _exception ? JNI_ABORT : 0); } if (_mantissaArray) { - releasePointer(_env, _mantissaArray, mantissa, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_mantissaArray, (jint*)mantissa, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4104,7 +4104,7 @@ android_glBufferData__IILjava_nio_Buffer_2I GLvoid *data = (GLvoid *) 0; if (data_buf) { - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4144,7 +4144,7 @@ android_glBufferSubData__IIILjava_nio_Buffer_2 jint _remaining; GLvoid *data = (GLvoid *) 0; - data = (GLvoid *)getPointer(_env, data_buf, &_array, &_remaining, &_bufferOffset); + data = (GLvoid *)getPointer(_env, data_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < size) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4202,7 +4202,7 @@ android_glClipPlanef__I_3FI goto exit; } equation_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetFloatArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanef( @@ -4212,7 +4212,7 @@ android_glClipPlanef__I_3FI exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseFloatArrayElements(equation_ref, (jfloat*)equation_base, JNI_ABORT); } if (_exception) { @@ -4227,12 +4227,12 @@ android_glClipPlanef__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *equation = (GLfloat *) 0; - equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4240,7 +4240,7 @@ android_glClipPlanef__ILjava_nio_FloatBuffer_2 goto exit; } if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); equation = (GLfloat *) (_equationBase + _bufferOffset); } glClipPlanef( @@ -4250,7 +4250,7 @@ android_glClipPlanef__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)equation, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4288,7 +4288,7 @@ android_glClipPlanex__I_3II goto exit; } equation_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(equation_ref, (jboolean *)0); + _env->GetIntArrayElements(equation_ref, (jboolean *)0); equation = equation_base + offset; glClipPlanex( @@ -4298,7 +4298,7 @@ android_glClipPlanex__I_3II exit: if (equation_base) { - _env->ReleasePrimitiveArrayCritical(equation_ref, equation_base, + _env->ReleaseIntArrayElements(equation_ref, (jint*)equation_base, JNI_ABORT); } if (_exception) { @@ -4313,12 +4313,12 @@ android_glClipPlanex__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *equation = (GLfixed *) 0; - equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset); + equation = (GLfixed *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 4) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4326,7 +4326,7 @@ android_glClipPlanex__ILjava_nio_IntBuffer_2 goto exit; } if (equation == NULL) { - char * _equationBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _equationBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); equation = (GLfixed *) (_equationBase + _bufferOffset); } glClipPlanex( @@ -4336,7 +4336,7 @@ android_glClipPlanex__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, equation, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)equation, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4398,7 +4398,7 @@ android_glDeleteBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glDeleteBuffers( @@ -4408,7 +4408,7 @@ android_glDeleteBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, JNI_ABORT); } if (_exception) { @@ -4423,12 +4423,12 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4436,7 +4436,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glDeleteBuffers( @@ -4446,7 +4446,7 @@ android_glDeleteBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4502,7 +4502,7 @@ android_glGenBuffers__I_3II goto exit; } buffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(buffers_ref, (jboolean *)0); + _env->GetIntArrayElements(buffers_ref, (jboolean *)0); buffers = buffers_base + offset; glGenBuffers( @@ -4512,7 +4512,7 @@ android_glGenBuffers__I_3II exit: if (buffers_base) { - _env->ReleasePrimitiveArrayCritical(buffers_ref, buffers_base, + _env->ReleaseIntArrayElements(buffers_ref, (jint*)buffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4527,12 +4527,12 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *buffers = (GLuint *) 0; - buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset); + buffers = (GLuint *)getPointer(_env, buffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -4540,7 +4540,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 goto exit; } if (buffers == NULL) { - char * _buffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _buffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); buffers = (GLuint *) (_buffersBase + _bufferOffset); } glGenBuffers( @@ -4550,7 +4550,7 @@ android_glGenBuffers__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, buffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)buffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -4582,7 +4582,7 @@ android_glGetBooleanv__I_3ZI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLboolean *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetBooleanArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetBooleanv( @@ -4592,7 +4592,7 @@ android_glGetBooleanv__I_3ZI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseBooleanArrayElements(params_ref, (jboolean*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4604,14 +4604,14 @@ exit: static void android_glGetBooleanv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLboolean *params = (GLboolean *) 0; - params = (GLboolean *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLboolean *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLboolean *) (_paramsBase + _bufferOffset); } glGetBooleanv( @@ -4619,7 +4619,7 @@ android_glGetBooleanv__ILjava_nio_IntBuffer_2 (GLboolean *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -4664,7 +4664,7 @@ android_glGetClipPlanef__I_3FI } _remaining = _env->GetArrayLength(eqn_ref) - offset; eqn_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetFloatArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanef( @@ -4674,7 +4674,7 @@ android_glGetClipPlanef__I_3FI exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseFloatArrayElements(eqn_ref, (jfloat*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4686,14 +4686,14 @@ exit: static void android_glGetClipPlanef__ILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject eqn_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *eqn = (GLfloat *) 0; - eqn = (GLfloat *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfloat *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); eqn = (GLfloat *) (_eqnBase + _bufferOffset); } glGetClipPlanef( @@ -4701,7 +4701,7 @@ android_glGetClipPlanef__ILjava_nio_FloatBuffer_2 (GLfloat *)eqn ); if (_array) { - releasePointer(_env, _array, eqn, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)eqn, 0); } } @@ -4730,7 +4730,7 @@ android_glGetClipPlanex__I_3II } _remaining = _env->GetArrayLength(eqn_ref) - offset; eqn_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(eqn_ref, (jboolean *)0); + _env->GetIntArrayElements(eqn_ref, (jboolean *)0); eqn = eqn_base + offset; glGetClipPlanex( @@ -4740,7 +4740,7 @@ android_glGetClipPlanex__I_3II exit: if (eqn_base) { - _env->ReleasePrimitiveArrayCritical(eqn_ref, eqn_base, + _env->ReleaseIntArrayElements(eqn_ref, (jint*)eqn_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4752,14 +4752,14 @@ exit: static void android_glGetClipPlanex__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject eqn_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *eqn = (GLfixed *) 0; - eqn = (GLfixed *)getPointer(_env, eqn_buf, &_array, &_remaining, &_bufferOffset); + eqn = (GLfixed *)getPointer(_env, eqn_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (eqn == NULL) { - char * _eqnBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _eqnBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); eqn = (GLfixed *) (_eqnBase + _bufferOffset); } glGetClipPlanex( @@ -4767,7 +4767,7 @@ android_glGetClipPlanex__ILjava_nio_IntBuffer_2 (GLfixed *)eqn ); if (_array) { - releasePointer(_env, _array, eqn, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)eqn, 0); } } @@ -4796,7 +4796,7 @@ android_glGetFixedv__I_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFixedv( @@ -4806,7 +4806,7 @@ android_glGetFixedv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4818,14 +4818,14 @@ exit: static void android_glGetFixedv__ILjava_nio_IntBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetFixedv( @@ -4833,7 +4833,7 @@ android_glGetFixedv__ILjava_nio_IntBuffer_2 (GLfixed *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -4862,7 +4862,7 @@ android_glGetFloatv__I_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFloatv( @@ -4872,7 +4872,7 @@ android_glGetFloatv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -4884,14 +4884,14 @@ exit: static void android_glGetFloatv__ILjava_nio_FloatBuffer_2 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetFloatv( @@ -4899,7 +4899,7 @@ android_glGetFloatv__ILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } @@ -4976,7 +4976,7 @@ android_glGetLightfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetLightfv( @@ -4987,7 +4987,7 @@ android_glGetLightfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5002,12 +5002,12 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_EXPONENT) @@ -5057,7 +5057,7 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetLightfv( @@ -5068,7 +5068,7 @@ android_glGetLightfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5148,7 +5148,7 @@ android_glGetLightxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetLightxv( @@ -5159,7 +5159,7 @@ android_glGetLightxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5174,12 +5174,12 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SPOT_EXPONENT) @@ -5229,7 +5229,7 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetLightxv( @@ -5240,7 +5240,7 @@ android_glGetLightxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5306,7 +5306,7 @@ android_glGetMaterialfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetMaterialfv( @@ -5317,7 +5317,7 @@ android_glGetMaterialfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5332,12 +5332,12 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SHININESS) @@ -5373,7 +5373,7 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetMaterialfv( @@ -5384,7 +5384,7 @@ android_glGetMaterialfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5450,7 +5450,7 @@ android_glGetMaterialxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetMaterialxv( @@ -5461,7 +5461,7 @@ android_glGetMaterialxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5476,12 +5476,12 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_SHININESS) @@ -5517,7 +5517,7 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetMaterialxv( @@ -5528,7 +5528,7 @@ android_glGetMaterialxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5588,7 +5588,7 @@ android_glGetTexEnviv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnviv( @@ -5599,7 +5599,7 @@ android_glGetTexEnviv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5614,12 +5614,12 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_MODE) @@ -5649,7 +5649,7 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexEnviv( @@ -5660,7 +5660,7 @@ android_glGetTexEnviv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5720,7 +5720,7 @@ android_glGetTexEnvxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexEnvxv( @@ -5731,7 +5731,7 @@ android_glGetTexEnvxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5746,12 +5746,12 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_MODE) @@ -5781,7 +5781,7 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexEnvxv( @@ -5792,7 +5792,7 @@ android_glGetTexEnvxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5830,7 +5830,7 @@ android_glGetTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterfv( @@ -5841,7 +5841,7 @@ android_glGetTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5856,12 +5856,12 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5869,7 +5869,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexParameterfv( @@ -5880,7 +5880,7 @@ android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -5918,7 +5918,7 @@ android_glGetTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameteriv( @@ -5929,7 +5929,7 @@ android_glGetTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -5944,12 +5944,12 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -5957,7 +5957,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexParameteriv( @@ -5968,7 +5968,7 @@ android_glGetTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6006,7 +6006,7 @@ android_glGetTexParameterxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexParameterxv( @@ -6017,7 +6017,7 @@ android_glGetTexParameterxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -6032,12 +6032,12 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6045,7 +6045,7 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glGetTexParameterxv( @@ -6056,7 +6056,7 @@ android_glGetTexParameterxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6148,7 +6148,7 @@ android_glPointParameterfv__I_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glPointParameterfv( @@ -6158,7 +6158,7 @@ android_glPointParameterfv__I_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -6173,12 +6173,12 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6186,7 +6186,7 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glPointParameterfv( @@ -6196,7 +6196,7 @@ android_glPointParameterfv__ILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6244,7 +6244,7 @@ android_glPointParameterxv__I_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glPointParameterxv( @@ -6254,7 +6254,7 @@ android_glPointParameterxv__I_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -6269,12 +6269,12 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6282,7 +6282,7 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glPointParameterxv( @@ -6292,7 +6292,7 @@ android_glPointParameterxv__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6398,7 +6398,7 @@ android_glTexEnviv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexEnviv( @@ -6409,7 +6409,7 @@ android_glTexEnviv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -6424,12 +6424,12 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); int _needed; switch (pname) { #if defined(GL_TEXTURE_ENV_MODE) @@ -6459,7 +6459,7 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexEnviv( @@ -6470,7 +6470,7 @@ android_glTexEnviv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6508,7 +6508,7 @@ android_glTexParameterfv__II_3FI goto exit; } params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterfv( @@ -6519,7 +6519,7 @@ android_glTexParameterfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, JNI_ABORT); } if (_exception) { @@ -6534,12 +6534,12 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6547,7 +6547,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexParameterfv( @@ -6558,7 +6558,7 @@ android_glTexParameterfv__IILjava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6607,7 +6607,7 @@ android_glTexParameteriv__II_3II goto exit; } params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameteriv( @@ -6618,7 +6618,7 @@ android_glTexParameteriv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -6633,12 +6633,12 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6646,7 +6646,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexParameteriv( @@ -6657,7 +6657,7 @@ android_glTexParameteriv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6695,7 +6695,7 @@ android_glTexParameterxv__II_3II goto exit; } params_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexParameterxv( @@ -6706,7 +6706,7 @@ android_glTexParameterxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, JNI_ABORT); } if (_exception) { @@ -6721,12 +6721,12 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *params = (GLfixed *) 0; - params = (GLfixed *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfixed *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 1) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6734,7 +6734,7 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 goto exit; } if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLfixed *) (_paramsBase + _bufferOffset); } glTexParameterxv( @@ -6745,7 +6745,7 @@ android_glTexParameterxv__IILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, params, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)params, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6817,7 +6817,7 @@ android_glDrawTexfvOES___3FI goto exit; } coords_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetFloatArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexfvOES( @@ -6826,7 +6826,7 @@ android_glDrawTexfvOES___3FI exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseFloatArrayElements(coords_ref, (jfloat*)coords_base, JNI_ABORT); } if (_exception) { @@ -6841,12 +6841,12 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *coords = (GLfloat *) 0; - coords = (GLfloat *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLfloat *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6854,7 +6854,7 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); coords = (GLfloat *) (_coordsBase + _bufferOffset); } glDrawTexfvOES( @@ -6863,7 +6863,7 @@ android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -6914,7 +6914,7 @@ android_glDrawTexivOES___3II goto exit; } coords_base = (GLint *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetIntArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexivOES( @@ -6923,7 +6923,7 @@ android_glDrawTexivOES___3II exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseIntArrayElements(coords_ref, (jint*)coords_base, JNI_ABORT); } if (_exception) { @@ -6938,12 +6938,12 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *coords = (GLint *) 0; - coords = (GLint *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLint *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -6951,7 +6951,7 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); coords = (GLint *) (_coordsBase + _bufferOffset); } glDrawTexivOES( @@ -6960,7 +6960,7 @@ android_glDrawTexivOES__Ljava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7011,7 +7011,7 @@ android_glDrawTexsvOES___3SI goto exit; } coords_base = (GLshort *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetShortArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexsvOES( @@ -7020,7 +7020,7 @@ android_glDrawTexsvOES___3SI exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseShortArrayElements(coords_ref, (jshort*)coords_base, JNI_ABORT); } if (_exception) { @@ -7035,12 +7035,12 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jshortArray _array = (jshortArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLshort *coords = (GLshort *) 0; - coords = (GLshort *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLshort *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7048,7 +7048,7 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetShortArrayElements(_array, (jboolean *) 0); coords = (GLshort *) (_coordsBase + _bufferOffset); } glDrawTexsvOES( @@ -7057,7 +7057,7 @@ android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseShortArrayElements(_array, (jshort*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7108,7 +7108,7 @@ android_glDrawTexxvOES___3II goto exit; } coords_base = (GLfixed *) - _env->GetPrimitiveArrayCritical(coords_ref, (jboolean *)0); + _env->GetIntArrayElements(coords_ref, (jboolean *)0); coords = coords_base + offset; glDrawTexxvOES( @@ -7117,7 +7117,7 @@ android_glDrawTexxvOES___3II exit: if (coords_base) { - _env->ReleasePrimitiveArrayCritical(coords_ref, coords_base, + _env->ReleaseIntArrayElements(coords_ref, (jint*)coords_base, JNI_ABORT); } if (_exception) { @@ -7132,12 +7132,12 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfixed *coords = (GLfixed *) 0; - coords = (GLfixed *)getPointer(_env, coords_buf, &_array, &_remaining, &_bufferOffset); + coords = (GLfixed *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < 5) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7145,7 +7145,7 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 goto exit; } if (coords == NULL) { - char * _coordsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _coordsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); coords = (GLfixed *) (_coordsBase + _bufferOffset); } glDrawTexxvOES( @@ -7154,7 +7154,7 @@ android_glDrawTexxvOES__Ljava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, coords, JNI_FALSE); + _env->ReleaseIntArrayElements(_array, (jint*)coords, JNI_ABORT); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7368,7 +7368,7 @@ android_glDeleteFramebuffersOES__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glDeleteFramebuffersOES( @@ -7378,7 +7378,7 @@ android_glDeleteFramebuffersOES__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7398,12 +7398,12 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7411,7 +7411,7 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glDeleteFramebuffersOES( @@ -7421,7 +7421,7 @@ android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7464,7 +7464,7 @@ android_glDeleteRenderbuffersOES__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glDeleteRenderbuffersOES( @@ -7474,7 +7474,7 @@ android_glDeleteRenderbuffersOES__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7494,12 +7494,12 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7507,7 +7507,7 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glDeleteRenderbuffersOES( @@ -7517,7 +7517,7 @@ android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7609,7 +7609,7 @@ android_glGenFramebuffersOES__I_3II goto exit; } framebuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(framebuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(framebuffers_ref, (jboolean *)0); framebuffers = framebuffers_base + offset; glGenFramebuffersOES( @@ -7619,7 +7619,7 @@ android_glGenFramebuffersOES__I_3II exit: if (framebuffers_base) { - _env->ReleasePrimitiveArrayCritical(framebuffers_ref, framebuffers_base, + _env->ReleaseIntArrayElements(framebuffers_ref, (jint*)framebuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7639,12 +7639,12 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *framebuffers = (GLuint *) 0; - framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset); + framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7652,7 +7652,7 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (framebuffers == NULL) { - char * _framebuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _framebuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset); } glGenFramebuffersOES( @@ -7662,7 +7662,7 @@ android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, framebuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)framebuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7705,7 +7705,7 @@ android_glGenRenderbuffersOES__I_3II goto exit; } renderbuffers_base = (GLuint *) - _env->GetPrimitiveArrayCritical(renderbuffers_ref, (jboolean *)0); + _env->GetIntArrayElements(renderbuffers_ref, (jboolean *)0); renderbuffers = renderbuffers_base + offset; glGenRenderbuffersOES( @@ -7715,7 +7715,7 @@ android_glGenRenderbuffersOES__I_3II exit: if (renderbuffers_base) { - _env->ReleasePrimitiveArrayCritical(renderbuffers_ref, renderbuffers_base, + _env->ReleaseIntArrayElements(renderbuffers_ref, (jint*)renderbuffers_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7735,12 +7735,12 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 jint _exception = 0; const char * _exceptionType = NULL; const char * _exceptionMessage = NULL; - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLuint *renderbuffers = (GLuint *) 0; - renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, &_array, &_remaining, &_bufferOffset); + renderbuffers = (GLuint *)getPointer(_env, renderbuffers_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (_remaining < n) { _exception = 1; _exceptionType = "java/lang/IllegalArgumentException"; @@ -7748,7 +7748,7 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 goto exit; } if (renderbuffers == NULL) { - char * _renderbuffersBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _renderbuffersBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); renderbuffers = (GLuint *) (_renderbuffersBase + _bufferOffset); } glGenRenderbuffersOES( @@ -7758,7 +7758,7 @@ android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2 exit: if (_array) { - releasePointer(_env, _array, renderbuffers, _exception ? JNI_FALSE : JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)renderbuffers, _exception ? JNI_ABORT : 0); } if (_exception) { jniThrowException(_env, _exceptionType, _exceptionMessage); @@ -7795,7 +7795,7 @@ android_glGetFramebufferAttachmentParameterivOES__III_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetFramebufferAttachmentParameterivOES( @@ -7807,7 +7807,7 @@ android_glGetFramebufferAttachmentParameterivOES__III_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7824,14 +7824,14 @@ android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2 "glGetFramebufferAttachmentParameterivOES"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetFramebufferAttachmentParameterivOES( @@ -7841,7 +7841,7 @@ android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -7875,7 +7875,7 @@ android_glGetRenderbufferParameterivOES__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetRenderbufferParameterivOES( @@ -7886,7 +7886,7 @@ android_glGetRenderbufferParameterivOES__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7903,14 +7903,14 @@ android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2 "glGetRenderbufferParameterivOES"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetRenderbufferParameterivOES( @@ -7919,7 +7919,7 @@ android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -7953,7 +7953,7 @@ android_glGetTexGenfv__II_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGenfv( @@ -7964,7 +7964,7 @@ android_glGetTexGenfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -7981,14 +7981,14 @@ android_glGetTexGenfv__IILjava_nio_FloatBuffer_2 "glGetTexGenfv"); return; } - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glGetTexGenfv( @@ -7997,7 +7997,7 @@ android_glGetTexGenfv__IILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } @@ -8031,7 +8031,7 @@ android_glGetTexGeniv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGeniv( @@ -8042,7 +8042,7 @@ android_glGetTexGeniv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -8059,14 +8059,14 @@ android_glGetTexGeniv__IILjava_nio_IntBuffer_2 "glGetTexGeniv"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexGeniv( @@ -8075,7 +8075,7 @@ android_glGetTexGeniv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -8109,7 +8109,7 @@ android_glGetTexGenxv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glGetTexGenxv( @@ -8120,7 +8120,7 @@ android_glGetTexGenxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -8137,14 +8137,14 @@ android_glGetTexGenxv__IILjava_nio_IntBuffer_2 "glGetTexGenxv"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glGetTexGenxv( @@ -8153,7 +8153,7 @@ android_glGetTexGenxv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -8252,7 +8252,7 @@ android_glTexGenfv__II_3FI } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLfloat *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetFloatArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGenfv( @@ -8263,7 +8263,7 @@ android_glTexGenfv__II_3FI exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseFloatArrayElements(params_ref, (jfloat*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -8280,14 +8280,14 @@ android_glTexGenfv__IILjava_nio_FloatBuffer_2 "glTexGenfv"); return; } - jarray _array = (jarray) 0; + jfloatArray _array = (jfloatArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLfloat *params = (GLfloat *) 0; - params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLfloat *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetFloatArrayElements(_array, (jboolean *) 0); params = (GLfloat *) (_paramsBase + _bufferOffset); } glTexGenfv( @@ -8296,7 +8296,7 @@ android_glTexGenfv__IILjava_nio_FloatBuffer_2 (GLfloat *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseFloatArrayElements(_array, (jfloat*)params, 0); } } @@ -8346,7 +8346,7 @@ android_glTexGeniv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGeniv( @@ -8357,7 +8357,7 @@ android_glTexGeniv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -8374,14 +8374,14 @@ android_glTexGeniv__IILjava_nio_IntBuffer_2 "glTexGeniv"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexGeniv( @@ -8390,7 +8390,7 @@ android_glTexGeniv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } @@ -8440,7 +8440,7 @@ android_glTexGenxv__II_3II } _remaining = _env->GetArrayLength(params_ref) - offset; params_base = (GLint *) - _env->GetPrimitiveArrayCritical(params_ref, (jboolean *)0); + _env->GetIntArrayElements(params_ref, (jboolean *)0); params = params_base + offset; glTexGenxv( @@ -8451,7 +8451,7 @@ android_glTexGenxv__II_3II exit: if (params_base) { - _env->ReleasePrimitiveArrayCritical(params_ref, params_base, + _env->ReleaseIntArrayElements(params_ref, (jint*)params_base, _exception ? JNI_ABORT: 0); } if (_exception) { @@ -8468,14 +8468,14 @@ android_glTexGenxv__IILjava_nio_IntBuffer_2 "glTexGenxv"); return; } - jarray _array = (jarray) 0; + jintArray _array = (jintArray) 0; jint _bufferOffset = (jint) 0; jint _remaining; GLint *params = (GLint *) 0; - params = (GLint *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); + params = (GLint *)getPointer(_env, params_buf, (jarray*)&_array, &_remaining, &_bufferOffset); if (params == NULL) { - char * _paramsBase = (char *)_env->GetPrimitiveArrayCritical(_array, (jboolean *) 0); + char * _paramsBase = (char *)_env->GetIntArrayElements(_array, (jboolean *) 0); params = (GLint *) (_paramsBase + _bufferOffset); } glTexGenxv( @@ -8484,7 +8484,7 @@ android_glTexGenxv__IILjava_nio_IntBuffer_2 (GLint *)params ); if (_array) { - releasePointer(_env, _array, params, JNI_TRUE); + _env->ReleaseIntArrayElements(_array, (jint*)params, 0); } } diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index c59c1c9..4c034b3 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -836,9 +836,7 @@ <!-- Allows an application to create mock location providers for testing. --> <permission android:name="android.permission.ACCESS_MOCK_LOCATION" - android:label="@string/permlab_accessMockLocation" - android:description="@string/permdesc_accessMockLocation" - android:protectionLevel="normal" /> + android:protectionLevel="signature" /> <!-- ======================================= --> <!-- Permissions for accessing networks --> @@ -1109,6 +1107,11 @@ <permission android:name="android.permission.CAPTURE_TV_INPUT" android:protectionLevel="signatureOrSystem" /> + <!-- @hide Allows TvInputService to access DVB device. + <p>Not for use by third-party applications. --> + <permission android:name="android.permission.DVB_DEVICE" + android:protectionLevel="signatureOrSystem" /> + <!-- @hide Allows enabling/disabling OEM unlock <p>Not for use by third-party applications. --> <permission android:name="android.permission.OEM_UNLOCK_STATE" @@ -1186,10 +1189,20 @@ android:protectionLevel="system|signature" /> <!-- Must be required by a {@link android.telecom.ConnectionService}, - to ensure that only the system can bind to it. --> + to ensure that only the system can bind to it. + @deprecated {@link android.telecom.ConnectionService}s should require + android.permission.BIND_TELECOM_CONNECTION_SERVICE instead. + @SystemApi + @hide --> <permission android:name="android.permission.BIND_CONNECTION_SERVICE" android:protectionLevel="system|signature" /> + <!-- Must be required by a {@link android.telecom.ConnectionService}, + to ensure that only the system can bind to it. --> + <permission android:name="android.permission.BIND_TELECOM_CONNECTION_SERVICE" + android:protectionLevel="system|signature" /> + + <!-- @SystemApi Allows an application to control the in-call experience. @hide --> <permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" diff --git a/core/res/res/drawable-en-hdpi/sym_keyboard_delete.png b/core/res/res/drawable-en-hdpi/sym_keyboard_delete.png Binary files differindex 569369e..18c8c6d 100644 --- a/core/res/res/drawable-en-hdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-en-hdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png b/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png Binary files differindex d9d5653..731cefd 100644 --- a/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png Binary files differindex 8922bf9..b180ad0 100644 --- a/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-en-mdpi/sym_keyboard_delete.png b/core/res/res/drawable-en-mdpi/sym_keyboard_delete.png Binary files differindex f1f7c58..3476832 100644 --- a/core/res/res/drawable-en-mdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-en-mdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-en-mdpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-en-mdpi/sym_keyboard_feedback_delete.png Binary files differindex 3c90839..6ad0634 100644 --- a/core/res/res/drawable-en-mdpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-en-mdpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-hdpi/ab_bottom_solid_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_bottom_solid_dark_holo.9.png Binary files differindex 769463b..9bf59cd 100644 --- a/core/res/res/drawable-hdpi/ab_bottom_solid_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_bottom_solid_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_bottom_solid_inverse_holo.9.png b/core/res/res/drawable-hdpi/ab_bottom_solid_inverse_holo.9.png Binary files differindex 88f11dc..1b055d8 100644 --- a/core/res/res/drawable-hdpi/ab_bottom_solid_inverse_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_bottom_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_bottom_solid_light_holo.9.png b/core/res/res/drawable-hdpi/ab_bottom_solid_light_holo.9.png Binary files differindex 7305047..d0fce22 100644 --- a/core/res/res/drawable-hdpi/ab_bottom_solid_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_bottom_solid_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_bottom_transparent_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_bottom_transparent_dark_holo.9.png Binary files differindex 712a551..796caa8 100644 --- a/core/res/res/drawable-hdpi/ab_bottom_transparent_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_bottom_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_bottom_transparent_light_holo.9.png b/core/res/res/drawable-hdpi/ab_bottom_transparent_light_holo.9.png Binary files differindex bf3b943..8bbbdf2 100644 --- a/core/res/res/drawable-hdpi/ab_bottom_transparent_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_bottom_transparent_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_share_pack_holo_dark.9.png b/core/res/res/drawable-hdpi/ab_share_pack_holo_dark.9.png Binary files differindex 6c14157..1514dae 100644 --- a/core/res/res/drawable-hdpi/ab_share_pack_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/ab_share_pack_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/ab_share_pack_holo_light.9.png b/core/res/res/drawable-hdpi/ab_share_pack_holo_light.9.png Binary files differindex f4ff16b..811fe74 100644 --- a/core/res/res/drawable-hdpi/ab_share_pack_holo_light.9.png +++ b/core/res/res/drawable-hdpi/ab_share_pack_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/ab_share_pack_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/ab_share_pack_mtrl_alpha.9.png Binary files differindex b07da0c..f71472e 100644 --- a/core/res/res/drawable-hdpi/ab_share_pack_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/ab_share_pack_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/ab_solid_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_solid_dark_holo.9.png Binary files differindex cbbaec5..3cfd32d 100644 --- a/core/res/res/drawable-hdpi/ab_solid_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_solid_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_solid_light_holo.9.png b/core/res/res/drawable-hdpi/ab_solid_light_holo.9.png Binary files differindex af917e5..bbaa829 100644 --- a/core/res/res/drawable-hdpi/ab_solid_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_solid_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_solid_shadow_holo.9.png b/core/res/res/drawable-hdpi/ab_solid_shadow_holo.9.png Binary files differindex 2d59f35..a7b124d 100644 --- a/core/res/res/drawable-hdpi/ab_solid_shadow_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_solid_shadow_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_solid_shadow_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/ab_solid_shadow_mtrl_alpha.9.png Binary files differindex e49ad54..a99ec13 100644 --- a/core/res/res/drawable-hdpi/ab_solid_shadow_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/ab_solid_shadow_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/ab_stacked_solid_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_stacked_solid_dark_holo.9.png Binary files differindex 0520e5a..0af0d87 100644 --- a/core/res/res/drawable-hdpi/ab_stacked_solid_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_stacked_solid_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_stacked_solid_inverse_holo.9.png b/core/res/res/drawable-hdpi/ab_stacked_solid_inverse_holo.9.png Binary files differindex 42528b1..60feb5e 100644 --- a/core/res/res/drawable-hdpi/ab_stacked_solid_inverse_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_stacked_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_stacked_solid_light_holo.9.png b/core/res/res/drawable-hdpi/ab_stacked_solid_light_holo.9.png Binary files differindex e3e3f93..915683e 100644 --- a/core/res/res/drawable-hdpi/ab_stacked_solid_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_stacked_solid_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_stacked_transparent_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_stacked_transparent_dark_holo.9.png Binary files differindex 1e39572..47c0bb0 100644 --- a/core/res/res/drawable-hdpi/ab_stacked_transparent_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_stacked_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_stacked_transparent_light_holo.9.png b/core/res/res/drawable-hdpi/ab_stacked_transparent_light_holo.9.png Binary files differindex a16db85..1a4f377 100644 --- a/core/res/res/drawable-hdpi/ab_stacked_transparent_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_stacked_transparent_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_transparent_dark_holo.9.png b/core/res/res/drawable-hdpi/ab_transparent_dark_holo.9.png Binary files differindex 0eff695..4e04fa1 100644 --- a/core/res/res/drawable-hdpi/ab_transparent_dark_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-hdpi/ab_transparent_light_holo.9.png b/core/res/res/drawable-hdpi/ab_transparent_light_holo.9.png Binary files differindex 219b170..13eb5b6 100644 --- a/core/res/res/drawable-hdpi/ab_transparent_light_holo.9.png +++ b/core/res/res/drawable-hdpi/ab_transparent_light_holo.9.png diff --git a/core/res/res/drawable-hdpi/activity_title_bar.9.png b/core/res/res/drawable-hdpi/activity_title_bar.9.png Binary files differindex 48d60c4..6b2a0be 100644 --- a/core/res/res/drawable-hdpi/activity_title_bar.9.png +++ b/core/res/res/drawable-hdpi/activity_title_bar.9.png diff --git a/core/res/res/drawable-hdpi/arrow_down_float.png b/core/res/res/drawable-hdpi/arrow_down_float.png Binary files differindex 2466c8f..02c2b00 100644 --- a/core/res/res/drawable-hdpi/arrow_down_float.png +++ b/core/res/res/drawable-hdpi/arrow_down_float.png diff --git a/core/res/res/drawable-hdpi/arrow_up_float.png b/core/res/res/drawable-hdpi/arrow_up_float.png Binary files differindex d1301c3..8ab88e2 100644 --- a/core/res/res/drawable-hdpi/arrow_up_float.png +++ b/core/res/res/drawable-hdpi/arrow_up_float.png diff --git a/core/res/res/drawable-hdpi/battery_charge_background.png b/core/res/res/drawable-hdpi/battery_charge_background.png Binary files differindex 19023a9..b737f9e 100644 --- a/core/res/res/drawable-hdpi/battery_charge_background.png +++ b/core/res/res/drawable-hdpi/battery_charge_background.png diff --git a/core/res/res/drawable-hdpi/bottom_bar.png b/core/res/res/drawable-hdpi/bottom_bar.png Binary files differindex 1f38f3c..74378f5 100644 --- a/core/res/res/drawable-hdpi/bottom_bar.png +++ b/core/res/res/drawable-hdpi/bottom_bar.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_default_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_cab_done_default_holo_dark.9.png Binary files differindex b0dc31f..8449173 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_default_holo_light.9.png b/core/res/res/drawable-hdpi/btn_cab_done_default_holo_light.9.png Binary files differindex 4bc2683..ea50cfb 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_dark.9.png Binary files differindex 4af38fb..c7c9bc7 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_light.9.png Binary files differindex d32f74c..6c17c3e 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_dark.9.png Binary files differindex 99d60e3..238ec9a 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_light.9.png Binary files differindex 45a0cf0..502c545 100644 --- a/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_cab_done_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_check_buttonless_off.png b/core/res/res/drawable-hdpi/btn_check_buttonless_off.png Binary files differindex baf9010..a56bbe7 100644 --- a/core/res/res/drawable-hdpi/btn_check_buttonless_off.png +++ b/core/res/res/drawable-hdpi/btn_check_buttonless_off.png diff --git a/core/res/res/drawable-hdpi/btn_check_buttonless_on.png b/core/res/res/drawable-hdpi/btn_check_buttonless_on.png Binary files differindex 2a77e4c..a37e7ab 100644 --- a/core/res/res/drawable-hdpi/btn_check_buttonless_on.png +++ b/core/res/res/drawable-hdpi/btn_check_buttonless_on.png diff --git a/core/res/res/drawable-hdpi/btn_check_label_background.9.png b/core/res/res/drawable-hdpi/btn_check_label_background.9.png Binary files differindex 97e6806..a223215 100644 --- a/core/res/res/drawable-hdpi/btn_check_label_background.9.png +++ b/core/res/res/drawable-hdpi/btn_check_label_background.9.png diff --git a/core/res/res/drawable-hdpi/btn_check_off.png b/core/res/res/drawable-hdpi/btn_check_off.png Binary files differindex 3928b7d..fa40522 100644 --- a/core/res/res/drawable-hdpi/btn_check_off.png +++ b/core/res/res/drawable-hdpi/btn_check_off.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable.png b/core/res/res/drawable-hdpi/btn_check_off_disable.png Binary files differindex 922737e..4a90343 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_focused.png b/core/res/res/drawable-hdpi/btn_check_off_disable_focused.png Binary files differindex 992f0fe..355a17b 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png Binary files differindex d93e580..292337d 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png Binary files differindex ffbe776..a4af7b4 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png Binary files differindex d93e580..292337d 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png Binary files differindex ffbe776..a4af7b4 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_dark.png Binary files differindex 50908bd..134441a 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_light.png Binary files differindex 64c3b9b..6cfff06 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_dark.png Binary files differindex 4bcc51d..5c94e96 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_light.png Binary files differindex 9dbad9b..1b9f6fd 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_focused_holo_dark.png Binary files differindex 2d5b328..a731587 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_focused_holo_light.png Binary files differindex e1474f0..24b897c 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_holo.png b/core/res/res/drawable-hdpi/btn_check_off_holo.png Binary files differindex 9a5d158..c494b2f 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_holo.png +++ b/core/res/res/drawable-hdpi/btn_check_off_holo.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png Binary files differindex d141b28..765fa5b 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_holo_light.png Binary files differindex 696810e..5b73bf3 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_normal_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_normal_holo_dark.png Binary files differindex b81d4f9..19f1458 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_normal_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_normal_holo_light.png Binary files differindex b74055e..f9075c3 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_pressed.png b/core/res/res/drawable-hdpi/btn_check_off_pressed.png Binary files differindex c6195ab..6e958b5 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_pressed.png +++ b/core/res/res/drawable-hdpi/btn_check_off_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png Binary files differindex 86b43c1..834e065 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png Binary files differindex cdf0078..8c75d64 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_off_selected.png b/core/res/res/drawable-hdpi/btn_check_off_selected.png Binary files differindex d467769..d152780 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_selected.png +++ b/core/res/res/drawable-hdpi/btn_check_off_selected.png diff --git a/core/res/res/drawable-hdpi/btn_check_on.png b/core/res/res/drawable-hdpi/btn_check_on.png Binary files differindex 91d8ba9..bd18779 100644 --- a/core/res/res/drawable-hdpi/btn_check_on.png +++ b/core/res/res/drawable-hdpi/btn_check_on.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable.png b/core/res/res/drawable-hdpi/btn_check_on_disable.png Binary files differindex 6472087..dba0aea 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disable.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disable.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_focused.png b/core/res/res/drawable-hdpi/btn_check_on_disable_focused.png Binary files differindex 58ba72d..2771010 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png Binary files differindex 1f740ad..94fad04 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png Binary files differindex 1f7aeee..2c94282 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png Binary files differindex 1f740ad..94fad04 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png Binary files differindex 426f3bb..8ca9910 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png Binary files differindex 67a6c6b..c704e9f 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_dark.png Binary files differindex cccd61e..d66305b 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_light.png Binary files differindex cd02122..9425f02 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_focused_holo_dark.png Binary files differindex 1da69b8..0af8561 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_focused_holo_light.png Binary files differindex 12d7081..a98a0e0 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_holo.png b/core/res/res/drawable-hdpi/btn_check_on_holo.png Binary files differindex 7c1bab0..a5b62cd 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_holo.png +++ b/core/res/res/drawable-hdpi/btn_check_on_holo.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png Binary files differindex ab2794a..97faab5 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_holo_light.png Binary files differindex 7cca308..dd7eaea 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_pressed.png b/core/res/res/drawable-hdpi/btn_check_on_pressed.png Binary files differindex 42b8edc..518332b 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_pressed.png +++ b/core/res/res/drawable-hdpi/btn_check_on_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png Binary files differindex 7de0448..0096c1d 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png Binary files differindex 5b916c9..146db41 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_check_on_selected.png b/core/res/res/drawable-hdpi/btn_check_on_selected.png Binary files differindex 7c94adf..ded500f 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_selected.png +++ b/core/res/res/drawable-hdpi/btn_check_on_selected.png diff --git a/core/res/res/drawable-hdpi/btn_circle_disable.png b/core/res/res/drawable-hdpi/btn_circle_disable.png Binary files differindex 39652a8..bd56993 100644 --- a/core/res/res/drawable-hdpi/btn_circle_disable.png +++ b/core/res/res/drawable-hdpi/btn_circle_disable.png diff --git a/core/res/res/drawable-hdpi/btn_circle_disable_focused.png b/core/res/res/drawable-hdpi/btn_circle_disable_focused.png Binary files differindex 1aa7ffe..585e41a 100644 --- a/core/res/res/drawable-hdpi/btn_circle_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_circle_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_circle_normal.png b/core/res/res/drawable-hdpi/btn_circle_normal.png Binary files differindex 6011219..c8a4269 100644 --- a/core/res/res/drawable-hdpi/btn_circle_normal.png +++ b/core/res/res/drawable-hdpi/btn_circle_normal.png diff --git a/core/res/res/drawable-hdpi/btn_circle_pressed.png b/core/res/res/drawable-hdpi/btn_circle_pressed.png Binary files differindex 4942e50..ac5976c 100644 --- a/core/res/res/drawable-hdpi/btn_circle_pressed.png +++ b/core/res/res/drawable-hdpi/btn_circle_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_circle_selected.png b/core/res/res/drawable-hdpi/btn_circle_selected.png Binary files differindex fe49a40..110c0b3 100644 --- a/core/res/res/drawable-hdpi/btn_circle_selected.png +++ b/core/res/res/drawable-hdpi/btn_circle_selected.png diff --git a/core/res/res/drawable-hdpi/btn_close_normal.png b/core/res/res/drawable-hdpi/btn_close_normal.png Binary files differindex 47f11e5..972de78 100644 --- a/core/res/res/drawable-hdpi/btn_close_normal.png +++ b/core/res/res/drawable-hdpi/btn_close_normal.png diff --git a/core/res/res/drawable-hdpi/btn_close_pressed.png b/core/res/res/drawable-hdpi/btn_close_pressed.png Binary files differindex 5b96b4e..346de44 100644 --- a/core/res/res/drawable-hdpi/btn_close_pressed.png +++ b/core/res/res/drawable-hdpi/btn_close_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_close_selected.png b/core/res/res/drawable-hdpi/btn_close_selected.png Binary files differindex e27d684..69473e3 100644 --- a/core/res/res/drawable-hdpi/btn_close_selected.png +++ b/core/res/res/drawable-hdpi/btn_close_selected.png diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png Binary files differindex 28a1cba..fb1990d 100644 --- a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png Binary files differindex 28a1cba..fb1990d 100644 --- a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_holo.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_holo.9.png Binary files differindex 0437c31..269823c 100644 --- a/core/res/res/drawable-hdpi/btn_default_disabled_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_default_disabled_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png Binary files differindex 72b0d42..e0f3cd5 100644 --- a/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png Binary files differindex 72b0d42..e0f3cd5 100644 --- a/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_focused_holo.9.png b/core/res/res/drawable-hdpi/btn_default_focused_holo.9.png Binary files differindex 882ed61..0f866ec 100644 --- a/core/res/res/drawable-hdpi/btn_default_focused_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_default_focused_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png Binary files differindex eff3cc4..e136a19 100644 --- a/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png Binary files differindex eff3cc4..e136a19 100644 --- a/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal.9.png b/core/res/res/drawable-hdpi/btn_default_normal.9.png Binary files differindex 803651b..4579c58 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal_disable.9.png b/core/res/res/drawable-hdpi/btn_default_normal_disable.9.png Binary files differindex f4f01c7..110f91e 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal_disable.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal_disable.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal_disable_focused.9.png b/core/res/res/drawable-hdpi/btn_default_normal_disable_focused.9.png Binary files differindex 5376db2..372c626 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal_disable_focused.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal_disable_focused.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal_holo.9.png b/core/res/res/drawable-hdpi/btn_default_normal_holo.9.png Binary files differindex dbcede7..4d06c2f 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png Binary files differindex 986f797..479b1e3 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png Binary files differindex 42fc83c..88a706e 100644 --- a/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_pressed.9.png b/core/res/res/drawable-hdpi/btn_default_pressed.9.png Binary files differindex 4312c27..a4c15a5 100644 --- a/core/res/res/drawable-hdpi/btn_default_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_default_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_pressed_holo.9.png b/core/res/res/drawable-hdpi/btn_default_pressed_holo.9.png Binary files differindex fd2b63a..8721977 100644 --- a/core/res/res/drawable-hdpi/btn_default_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_default_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png Binary files differindex b7c125b..03b3270 100644 --- a/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png Binary files differindex bf09b6f..ce4fdc6 100644 --- a/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_selected.9.png b/core/res/res/drawable-hdpi/btn_default_selected.9.png Binary files differindex 06b7790..e6c5bf9 100644 --- a/core/res/res/drawable-hdpi/btn_default_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_default_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_small_normal.9.png b/core/res/res/drawable-hdpi/btn_default_small_normal.9.png Binary files differindex 6d3ea9a..4013605 100644 --- a/core/res/res/drawable-hdpi/btn_default_small_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_default_small_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_small_normal_disable.9.png b/core/res/res/drawable-hdpi/btn_default_small_normal_disable.9.png Binary files differindex 2646ba0..f692f3e 100644 --- a/core/res/res/drawable-hdpi/btn_default_small_normal_disable.9.png +++ b/core/res/res/drawable-hdpi/btn_default_small_normal_disable.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_small_normal_disable_focused.9.png b/core/res/res/drawable-hdpi/btn_default_small_normal_disable_focused.9.png Binary files differindex 013210c..66ad3c5 100644 --- a/core/res/res/drawable-hdpi/btn_default_small_normal_disable_focused.9.png +++ b/core/res/res/drawable-hdpi/btn_default_small_normal_disable_focused.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_small_pressed.9.png b/core/res/res/drawable-hdpi/btn_default_small_pressed.9.png Binary files differindex 24cefd4..dc1096e 100644 --- a/core/res/res/drawable-hdpi/btn_default_small_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_default_small_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_small_selected.9.png b/core/res/res/drawable-hdpi/btn_default_small_selected.9.png Binary files differindex bedbceb..fabd432 100644 --- a/core/res/res/drawable-hdpi/btn_default_small_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_default_small_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_default_transparent_normal.9.png b/core/res/res/drawable-hdpi/btn_default_transparent_normal.9.png Binary files differindex 617dba3..50b4431 100644 --- a/core/res/res/drawable-hdpi/btn_default_transparent_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_default_transparent_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_dialog_disable.png b/core/res/res/drawable-hdpi/btn_dialog_disable.png Binary files differindex 4ff634b..c6752eb 100644 --- a/core/res/res/drawable-hdpi/btn_dialog_disable.png +++ b/core/res/res/drawable-hdpi/btn_dialog_disable.png diff --git a/core/res/res/drawable-hdpi/btn_dialog_normal.png b/core/res/res/drawable-hdpi/btn_dialog_normal.png Binary files differindex e0cc339..972de78 100644 --- a/core/res/res/drawable-hdpi/btn_dialog_normal.png +++ b/core/res/res/drawable-hdpi/btn_dialog_normal.png diff --git a/core/res/res/drawable-hdpi/btn_dialog_pressed.png b/core/res/res/drawable-hdpi/btn_dialog_pressed.png Binary files differindex ed8e008..5082d10 100644 --- a/core/res/res/drawable-hdpi/btn_dialog_pressed.png +++ b/core/res/res/drawable-hdpi/btn_dialog_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_dialog_selected.png b/core/res/res/drawable-hdpi/btn_dialog_selected.png Binary files differindex 9b1a100..174d2e5 100644 --- a/core/res/res/drawable-hdpi/btn_dialog_selected.png +++ b/core/res/res/drawable-hdpi/btn_dialog_selected.png diff --git a/core/res/res/drawable-hdpi/btn_dropdown_disabled.9.png b/core/res/res/drawable-hdpi/btn_dropdown_disabled.9.png Binary files differindex 0d25b6e..a2599f8 100644 --- a/core/res/res/drawable-hdpi/btn_dropdown_disabled.9.png +++ b/core/res/res/drawable-hdpi/btn_dropdown_disabled.9.png diff --git a/core/res/res/drawable-hdpi/btn_dropdown_disabled_focused.9.png b/core/res/res/drawable-hdpi/btn_dropdown_disabled_focused.9.png Binary files differindex e21fd75..16d11fd 100644 --- a/core/res/res/drawable-hdpi/btn_dropdown_disabled_focused.9.png +++ b/core/res/res/drawable-hdpi/btn_dropdown_disabled_focused.9.png diff --git a/core/res/res/drawable-hdpi/btn_dropdown_normal.9.png b/core/res/res/drawable-hdpi/btn_dropdown_normal.9.png Binary files differindex f10402f..9b5331a 100644 --- a/core/res/res/drawable-hdpi/btn_dropdown_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_dropdown_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_dropdown_pressed.9.png b/core/res/res/drawable-hdpi/btn_dropdown_pressed.9.png Binary files differindex 366c6e0..17c7ec6 100644 --- a/core/res/res/drawable-hdpi/btn_dropdown_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_dropdown_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_dropdown_selected.9.png b/core/res/res/drawable-hdpi/btn_dropdown_selected.9.png Binary files differindex f063c8d..cc82ca8 100644 --- a/core/res/res/drawable-hdpi/btn_dropdown_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_dropdown_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_erase_default.9.png b/core/res/res/drawable-hdpi/btn_erase_default.9.png Binary files differindex 30984f4..32696cb 100644 --- a/core/res/res/drawable-hdpi/btn_erase_default.9.png +++ b/core/res/res/drawable-hdpi/btn_erase_default.9.png diff --git a/core/res/res/drawable-hdpi/btn_erase_pressed.9.png b/core/res/res/drawable-hdpi/btn_erase_pressed.9.png Binary files differindex a8225e8..41e3101 100644 --- a/core/res/res/drawable-hdpi/btn_erase_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_erase_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_erase_selected.9.png b/core/res/res/drawable-hdpi/btn_erase_selected.9.png Binary files differindex f020f77..fd993f1 100644 --- a/core/res/res/drawable-hdpi/btn_erase_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_erase_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_global_search_normal.9.png b/core/res/res/drawable-hdpi/btn_global_search_normal.9.png Binary files differindex 5bec4f8..bb47007 100644 --- a/core/res/res/drawable-hdpi/btn_global_search_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_global_search_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_group_disabled_holo_dark.9.png Binary files differindex 00e8f06..9dc04b1 100644 --- a/core/res/res/drawable-hdpi/btn_group_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_group_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_group_disabled_holo_light.9.png Binary files differindex 997ccb2..36a1056 100644 --- a/core/res/res/drawable-hdpi/btn_group_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_group_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_group_focused_holo_dark.9.png Binary files differindex 824b45a..b2fd0f3 100644 --- a/core/res/res/drawable-hdpi/btn_group_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_group_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_group_focused_holo_light.9.png Binary files differindex 824b45a..b2fd0f3 100644 --- a/core/res/res/drawable-hdpi/btn_group_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_group_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_group_normal_holo_dark.9.png Binary files differindex b2120f4..bb26327 100644 --- a/core/res/res/drawable-hdpi/btn_group_normal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_group_normal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_group_normal_holo_light.9.png Binary files differindex 782d36b..c740943 100644 --- a/core/res/res/drawable-hdpi/btn_group_normal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_group_normal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_group_pressed_holo_dark.9.png Binary files differindex 34ec825..2e3cbe5 100644 --- a/core/res/res/drawable-hdpi/btn_group_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_group_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_group_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_group_pressed_holo_light.9.png Binary files differindex f7680ab..2f0c206 100644 --- a/core/res/res/drawable-hdpi/btn_group_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_group_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png Binary files differindex 5e6a9d6..59d81a7 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_off_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_off_holo.9.png Binary files differindex eb9d740..8ae1983 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_off_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_off_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_on_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_on_holo.9.png Binary files differindex 869a330..784a310 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_on_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_normal_on_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png Binary files differindex 7ec33dd..790a7ec 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_off_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_off_holo.9.png Binary files differindex 72d63da..847d5dd 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_off_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_off_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_on_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_on_holo.9.png Binary files differindex fcc5cac..5f403d4 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_on_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_dark_pressed_on_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal.9.png Binary files differindex b6c234c..401ba35 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_off.9.png Binary files differindex 9f3c087..6b245c4 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_on.9.png Binary files differindex 4041342..3561f37 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_normal_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed.9.png Binary files differindex 73a8cd1..2fe6135 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_off.9.png Binary files differindex 8473e8e..4672962 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_on.9.png Binary files differindex f4f59c0..adacc02 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_fulltrans_pressed_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png Binary files differindex baff858..c2bb9c6 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_light_normal_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png Binary files differindex 5612c51..0460dfe 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_light_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_normal.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_normal.9.png Binary files differindex 42c7c14..d736005 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_normal_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_normal_off.9.png Binary files differindex 01e2506..1e7f7e1 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_normal_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_normal_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_normal_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_normal_on.9.png Binary files differindex 83c6eb3..2680df6 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_normal_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_normal_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed.9.png Binary files differindex e047eaf..4d40a25 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_off.9.png Binary files differindex 218a2d2..f379efe 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_on.9.png Binary files differindex afe4951..805b9b3 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_pressed_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal.9.png Binary files differindex 9c7e483..932c19c 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_off.9.png Binary files differindex 1508653..94eeac7 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_on.9.png Binary files differindex 66c231a..5d5f433 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_normal_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed.9.png Binary files differindex e01a49d..f1a6988 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_off.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_off.9.png Binary files differindex cdad182..d810431 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_off.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_on.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_on.9.png Binary files differindex e95f4cf..8ffce89 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_on.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_pressed_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_selected.9.png b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_selected.9.png Binary files differindex 544655e..300064b 100644 --- a/core/res/res/drawable-hdpi/btn_keyboard_key_trans_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_keyboard_key_trans_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_media_player.9.png b/core/res/res/drawable-hdpi/btn_media_player.9.png Binary files differindex bf16315..a438737 100644 --- a/core/res/res/drawable-hdpi/btn_media_player.9.png +++ b/core/res/res/drawable-hdpi/btn_media_player.9.png diff --git a/core/res/res/drawable-hdpi/btn_media_player_disabled.9.png b/core/res/res/drawable-hdpi/btn_media_player_disabled.9.png Binary files differindex d7b8ed5..b55266e 100644 --- a/core/res/res/drawable-hdpi/btn_media_player_disabled.9.png +++ b/core/res/res/drawable-hdpi/btn_media_player_disabled.9.png diff --git a/core/res/res/drawable-hdpi/btn_media_player_disabled_selected.9.png b/core/res/res/drawable-hdpi/btn_media_player_disabled_selected.9.png Binary files differindex 1a35c31..0cacf4e 100644 --- a/core/res/res/drawable-hdpi/btn_media_player_disabled_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_media_player_disabled_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_media_player_pressed.9.png b/core/res/res/drawable-hdpi/btn_media_player_pressed.9.png Binary files differindex 17dd3fc..c5d373e 100644 --- a/core/res/res/drawable-hdpi/btn_media_player_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_media_player_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_media_player_selected.9.png b/core/res/res/drawable-hdpi/btn_media_player_selected.9.png Binary files differindex a146d8f..8e5cc46 100644 --- a/core/res/res/drawable-hdpi/btn_media_player_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_media_player_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_minus_default.png b/core/res/res/drawable-hdpi/btn_minus_default.png Binary files differindex f2831af..288bb97 100644 --- a/core/res/res/drawable-hdpi/btn_minus_default.png +++ b/core/res/res/drawable-hdpi/btn_minus_default.png diff --git a/core/res/res/drawable-hdpi/btn_minus_disable.png b/core/res/res/drawable-hdpi/btn_minus_disable.png Binary files differindex 24ce695..c93b0d3 100644 --- a/core/res/res/drawable-hdpi/btn_minus_disable.png +++ b/core/res/res/drawable-hdpi/btn_minus_disable.png diff --git a/core/res/res/drawable-hdpi/btn_minus_disable_focused.png b/core/res/res/drawable-hdpi/btn_minus_disable_focused.png Binary files differindex e92c2b1..d27d712 100644 --- a/core/res/res/drawable-hdpi/btn_minus_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_minus_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_minus_pressed.png b/core/res/res/drawable-hdpi/btn_minus_pressed.png Binary files differindex ba2ed26..edebc11 100644 --- a/core/res/res/drawable-hdpi/btn_minus_pressed.png +++ b/core/res/res/drawable-hdpi/btn_minus_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_minus_selected.png b/core/res/res/drawable-hdpi/btn_minus_selected.png Binary files differindex 6b938b3..ecda949 100644 --- a/core/res/res/drawable-hdpi/btn_minus_selected.png +++ b/core/res/res/drawable-hdpi/btn_minus_selected.png diff --git a/core/res/res/drawable-hdpi/btn_plus_default.png b/core/res/res/drawable-hdpi/btn_plus_default.png Binary files differindex 441d1fb..82c7f08 100644 --- a/core/res/res/drawable-hdpi/btn_plus_default.png +++ b/core/res/res/drawable-hdpi/btn_plus_default.png diff --git a/core/res/res/drawable-hdpi/btn_plus_disable.png b/core/res/res/drawable-hdpi/btn_plus_disable.png Binary files differindex 4e965c1..170b906 100644 --- a/core/res/res/drawable-hdpi/btn_plus_disable.png +++ b/core/res/res/drawable-hdpi/btn_plus_disable.png diff --git a/core/res/res/drawable-hdpi/btn_plus_disable_focused.png b/core/res/res/drawable-hdpi/btn_plus_disable_focused.png Binary files differindex 0c938eb..4f7b52c 100644 --- a/core/res/res/drawable-hdpi/btn_plus_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_plus_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_plus_pressed.png b/core/res/res/drawable-hdpi/btn_plus_pressed.png Binary files differindex 8dd5a68..08fe043 100644 --- a/core/res/res/drawable-hdpi/btn_plus_pressed.png +++ b/core/res/res/drawable-hdpi/btn_plus_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_plus_selected.png b/core/res/res/drawable-hdpi/btn_plus_selected.png Binary files differindex 8fe30ed..e77e177 100644 --- a/core/res/res/drawable-hdpi/btn_plus_selected.png +++ b/core/res/res/drawable-hdpi/btn_plus_selected.png diff --git a/core/res/res/drawable-hdpi/btn_radio_label_background.9.png b/core/res/res/drawable-hdpi/btn_radio_label_background.9.png Binary files differindex 45c5c6a..a208cd2 100644 --- a/core/res/res/drawable-hdpi/btn_radio_label_background.9.png +++ b/core/res/res/drawable-hdpi/btn_radio_label_background.9.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off.png b/core/res/res/drawable-hdpi/btn_radio_off.png Binary files differindex 48ee2ba..b292639 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off.png +++ b/core/res/res/drawable-hdpi/btn_radio_off.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_dark.png Binary files differindex 652a528..4e6687d 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_light.png Binary files differindex cd73cd2..80a4821 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_dark.png Binary files differindex eb58648..a21f074 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_light.png Binary files differindex 25e8e1b..2f04df7 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_dark.png Binary files differindex db79042..bb000ef 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_light.png Binary files differindex bba1e26..514d13a 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_holo.png b/core/res/res/drawable-hdpi/btn_radio_off_holo.png Binary files differindex e2761d2..4d218a6 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_holo.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_holo.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png Binary files differindex ff5510e..e3843f3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png Binary files differindex 4d60008..d12edf9 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_pressed.png b/core/res/res/drawable-hdpi/btn_radio_off_pressed.png Binary files differindex 5a4ad89..7decafc 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_pressed.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png Binary files differindex 9fd5b76..b47a664 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png Binary files differindex caff83d..1198074 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_off_selected.png b/core/res/res/drawable-hdpi/btn_radio_off_selected.png Binary files differindex 7d5c676..df75a91 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_selected.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_selected.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on.png b/core/res/res/drawable-hdpi/btn_radio_on.png Binary files differindex 2472c20..ed49207 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on.png +++ b/core/res/res/drawable-hdpi/btn_radio_on.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_dark.png Binary files differindex d9cee46..f02a8cb 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_light.png Binary files differindex 3895dba..40b0e19 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_dark.png Binary files differindex 6ebb184..a576435 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_light.png Binary files differindex 6e61b52..a15f4c3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_dark.png Binary files differindex 13664b7..4971e63 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_light.png Binary files differindex fddb7dd..44c9647 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_holo.png b/core/res/res/drawable-hdpi/btn_radio_on_holo.png Binary files differindex fdaffdc..2e67375 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_holo.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_holo.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png Binary files differindex 0a31436..4a6da6f 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png Binary files differindex b843f77..e2b8c3c 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_pressed.png b/core/res/res/drawable-hdpi/btn_radio_on_pressed.png Binary files differindex 98d74ce..b941ba1 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_pressed.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png Binary files differindex 4cddfda..ed78163 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png Binary files differindex e94aabe..cb3c17a 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_radio_on_selected.png b/core/res/res/drawable-hdpi/btn_radio_on_selected.png Binary files differindex b6ab46c..6df0b96 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_selected.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_selected.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_000.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_000.png Binary files differindex da88e98..828c59f 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_000.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_000.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_001.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_001.png Binary files differindex 907d92d..ae917ff 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_001.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_001.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_002.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_002.png Binary files differindex 9d24dc1..1c08870 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_002.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_002.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_003.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_003.png Binary files differindex 8aa2605..47f3373 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_003.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_003.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_004.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_004.png Binary files differindex b4cdf02..e00d34a 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_004.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_004.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_005.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_005.png Binary files differindex 0724ed7..f8351e3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_005.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_005.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_006.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_006.png Binary files differindex c9bd4e3..c1faace 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_006.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_006.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_007.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_007.png Binary files differindex 5630ec3..1cd8e43 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_007.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_007.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_008.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_008.png Binary files differindex 4bf666c..f26e2f5 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_008.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_008.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_009.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_009.png Binary files differindex dffaa07..0db856b 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_009.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_009.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_010.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_010.png Binary files differindex 5f86e18..ed07d15 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_010.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_010.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_011.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_011.png Binary files differindex 9b50aef..be83ae3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_011.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_011.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_012.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_012.png Binary files differindex 1cf5e7f..86858ac 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_012.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_012.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_013.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_013.png Binary files differindex 2bb641a..c713b11 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_013.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_013.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_014.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_014.png Binary files differindex 08e7485..014c343 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_014.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_014.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_015.png b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_015.png Binary files differindex 519b5a3..eaef60e 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_015.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_off_mtrl_015.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_000.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_000.png Binary files differindex 0d3e1e7..eaef60e 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_000.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_000.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_001.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_001.png Binary files differindex 88c4a9e..7b53352 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_001.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_001.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_002.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_002.png Binary files differindex 8fa2e88..21130e9 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_002.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_002.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_003.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_003.png Binary files differindex 53dd9d7..1e5d160 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_003.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_003.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_004.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_004.png Binary files differindex e235195..c4dfe42 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_004.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_004.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_005.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_005.png Binary files differindex 1721284..14a43e3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_005.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_005.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_006.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_006.png Binary files differindex 31819fa..9402cf3 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_006.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_006.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_007.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_007.png Binary files differindex 5de44b9..ba2a1aa 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_007.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_007.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_008.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_008.png Binary files differindex aa20f65..0a09664 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_008.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_008.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_009.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_009.png Binary files differindex c379ba7..0959692 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_009.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_009.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_010.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_010.png Binary files differindex e23b410..70a2e73 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_010.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_010.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_011.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_011.png Binary files differindex a9543dc..b9a0499 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_011.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_011.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_012.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_012.png Binary files differindex 2473b78..24a0b51 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_012.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_012.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_013.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_013.png Binary files differindex b4acc9c..2ebbd24 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_013.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_013.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_014.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_014.png Binary files differindex c9cf344..a93ab72 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_014.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_014.png diff --git a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_015.png b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_015.png Binary files differindex a8c390e..828c59f 100644 --- a/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_015.png +++ b/core/res/res/drawable-hdpi/btn_radio_to_on_mtrl_015.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_dark.png Binary files differindex 961b0f7..277da79 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_light.png Binary files differindex 503de5c..f93316c 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_dark.png Binary files differindex a756e30..9ee129b 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_light.png Binary files differindex 0d5bbe8..15fb3c3 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_dark.png Binary files differindex c58a841..288afa8 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_light.png Binary files differindex 9e018ef..7397b3e 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_mtrl_alpha.png b/core/res/res/drawable-hdpi/btn_rating_star_off_mtrl_alpha.png Binary files differindex 51a895d..90b03a2 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_normal.png b/core/res/res/drawable-hdpi/btn_rating_star_off_normal.png Binary files differindex d119807..1bcd343 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_normal.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_normal.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_dark.png Binary files differindex afaf691..d05234b 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_light.png Binary files differindex 26adc72..c0fb472 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed.png b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed.png Binary files differindex 6f76da3..426f42f 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_dark.png Binary files differindex e0cc6c5..f2f4d4f 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_light.png Binary files differindex 607d1cf..216cb76 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_off_selected.png b/core/res/res/drawable-hdpi/btn_rating_star_off_selected.png Binary files differindex 566090d..e0c6315 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_off_selected.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_off_selected.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_dark.png Binary files differindex 4791366..0185179 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_light.png Binary files differindex 8680012..fb8aa80 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_dark.png Binary files differindex 7dc2567..fad709c 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_light.png Binary files differindex de02ace..53bddc8 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_dark.png Binary files differindex 9b34307..5388fb3 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_light.png Binary files differindex fc9af78..1b0f6b0 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_mtrl_alpha.png b/core/res/res/drawable-hdpi/btn_rating_star_on_mtrl_alpha.png Binary files differindex 2f59488..142b5dc 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_normal.png b/core/res/res/drawable-hdpi/btn_rating_star_on_normal.png Binary files differindex c55c1f6..4917ce3 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_normal.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_normal.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_dark.png Binary files differindex c22ac4c..ce4e795 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_light.png Binary files differindex b2b0e29..4167141 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed.png b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed.png Binary files differindex 89b8161..363c633 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_dark.png Binary files differindex f45882c..6586b6c 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_light.png Binary files differindex d06fbeb..8d7e17d 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_rating_star_on_selected.png b/core/res/res/drawable-hdpi/btn_rating_star_on_selected.png Binary files differindex 1a76a26..5e8e89d 100644 --- a/core/res/res/drawable-hdpi/btn_rating_star_on_selected.png +++ b/core/res/res/drawable-hdpi/btn_rating_star_on_selected.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_default.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_default.9.png Binary files differindex 72faccf..adf1131 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_default.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_default.9.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_pressed.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_pressed.9.png Binary files differindex 369be10..7984457 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_selected.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_selected.9.png Binary files differindex 7e996ec..9e8371f 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_voice_default.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_voice_default.9.png Binary files differindex eda6e16..3f21028 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_voice_default.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_voice_default.9.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_voice_pressed.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_voice_pressed.9.png Binary files differindex 4158ac4..9f9dde1 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_voice_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_voice_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_search_dialog_voice_selected.9.png b/core/res/res/drawable-hdpi/btn_search_dialog_voice_selected.9.png Binary files differindex 6f68f25..6d57c5f 100644 --- a/core/res/res/drawable-hdpi/btn_search_dialog_voice_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_search_dialog_voice_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_square_overlay_disabled.png b/core/res/res/drawable-hdpi/btn_square_overlay_disabled.png Binary files differindex 71a037e..df454c1 100644 --- a/core/res/res/drawable-hdpi/btn_square_overlay_disabled.png +++ b/core/res/res/drawable-hdpi/btn_square_overlay_disabled.png diff --git a/core/res/res/drawable-hdpi/btn_square_overlay_disabled_focused.png b/core/res/res/drawable-hdpi/btn_square_overlay_disabled_focused.png Binary files differindex a474605..a4f5808 100644 --- a/core/res/res/drawable-hdpi/btn_square_overlay_disabled_focused.png +++ b/core/res/res/drawable-hdpi/btn_square_overlay_disabled_focused.png diff --git a/core/res/res/drawable-hdpi/btn_square_overlay_normal.png b/core/res/res/drawable-hdpi/btn_square_overlay_normal.png Binary files differindex bf5da22..66b789f 100644 --- a/core/res/res/drawable-hdpi/btn_square_overlay_normal.png +++ b/core/res/res/drawable-hdpi/btn_square_overlay_normal.png diff --git a/core/res/res/drawable-hdpi/btn_square_overlay_pressed.png b/core/res/res/drawable-hdpi/btn_square_overlay_pressed.png Binary files differindex 52a302d..d1606cc 100644 --- a/core/res/res/drawable-hdpi/btn_square_overlay_pressed.png +++ b/core/res/res/drawable-hdpi/btn_square_overlay_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_square_overlay_selected.png b/core/res/res/drawable-hdpi/btn_square_overlay_selected.png Binary files differindex e065682..81dae83 100644 --- a/core/res/res/drawable-hdpi/btn_square_overlay_selected.png +++ b/core/res/res/drawable-hdpi/btn_square_overlay_selected.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_off.png b/core/res/res/drawable-hdpi/btn_star_big_off.png Binary files differindex 4be0f5d..dc95357 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_off.png +++ b/core/res/res/drawable-hdpi/btn_star_big_off.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_off_disable.png b/core/res/res/drawable-hdpi/btn_star_big_off_disable.png Binary files differindex faba665..1bbd33e 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_off_disable.png +++ b/core/res/res/drawable-hdpi/btn_star_big_off_disable.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_off_disable_focused.png b/core/res/res/drawable-hdpi/btn_star_big_off_disable_focused.png Binary files differindex fc8aca4..c86a753 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_off_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_star_big_off_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_off_pressed.png b/core/res/res/drawable-hdpi/btn_star_big_off_pressed.png Binary files differindex b8c8e70..61c3949 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_off_pressed.png +++ b/core/res/res/drawable-hdpi/btn_star_big_off_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_off_selected.png b/core/res/res/drawable-hdpi/btn_star_big_off_selected.png Binary files differindex 86250bb..53aa81d 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_off_selected.png +++ b/core/res/res/drawable-hdpi/btn_star_big_off_selected.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_on.png b/core/res/res/drawable-hdpi/btn_star_big_on.png Binary files differindex 4213050..328b8b1 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_on.png +++ b/core/res/res/drawable-hdpi/btn_star_big_on.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_on_disable.png b/core/res/res/drawable-hdpi/btn_star_big_on_disable.png Binary files differindex 5629849..efddce5 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_on_disable.png +++ b/core/res/res/drawable-hdpi/btn_star_big_on_disable.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_on_disable_focused.png b/core/res/res/drawable-hdpi/btn_star_big_on_disable_focused.png Binary files differindex cb9f79c..1892137 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_on_disable_focused.png +++ b/core/res/res/drawable-hdpi/btn_star_big_on_disable_focused.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_on_pressed.png b/core/res/res/drawable-hdpi/btn_star_big_on_pressed.png Binary files differindex 648cd1b..c6ccf44 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_on_pressed.png +++ b/core/res/res/drawable-hdpi/btn_star_big_on_pressed.png diff --git a/core/res/res/drawable-hdpi/btn_star_big_on_selected.png b/core/res/res/drawable-hdpi/btn_star_big_on_selected.png Binary files differindex cb15673..215481a 100644 --- a/core/res/res/drawable-hdpi/btn_star_big_on_selected.png +++ b/core/res/res/drawable-hdpi/btn_star_big_on_selected.png diff --git a/core/res/res/drawable-hdpi/btn_star_label_background.9.png b/core/res/res/drawable-hdpi/btn_star_label_background.9.png Binary files differindex 6008067..99cc201 100644 --- a/core/res/res/drawable-hdpi/btn_star_label_background.9.png +++ b/core/res/res/drawable-hdpi/btn_star_label_background.9.png diff --git a/core/res/res/drawable-hdpi/btn_star_mtrl_alpha.png b/core/res/res/drawable-hdpi/btn_star_mtrl_alpha.png Binary files differindex e11896f6..7244d96 100644 --- a/core/res/res/drawable-hdpi/btn_star_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/btn_star_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_dark.png Binary files differindex ce3954f..819aa0e 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png Binary files differindex 2e7346a..b75d5c2 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_dark.png Binary files differindex 1a642f7..581e72d 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_light.png Binary files differindex cee608b..1df804b 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_off_focused_holo_dark.png Binary files differindex 0eb9e38..dd1d6d4 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_star_off_focused_holo_light.png Binary files differindex f396c47..3e56f05 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_normal_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_off_normal_holo_dark.png Binary files differindex cbbbfb3..be5f40e 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_normal_holo_light.png b/core/res/res/drawable-hdpi/btn_star_off_normal_holo_light.png Binary files differindex c4e1d81..7a8ba21 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_dark.png Binary files differindex 97730d1..8691f7c 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_light.png Binary files differindex 4350f16..282aecb 100644 --- a/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_dark.png Binary files differindex b7035fd..a89fc7f 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png Binary files differindex 852ad55..cc988e3 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_dark.png Binary files differindex 3d40107..2bb36f4 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_light.png b/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_light.png Binary files differindex ee79ed6..9b159e9 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_on_focused_holo_dark.png Binary files differindex 6cad71e..b711ca7 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_star_on_focused_holo_light.png Binary files differindex edcb86d..e19c79e 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_normal_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_on_normal_holo_dark.png Binary files differindex 02013fa..433f8a7 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_normal_holo_light.png b/core/res/res/drawable-hdpi/btn_star_on_normal_holo_light.png Binary files differindex 6689a89..5464529 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_dark.png Binary files differindex 36f9ad1..e2198de 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_light.png Binary files differindex 10d74ce..4f1afd8 100644 --- a/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00001.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00001.9.png Binary files differindex c31194e..617ea97 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00001.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00001.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00002.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00002.9.png Binary files differindex 52ed6b2..560e909 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00002.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00002.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00003.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00003.9.png Binary files differindex 7b7cde586..c5d15ef 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00003.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00003.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00004.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00004.9.png Binary files differindex 859642a..728af38 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00004.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00004.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00005.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00005.9.png Binary files differindex 5b71dda..6014097 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00005.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00005.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00006.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00006.9.png Binary files differindex 378d82d..261739b 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00006.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00006.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00007.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00007.9.png Binary files differindex 43c995a..ae3d1ce 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00007.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00007.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00008.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00008.9.png Binary files differindex c937837..866181b 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00008.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00008.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00009.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00009.9.png Binary files differindex a60a127..126f86f 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00009.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00009.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00010.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00010.9.png Binary files differindex db0bf2d..f854ae1 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00010.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00010.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00011.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00011.9.png Binary files differindex 4a6adbe..066077e 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00011.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00011.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00012.9.png b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00012.9.png Binary files differindex 98983ef..84888a2 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00012.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_off_mtrl_00012.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00001.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00001.9.png Binary files differindex 8e7b62f..f13f54d 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00001.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00001.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00002.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00002.9.png Binary files differindex 479a26e..c8e5c25 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00002.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00002.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00003.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00003.9.png Binary files differindex 77d3130..773a34f 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00003.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00003.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00004.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00004.9.png Binary files differindex cfe684f..2bfdd48 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00004.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00004.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00005.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00005.9.png Binary files differindex 4a64a36..fbe95b2 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00005.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00005.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00006.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00006.9.png Binary files differindex 29591ff..5dcd1c7 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00006.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00006.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00007.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00007.9.png Binary files differindex cf7cf49..ae3d1ce 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00007.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00007.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00008.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00008.9.png Binary files differindex 2a2a9af..8dec79d 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00008.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00008.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00009.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00009.9.png Binary files differindex 1f7fe5f..a031f01 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00009.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00009.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00010.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00010.9.png Binary files differindex f5d7093..e853d23 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00010.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00010.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00011.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00011.9.png Binary files differindex 3878386..12c8004 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00011.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00011.9.png diff --git a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00012.9.png b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00012.9.png Binary files differindex adcb9e9..ecaef68 100644 --- a/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00012.9.png +++ b/core/res/res/drawable-hdpi/btn_switch_to_on_mtrl_00012.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off.9.png b/core/res/res/drawable-hdpi/btn_toggle_off.9.png Binary files differindex 9e141d8..0ddccc2 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png Binary files differindex c5c0e97..1ed82e3 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png Binary files differindex c5c0e97..1ed82e3 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png Binary files differindex 3b31225..5729c94 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png Binary files differindex 3b31225..5729c94 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png Binary files differindex b65009e..1b39ff0 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png Binary files differindex b65009e..1b39ff0 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png Binary files differindex a2dfcae..8f99817 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png Binary files differindex c3fda0e..a50a089 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png Binary files differindex 94c0ee7..8f40332 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png Binary files differindex 9bef909..b52eb57 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on.9.png b/core/res/res/drawable-hdpi/btn_toggle_on.9.png Binary files differindex dba2fa5..23021b0 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png Binary files differindex bae60a7..ea082b0 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png Binary files differindex bae60a7..ea082b0 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png Binary files differindex a9653b0..3dcafcb 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png Binary files differindex a9653b0..3dcafcb 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png Binary files differindex 394cb5e..dc55512 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png Binary files differindex 394cb5e..dc55512 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png Binary files differindex aa23c6e..9566a6d 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png Binary files differindex 028b3b8..6b02933 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png Binary files differindex 469ba9b..b363d63 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png Binary files differindex 40a61ca..d034e1e 100644 --- a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_down_disabled.9.png b/core/res/res/drawable-hdpi/btn_zoom_down_disabled.9.png Binary files differindex 6441f4d..0bde901 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_down_disabled.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_down_disabled.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_down_disabled_focused.9.png b/core/res/res/drawable-hdpi/btn_zoom_down_disabled_focused.9.png Binary files differindex cfb0613..cfad139 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_down_disabled_focused.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_down_disabled_focused.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_down_normal.9.png b/core/res/res/drawable-hdpi/btn_zoom_down_normal.9.png Binary files differindex b30f834..5cd19e2 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_down_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_down_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_down_pressed.9.png b/core/res/res/drawable-hdpi/btn_zoom_down_pressed.9.png Binary files differindex 4ff9910..e2a4f92 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_down_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_down_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_down_selected.9.png b/core/res/res/drawable-hdpi/btn_zoom_down_selected.9.png Binary files differindex 5542695..ac8b944 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_down_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_down_selected.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_page_normal.png b/core/res/res/drawable-hdpi/btn_zoom_page_normal.png Binary files differindex 15d60a0..90912ae 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_page_normal.png +++ b/core/res/res/drawable-hdpi/btn_zoom_page_normal.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_page_press.png b/core/res/res/drawable-hdpi/btn_zoom_page_press.png Binary files differindex 28f437e..26b46a5 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_page_press.png +++ b/core/res/res/drawable-hdpi/btn_zoom_page_press.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_up_disabled.9.png b/core/res/res/drawable-hdpi/btn_zoom_up_disabled.9.png Binary files differindex 6a55903..692f714 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_up_disabled.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_up_disabled.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_up_disabled_focused.9.png b/core/res/res/drawable-hdpi/btn_zoom_up_disabled_focused.9.png Binary files differindex 7adbae1..bf9db0f 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_up_disabled_focused.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_up_disabled_focused.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_up_normal.9.png b/core/res/res/drawable-hdpi/btn_zoom_up_normal.9.png Binary files differindex 4631a32..2fd1f66 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_up_normal.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_up_normal.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_up_pressed.9.png b/core/res/res/drawable-hdpi/btn_zoom_up_pressed.9.png Binary files differindex df75fec..a4f1dac 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_up_pressed.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_up_pressed.9.png diff --git a/core/res/res/drawable-hdpi/btn_zoom_up_selected.9.png b/core/res/res/drawable-hdpi/btn_zoom_up_selected.9.png Binary files differindex bae522c..538ea6c 100644 --- a/core/res/res/drawable-hdpi/btn_zoom_up_selected.9.png +++ b/core/res/res/drawable-hdpi/btn_zoom_up_selected.9.png diff --git a/core/res/res/drawable-hdpi/button_onoff_indicator_off.png b/core/res/res/drawable-hdpi/button_onoff_indicator_off.png Binary files differindex 9af36e9..8263902 100644 --- a/core/res/res/drawable-hdpi/button_onoff_indicator_off.png +++ b/core/res/res/drawable-hdpi/button_onoff_indicator_off.png diff --git a/core/res/res/drawable-hdpi/button_onoff_indicator_on.png b/core/res/res/drawable-hdpi/button_onoff_indicator_on.png Binary files differindex bde297e..1ec755e 100644 --- a/core/res/res/drawable-hdpi/button_onoff_indicator_on.png +++ b/core/res/res/drawable-hdpi/button_onoff_indicator_on.png diff --git a/core/res/res/drawable-hdpi/cab_background_bottom_holo_dark.9.png b/core/res/res/drawable-hdpi/cab_background_bottom_holo_dark.9.png Binary files differindex 1d836f6..08ae593 100644 --- a/core/res/res/drawable-hdpi/cab_background_bottom_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/cab_background_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/cab_background_bottom_holo_light.9.png b/core/res/res/drawable-hdpi/cab_background_bottom_holo_light.9.png Binary files differindex 5818666..5c8c80c 100644 --- a/core/res/res/drawable-hdpi/cab_background_bottom_holo_light.9.png +++ b/core/res/res/drawable-hdpi/cab_background_bottom_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/cab_background_bottom_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/cab_background_bottom_mtrl_alpha.9.png Binary files differindex 92613b7..10e242c 100644 --- a/core/res/res/drawable-hdpi/cab_background_bottom_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/cab_background_bottom_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/cab_background_top_holo_dark.9.png b/core/res/res/drawable-hdpi/cab_background_top_holo_dark.9.png Binary files differindex 564fb34..edc6b17 100644 --- a/core/res/res/drawable-hdpi/cab_background_top_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/cab_background_top_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/cab_background_top_holo_light.9.png b/core/res/res/drawable-hdpi/cab_background_top_holo_light.9.png Binary files differindex ae21b76..604a2a2 100644 --- a/core/res/res/drawable-hdpi/cab_background_top_holo_light.9.png +++ b/core/res/res/drawable-hdpi/cab_background_top_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/cab_background_top_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/cab_background_top_mtrl_alpha.9.png Binary files differindex e51ef28..3729578 100644 --- a/core/res/res/drawable-hdpi/cab_background_top_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/cab_background_top_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/call_contact.png b/core/res/res/drawable-hdpi/call_contact.png Binary files differindex 57fea24..b30573c 100644 --- a/core/res/res/drawable-hdpi/call_contact.png +++ b/core/res/res/drawable-hdpi/call_contact.png diff --git a/core/res/res/drawable-hdpi/checkbox_off_background.png b/core/res/res/drawable-hdpi/checkbox_off_background.png Binary files differindex a8e4785..af60f0b 100644 --- a/core/res/res/drawable-hdpi/checkbox_off_background.png +++ b/core/res/res/drawable-hdpi/checkbox_off_background.png diff --git a/core/res/res/drawable-hdpi/checkbox_on_background.png b/core/res/res/drawable-hdpi/checkbox_on_background.png Binary files differindex 800d3d5..491bd56 100644 --- a/core/res/res/drawable-hdpi/checkbox_on_background.png +++ b/core/res/res/drawable-hdpi/checkbox_on_background.png diff --git a/core/res/res/drawable-hdpi/cling_arrow_up.png b/core/res/res/drawable-hdpi/cling_arrow_up.png Binary files differindex 8ef2050..4ceacfb 100644 --- a/core/res/res/drawable-hdpi/cling_arrow_up.png +++ b/core/res/res/drawable-hdpi/cling_arrow_up.png diff --git a/core/res/res/drawable-hdpi/cling_bg.9.png b/core/res/res/drawable-hdpi/cling_bg.9.png Binary files differindex 36fbfc8..75ea347 100644 --- a/core/res/res/drawable-hdpi/cling_bg.9.png +++ b/core/res/res/drawable-hdpi/cling_bg.9.png diff --git a/core/res/res/drawable-hdpi/cling_button_normal.9.png b/core/res/res/drawable-hdpi/cling_button_normal.9.png Binary files differindex e308382..b503251 100644 --- a/core/res/res/drawable-hdpi/cling_button_normal.9.png +++ b/core/res/res/drawable-hdpi/cling_button_normal.9.png diff --git a/core/res/res/drawable-hdpi/cling_button_pressed.9.png b/core/res/res/drawable-hdpi/cling_button_pressed.9.png Binary files differindex 4f9ca6f..df4c7ce 100644 --- a/core/res/res/drawable-hdpi/cling_button_pressed.9.png +++ b/core/res/res/drawable-hdpi/cling_button_pressed.9.png diff --git a/core/res/res/drawable-hdpi/clock_dial.png b/core/res/res/drawable-hdpi/clock_dial.png Binary files differindex 9de29bc..f54e713 100644 --- a/core/res/res/drawable-hdpi/clock_dial.png +++ b/core/res/res/drawable-hdpi/clock_dial.png diff --git a/core/res/res/drawable-hdpi/clock_hand_hour.png b/core/res/res/drawable-hdpi/clock_hand_hour.png Binary files differindex 9f7e5c0..8f0eb7a 100644 --- a/core/res/res/drawable-hdpi/clock_hand_hour.png +++ b/core/res/res/drawable-hdpi/clock_hand_hour.png diff --git a/core/res/res/drawable-hdpi/clock_hand_minute.png b/core/res/res/drawable-hdpi/clock_hand_minute.png Binary files differindex 2eec380..9734db4 100644 --- a/core/res/res/drawable-hdpi/clock_hand_minute.png +++ b/core/res/res/drawable-hdpi/clock_hand_minute.png diff --git a/core/res/res/drawable-hdpi/code_lock_bottom.9.png b/core/res/res/drawable-hdpi/code_lock_bottom.9.png Binary files differindex e72d0f7..9e149d7 100644 --- a/core/res/res/drawable-hdpi/code_lock_bottom.9.png +++ b/core/res/res/drawable-hdpi/code_lock_bottom.9.png diff --git a/core/res/res/drawable-hdpi/code_lock_left.9.png b/core/res/res/drawable-hdpi/code_lock_left.9.png Binary files differindex 76ff1f5..3d8cdde 100644 --- a/core/res/res/drawable-hdpi/code_lock_left.9.png +++ b/core/res/res/drawable-hdpi/code_lock_left.9.png diff --git a/core/res/res/drawable-hdpi/code_lock_top.9.png b/core/res/res/drawable-hdpi/code_lock_top.9.png Binary files differindex 20af255..5285944 100644 --- a/core/res/res/drawable-hdpi/code_lock_top.9.png +++ b/core/res/res/drawable-hdpi/code_lock_top.9.png diff --git a/core/res/res/drawable-hdpi/combobox_disabled.png b/core/res/res/drawable-hdpi/combobox_disabled.png Binary files differindex 85fbc3c..6571f01 100644 --- a/core/res/res/drawable-hdpi/combobox_disabled.png +++ b/core/res/res/drawable-hdpi/combobox_disabled.png diff --git a/core/res/res/drawable-hdpi/combobox_nohighlight.png b/core/res/res/drawable-hdpi/combobox_nohighlight.png Binary files differindex 2de2abb..040461e 100644 --- a/core/res/res/drawable-hdpi/combobox_nohighlight.png +++ b/core/res/res/drawable-hdpi/combobox_nohighlight.png diff --git a/core/res/res/drawable-hdpi/compass_arrow.png b/core/res/res/drawable-hdpi/compass_arrow.png Binary files differindex 6dbd900..ff3fd26 100644 --- a/core/res/res/drawable-hdpi/compass_arrow.png +++ b/core/res/res/drawable-hdpi/compass_arrow.png diff --git a/core/res/res/drawable-hdpi/compass_base.png b/core/res/res/drawable-hdpi/compass_base.png Binary files differindex 298fc09..020cd51 100644 --- a/core/res/res/drawable-hdpi/compass_base.png +++ b/core/res/res/drawable-hdpi/compass_base.png diff --git a/core/res/res/drawable-hdpi/contact_header_bg.9.png b/core/res/res/drawable-hdpi/contact_header_bg.9.png Binary files differindex 981b2e9..1fd65a6 100644 --- a/core/res/res/drawable-hdpi/contact_header_bg.9.png +++ b/core/res/res/drawable-hdpi/contact_header_bg.9.png diff --git a/core/res/res/drawable-hdpi/create_contact.png b/core/res/res/drawable-hdpi/create_contact.png Binary files differindex 7a29b65..af4ca03 100644 --- a/core/res/res/drawable-hdpi/create_contact.png +++ b/core/res/res/drawable-hdpi/create_contact.png diff --git a/core/res/res/drawable-hdpi/dark_header.9.png b/core/res/res/drawable-hdpi/dark_header.9.png Binary files differindex 8cd231b..7d33159 100644 --- a/core/res/res/drawable-hdpi/dark_header.9.png +++ b/core/res/res/drawable-hdpi/dark_header.9.png diff --git a/core/res/res/drawable-hdpi/day_picker_week_view_dayline_holo.9.png b/core/res/res/drawable-hdpi/day_picker_week_view_dayline_holo.9.png Binary files differindex 1deaad7..163feac 100644 --- a/core/res/res/drawable-hdpi/day_picker_week_view_dayline_holo.9.png +++ b/core/res/res/drawable-hdpi/day_picker_week_view_dayline_holo.9.png diff --git a/core/res/res/drawable-hdpi/dialog_background_mtrl_mult.9.png b/core/res/res/drawable-hdpi/dialog_background_mtrl_mult.9.png Binary files differindex 0c3c3b4..24a4a87 100644 --- a/core/res/res/drawable-hdpi/dialog_background_mtrl_mult.9.png +++ b/core/res/res/drawable-hdpi/dialog_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-hdpi/dialog_bottom_holo_dark.9.png b/core/res/res/drawable-hdpi/dialog_bottom_holo_dark.9.png Binary files differindex b23740c..d933aa6 100644 --- a/core/res/res/drawable-hdpi/dialog_bottom_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dialog_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dialog_bottom_holo_light.9.png b/core/res/res/drawable-hdpi/dialog_bottom_holo_light.9.png Binary files differindex 44803d7..68d3f20 100644 --- a/core/res/res/drawable-hdpi/dialog_bottom_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_bottom_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_dark.9.png Binary files differindex 77b0999..dc7485a 100644 --- a/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_light.9.png b/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_light.9.png Binary files differindex 3fde76e..4eac5f8 100644 --- a/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dialog_divider_horizontal_light.9.png b/core/res/res/drawable-hdpi/dialog_divider_horizontal_light.9.png Binary files differindex 441ef32..3d8d23e 100644 --- a/core/res/res/drawable-hdpi/dialog_divider_horizontal_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_divider_horizontal_light.9.png diff --git a/core/res/res/drawable-hdpi/dialog_full_holo_dark.9.png b/core/res/res/drawable-hdpi/dialog_full_holo_dark.9.png Binary files differindex 911f3fe..29fc62a 100644 --- a/core/res/res/drawable-hdpi/dialog_full_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dialog_full_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dialog_full_holo_light.9.png b/core/res/res/drawable-hdpi/dialog_full_holo_light.9.png Binary files differindex 2129567..f02e1ce 100644 --- a/core/res/res/drawable-hdpi/dialog_full_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_full_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_dark.png b/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_dark.png Binary files differindex 0b67f24..0fcb619 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_light.png b/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_light.png Binary files differindex 107ffe4..ef2b034 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_dark.png b/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_dark.png Binary files differindex 2711284..3b133c5 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_light.png b/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_light.png Binary files differindex 1aca4b7..18573ec 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_dark.png b/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_dark.png Binary files differindex 9e06c00..073ed69 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_light.png b/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_light.png Binary files differindex f032510..1d567d5 100644 --- a/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/dialog_ic_close_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/dialog_middle_holo.9.png b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png Binary files differindex dc5e79d..dda1d8c 100644 --- a/core/res/res/drawable-hdpi/dialog_middle_holo.9.png +++ b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png diff --git a/core/res/res/drawable-hdpi/dialog_middle_holo_dark.9.png b/core/res/res/drawable-hdpi/dialog_middle_holo_dark.9.png Binary files differindex 9ce7cfc..3e2f85f 100644 --- a/core/res/res/drawable-hdpi/dialog_middle_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dialog_middle_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dialog_middle_holo_light.9.png b/core/res/res/drawable-hdpi/dialog_middle_holo_light.9.png Binary files differindex 396a0f2..10a84f9 100644 --- a/core/res/res/drawable-hdpi/dialog_middle_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_middle_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dialog_top_holo_dark.9.png b/core/res/res/drawable-hdpi/dialog_top_holo_dark.9.png Binary files differindex 22ca61f..c3582bc 100644 --- a/core/res/res/drawable-hdpi/dialog_top_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dialog_top_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dialog_top_holo_light.9.png b/core/res/res/drawable-hdpi/dialog_top_holo_light.9.png Binary files differindex 9b54cd5..e70fb2e 100644 --- a/core/res/res/drawable-hdpi/dialog_top_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dialog_top_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_bright.9.png b/core/res/res/drawable-hdpi/divider_horizontal_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_bright.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_bright.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_bright_opaque.9.png b/core/res/res/drawable-hdpi/divider_horizontal_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_bright_opaque.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_bright_opaque.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_dark.9.png b/core/res/res/drawable-hdpi/divider_horizontal_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_dark.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_dark.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png b/core/res/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_dim_dark.9.png b/core/res/res/drawable-hdpi/divider_horizontal_dim_dark.9.png Binary files differindex cf34613..60b021e 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_dim_dark.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_dim_dark.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png b/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png Binary files differindex 3dfe6c2..2f1f898 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png b/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png Binary files differindex ea38ebb..9414013 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/divider_horizontal_textfield.9.png b/core/res/res/drawable-hdpi/divider_horizontal_textfield.9.png Binary files differindex 23b0b51..d8ec0ce 100644 --- a/core/res/res/drawable-hdpi/divider_horizontal_textfield.9.png +++ b/core/res/res/drawable-hdpi/divider_horizontal_textfield.9.png diff --git a/core/res/res/drawable-hdpi/divider_strong_holo.9.png b/core/res/res/drawable-hdpi/divider_strong_holo.9.png Binary files differindex 0758593..68d25b6 100644 --- a/core/res/res/drawable-hdpi/divider_strong_holo.9.png +++ b/core/res/res/drawable-hdpi/divider_strong_holo.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_bright.9.png b/core/res/res/drawable-hdpi/divider_vertical_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_bright.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_bright.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_bright_opaque.9.png b/core/res/res/drawable-hdpi/divider_vertical_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_bright_opaque.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_bright_opaque.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_dark.9.png b/core/res/res/drawable-hdpi/divider_vertical_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_dark.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_dark.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_dark_opaque.9.png b/core/res/res/drawable-hdpi/divider_vertical_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_dark_opaque.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_dark_opaque.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png b/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png Binary files differindex c039428..5939b8f 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png b/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png Binary files differindex 7c4a29f..04885b2 100644 --- a/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png +++ b/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_dark.9.png Binary files differindex 519f522..bdf6172 100644 --- a/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_light.9.png Binary files differindex 9c181d0..430e230 100644 --- a/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dropdown_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/dropdown_disabled_holo_dark.9.png Binary files differindex 6ca975f..a02bb12 100644 --- a/core/res/res/drawable-hdpi/dropdown_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dropdown_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/dropdown_disabled_holo_light.9.png Binary files differindex 7a20af7..2d8b324 100644 --- a/core/res/res/drawable-hdpi/dropdown_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dropdown_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/dropdown_focused_holo_dark.9.png Binary files differindex a3dfb98..99006be 100644 --- a/core/res/res/drawable-hdpi/dropdown_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dropdown_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_focused_holo_light.9.png b/core/res/res/drawable-hdpi/dropdown_focused_holo_light.9.png Binary files differindex 766543c..1510f7a 100644 --- a/core/res/res/drawable-hdpi/dropdown_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dropdown_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png Binary files differindex 53f0257..ea493ee 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_light.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_light.png Binary files differindex 0daee9b..0b1cc57 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_dark.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_dark.png Binary files differindex b659926..d1de5ac 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_light.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_light.png Binary files differindex e22dbfd..57bac8a 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_dark.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_dark.png Binary files differindex 0f65227..1fd781db 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_light.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_light.png Binary files differindex 9c47d7e..a5dda42 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_dark.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_dark.png Binary files differindex 06e5b47..3fe84c9 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_light.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_light.png Binary files differindex d362ec1..8f4623c 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_dark.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_dark.png Binary files differindex d010995..d561233 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_dark.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_dark.png diff --git a/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_light.png b/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_light.png Binary files differindex b95f94b..6d0cd0e 100644 --- a/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_light.png +++ b/core/res/res/drawable-hdpi/dropdown_ic_arrow_pressed_holo_light.png diff --git a/core/res/res/drawable-hdpi/dropdown_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/dropdown_normal_holo_dark.9.png Binary files differindex a4ac317..598082b 100644 --- a/core/res/res/drawable-hdpi/dropdown_normal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dropdown_normal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_normal_holo_light.9.png b/core/res/res/drawable-hdpi/dropdown_normal_holo_light.9.png Binary files differindex b4ab9ad..35b9252 100644 --- a/core/res/res/drawable-hdpi/dropdown_normal_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dropdown_normal_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/dropdown_pressed_holo_dark.9.png Binary files differindex f6382c8..c919530 100644 --- a/core/res/res/drawable-hdpi/dropdown_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/dropdown_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/dropdown_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/dropdown_pressed_holo_light.9.png Binary files differindex c849e2f..4fa94d1 100644 --- a/core/res/res/drawable-hdpi/dropdown_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/dropdown_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/edit_query.png b/core/res/res/drawable-hdpi/edit_query.png Binary files differindex d3e64b2..5c6c8b7 100644 --- a/core/res/res/drawable-hdpi/edit_query.png +++ b/core/res/res/drawable-hdpi/edit_query.png diff --git a/core/res/res/drawable-hdpi/edit_query_background_normal.9.png b/core/res/res/drawable-hdpi/edit_query_background_normal.9.png Binary files differindex c083129..8b24f38 100644 --- a/core/res/res/drawable-hdpi/edit_query_background_normal.9.png +++ b/core/res/res/drawable-hdpi/edit_query_background_normal.9.png diff --git a/core/res/res/drawable-hdpi/edit_query_background_pressed.9.png b/core/res/res/drawable-hdpi/edit_query_background_pressed.9.png Binary files differindex 41f3970..fb2f6be 100644 --- a/core/res/res/drawable-hdpi/edit_query_background_pressed.9.png +++ b/core/res/res/drawable-hdpi/edit_query_background_pressed.9.png diff --git a/core/res/res/drawable-hdpi/edit_query_background_selected.9.png b/core/res/res/drawable-hdpi/edit_query_background_selected.9.png Binary files differindex 04a8d12..1ce2981 100644 --- a/core/res/res/drawable-hdpi/edit_query_background_selected.9.png +++ b/core/res/res/drawable-hdpi/edit_query_background_selected.9.png diff --git a/core/res/res/drawable-hdpi/editbox_background_focus_yellow.9.png b/core/res/res/drawable-hdpi/editbox_background_focus_yellow.9.png Binary files differindex 70cd52b..a10577d 100644 --- a/core/res/res/drawable-hdpi/editbox_background_focus_yellow.9.png +++ b/core/res/res/drawable-hdpi/editbox_background_focus_yellow.9.png diff --git a/core/res/res/drawable-hdpi/editbox_background_normal.9.png b/core/res/res/drawable-hdpi/editbox_background_normal.9.png Binary files differindex ce12b3b..cf99591 100644 --- a/core/res/res/drawable-hdpi/editbox_background_normal.9.png +++ b/core/res/res/drawable-hdpi/editbox_background_normal.9.png diff --git a/core/res/res/drawable-hdpi/editbox_dropdown_background.9.png b/core/res/res/drawable-hdpi/editbox_dropdown_background.9.png Binary files differindex e7967d5..f9e35f5 100644 --- a/core/res/res/drawable-hdpi/editbox_dropdown_background.9.png +++ b/core/res/res/drawable-hdpi/editbox_dropdown_background.9.png diff --git a/core/res/res/drawable-hdpi/editbox_dropdown_background_dark.9.png b/core/res/res/drawable-hdpi/editbox_dropdown_background_dark.9.png Binary files differindex 4cce373..e8fffd0 100644 --- a/core/res/res/drawable-hdpi/editbox_dropdown_background_dark.9.png +++ b/core/res/res/drawable-hdpi/editbox_dropdown_background_dark.9.png diff --git a/core/res/res/drawable-hdpi/emo_im_angel.png b/core/res/res/drawable-hdpi/emo_im_angel.png Binary files differindex 2cbb7da..7eff9fc 100644 --- a/core/res/res/drawable-hdpi/emo_im_angel.png +++ b/core/res/res/drawable-hdpi/emo_im_angel.png diff --git a/core/res/res/drawable-hdpi/emo_im_cool.png b/core/res/res/drawable-hdpi/emo_im_cool.png Binary files differindex 3813bc6..0e113ee 100644 --- a/core/res/res/drawable-hdpi/emo_im_cool.png +++ b/core/res/res/drawable-hdpi/emo_im_cool.png diff --git a/core/res/res/drawable-hdpi/emo_im_crying.png b/core/res/res/drawable-hdpi/emo_im_crying.png Binary files differindex 3982d70..e1a81f2 100644 --- a/core/res/res/drawable-hdpi/emo_im_crying.png +++ b/core/res/res/drawable-hdpi/emo_im_crying.png diff --git a/core/res/res/drawable-hdpi/emo_im_embarrassed.png b/core/res/res/drawable-hdpi/emo_im_embarrassed.png Binary files differindex 982f0ae..97922a5 100644 --- a/core/res/res/drawable-hdpi/emo_im_embarrassed.png +++ b/core/res/res/drawable-hdpi/emo_im_embarrassed.png diff --git a/core/res/res/drawable-hdpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-hdpi/emo_im_foot_in_mouth.png Binary files differindex d40fb90..9545901 100644 --- a/core/res/res/drawable-hdpi/emo_im_foot_in_mouth.png +++ b/core/res/res/drawable-hdpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-hdpi/emo_im_happy.png b/core/res/res/drawable-hdpi/emo_im_happy.png Binary files differindex f1e4723..28a40ae 100644 --- a/core/res/res/drawable-hdpi/emo_im_happy.png +++ b/core/res/res/drawable-hdpi/emo_im_happy.png diff --git a/core/res/res/drawable-hdpi/emo_im_kissing.png b/core/res/res/drawable-hdpi/emo_im_kissing.png Binary files differindex 21e5d30..66d5dec 100644 --- a/core/res/res/drawable-hdpi/emo_im_kissing.png +++ b/core/res/res/drawable-hdpi/emo_im_kissing.png diff --git a/core/res/res/drawable-hdpi/emo_im_laughing.png b/core/res/res/drawable-hdpi/emo_im_laughing.png Binary files differindex 03aa60a..e864b2c 100644 --- a/core/res/res/drawable-hdpi/emo_im_laughing.png +++ b/core/res/res/drawable-hdpi/emo_im_laughing.png diff --git a/core/res/res/drawable-hdpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-hdpi/emo_im_lips_are_sealed.png Binary files differindex 14edaeb..69f9d4f 100644 --- a/core/res/res/drawable-hdpi/emo_im_lips_are_sealed.png +++ b/core/res/res/drawable-hdpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-hdpi/emo_im_money_mouth.png b/core/res/res/drawable-hdpi/emo_im_money_mouth.png Binary files differindex 957bc90..56c0eb8 100644 --- a/core/res/res/drawable-hdpi/emo_im_money_mouth.png +++ b/core/res/res/drawable-hdpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-hdpi/emo_im_sad.png b/core/res/res/drawable-hdpi/emo_im_sad.png Binary files differindex bcfe71b..fe571b1 100644 --- a/core/res/res/drawable-hdpi/emo_im_sad.png +++ b/core/res/res/drawable-hdpi/emo_im_sad.png diff --git a/core/res/res/drawable-hdpi/emo_im_surprised.png b/core/res/res/drawable-hdpi/emo_im_surprised.png Binary files differindex 961a9bb..b530e4a 100644 --- a/core/res/res/drawable-hdpi/emo_im_surprised.png +++ b/core/res/res/drawable-hdpi/emo_im_surprised.png diff --git a/core/res/res/drawable-hdpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-hdpi/emo_im_tongue_sticking_out.png Binary files differindex 7a1235c..130358f 100644 --- a/core/res/res/drawable-hdpi/emo_im_tongue_sticking_out.png +++ b/core/res/res/drawable-hdpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-hdpi/emo_im_undecided.png b/core/res/res/drawable-hdpi/emo_im_undecided.png Binary files differindex 72bf2f2..b194053 100644 --- a/core/res/res/drawable-hdpi/emo_im_undecided.png +++ b/core/res/res/drawable-hdpi/emo_im_undecided.png diff --git a/core/res/res/drawable-hdpi/emo_im_winking.png b/core/res/res/drawable-hdpi/emo_im_winking.png Binary files differindex b8fd6d9..cec822c 100644 --- a/core/res/res/drawable-hdpi/emo_im_winking.png +++ b/core/res/res/drawable-hdpi/emo_im_winking.png diff --git a/core/res/res/drawable-hdpi/emo_im_wtf.png b/core/res/res/drawable-hdpi/emo_im_wtf.png Binary files differindex b221795..35d27f8 100644 --- a/core/res/res/drawable-hdpi/emo_im_wtf.png +++ b/core/res/res/drawable-hdpi/emo_im_wtf.png diff --git a/core/res/res/drawable-hdpi/emo_im_yelling.png b/core/res/res/drawable-hdpi/emo_im_yelling.png Binary files differindex 59798cb..9f63c27 100644 --- a/core/res/res/drawable-hdpi/emo_im_yelling.png +++ b/core/res/res/drawable-hdpi/emo_im_yelling.png diff --git a/core/res/res/drawable-hdpi/expander_close_holo_dark.9.png b/core/res/res/drawable-hdpi/expander_close_holo_dark.9.png Binary files differindex 73ff79f..3b8dd36 100644 --- a/core/res/res/drawable-hdpi/expander_close_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/expander_close_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/expander_close_holo_light.9.png b/core/res/res/drawable-hdpi/expander_close_holo_light.9.png Binary files differindex 290c24d..d0dae19 100644 --- a/core/res/res/drawable-hdpi/expander_close_holo_light.9.png +++ b/core/res/res/drawable-hdpi/expander_close_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/expander_close_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/expander_close_mtrl_alpha.9.png Binary files differindex 7bf9d90..68ea25b 100644 --- a/core/res/res/drawable-hdpi/expander_close_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/expander_close_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/expander_ic_maximized.9.png b/core/res/res/drawable-hdpi/expander_ic_maximized.9.png Binary files differindex 2ec27af..9cac65a 100644 --- a/core/res/res/drawable-hdpi/expander_ic_maximized.9.png +++ b/core/res/res/drawable-hdpi/expander_ic_maximized.9.png diff --git a/core/res/res/drawable-hdpi/expander_ic_minimized.9.png b/core/res/res/drawable-hdpi/expander_ic_minimized.9.png Binary files differindex 0c19bb7..026d367 100644 --- a/core/res/res/drawable-hdpi/expander_ic_minimized.9.png +++ b/core/res/res/drawable-hdpi/expander_ic_minimized.9.png diff --git a/core/res/res/drawable-hdpi/expander_open_holo_dark.9.png b/core/res/res/drawable-hdpi/expander_open_holo_dark.9.png Binary files differindex 754032e..a54a8be 100644 --- a/core/res/res/drawable-hdpi/expander_open_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/expander_open_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/expander_open_holo_light.9.png b/core/res/res/drawable-hdpi/expander_open_holo_light.9.png Binary files differindex e32c7c7..f012ad0 100644 --- a/core/res/res/drawable-hdpi/expander_open_holo_light.9.png +++ b/core/res/res/drawable-hdpi/expander_open_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/expander_open_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/expander_open_mtrl_alpha.9.png Binary files differindex d427a20..37f5d7d 100644 --- a/core/res/res/drawable-hdpi/expander_open_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/expander_open_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_label_left_holo_dark.9.png b/core/res/res/drawable-hdpi/fastscroll_label_left_holo_dark.9.png Binary files differindex 769cb12..7d8bb44 100644 --- a/core/res/res/drawable-hdpi/fastscroll_label_left_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_label_left_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_label_left_holo_light.9.png b/core/res/res/drawable-hdpi/fastscroll_label_left_holo_light.9.png Binary files differindex c5372a8..5e7bdf3 100644 --- a/core/res/res/drawable-hdpi/fastscroll_label_left_holo_light.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_label_left_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_label_right_holo_dark.9.png b/core/res/res/drawable-hdpi/fastscroll_label_right_holo_dark.9.png Binary files differindex 1dee51b..1f5ac9a 100644 --- a/core/res/res/drawable-hdpi/fastscroll_label_right_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_label_right_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_label_right_holo_light.9.png b/core/res/res/drawable-hdpi/fastscroll_label_right_holo_light.9.png Binary files differindex 3c1e25a..7b1744c 100644 --- a/core/res/res/drawable-hdpi/fastscroll_label_right_holo_light.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_label_right_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_thumb_default_holo.png b/core/res/res/drawable-hdpi/fastscroll_thumb_default_holo.png Binary files differindex 2b7c917..661a945 100644 --- a/core/res/res/drawable-hdpi/fastscroll_thumb_default_holo.png +++ b/core/res/res/drawable-hdpi/fastscroll_thumb_default_holo.png diff --git a/core/res/res/drawable-hdpi/fastscroll_thumb_pressed_holo.png b/core/res/res/drawable-hdpi/fastscroll_thumb_pressed_holo.png Binary files differindex 1227e9e..110acaf 100644 --- a/core/res/res/drawable-hdpi/fastscroll_thumb_pressed_holo.png +++ b/core/res/res/drawable-hdpi/fastscroll_thumb_pressed_holo.png diff --git a/core/res/res/drawable-hdpi/fastscroll_track_default_holo_dark.9.png b/core/res/res/drawable-hdpi/fastscroll_track_default_holo_dark.9.png Binary files differindex 707414d..286df4f 100644 --- a/core/res/res/drawable-hdpi/fastscroll_track_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_track_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_track_default_holo_light.9.png b/core/res/res/drawable-hdpi/fastscroll_track_default_holo_light.9.png Binary files differindex 707414d..286df4f 100644 --- a/core/res/res/drawable-hdpi/fastscroll_track_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_track_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_dark.9.png Binary files differindex 4d810dd..f455c4d 100644 --- a/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_light.9.png Binary files differindex 64fa147..7bcea4b 100644 --- a/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/fastscroll_track_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/focused_application_background_static.png b/core/res/res/drawable-hdpi/focused_application_background_static.png Binary files differindex 6872f26..ac9cedb 100644 --- a/core/res/res/drawable-hdpi/focused_application_background_static.png +++ b/core/res/res/drawable-hdpi/focused_application_background_static.png diff --git a/core/res/res/drawable-hdpi/frame_gallery_thumb.9.png b/core/res/res/drawable-hdpi/frame_gallery_thumb.9.png Binary files differindex 8edbd3f..516cd6e 100644 --- a/core/res/res/drawable-hdpi/frame_gallery_thumb.9.png +++ b/core/res/res/drawable-hdpi/frame_gallery_thumb.9.png diff --git a/core/res/res/drawable-hdpi/frame_gallery_thumb_pressed.9.png b/core/res/res/drawable-hdpi/frame_gallery_thumb_pressed.9.png Binary files differindex 986e6d5..33e5d3f 100644 --- a/core/res/res/drawable-hdpi/frame_gallery_thumb_pressed.9.png +++ b/core/res/res/drawable-hdpi/frame_gallery_thumb_pressed.9.png diff --git a/core/res/res/drawable-hdpi/frame_gallery_thumb_selected.9.png b/core/res/res/drawable-hdpi/frame_gallery_thumb_selected.9.png Binary files differindex 95f3ab5..ac4969d 100644 --- a/core/res/res/drawable-hdpi/frame_gallery_thumb_selected.9.png +++ b/core/res/res/drawable-hdpi/frame_gallery_thumb_selected.9.png diff --git a/core/res/res/drawable-hdpi/gallery_selected_default.9.png b/core/res/res/drawable-hdpi/gallery_selected_default.9.png Binary files differindex 99403aa..96a2f80 100644 --- a/core/res/res/drawable-hdpi/gallery_selected_default.9.png +++ b/core/res/res/drawable-hdpi/gallery_selected_default.9.png diff --git a/core/res/res/drawable-hdpi/gallery_selected_focused.9.png b/core/res/res/drawable-hdpi/gallery_selected_focused.9.png Binary files differindex 3aa2e17..de3f892 100644 --- a/core/res/res/drawable-hdpi/gallery_selected_focused.9.png +++ b/core/res/res/drawable-hdpi/gallery_selected_focused.9.png diff --git a/core/res/res/drawable-hdpi/gallery_selected_pressed.9.png b/core/res/res/drawable-hdpi/gallery_selected_pressed.9.png Binary files differindex 8f1e752..a603127 100644 --- a/core/res/res/drawable-hdpi/gallery_selected_pressed.9.png +++ b/core/res/res/drawable-hdpi/gallery_selected_pressed.9.png diff --git a/core/res/res/drawable-hdpi/gallery_unselected_default.9.png b/core/res/res/drawable-hdpi/gallery_unselected_default.9.png Binary files differindex 3d10b86..d9b7cbc 100644 --- a/core/res/res/drawable-hdpi/gallery_unselected_default.9.png +++ b/core/res/res/drawable-hdpi/gallery_unselected_default.9.png diff --git a/core/res/res/drawable-hdpi/gallery_unselected_pressed.9.png b/core/res/res/drawable-hdpi/gallery_unselected_pressed.9.png Binary files differindex 2fa7c46..f44006e 100644 --- a/core/res/res/drawable-hdpi/gallery_unselected_pressed.9.png +++ b/core/res/res/drawable-hdpi/gallery_unselected_pressed.9.png diff --git a/core/res/res/drawable-hdpi/grid_selector_background_focus.9.png b/core/res/res/drawable-hdpi/grid_selector_background_focus.9.png Binary files differindex be2aeed..998ae95 100644 --- a/core/res/res/drawable-hdpi/grid_selector_background_focus.9.png +++ b/core/res/res/drawable-hdpi/grid_selector_background_focus.9.png diff --git a/core/res/res/drawable-hdpi/grid_selector_background_pressed.9.png b/core/res/res/drawable-hdpi/grid_selector_background_pressed.9.png Binary files differindex 27e455a..b3c46ce 100644 --- a/core/res/res/drawable-hdpi/grid_selector_background_pressed.9.png +++ b/core/res/res/drawable-hdpi/grid_selector_background_pressed.9.png diff --git a/core/res/res/drawable-hdpi/highlight_disabled.9.png b/core/res/res/drawable-hdpi/highlight_disabled.9.png Binary files differindex 46f755d..1617fba 100644 --- a/core/res/res/drawable-hdpi/highlight_disabled.9.png +++ b/core/res/res/drawable-hdpi/highlight_disabled.9.png diff --git a/core/res/res/drawable-hdpi/highlight_pressed.9.png b/core/res/res/drawable-hdpi/highlight_pressed.9.png Binary files differindex 91d7db1..a25454d 100644 --- a/core/res/res/drawable-hdpi/highlight_pressed.9.png +++ b/core/res/res/drawable-hdpi/highlight_pressed.9.png diff --git a/core/res/res/drawable-hdpi/highlight_selected.9.png b/core/res/res/drawable-hdpi/highlight_selected.9.png Binary files differindex 6e92dd5..b584ecc 100644 --- a/core/res/res/drawable-hdpi/highlight_selected.9.png +++ b/core/res/res/drawable-hdpi/highlight_selected.9.png diff --git a/core/res/res/drawable-hdpi/ic_ab_back_holo_dark_am.png b/core/res/res/drawable-hdpi/ic_ab_back_holo_dark_am.png Binary files differindex 897a1c1..9327c33 100644 --- a/core/res/res/drawable-hdpi/ic_ab_back_holo_dark_am.png +++ b/core/res/res/drawable-hdpi/ic_ab_back_holo_dark_am.png diff --git a/core/res/res/drawable-hdpi/ic_ab_back_holo_light_am.png b/core/res/res/drawable-hdpi/ic_ab_back_holo_light_am.png Binary files differindex 0c89f71..bd824a0 100644 --- a/core/res/res/drawable-hdpi/ic_ab_back_holo_light_am.png +++ b/core/res/res/drawable-hdpi/ic_ab_back_holo_light_am.png diff --git a/core/res/res/drawable-hdpi/ic_action_assist_focused.png b/core/res/res/drawable-hdpi/ic_action_assist_focused.png Binary files differindex d98557d..6003f5c 100644 --- a/core/res/res/drawable-hdpi/ic_action_assist_focused.png +++ b/core/res/res/drawable-hdpi/ic_action_assist_focused.png diff --git a/core/res/res/drawable-hdpi/ic_aggregated.png b/core/res/res/drawable-hdpi/ic_aggregated.png Binary files differindex b9cfc7e..e2208a7 100644 --- a/core/res/res/drawable-hdpi/ic_aggregated.png +++ b/core/res/res/drawable-hdpi/ic_aggregated.png diff --git a/core/res/res/drawable-hdpi/ic_audio_notification_am_alpha.png b/core/res/res/drawable-hdpi/ic_audio_notification_am_alpha.png Binary files differindex 00e8f8a..adfb913 100644 --- a/core/res/res/drawable-hdpi/ic_audio_notification_am_alpha.png +++ b/core/res/res/drawable-hdpi/ic_audio_notification_am_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_audio_notification_mute_am_alpha.png b/core/res/res/drawable-hdpi/ic_audio_notification_mute_am_alpha.png Binary files differindex 697cc92..f81edd0 100644 --- a/core/res/res/drawable-hdpi/ic_audio_notification_mute_am_alpha.png +++ b/core/res/res/drawable-hdpi/ic_audio_notification_mute_am_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_btn_round_more_disabled.png b/core/res/res/drawable-hdpi/ic_btn_round_more_disabled.png Binary files differindex 3f1176f..371b710 100644 --- a/core/res/res/drawable-hdpi/ic_btn_round_more_disabled.png +++ b/core/res/res/drawable-hdpi/ic_btn_round_more_disabled.png diff --git a/core/res/res/drawable-hdpi/ic_btn_round_more_normal.png b/core/res/res/drawable-hdpi/ic_btn_round_more_normal.png Binary files differindex 8abda4d..ae1f28b 100644 --- a/core/res/res/drawable-hdpi/ic_btn_round_more_normal.png +++ b/core/res/res/drawable-hdpi/ic_btn_round_more_normal.png diff --git a/core/res/res/drawable-hdpi/ic_btn_search_go.png b/core/res/res/drawable-hdpi/ic_btn_search_go.png Binary files differindex 65f8079..b2d71bc 100644 --- a/core/res/res/drawable-hdpi/ic_btn_search_go.png +++ b/core/res/res/drawable-hdpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-hdpi/ic_btn_speak_now.png b/core/res/res/drawable-hdpi/ic_btn_speak_now.png Binary files differindex c9281d3..93e071a 100644 --- a/core/res/res/drawable-hdpi/ic_btn_speak_now.png +++ b/core/res/res/drawable-hdpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_disabled.png b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_disabled.png Binary files differindex 19fe4d4..566cb34 100644 --- a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_disabled.png +++ b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_disabled.png diff --git a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_normal.png b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_normal.png Binary files differindex c5a0594..e2d74cb 100644 --- a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_normal.png +++ b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_fit_page_normal.png diff --git a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_disabled.png b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_disabled.png Binary files differindex e5b22e8..d7bd0d1 100644 --- a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_disabled.png +++ b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_disabled.png diff --git a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_normal.png b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_normal.png Binary files differindex 0612d01..3f3cae3 100644 --- a/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_normal.png +++ b/core/res/res/drawable-hdpi/ic_btn_square_browser_zoom_page_overview_normal.png diff --git a/core/res/res/drawable-hdpi/ic_bullet_key_permission.png b/core/res/res/drawable-hdpi/ic_bullet_key_permission.png Binary files differindex 4cf50ad..b7d3262 100644 --- a/core/res/res/drawable-hdpi/ic_bullet_key_permission.png +++ b/core/res/res/drawable-hdpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-hdpi/ic_cab_done_holo.png b/core/res/res/drawable-hdpi/ic_cab_done_holo.png Binary files differindex 8c4fd2b..560f1ed 100644 --- a/core/res/res/drawable-hdpi/ic_cab_done_holo.png +++ b/core/res/res/drawable-hdpi/ic_cab_done_holo.png diff --git a/core/res/res/drawable-hdpi/ic_cab_done_holo_dark.png b/core/res/res/drawable-hdpi/ic_cab_done_holo_dark.png Binary files differindex d8662e3..49cca7c 100644 --- a/core/res/res/drawable-hdpi/ic_cab_done_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_cab_done_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_cab_done_holo_light.png b/core/res/res/drawable-hdpi/ic_cab_done_holo_light.png Binary files differindex ed03f62..b2995f9 100644 --- a/core/res/res/drawable-hdpi/ic_cab_done_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_cab_done_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_cab_done_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_cab_done_mtrl_alpha.png Binary files differindex 5635459..05cefe7 100644 --- a/core/res/res/drawable-hdpi/ic_cab_done_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_cab_done_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_checkmark_holo_light.png b/core/res/res/drawable-hdpi/ic_checkmark_holo_light.png Binary files differindex 2c6719b..f94617d 100644 --- a/core/res/res/drawable-hdpi/ic_checkmark_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_checkmark_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_clear_disabled.png b/core/res/res/drawable-hdpi/ic_clear_disabled.png Binary files differindex d97c342..7b665ef 100644 --- a/core/res/res/drawable-hdpi/ic_clear_disabled.png +++ b/core/res/res/drawable-hdpi/ic_clear_disabled.png diff --git a/core/res/res/drawable-hdpi/ic_clear_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_clear_mtrl_alpha.png Binary files differindex 3813563..0748952 100644 --- a/core/res/res/drawable-hdpi/ic_clear_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_clear_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_clear_normal.png b/core/res/res/drawable-hdpi/ic_clear_normal.png Binary files differindex 33ad8d4..04a8b06 100644 --- a/core/res/res/drawable-hdpi/ic_clear_normal.png +++ b/core/res/res/drawable-hdpi/ic_clear_normal.png diff --git a/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_dark.png b/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_dark.png Binary files differindex 62ec3df..c7fd8c5 100644 --- a/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_light.png b/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_light.png Binary files differindex 3edbd74..02cac09 100644 --- a/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_clear_search_api_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_clear_search_api_holo_dark.png b/core/res/res/drawable-hdpi/ic_clear_search_api_holo_dark.png Binary files differindex 9b4a1b6..d534b1d 100644 --- a/core/res/res/drawable-hdpi/ic_clear_search_api_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_clear_search_api_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_clear_search_api_holo_light.png b/core/res/res/drawable-hdpi/ic_clear_search_api_holo_light.png Binary files differindex 90db01b..03afba3 100644 --- a/core/res/res/drawable-hdpi/ic_clear_search_api_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_clear_search_api_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_coins_l.png b/core/res/res/drawable-hdpi/ic_coins_l.png Binary files differindex e1e3e2a..2c615e2 100644 --- a/core/res/res/drawable-hdpi/ic_coins_l.png +++ b/core/res/res/drawable-hdpi/ic_coins_l.png diff --git a/core/res/res/drawable-hdpi/ic_coins_s.png b/core/res/res/drawable-hdpi/ic_coins_s.png Binary files differindex 0ada1d0..0e5d202 100644 --- a/core/res/res/drawable-hdpi/ic_coins_s.png +++ b/core/res/res/drawable-hdpi/ic_coins_s.png diff --git a/core/res/res/drawable-hdpi/ic_commit_search_api_holo_dark.png b/core/res/res/drawable-hdpi/ic_commit_search_api_holo_dark.png Binary files differindex 83f36a9..2ceacb2 100644 --- a/core/res/res/drawable-hdpi/ic_commit_search_api_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_commit_search_api_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_commit_search_api_holo_light.png b/core/res/res/drawable-hdpi/ic_commit_search_api_holo_light.png Binary files differindex a3cc21e..7993c36 100644 --- a/core/res/res/drawable-hdpi/ic_commit_search_api_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_commit_search_api_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_commit_search_api_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_commit_search_api_mtrl_alpha.png Binary files differindex 47263ea..dad5792 100644 --- a/core/res/res/drawable-hdpi/ic_commit_search_api_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_commit_search_api_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_contact_picture.png b/core/res/res/drawable-hdpi/ic_contact_picture.png Binary files differindex 00d0ec4..d75011e 100644 --- a/core/res/res/drawable-hdpi/ic_contact_picture.png +++ b/core/res/res/drawable-hdpi/ic_contact_picture.png diff --git a/core/res/res/drawable-hdpi/ic_contact_picture_2.png b/core/res/res/drawable-hdpi/ic_contact_picture_2.png Binary files differindex 5e65276..ba66660 100644 --- a/core/res/res/drawable-hdpi/ic_contact_picture_2.png +++ b/core/res/res/drawable-hdpi/ic_contact_picture_2.png diff --git a/core/res/res/drawable-hdpi/ic_contact_picture_3.png b/core/res/res/drawable-hdpi/ic_contact_picture_3.png Binary files differindex a8ec1e1..6379df9 100644 --- a/core/res/res/drawable-hdpi/ic_contact_picture_3.png +++ b/core/res/res/drawable-hdpi/ic_contact_picture_3.png diff --git a/core/res/res/drawable-hdpi/ic_corp_icon.png b/core/res/res/drawable-hdpi/ic_corp_icon.png Binary files differindex 06c5135..cd2081f 100644 --- a/core/res/res/drawable-hdpi/ic_corp_icon.png +++ b/core/res/res/drawable-hdpi/ic_corp_icon.png diff --git a/core/res/res/drawable-hdpi/ic_delete.png b/core/res/res/drawable-hdpi/ic_delete.png Binary files differindex f3e53d7..9eb3041 100644 --- a/core/res/res/drawable-hdpi/ic_delete.png +++ b/core/res/res/drawable-hdpi/ic_delete.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_alert.png b/core/res/res/drawable-hdpi/ic_dialog_alert.png Binary files differindex 7f905ba..4e70b33 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_alert.png +++ b/core/res/res/drawable-hdpi/ic_dialog_alert.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_alert_holo_dark.png b/core/res/res/drawable-hdpi/ic_dialog_alert_holo_dark.png Binary files differindex f0ba889..18b370d 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_alert_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_dialog_alert_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_alert_holo_light.png b/core/res/res/drawable-hdpi/ic_dialog_alert_holo_light.png Binary files differindex 1374a53..bd59dd4 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_alert_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_dialog_alert_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png b/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png Binary files differindex 5ee5bb8..1c3984d 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png +++ b/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png b/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png Binary files differindex 792db06..becb637 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png +++ b/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_dialer.png b/core/res/res/drawable-hdpi/ic_dialog_dialer.png Binary files differindex 2ded243..24e442a 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_dialer.png +++ b/core/res/res/drawable-hdpi/ic_dialog_dialer.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_email.png b/core/res/res/drawable-hdpi/ic_dialog_email.png Binary files differindex faea271..493e075 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_email.png +++ b/core/res/res/drawable-hdpi/ic_dialog_email.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png Binary files differindex e208575..4370c68 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png +++ b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_info.png b/core/res/res/drawable-hdpi/ic_dialog_info.png Binary files differindex efee1ef..c44b332 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_info.png +++ b/core/res/res/drawable-hdpi/ic_dialog_info.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_map.png b/core/res/res/drawable-hdpi/ic_dialog_map.png Binary files differindex f102b08..033b90d 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_map.png +++ b/core/res/res/drawable-hdpi/ic_dialog_map.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_time.png b/core/res/res/drawable-hdpi/ic_dialog_time.png Binary files differindex 337a43a..b359b84 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_time.png +++ b/core/res/res/drawable-hdpi/ic_dialog_time.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_usb.png b/core/res/res/drawable-hdpi/ic_dialog_usb.png Binary files differindex e69e14a..df51159 100644 --- a/core/res/res/drawable-hdpi/ic_dialog_usb.png +++ b/core/res/res/drawable-hdpi/ic_dialog_usb.png diff --git a/core/res/res/drawable-hdpi/ic_emergency.png b/core/res/res/drawable-hdpi/ic_emergency.png Binary files differindex 09bcbda..114d0b1 100644 --- a/core/res/res/drawable-hdpi/ic_emergency.png +++ b/core/res/res/drawable-hdpi/ic_emergency.png diff --git a/core/res/res/drawable-hdpi/ic_find_next_holo_dark.png b/core/res/res/drawable-hdpi/ic_find_next_holo_dark.png Binary files differindex 2fe4f81..8d6cba5 100644 --- a/core/res/res/drawable-hdpi/ic_find_next_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_find_next_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_find_next_holo_light.png b/core/res/res/drawable-hdpi/ic_find_next_holo_light.png Binary files differindex 3748169..1511e09 100644 --- a/core/res/res/drawable-hdpi/ic_find_next_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_find_next_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_find_next_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_find_next_mtrl_alpha.png Binary files differindex 6d5edac..45aa618 100644 --- a/core/res/res/drawable-hdpi/ic_find_next_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_find_next_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_find_previous_holo_dark.png b/core/res/res/drawable-hdpi/ic_find_previous_holo_dark.png Binary files differindex d4e9bd1..ad62be9 100644 --- a/core/res/res/drawable-hdpi/ic_find_previous_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_find_previous_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_find_previous_holo_light.png b/core/res/res/drawable-hdpi/ic_find_previous_holo_light.png Binary files differindex e4834a2..7983649 100644 --- a/core/res/res/drawable-hdpi/ic_find_previous_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_find_previous_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_find_previous_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_find_previous_mtrl_alpha.png Binary files differindex a5921af..fbfbeaf 100644 --- a/core/res/res/drawable-hdpi/ic_find_previous_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_find_previous_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_go.png b/core/res/res/drawable-hdpi/ic_go.png Binary files differindex 97b825e..f314b8c 100644 --- a/core/res/res/drawable-hdpi/ic_go.png +++ b/core/res/res/drawable-hdpi/ic_go.png diff --git a/core/res/res/drawable-hdpi/ic_go_search_api_holo_dark.png b/core/res/res/drawable-hdpi/ic_go_search_api_holo_dark.png Binary files differindex f062bf7..0405999 100644 --- a/core/res/res/drawable-hdpi/ic_go_search_api_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_go_search_api_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_go_search_api_holo_light.png b/core/res/res/drawable-hdpi/ic_go_search_api_holo_light.png Binary files differindex 7e1ba2a..6f9fbdd 100644 --- a/core/res/res/drawable-hdpi/ic_go_search_api_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_go_search_api_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_grayedout_printer.png b/core/res/res/drawable-hdpi/ic_grayedout_printer.png Binary files differindex 5e54970..627ebae 100644 --- a/core/res/res/drawable-hdpi/ic_grayedout_printer.png +++ b/core/res/res/drawable-hdpi/ic_grayedout_printer.png diff --git a/core/res/res/drawable-hdpi/ic_input_add.png b/core/res/res/drawable-hdpi/ic_input_add.png Binary files differindex d26ebac..9a6776d 100644 --- a/core/res/res/drawable-hdpi/ic_input_add.png +++ b/core/res/res/drawable-hdpi/ic_input_add.png diff --git a/core/res/res/drawable-hdpi/ic_input_delete.png b/core/res/res/drawable-hdpi/ic_input_delete.png Binary files differindex 5d638bd..88b3ceb 100644 --- a/core/res/res/drawable-hdpi/ic_input_delete.png +++ b/core/res/res/drawable-hdpi/ic_input_delete.png diff --git a/core/res/res/drawable-hdpi/ic_input_get.png b/core/res/res/drawable-hdpi/ic_input_get.png Binary files differindex e2b665a..2a35999 100644 --- a/core/res/res/drawable-hdpi/ic_input_get.png +++ b/core/res/res/drawable-hdpi/ic_input_get.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_answer.png b/core/res/res/drawable-hdpi/ic_jog_dial_answer.png Binary files differindex ca0a825..48c3d07 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_answer.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_answer.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_end.png b/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_end.png Binary files differindex 82237bd..c9f891f 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_end.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_end.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_hold.png b/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_hold.png Binary files differindex 4946ada..d306078 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_hold.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_answer_and_hold.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_decline.png b/core/res/res/drawable-hdpi/ic_jog_dial_decline.png Binary files differindex 006a6e4..edabbfd 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_decline.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_decline.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-hdpi/ic_jog_dial_sound_off.png Binary files differindex d73db48..fd3fbc1 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_sound_off.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-hdpi/ic_jog_dial_sound_on.png Binary files differindex 90da6e3..bc4ffbd 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_sound_on.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_unlock.png b/core/res/res/drawable-hdpi/ic_jog_dial_unlock.png Binary files differindex a9af1af..d2c9b5c 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_unlock.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-hdpi/ic_jog_dial_vibrate_on.png b/core/res/res/drawable-hdpi/ic_jog_dial_vibrate_on.png Binary files differindex 86caa07..06e8803 100644 --- a/core/res/res/drawable-hdpi/ic_jog_dial_vibrate_on.png +++ b/core/res/res/drawable-hdpi/ic_jog_dial_vibrate_on.png diff --git a/core/res/res/drawable-hdpi/ic_launcher_android.png b/core/res/res/drawable-hdpi/ic_launcher_android.png Binary files differindex cce5187..9e4186d 100644 --- a/core/res/res/drawable-hdpi/ic_launcher_android.png +++ b/core/res/res/drawable-hdpi/ic_launcher_android.png diff --git a/core/res/res/drawable-hdpi/ic_lock_airplane_mode_alpha.png b/core/res/res/drawable-hdpi/ic_lock_airplane_mode_alpha.png Binary files differindex 90c80fd..c2fef39 100644 --- a/core/res/res/drawable-hdpi/ic_lock_airplane_mode_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_airplane_mode_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_airplane_mode_off_am_alpha.png b/core/res/res/drawable-hdpi/ic_lock_airplane_mode_off_am_alpha.png Binary files differindex b055894..8ee4ac1 100644 --- a/core/res/res/drawable-hdpi/ic_lock_airplane_mode_off_am_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_airplane_mode_off_am_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_idle_alarm_alpha.png b/core/res/res/drawable-hdpi/ic_lock_idle_alarm_alpha.png Binary files differindex 3cadaff..3b21354 100644 --- a/core/res/res/drawable-hdpi/ic_lock_idle_alarm_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_idle_alarm_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_idle_charging.png b/core/res/res/drawable-hdpi/ic_lock_idle_charging.png Binary files differindex 42572ee..c1fbfa8 100644 --- a/core/res/res/drawable-hdpi/ic_lock_idle_charging.png +++ b/core/res/res/drawable-hdpi/ic_lock_idle_charging.png diff --git a/core/res/res/drawable-hdpi/ic_lock_idle_lock.png b/core/res/res/drawable-hdpi/ic_lock_idle_lock.png Binary files differindex 11163d8..76b3125 100644 --- a/core/res/res/drawable-hdpi/ic_lock_idle_lock.png +++ b/core/res/res/drawable-hdpi/ic_lock_idle_lock.png diff --git a/core/res/res/drawable-hdpi/ic_lock_idle_low_battery.png b/core/res/res/drawable-hdpi/ic_lock_idle_low_battery.png Binary files differindex 30ff905..aadae93 100644 --- a/core/res/res/drawable-hdpi/ic_lock_idle_low_battery.png +++ b/core/res/res/drawable-hdpi/ic_lock_idle_low_battery.png diff --git a/core/res/res/drawable-hdpi/ic_lock_lock_alpha.png b/core/res/res/drawable-hdpi/ic_lock_lock_alpha.png Binary files differindex 6d1029c..28656b8 100644 --- a/core/res/res/drawable-hdpi/ic_lock_lock_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_lock_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_open_wht_24dp.png b/core/res/res/drawable-hdpi/ic_lock_open_wht_24dp.png Binary files differindex 4d97045..e1d4f6f 100644 --- a/core/res/res/drawable-hdpi/ic_lock_open_wht_24dp.png +++ b/core/res/res/drawable-hdpi/ic_lock_open_wht_24dp.png diff --git a/core/res/res/drawable-hdpi/ic_lock_outline_wht_24dp.png b/core/res/res/drawable-hdpi/ic_lock_outline_wht_24dp.png Binary files differindex 46fb463..b02bfd4 100644 --- a/core/res/res/drawable-hdpi/ic_lock_outline_wht_24dp.png +++ b/core/res/res/drawable-hdpi/ic_lock_outline_wht_24dp.png diff --git a/core/res/res/drawable-hdpi/ic_lock_power_off_alpha.png b/core/res/res/drawable-hdpi/ic_lock_power_off_alpha.png Binary files differindex bc2dc70..fb94147 100644 --- a/core/res/res/drawable-hdpi/ic_lock_power_off_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_power_off_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_ringer_off_alpha.png b/core/res/res/drawable-hdpi/ic_lock_ringer_off_alpha.png Binary files differindex e7cb234..adaab18 100644 --- a/core/res/res/drawable-hdpi/ic_lock_ringer_off_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_ringer_off_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_ringer_on_alpha.png b/core/res/res/drawable-hdpi/ic_lock_ringer_on_alpha.png Binary files differindex ce0cfab..678ceb1 100644 --- a/core/res/res/drawable-hdpi/ic_lock_ringer_on_alpha.png +++ b/core/res/res/drawable-hdpi/ic_lock_ringer_on_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_lock_silent_mode.png b/core/res/res/drawable-hdpi/ic_lock_silent_mode.png Binary files differindex 0d4c590..2ec1e6f 100644 --- a/core/res/res/drawable-hdpi/ic_lock_silent_mode.png +++ b/core/res/res/drawable-hdpi/ic_lock_silent_mode.png diff --git a/core/res/res/drawable-hdpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-hdpi/ic_lock_silent_mode_off.png Binary files differindex ecb7d04..d609937 100644 --- a/core/res/res/drawable-hdpi/ic_lock_silent_mode_off.png +++ b/core/res/res/drawable-hdpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-hdpi/ic_lock_silent_mode_vibrate.png b/core/res/res/drawable-hdpi/ic_lock_silent_mode_vibrate.png Binary files differindex 4503ace..4d969ec 100644 --- a/core/res/res/drawable-hdpi/ic_lock_silent_mode_vibrate.png +++ b/core/res/res/drawable-hdpi/ic_lock_silent_mode_vibrate.png diff --git a/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png Binary files differindex 58a5f16..95a7669 100644 --- a/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position.png b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position.png Binary files differindex bc9160d..4f95de7 100644 --- a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position.png +++ b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position.png diff --git a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim1.png b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim1.png Binary files differindex d3d9339..612d3ad 100644 --- a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim1.png +++ b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim1.png diff --git a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim2.png b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim2.png Binary files differindex e32c223..1486bf9 100644 --- a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim2.png +++ b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim2.png diff --git a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim3.png b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim3.png Binary files differindex cf2db7c..adc45ff 100644 --- a/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim3.png +++ b/core/res/res/drawable-hdpi/ic_maps_indicator_current_position_anim3.png diff --git a/core/res/res/drawable-hdpi/ic_media_embed_play.png b/core/res/res/drawable-hdpi/ic_media_embed_play.png Binary files differindex 05778c1..ec76964 100644 --- a/core/res/res/drawable-hdpi/ic_media_embed_play.png +++ b/core/res/res/drawable-hdpi/ic_media_embed_play.png diff --git a/core/res/res/drawable-hdpi/ic_media_ff.png b/core/res/res/drawable-hdpi/ic_media_ff.png Binary files differindex c65956a..a24217a 100644 --- a/core/res/res/drawable-hdpi/ic_media_ff.png +++ b/core/res/res/drawable-hdpi/ic_media_ff.png diff --git a/core/res/res/drawable-hdpi/ic_media_fullscreen.png b/core/res/res/drawable-hdpi/ic_media_fullscreen.png Binary files differindex ad08245..f428a67 100644 --- a/core/res/res/drawable-hdpi/ic_media_fullscreen.png +++ b/core/res/res/drawable-hdpi/ic_media_fullscreen.png diff --git a/core/res/res/drawable-hdpi/ic_media_next.png b/core/res/res/drawable-hdpi/ic_media_next.png Binary files differindex 6e27b81..1705858 100644 --- a/core/res/res/drawable-hdpi/ic_media_next.png +++ b/core/res/res/drawable-hdpi/ic_media_next.png diff --git a/core/res/res/drawable-hdpi/ic_media_pause.png b/core/res/res/drawable-hdpi/ic_media_pause.png Binary files differindex 1d465a4..9c2db89 100644 --- a/core/res/res/drawable-hdpi/ic_media_pause.png +++ b/core/res/res/drawable-hdpi/ic_media_pause.png diff --git a/core/res/res/drawable-hdpi/ic_media_play.png b/core/res/res/drawable-hdpi/ic_media_play.png Binary files differindex 2746d17..a98c083 100644 --- a/core/res/res/drawable-hdpi/ic_media_play.png +++ b/core/res/res/drawable-hdpi/ic_media_play.png diff --git a/core/res/res/drawable-hdpi/ic_media_previous.png b/core/res/res/drawable-hdpi/ic_media_previous.png Binary files differindex 85b3766..0be7dfa 100644 --- a/core/res/res/drawable-hdpi/ic_media_previous.png +++ b/core/res/res/drawable-hdpi/ic_media_previous.png diff --git a/core/res/res/drawable-hdpi/ic_media_rew.png b/core/res/res/drawable-hdpi/ic_media_rew.png Binary files differindex a4ac181..759a632 100644 --- a/core/res/res/drawable-hdpi/ic_media_rew.png +++ b/core/res/res/drawable-hdpi/ic_media_rew.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_dark.png Binary files differindex e215b96..098e913 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_light.png Binary files differindex a014e91..77928ff 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_disabled_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_disabled_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_disabled_mtrl_alpha.png Binary files differindex e0a2ba1..bf851f4 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_disabled_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_disabled_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_off_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_off_holo_dark.png Binary files differindex bb8bec1..bd73115 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_off_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_off_holo_light.png Binary files differindex aa1737e..7251805 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_off_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_off_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_off_mtrl_alpha.png Binary files differindex d37e8ee..5452015 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_off_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_off_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_dark.png Binary files differindex 2c1434b..fa61064 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_light.png Binary files differindex dbdce3e..9c38a9a 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_0_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_0_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_on_0_mtrl_alpha.png Binary files differindex 0c604d9..a3146ac 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_0_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_0_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_dark.png Binary files differindex 1101864..add5f89 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_light.png Binary files differindex e8e9069..7fa9b72 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_1_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_1_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_on_1_mtrl_alpha.png Binary files differindex 2c3f4ff..52beab4 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_1_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_1_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_dark.png Binary files differindex 8595158..32a42ac 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_light.png Binary files differindex 14844d4..b00c66f 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_2_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_2_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_on_2_mtrl_alpha.png Binary files differindex 991c50e..c7889d6 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_2_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_2_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_holo_dark.png b/core/res/res/drawable-hdpi/ic_media_route_on_holo_dark.png Binary files differindex 1565a29..133d790 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_holo_light.png b/core/res/res/drawable-hdpi/ic_media_route_on_holo_light.png Binary files differindex 9b8fe87..c52e880 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_media_route_on_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_media_route_on_mtrl_alpha.png Binary files differindex 05fb919..a9766e3 100644 --- a/core/res/res/drawable-hdpi/ic_media_route_on_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_media_route_on_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_media_stop.png b/core/res/res/drawable-hdpi/ic_media_stop.png Binary files differindex a0ff136..2792418 100644 --- a/core/res/res/drawable-hdpi/ic_media_stop.png +++ b/core/res/res/drawable-hdpi/ic_media_stop.png diff --git a/core/res/res/drawable-hdpi/ic_media_video_poster.png b/core/res/res/drawable-hdpi/ic_media_video_poster.png Binary files differindex 77b6b0e..026457ac 100644 --- a/core/res/res/drawable-hdpi/ic_media_video_poster.png +++ b/core/res/res/drawable-hdpi/ic_media_video_poster.png diff --git a/core/res/res/drawable-hdpi/ic_menu_account_list.png b/core/res/res/drawable-hdpi/ic_menu_account_list.png Binary files differindex 0f17170..1c53a94 100644 --- a/core/res/res/drawable-hdpi/ic_menu_account_list.png +++ b/core/res/res/drawable-hdpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-hdpi/ic_menu_add.png b/core/res/res/drawable-hdpi/ic_menu_add.png Binary files differindex 444e8a5..6268489 100644 --- a/core/res/res/drawable-hdpi/ic_menu_add.png +++ b/core/res/res/drawable-hdpi/ic_menu_add.png diff --git a/core/res/res/drawable-hdpi/ic_menu_agenda.png b/core/res/res/drawable-hdpi/ic_menu_agenda.png Binary files differindex 9e08c29..b1d9f7a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_agenda.png +++ b/core/res/res/drawable-hdpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-hdpi/ic_menu_allfriends.png b/core/res/res/drawable-hdpi/ic_menu_allfriends.png Binary files differindex c42e96e..4f27f5f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_allfriends.png +++ b/core/res/res/drawable-hdpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-hdpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-hdpi/ic_menu_always_landscape_portrait.png Binary files differindex be3d314..cd7aed2 100644 --- a/core/res/res/drawable-hdpi/ic_menu_always_landscape_portrait.png +++ b/core/res/res/drawable-hdpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-hdpi/ic_menu_archive.png b/core/res/res/drawable-hdpi/ic_menu_archive.png Binary files differindex e2d9bc1..5e9c676 100644 --- a/core/res/res/drawable-hdpi/ic_menu_archive.png +++ b/core/res/res/drawable-hdpi/ic_menu_archive.png diff --git a/core/res/res/drawable-hdpi/ic_menu_attachment.png b/core/res/res/drawable-hdpi/ic_menu_attachment.png Binary files differindex 4a37115..fa9febd 100644 --- a/core/res/res/drawable-hdpi/ic_menu_attachment.png +++ b/core/res/res/drawable-hdpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-hdpi/ic_menu_back.png b/core/res/res/drawable-hdpi/ic_menu_back.png Binary files differindex 661a4ae..e775886 100644 --- a/core/res/res/drawable-hdpi/ic_menu_back.png +++ b/core/res/res/drawable-hdpi/ic_menu_back.png diff --git a/core/res/res/drawable-hdpi/ic_menu_block.png b/core/res/res/drawable-hdpi/ic_menu_block.png Binary files differindex 826c094..8c63528 100644 --- a/core/res/res/drawable-hdpi/ic_menu_block.png +++ b/core/res/res/drawable-hdpi/ic_menu_block.png diff --git a/core/res/res/drawable-hdpi/ic_menu_blocked_user.png b/core/res/res/drawable-hdpi/ic_menu_blocked_user.png Binary files differindex 7ca5c6f..c3c5553 100644 --- a/core/res/res/drawable-hdpi/ic_menu_blocked_user.png +++ b/core/res/res/drawable-hdpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-hdpi/ic_menu_btn_add.png b/core/res/res/drawable-hdpi/ic_menu_btn_add.png Binary files differindex 444e8a5..6268489 100644 --- a/core/res/res/drawable-hdpi/ic_menu_btn_add.png +++ b/core/res/res/drawable-hdpi/ic_menu_btn_add.png diff --git a/core/res/res/drawable-hdpi/ic_menu_call.png b/core/res/res/drawable-hdpi/ic_menu_call.png Binary files differindex f28c53935..b057bef 100644 --- a/core/res/res/drawable-hdpi/ic_menu_call.png +++ b/core/res/res/drawable-hdpi/ic_menu_call.png diff --git a/core/res/res/drawable-hdpi/ic_menu_camera.png b/core/res/res/drawable-hdpi/ic_menu_camera.png Binary files differindex 4936d15..976c37f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_camera.png +++ b/core/res/res/drawable-hdpi/ic_menu_camera.png diff --git a/core/res/res/drawable-hdpi/ic_menu_cc_am.png b/core/res/res/drawable-hdpi/ic_menu_cc_am.png Binary files differindex 18b2004..5a2760a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_cc_am.png +++ b/core/res/res/drawable-hdpi/ic_menu_cc_am.png diff --git a/core/res/res/drawable-hdpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-hdpi/ic_menu_chat_dashboard.png Binary files differindex 1f26180..767db4f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_chat_dashboard.png +++ b/core/res/res/drawable-hdpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-hdpi/ic_menu_clear_playlist.png b/core/res/res/drawable-hdpi/ic_menu_clear_playlist.png Binary files differindex 84a4a5b..b79e80d 100644 --- a/core/res/res/drawable-hdpi/ic_menu_clear_playlist.png +++ b/core/res/res/drawable-hdpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-hdpi/ic_menu_close_clear_cancel.png b/core/res/res/drawable-hdpi/ic_menu_close_clear_cancel.png Binary files differindex 778c7f0..e066bca 100644 --- a/core/res/res/drawable-hdpi/ic_menu_close_clear_cancel.png +++ b/core/res/res/drawable-hdpi/ic_menu_close_clear_cancel.png diff --git a/core/res/res/drawable-hdpi/ic_menu_compass.png b/core/res/res/drawable-hdpi/ic_menu_compass.png Binary files differindex 39760f8..f76c448 100644 --- a/core/res/res/drawable-hdpi/ic_menu_compass.png +++ b/core/res/res/drawable-hdpi/ic_menu_compass.png diff --git a/core/res/res/drawable-hdpi/ic_menu_compose.png b/core/res/res/drawable-hdpi/ic_menu_compose.png Binary files differindex 1286a28..236e4dd 100644 --- a/core/res/res/drawable-hdpi/ic_menu_compose.png +++ b/core/res/res/drawable-hdpi/ic_menu_compose.png diff --git a/core/res/res/drawable-hdpi/ic_menu_copy.png b/core/res/res/drawable-hdpi/ic_menu_copy.png Binary files differindex 5dcc3a3..b253c95 100644 --- a/core/res/res/drawable-hdpi/ic_menu_copy.png +++ b/core/res/res/drawable-hdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-hdpi/ic_menu_copy_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_copy_holo_dark.png Binary files differindex d37d0a3..8a614c6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_copy_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_copy_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_copy_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_copy_holo_light.png Binary files differindex 0dd8865..9384531 100644 --- a/core/res/res/drawable-hdpi/ic_menu_copy_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_copy_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_crop.png b/core/res/res/drawable-hdpi/ic_menu_crop.png Binary files differindex c2fc70d..999bbf4 100644 --- a/core/res/res/drawable-hdpi/ic_menu_crop.png +++ b/core/res/res/drawable-hdpi/ic_menu_crop.png diff --git a/core/res/res/drawable-hdpi/ic_menu_cut.png b/core/res/res/drawable-hdpi/ic_menu_cut.png Binary files differindex 03fac98..d62fc2a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_cut.png +++ b/core/res/res/drawable-hdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-hdpi/ic_menu_cut_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_cut_holo_dark.png Binary files differindex 3e00747..3fb422c 100644 --- a/core/res/res/drawable-hdpi/ic_menu_cut_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_cut_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_cut_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_cut_holo_light.png Binary files differindex c760936..af18cbd 100644 --- a/core/res/res/drawable-hdpi/ic_menu_cut_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_cut_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_day.png b/core/res/res/drawable-hdpi/ic_menu_day.png Binary files differindex 966de8b..304e217 100644 --- a/core/res/res/drawable-hdpi/ic_menu_day.png +++ b/core/res/res/drawable-hdpi/ic_menu_day.png diff --git a/core/res/res/drawable-hdpi/ic_menu_delete.png b/core/res/res/drawable-hdpi/ic_menu_delete.png Binary files differindex 24d8f6a..0525529 100644 --- a/core/res/res/drawable-hdpi/ic_menu_delete.png +++ b/core/res/res/drawable-hdpi/ic_menu_delete.png diff --git a/core/res/res/drawable-hdpi/ic_menu_directions.png b/core/res/res/drawable-hdpi/ic_menu_directions.png Binary files differindex 358b249..67c53e6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_directions.png +++ b/core/res/res/drawable-hdpi/ic_menu_directions.png diff --git a/core/res/res/drawable-hdpi/ic_menu_edit.png b/core/res/res/drawable-hdpi/ic_menu_edit.png Binary files differindex 9bdba1b..300e991 100644 --- a/core/res/res/drawable-hdpi/ic_menu_edit.png +++ b/core/res/res/drawable-hdpi/ic_menu_edit.png diff --git a/core/res/res/drawable-hdpi/ic_menu_emoticons.png b/core/res/res/drawable-hdpi/ic_menu_emoticons.png Binary files differindex 16ec4e4..b7b795f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_emoticons.png +++ b/core/res/res/drawable-hdpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-hdpi/ic_menu_end_conversation.png b/core/res/res/drawable-hdpi/ic_menu_end_conversation.png Binary files differindex c46b757..3d51310 100644 --- a/core/res/res/drawable-hdpi/ic_menu_end_conversation.png +++ b/core/res/res/drawable-hdpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-hdpi/ic_menu_find.png b/core/res/res/drawable-hdpi/ic_menu_find.png Binary files differindex b888202..996ebf0 100644 --- a/core/res/res/drawable-hdpi/ic_menu_find.png +++ b/core/res/res/drawable-hdpi/ic_menu_find.png diff --git a/core/res/res/drawable-hdpi/ic_menu_find_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_find_holo_dark.png Binary files differindex b981a4d..be61a10 100644 --- a/core/res/res/drawable-hdpi/ic_menu_find_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_find_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_find_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_find_holo_light.png Binary files differindex efee6df..28fe598 100644 --- a/core/res/res/drawable-hdpi/ic_menu_find_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_find_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_find_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_menu_find_mtrl_alpha.png Binary files differindex 0f9d41f..50f4f29 100644 --- a/core/res/res/drawable-hdpi/ic_menu_find_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_menu_find_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_menu_forward.png b/core/res/res/drawable-hdpi/ic_menu_forward.png Binary files differindex b1b0c89..8709897 100644 --- a/core/res/res/drawable-hdpi/ic_menu_forward.png +++ b/core/res/res/drawable-hdpi/ic_menu_forward.png diff --git a/core/res/res/drawable-hdpi/ic_menu_friendslist.png b/core/res/res/drawable-hdpi/ic_menu_friendslist.png Binary files differindex 02b4341..4cdd161 100644 --- a/core/res/res/drawable-hdpi/ic_menu_friendslist.png +++ b/core/res/res/drawable-hdpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-hdpi/ic_menu_gallery.png b/core/res/res/drawable-hdpi/ic_menu_gallery.png Binary files differindex 1f83b9a..ec9a62f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_gallery.png +++ b/core/res/res/drawable-hdpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-hdpi/ic_menu_goto.png b/core/res/res/drawable-hdpi/ic_menu_goto.png Binary files differindex ca6e835..5344f0a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_goto.png +++ b/core/res/res/drawable-hdpi/ic_menu_goto.png diff --git a/core/res/res/drawable-hdpi/ic_menu_help.png b/core/res/res/drawable-hdpi/ic_menu_help.png Binary files differindex 473b372..5be9f4a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_help.png +++ b/core/res/res/drawable-hdpi/ic_menu_help.png diff --git a/core/res/res/drawable-hdpi/ic_menu_help_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_help_holo_light.png Binary files differindex a39eff3..049cb5a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_help_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_help_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_home.png b/core/res/res/drawable-hdpi/ic_menu_home.png Binary files differindex 3baf1ca..c5705bf 100644 --- a/core/res/res/drawable-hdpi/ic_menu_home.png +++ b/core/res/res/drawable-hdpi/ic_menu_home.png diff --git a/core/res/res/drawable-hdpi/ic_menu_info_details.png b/core/res/res/drawable-hdpi/ic_menu_info_details.png Binary files differindex 6a7a1e9..e317dba 100644 --- a/core/res/res/drawable-hdpi/ic_menu_info_details.png +++ b/core/res/res/drawable-hdpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-hdpi/ic_menu_invite.png b/core/res/res/drawable-hdpi/ic_menu_invite.png Binary files differindex ec88b99..143abc6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_invite.png +++ b/core/res/res/drawable-hdpi/ic_menu_invite.png diff --git a/core/res/res/drawable-hdpi/ic_menu_login.png b/core/res/res/drawable-hdpi/ic_menu_login.png Binary files differindex afa152b..e967881 100644 --- a/core/res/res/drawable-hdpi/ic_menu_login.png +++ b/core/res/res/drawable-hdpi/ic_menu_login.png diff --git a/core/res/res/drawable-hdpi/ic_menu_manage.png b/core/res/res/drawable-hdpi/ic_menu_manage.png Binary files differindex 5b7080a..0e59747 100644 --- a/core/res/res/drawable-hdpi/ic_menu_manage.png +++ b/core/res/res/drawable-hdpi/ic_menu_manage.png diff --git a/core/res/res/drawable-hdpi/ic_menu_mapmode.png b/core/res/res/drawable-hdpi/ic_menu_mapmode.png Binary files differindex 5ac4a02..df4f24a 100644 --- a/core/res/res/drawable-hdpi/ic_menu_mapmode.png +++ b/core/res/res/drawable-hdpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-hdpi/ic_menu_mark.png b/core/res/res/drawable-hdpi/ic_menu_mark.png Binary files differindex 95a3217..e1d5c76 100644 --- a/core/res/res/drawable-hdpi/ic_menu_mark.png +++ b/core/res/res/drawable-hdpi/ic_menu_mark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_month.png b/core/res/res/drawable-hdpi/ic_menu_month.png Binary files differindex 99fe5c0..753553c 100644 --- a/core/res/res/drawable-hdpi/ic_menu_month.png +++ b/core/res/res/drawable-hdpi/ic_menu_month.png diff --git a/core/res/res/drawable-hdpi/ic_menu_more.png b/core/res/res/drawable-hdpi/ic_menu_more.png Binary files differindex ede8a54..19c9c0e 100644 --- a/core/res/res/drawable-hdpi/ic_menu_more.png +++ b/core/res/res/drawable-hdpi/ic_menu_more.png diff --git a/core/res/res/drawable-hdpi/ic_menu_moreoverflow.png b/core/res/res/drawable-hdpi/ic_menu_moreoverflow.png Binary files differindex 33bb5e76..a44b029 100644 --- a/core/res/res/drawable-hdpi/ic_menu_moreoverflow.png +++ b/core/res/res/drawable-hdpi/ic_menu_moreoverflow.png diff --git a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_dark.png Binary files differindex 061f80a..3f598b6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_light.png Binary files differindex d818806..4b2c9c2 100644 --- a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_focused_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_dark.png Binary files differindex 2abc458..476d503 100644 --- a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png Binary files differindex bb6aef1..46b5992 100644 --- a/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_my_calendar.png b/core/res/res/drawable-hdpi/ic_menu_my_calendar.png Binary files differindex 360a915..96c25d9 100644 --- a/core/res/res/drawable-hdpi/ic_menu_my_calendar.png +++ b/core/res/res/drawable-hdpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-hdpi/ic_menu_mylocation.png b/core/res/res/drawable-hdpi/ic_menu_mylocation.png Binary files differindex ba82ee0..fbce20f 100644 --- a/core/res/res/drawable-hdpi/ic_menu_mylocation.png +++ b/core/res/res/drawable-hdpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-hdpi/ic_menu_myplaces.png b/core/res/res/drawable-hdpi/ic_menu_myplaces.png Binary files differindex ade7532..904b376 100644 --- a/core/res/res/drawable-hdpi/ic_menu_myplaces.png +++ b/core/res/res/drawable-hdpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-hdpi/ic_menu_notifications.png b/core/res/res/drawable-hdpi/ic_menu_notifications.png Binary files differindex ded4323..9d20af7 100644 --- a/core/res/res/drawable-hdpi/ic_menu_notifications.png +++ b/core/res/res/drawable-hdpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-hdpi/ic_menu_paste.png b/core/res/res/drawable-hdpi/ic_menu_paste.png Binary files differindex c24fd86..8808884 100644 --- a/core/res/res/drawable-hdpi/ic_menu_paste.png +++ b/core/res/res/drawable-hdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-hdpi/ic_menu_paste_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_paste_holo_dark.png Binary files differindex eb701f2..fbfaff6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_paste_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_paste_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_paste_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_paste_holo_light.png Binary files differindex 886c493..7b11a1d 100644 --- a/core/res/res/drawable-hdpi/ic_menu_paste_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_paste_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_play_clip.png b/core/res/res/drawable-hdpi/ic_menu_play_clip.png Binary files differindex 2d0d2e2..9f914e3 100644 --- a/core/res/res/drawable-hdpi/ic_menu_play_clip.png +++ b/core/res/res/drawable-hdpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-hdpi/ic_menu_preferences.png b/core/res/res/drawable-hdpi/ic_menu_preferences.png Binary files differindex 5321f82..0a64c94 100644 --- a/core/res/res/drawable-hdpi/ic_menu_preferences.png +++ b/core/res/res/drawable-hdpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-hdpi/ic_menu_recent_history.png b/core/res/res/drawable-hdpi/ic_menu_recent_history.png Binary files differindex 4101434..9094e98 100644 --- a/core/res/res/drawable-hdpi/ic_menu_recent_history.png +++ b/core/res/res/drawable-hdpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-hdpi/ic_menu_report_image.png b/core/res/res/drawable-hdpi/ic_menu_report_image.png Binary files differindex 7847b7b..74cef13 100644 --- a/core/res/res/drawable-hdpi/ic_menu_report_image.png +++ b/core/res/res/drawable-hdpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-hdpi/ic_menu_revert.png b/core/res/res/drawable-hdpi/ic_menu_revert.png Binary files differindex 0b9cf2a..3700afe 100644 --- a/core/res/res/drawable-hdpi/ic_menu_revert.png +++ b/core/res/res/drawable-hdpi/ic_menu_revert.png diff --git a/core/res/res/drawable-hdpi/ic_menu_rotate.png b/core/res/res/drawable-hdpi/ic_menu_rotate.png Binary files differindex 09efba4..ae20630 100644 --- a/core/res/res/drawable-hdpi/ic_menu_rotate.png +++ b/core/res/res/drawable-hdpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-hdpi/ic_menu_save.png b/core/res/res/drawable-hdpi/ic_menu_save.png Binary files differindex 36fc7f4..00e8ac1 100644 --- a/core/res/res/drawable-hdpi/ic_menu_save.png +++ b/core/res/res/drawable-hdpi/ic_menu_save.png diff --git a/core/res/res/drawable-hdpi/ic_menu_search.png b/core/res/res/drawable-hdpi/ic_menu_search.png Binary files differindex ae2f44b..b52344c 100644 --- a/core/res/res/drawable-hdpi/ic_menu_search.png +++ b/core/res/res/drawable-hdpi/ic_menu_search.png diff --git a/core/res/res/drawable-hdpi/ic_menu_search_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_search_holo_dark.png Binary files differindex 420d680..ab36c6a6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_search_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_search_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_search_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_search_holo_light.png Binary files differindex cc661e3..e5793a0 100644 --- a/core/res/res/drawable-hdpi/ic_menu_search_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_search_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_search_mtrl_alpha.png b/core/res/res/drawable-hdpi/ic_menu_search_mtrl_alpha.png Binary files differindex f7382d3..d7ee3ae 100644 --- a/core/res/res/drawable-hdpi/ic_menu_search_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/ic_menu_search_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/ic_menu_selectall_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_selectall_holo_dark.png Binary files differindex c2cec7f..ef444d9 100644 --- a/core/res/res/drawable-hdpi/ic_menu_selectall_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_selectall_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_selectall_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_selectall_holo_light.png Binary files differindex 902402e..e2ca2c3 100644 --- a/core/res/res/drawable-hdpi/ic_menu_selectall_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_selectall_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_send.png b/core/res/res/drawable-hdpi/ic_menu_send.png Binary files differindex d94e692..00e01ca 100644 --- a/core/res/res/drawable-hdpi/ic_menu_send.png +++ b/core/res/res/drawable-hdpi/ic_menu_send.png diff --git a/core/res/res/drawable-hdpi/ic_menu_set_as.png b/core/res/res/drawable-hdpi/ic_menu_set_as.png Binary files differindex 41f931b..af45017 100644 --- a/core/res/res/drawable-hdpi/ic_menu_set_as.png +++ b/core/res/res/drawable-hdpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-hdpi/ic_menu_settings_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_settings_holo_light.png Binary files differindex 577e055..c3ab3d6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_settings_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_settings_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_share.png b/core/res/res/drawable-hdpi/ic_menu_share.png Binary files differindex 2837615..ad29fed 100644 --- a/core/res/res/drawable-hdpi/ic_menu_share.png +++ b/core/res/res/drawable-hdpi/ic_menu_share.png diff --git a/core/res/res/drawable-hdpi/ic_menu_share_holo_dark.png b/core/res/res/drawable-hdpi/ic_menu_share_holo_dark.png Binary files differindex 6f747c8..db16ccc 100644 --- a/core/res/res/drawable-hdpi/ic_menu_share_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_menu_share_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_menu_share_holo_light.png b/core/res/res/drawable-hdpi/ic_menu_share_holo_light.png Binary files differindex 682b2fd..83c2df9 100644 --- a/core/res/res/drawable-hdpi/ic_menu_share_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_menu_share_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_menu_slideshow.png b/core/res/res/drawable-hdpi/ic_menu_slideshow.png Binary files differindex b2e65b4..eea0233 100644 --- a/core/res/res/drawable-hdpi/ic_menu_slideshow.png +++ b/core/res/res/drawable-hdpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-hdpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-hdpi/ic_menu_sort_alphabetically.png Binary files differindex 74e6b83..5b49b24 100644 --- a/core/res/res/drawable-hdpi/ic_menu_sort_alphabetically.png +++ b/core/res/res/drawable-hdpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-hdpi/ic_menu_sort_by_size.png b/core/res/res/drawable-hdpi/ic_menu_sort_by_size.png Binary files differindex 39472a6..9b62729 100644 --- a/core/res/res/drawable-hdpi/ic_menu_sort_by_size.png +++ b/core/res/res/drawable-hdpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-hdpi/ic_menu_star.png b/core/res/res/drawable-hdpi/ic_menu_star.png Binary files differindex 4f667a4..f888dde 100644 --- a/core/res/res/drawable-hdpi/ic_menu_star.png +++ b/core/res/res/drawable-hdpi/ic_menu_star.png diff --git a/core/res/res/drawable-hdpi/ic_menu_start_conversation.png b/core/res/res/drawable-hdpi/ic_menu_start_conversation.png Binary files differindex 395a5ec..07a95e6 100644 --- a/core/res/res/drawable-hdpi/ic_menu_start_conversation.png +++ b/core/res/res/drawable-hdpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-hdpi/ic_menu_stop.png b/core/res/res/drawable-hdpi/ic_menu_stop.png Binary files differindex cf53a08..d1388cd 100644 --- a/core/res/res/drawable-hdpi/ic_menu_stop.png +++ b/core/res/res/drawable-hdpi/ic_menu_stop.png diff --git a/core/res/res/drawable-hdpi/ic_menu_today.png b/core/res/res/drawable-hdpi/ic_menu_today.png Binary files differindex b0a7a48..b373e2d 100644 --- a/core/res/res/drawable-hdpi/ic_menu_today.png +++ b/core/res/res/drawable-hdpi/ic_menu_today.png diff --git a/core/res/res/drawable-hdpi/ic_menu_upload.png b/core/res/res/drawable-hdpi/ic_menu_upload.png Binary files differindex a81ad20..c21e1e0 100644 --- a/core/res/res/drawable-hdpi/ic_menu_upload.png +++ b/core/res/res/drawable-hdpi/ic_menu_upload.png diff --git a/core/res/res/drawable-hdpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-hdpi/ic_menu_upload_you_tube.png Binary files differindex ce8d1b6..5ff300d 100644 --- a/core/res/res/drawable-hdpi/ic_menu_upload_you_tube.png +++ b/core/res/res/drawable-hdpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-hdpi/ic_menu_view.png b/core/res/res/drawable-hdpi/ic_menu_view.png Binary files differindex 25c2ff3..4af6591 100644 --- a/core/res/res/drawable-hdpi/ic_menu_view.png +++ b/core/res/res/drawable-hdpi/ic_menu_view.png diff --git a/core/res/res/drawable-hdpi/ic_menu_week.png b/core/res/res/drawable-hdpi/ic_menu_week.png Binary files differindex 69dc015..ac64846 100644 --- a/core/res/res/drawable-hdpi/ic_menu_week.png +++ b/core/res/res/drawable-hdpi/ic_menu_week.png diff --git a/core/res/res/drawable-hdpi/ic_menu_zoom.png b/core/res/res/drawable-hdpi/ic_menu_zoom.png Binary files differindex e2f56f0..acf4476 100644 --- a/core/res/res/drawable-hdpi/ic_menu_zoom.png +++ b/core/res/res/drawable-hdpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-hdpi/ic_notification_cast_0.png b/core/res/res/drawable-hdpi/ic_notification_cast_0.png Binary files differindex 74f7dc0..d205bf2 100644 --- a/core/res/res/drawable-hdpi/ic_notification_cast_0.png +++ b/core/res/res/drawable-hdpi/ic_notification_cast_0.png diff --git a/core/res/res/drawable-hdpi/ic_notification_cast_1.png b/core/res/res/drawable-hdpi/ic_notification_cast_1.png Binary files differindex c6d267d..595e2d0 100644 --- a/core/res/res/drawable-hdpi/ic_notification_cast_1.png +++ b/core/res/res/drawable-hdpi/ic_notification_cast_1.png diff --git a/core/res/res/drawable-hdpi/ic_notification_cast_2.png b/core/res/res/drawable-hdpi/ic_notification_cast_2.png Binary files differindex 699b299..9d28ac7 100644 --- a/core/res/res/drawable-hdpi/ic_notification_cast_2.png +++ b/core/res/res/drawable-hdpi/ic_notification_cast_2.png diff --git a/core/res/res/drawable-hdpi/ic_notification_clear_all.png b/core/res/res/drawable-hdpi/ic_notification_clear_all.png Binary files differindex 6bff858..4bad9ed 100644 --- a/core/res/res/drawable-hdpi/ic_notification_clear_all.png +++ b/core/res/res/drawable-hdpi/ic_notification_clear_all.png diff --git a/core/res/res/drawable-hdpi/ic_notification_ime_default.png b/core/res/res/drawable-hdpi/ic_notification_ime_default.png Binary files differindex 369c88d..667ee57 100644 --- a/core/res/res/drawable-hdpi/ic_notification_ime_default.png +++ b/core/res/res/drawable-hdpi/ic_notification_ime_default.png diff --git a/core/res/res/drawable-hdpi/ic_notification_overlay.9.png b/core/res/res/drawable-hdpi/ic_notification_overlay.9.png Binary files differindex 744178f..9a6d5b6 100644 --- a/core/res/res/drawable-hdpi/ic_notification_overlay.9.png +++ b/core/res/res/drawable-hdpi/ic_notification_overlay.9.png diff --git a/core/res/res/drawable-hdpi/ic_partial_secure.png b/core/res/res/drawable-hdpi/ic_partial_secure.png Binary files differindex 70bd08d..5a1f1ed 100644 --- a/core/res/res/drawable-hdpi/ic_partial_secure.png +++ b/core/res/res/drawable-hdpi/ic_partial_secure.png diff --git a/core/res/res/drawable-hdpi/ic_popup_disk_full.png b/core/res/res/drawable-hdpi/ic_popup_disk_full.png Binary files differindex b3c00a7..d3cf9e5 100644 --- a/core/res/res/drawable-hdpi/ic_popup_disk_full.png +++ b/core/res/res/drawable-hdpi/ic_popup_disk_full.png diff --git a/core/res/res/drawable-hdpi/ic_popup_reminder.png b/core/res/res/drawable-hdpi/ic_popup_reminder.png Binary files differindex 9652dde..5434e45 100644 --- a/core/res/res/drawable-hdpi/ic_popup_reminder.png +++ b/core/res/res/drawable-hdpi/ic_popup_reminder.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_1.png b/core/res/res/drawable-hdpi/ic_popup_sync_1.png Binary files differindex a248f59..3b77175 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_1.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_1.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_2.png b/core/res/res/drawable-hdpi/ic_popup_sync_2.png Binary files differindex 756bfc6..c164ac5 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_2.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_2.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_3.png b/core/res/res/drawable-hdpi/ic_popup_sync_3.png Binary files differindex e06825b..eeb850b 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_3.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_3.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_4.png b/core/res/res/drawable-hdpi/ic_popup_sync_4.png Binary files differindex 87ce8f6..ab7f6df 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_4.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_4.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_5.png b/core/res/res/drawable-hdpi/ic_popup_sync_5.png Binary files differindex 635480c..5839968 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_5.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_5.png diff --git a/core/res/res/drawable-hdpi/ic_popup_sync_6.png b/core/res/res/drawable-hdpi/ic_popup_sync_6.png Binary files differindex b339eb2..26e8ee8 100644 --- a/core/res/res/drawable-hdpi/ic_popup_sync_6.png +++ b/core/res/res/drawable-hdpi/ic_popup_sync_6.png diff --git a/core/res/res/drawable-hdpi/ic_print.png b/core/res/res/drawable-hdpi/ic_print.png Binary files differindex aaff3dd..6792d09 100644 --- a/core/res/res/drawable-hdpi/ic_print.png +++ b/core/res/res/drawable-hdpi/ic_print.png diff --git a/core/res/res/drawable-hdpi/ic_print_error.png b/core/res/res/drawable-hdpi/ic_print_error.png Binary files differindex 7846a78..70da817 100644 --- a/core/res/res/drawable-hdpi/ic_print_error.png +++ b/core/res/res/drawable-hdpi/ic_print_error.png diff --git a/core/res/res/drawable-hdpi/ic_search.png b/core/res/res/drawable-hdpi/ic_search.png Binary files differindex bf8bd66..1518613 100644 --- a/core/res/res/drawable-hdpi/ic_search.png +++ b/core/res/res/drawable-hdpi/ic_search.png diff --git a/core/res/res/drawable-hdpi/ic_search_api_holo_dark.png b/core/res/res/drawable-hdpi/ic_search_api_holo_dark.png Binary files differindex 8d529b8..b526d4e 100644 --- a/core/res/res/drawable-hdpi/ic_search_api_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_search_api_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_search_api_holo_light.png b/core/res/res/drawable-hdpi/ic_search_api_holo_light.png Binary files differindex 8b15ecb..7250c5c 100644 --- a/core/res/res/drawable-hdpi/ic_search_api_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_search_api_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_search_category_default.png b/core/res/res/drawable-hdpi/ic_search_category_default.png Binary files differindex f78234e..46b63d1 100644 --- a/core/res/res/drawable-hdpi/ic_search_category_default.png +++ b/core/res/res/drawable-hdpi/ic_search_category_default.png diff --git a/core/res/res/drawable-hdpi/ic_secure.png b/core/res/res/drawable-hdpi/ic_secure.png Binary files differindex 5fb62c2..e43ffac 100644 --- a/core/res/res/drawable-hdpi/ic_secure.png +++ b/core/res/res/drawable-hdpi/ic_secure.png diff --git a/core/res/res/drawable-hdpi/ic_settings.png b/core/res/res/drawable-hdpi/ic_settings.png Binary files differindex cfa539f..82dba6b 100644 --- a/core/res/res/drawable-hdpi/ic_settings.png +++ b/core/res/res/drawable-hdpi/ic_settings.png diff --git a/core/res/res/drawable-hdpi/ic_settings_language.png b/core/res/res/drawable-hdpi/ic_settings_language.png Binary files differindex f635b2e..bfbd1a6 100644 --- a/core/res/res/drawable-hdpi/ic_settings_language.png +++ b/core/res/res/drawable-hdpi/ic_settings_language.png diff --git a/core/res/res/drawable-hdpi/ic_sim_card_multi_24px_clr.png b/core/res/res/drawable-hdpi/ic_sim_card_multi_24px_clr.png Binary files differindex c4a66bb..6788c98 100644 --- a/core/res/res/drawable-hdpi/ic_sim_card_multi_24px_clr.png +++ b/core/res/res/drawable-hdpi/ic_sim_card_multi_24px_clr.png diff --git a/core/res/res/drawable-hdpi/ic_sim_card_multi_48px_clr.png b/core/res/res/drawable-hdpi/ic_sim_card_multi_48px_clr.png Binary files differindex db901d9..b3f0f8a 100644 --- a/core/res/res/drawable-hdpi/ic_sim_card_multi_48px_clr.png +++ b/core/res/res/drawable-hdpi/ic_sim_card_multi_48px_clr.png diff --git a/core/res/res/drawable-hdpi/ic_star_black_16dp.png b/core/res/res/drawable-hdpi/ic_star_black_16dp.png Binary files differindex a728afe..22b1936 100644 --- a/core/res/res/drawable-hdpi/ic_star_black_16dp.png +++ b/core/res/res/drawable-hdpi/ic_star_black_16dp.png diff --git a/core/res/res/drawable-hdpi/ic_star_black_36dp.png b/core/res/res/drawable-hdpi/ic_star_black_36dp.png Binary files differindex 4f67f97..18f8205 100644 --- a/core/res/res/drawable-hdpi/ic_star_black_36dp.png +++ b/core/res/res/drawable-hdpi/ic_star_black_36dp.png diff --git a/core/res/res/drawable-hdpi/ic_star_black_48dp.png b/core/res/res/drawable-hdpi/ic_star_black_48dp.png Binary files differindex 54d3065..a933c27 100644 --- a/core/res/res/drawable-hdpi/ic_star_black_48dp.png +++ b/core/res/res/drawable-hdpi/ic_star_black_48dp.png diff --git a/core/res/res/drawable-hdpi/ic_star_half_black_16dp.png b/core/res/res/drawable-hdpi/ic_star_half_black_16dp.png Binary files differindex 89919a3..68a1821 100644 --- a/core/res/res/drawable-hdpi/ic_star_half_black_16dp.png +++ b/core/res/res/drawable-hdpi/ic_star_half_black_16dp.png diff --git a/core/res/res/drawable-hdpi/ic_star_half_black_36dp.png b/core/res/res/drawable-hdpi/ic_star_half_black_36dp.png Binary files differindex d28afab..ffa0639 100644 --- a/core/res/res/drawable-hdpi/ic_star_half_black_36dp.png +++ b/core/res/res/drawable-hdpi/ic_star_half_black_36dp.png diff --git a/core/res/res/drawable-hdpi/ic_star_half_black_48dp.png b/core/res/res/drawable-hdpi/ic_star_half_black_48dp.png Binary files differindex befe521..2ee4e91 100644 --- a/core/res/res/drawable-hdpi/ic_star_half_black_48dp.png +++ b/core/res/res/drawable-hdpi/ic_star_half_black_48dp.png diff --git a/core/res/res/drawable-hdpi/ic_sysbar_quicksettings.png b/core/res/res/drawable-hdpi/ic_sysbar_quicksettings.png Binary files differindex 47b4ba2..582f643 100644 --- a/core/res/res/drawable-hdpi/ic_sysbar_quicksettings.png +++ b/core/res/res/drawable-hdpi/ic_sysbar_quicksettings.png diff --git a/core/res/res/drawable-hdpi/ic_vibrate.png b/core/res/res/drawable-hdpi/ic_vibrate.png Binary files differindex ca23372..dee1082 100644 --- a/core/res/res/drawable-hdpi/ic_vibrate.png +++ b/core/res/res/drawable-hdpi/ic_vibrate.png diff --git a/core/res/res/drawable-hdpi/ic_vibrate_small.png b/core/res/res/drawable-hdpi/ic_vibrate_small.png Binary files differindex 61b8bd9..d6472b5 100644 --- a/core/res/res/drawable-hdpi/ic_vibrate_small.png +++ b/core/res/res/drawable-hdpi/ic_vibrate_small.png diff --git a/core/res/res/drawable-hdpi/ic_voice_search.png b/core/res/res/drawable-hdpi/ic_voice_search.png Binary files differindex 66d14ae..ae322db 100644 --- a/core/res/res/drawable-hdpi/ic_voice_search.png +++ b/core/res/res/drawable-hdpi/ic_voice_search.png diff --git a/core/res/res/drawable-hdpi/ic_voice_search_api_holo_dark.png b/core/res/res/drawable-hdpi/ic_voice_search_api_holo_dark.png Binary files differindex 32062a6..4d3e074 100644 --- a/core/res/res/drawable-hdpi/ic_voice_search_api_holo_dark.png +++ b/core/res/res/drawable-hdpi/ic_voice_search_api_holo_dark.png diff --git a/core/res/res/drawable-hdpi/ic_voice_search_api_holo_light.png b/core/res/res/drawable-hdpi/ic_voice_search_api_holo_light.png Binary files differindex d2b2d21..bbf91a5 100644 --- a/core/res/res/drawable-hdpi/ic_voice_search_api_holo_light.png +++ b/core/res/res/drawable-hdpi/ic_voice_search_api_holo_light.png diff --git a/core/res/res/drawable-hdpi/ic_volume.png b/core/res/res/drawable-hdpi/ic_volume.png Binary files differindex bf538ee..ba5644f 100644 --- a/core/res/res/drawable-hdpi/ic_volume.png +++ b/core/res/res/drawable-hdpi/ic_volume.png diff --git a/core/res/res/drawable-hdpi/ic_volume_bluetooth_ad2p.png b/core/res/res/drawable-hdpi/ic_volume_bluetooth_ad2p.png Binary files differindex 31851e1..5fcf764 100644 --- a/core/res/res/drawable-hdpi/ic_volume_bluetooth_ad2p.png +++ b/core/res/res/drawable-hdpi/ic_volume_bluetooth_ad2p.png diff --git a/core/res/res/drawable-hdpi/ic_volume_bluetooth_in_call.png b/core/res/res/drawable-hdpi/ic_volume_bluetooth_in_call.png Binary files differindex 108a9e1..caa3b0f 100644 --- a/core/res/res/drawable-hdpi/ic_volume_bluetooth_in_call.png +++ b/core/res/res/drawable-hdpi/ic_volume_bluetooth_in_call.png diff --git a/core/res/res/drawable-hdpi/ic_volume_off.png b/core/res/res/drawable-hdpi/ic_volume_off.png Binary files differindex aa344083..8ef88e7 100644 --- a/core/res/res/drawable-hdpi/ic_volume_off.png +++ b/core/res/res/drawable-hdpi/ic_volume_off.png diff --git a/core/res/res/drawable-hdpi/ic_volume_off_small.png b/core/res/res/drawable-hdpi/ic_volume_off_small.png Binary files differindex 1329414..0143ad7 100644 --- a/core/res/res/drawable-hdpi/ic_volume_off_small.png +++ b/core/res/res/drawable-hdpi/ic_volume_off_small.png diff --git a/core/res/res/drawable-hdpi/ic_volume_small.png b/core/res/res/drawable-hdpi/ic_volume_small.png Binary files differindex 4e9a7ea..4d3d116 100644 --- a/core/res/res/drawable-hdpi/ic_volume_small.png +++ b/core/res/res/drawable-hdpi/ic_volume_small.png diff --git a/core/res/res/drawable-hdpi/icon_highlight_rectangle.9.png b/core/res/res/drawable-hdpi/icon_highlight_rectangle.9.png Binary files differindex a4da974..319cbf7 100644 --- a/core/res/res/drawable-hdpi/icon_highlight_rectangle.9.png +++ b/core/res/res/drawable-hdpi/icon_highlight_rectangle.9.png diff --git a/core/res/res/drawable-hdpi/icon_highlight_square.9.png b/core/res/res/drawable-hdpi/icon_highlight_square.9.png Binary files differindex 6f9a442..55577ef 100644 --- a/core/res/res/drawable-hdpi/icon_highlight_square.9.png +++ b/core/res/res/drawable-hdpi/icon_highlight_square.9.png diff --git a/core/res/res/drawable-hdpi/ime_qwerty.png b/core/res/res/drawable-hdpi/ime_qwerty.png Binary files differindex f9967cc..957e9f8 100644 --- a/core/res/res/drawable-hdpi/ime_qwerty.png +++ b/core/res/res/drawable-hdpi/ime_qwerty.png diff --git a/core/res/res/drawable-hdpi/indicator_input_error.png b/core/res/res/drawable-hdpi/indicator_input_error.png Binary files differindex 8785376..c87d86f 100644 --- a/core/res/res/drawable-hdpi/indicator_input_error.png +++ b/core/res/res/drawable-hdpi/indicator_input_error.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_green.png b/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_green.png Binary files differindex f19811e..246cc4f 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_green.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_green.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_yellow.png b/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_yellow.png Binary files differindex 0596035..c53b9c1 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_yellow.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_long_left_yellow.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_long_middle_yellow.png b/core/res/res/drawable-hdpi/jog_dial_arrow_long_middle_yellow.png Binary files differindex 3ab2723..14f6409 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_long_middle_yellow.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_long_middle_yellow.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_red.png b/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_red.png Binary files differindex dd6899f..d28fd62 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_red.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_red.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_yellow.png b/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_yellow.png Binary files differindex 27151e0..546c943 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_yellow.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_long_right_yellow.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_short_left.png b/core/res/res/drawable-hdpi/jog_dial_arrow_short_left.png Binary files differindex 66d49bb..a3c9ccc 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_short_left.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_short_left.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_short_left_and_right.png b/core/res/res/drawable-hdpi/jog_dial_arrow_short_left_and_right.png Binary files differindex c47e176..34eab15 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_short_left_and_right.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_short_left_and_right.png diff --git a/core/res/res/drawable-hdpi/jog_dial_arrow_short_right.png b/core/res/res/drawable-hdpi/jog_dial_arrow_short_right.png Binary files differindex f5ea157..2b6775b 100644 --- a/core/res/res/drawable-hdpi/jog_dial_arrow_short_right.png +++ b/core/res/res/drawable-hdpi/jog_dial_arrow_short_right.png diff --git a/core/res/res/drawable-hdpi/jog_dial_bg.png b/core/res/res/drawable-hdpi/jog_dial_bg.png Binary files differindex 8adbfd8..388d878 100644 --- a/core/res/res/drawable-hdpi/jog_dial_bg.png +++ b/core/res/res/drawable-hdpi/jog_dial_bg.png diff --git a/core/res/res/drawable-hdpi/jog_dial_dimple.png b/core/res/res/drawable-hdpi/jog_dial_dimple.png Binary files differindex 0eaea91..29da0ed 100644 --- a/core/res/res/drawable-hdpi/jog_dial_dimple.png +++ b/core/res/res/drawable-hdpi/jog_dial_dimple.png diff --git a/core/res/res/drawable-hdpi/jog_dial_dimple_dim.png b/core/res/res/drawable-hdpi/jog_dial_dimple_dim.png Binary files differindex 49effe5..e4a1b62 100644 --- a/core/res/res/drawable-hdpi/jog_dial_dimple_dim.png +++ b/core/res/res/drawable-hdpi/jog_dial_dimple_dim.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex abb91cc..fd59069 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex 7c4f40e..e31d58a 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex 6dbf925..beb0f32 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex b05a49f..c2b0a10 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_normal.9.png Binary files differindex b9ec237..044007b 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 2800cab..68e3ff0 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex 51cbfa6..b3630ef 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex ca51ccc..f01814a 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex fd98571..7592f43 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex 723815b..3a416aa 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_normal.9.png Binary files differindex 30fcda5..a480cb2 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex ffc5433..8f0f8e1 100644 --- a/core/res/res/drawable-hdpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-hdpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-hdpi/jog_tab_left_confirm_gray.png Binary files differindex 9599fb5..a98ad39 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-hdpi/jog_tab_left_confirm_green.png Binary files differindex 46d9ab3..ceab842 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-hdpi/jog_tab_left_confirm_red.png Binary files differindex 6c0dc0a..19660fb 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-hdpi/jog_tab_left_confirm_yellow.png Binary files differindex 3f9fb8f..97d7a46 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_normal.png b/core/res/res/drawable-hdpi/jog_tab_left_normal.png Binary files differindex d43c5e2..e756977 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-hdpi/jog_tab_left_pressed.png b/core/res/res/drawable-hdpi/jog_tab_left_pressed.png Binary files differindex ec98790..88bd9d9 100644 --- a/core/res/res/drawable-hdpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-hdpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-hdpi/jog_tab_right_confirm_gray.png Binary files differindex 2861e8d..18433d5 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-hdpi/jog_tab_right_confirm_green.png Binary files differindex e974bbc..2148d26 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-hdpi/jog_tab_right_confirm_red.png Binary files differindex 9647fa6..15c0c65 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-hdpi/jog_tab_right_confirm_yellow.png Binary files differindex ad878e1..a5f6785 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_normal.png b/core/res/res/drawable-hdpi/jog_tab_right_normal.png Binary files differindex 1eb4234..6a05492 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-hdpi/jog_tab_right_pressed.png b/core/res/res/drawable-hdpi/jog_tab_right_pressed.png Binary files differindex 647e802..3510bd8 100644 --- a/core/res/res/drawable-hdpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-hdpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-hdpi/jog_tab_target_gray.png b/core/res/res/drawable-hdpi/jog_tab_target_gray.png Binary files differindex e7ef129..fd66132 100644 --- a/core/res/res/drawable-hdpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-hdpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-hdpi/jog_tab_target_green.png b/core/res/res/drawable-hdpi/jog_tab_target_green.png Binary files differindex 17f6b10..3fddc13 100644 --- a/core/res/res/drawable-hdpi/jog_tab_target_green.png +++ b/core/res/res/drawable-hdpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-hdpi/jog_tab_target_red.png b/core/res/res/drawable-hdpi/jog_tab_target_red.png Binary files differindex 8db20bb..6f57e26 100644 --- a/core/res/res/drawable-hdpi/jog_tab_target_red.png +++ b/core/res/res/drawable-hdpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-hdpi/jog_tab_target_yellow.png b/core/res/res/drawable-hdpi/jog_tab_target_yellow.png Binary files differindex 15045b0..f4e4c6b 100644 --- a/core/res/res/drawable-hdpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-hdpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-hdpi/keyboard_accessory_bg_landscape.9.png b/core/res/res/drawable-hdpi/keyboard_accessory_bg_landscape.9.png Binary files differindex 5b0f6c5..7a3004f 100644 --- a/core/res/res/drawable-hdpi/keyboard_accessory_bg_landscape.9.png +++ b/core/res/res/drawable-hdpi/keyboard_accessory_bg_landscape.9.png diff --git a/core/res/res/drawable-hdpi/keyboard_background.9.png b/core/res/res/drawable-hdpi/keyboard_background.9.png Binary files differindex 7a03b8e..6fc7034 100644 --- a/core/res/res/drawable-hdpi/keyboard_background.9.png +++ b/core/res/res/drawable-hdpi/keyboard_background.9.png diff --git a/core/res/res/drawable-hdpi/keyboard_key_feedback_background.9.png b/core/res/res/drawable-hdpi/keyboard_key_feedback_background.9.png Binary files differindex 6ba42db..2578e07 100644 --- a/core/res/res/drawable-hdpi/keyboard_key_feedback_background.9.png +++ b/core/res/res/drawable-hdpi/keyboard_key_feedback_background.9.png diff --git a/core/res/res/drawable-hdpi/keyboard_key_feedback_more_background.9.png b/core/res/res/drawable-hdpi/keyboard_key_feedback_more_background.9.png Binary files differindex 4d0b601..f7583bd 100644 --- a/core/res/res/drawable-hdpi/keyboard_key_feedback_more_background.9.png +++ b/core/res/res/drawable-hdpi/keyboard_key_feedback_more_background.9.png diff --git a/core/res/res/drawable-hdpi/keyboard_popup_panel_background.9.png b/core/res/res/drawable-hdpi/keyboard_popup_panel_background.9.png Binary files differindex 8e2461b..0f8e8c3 100644 --- a/core/res/res/drawable-hdpi/keyboard_popup_panel_background.9.png +++ b/core/res/res/drawable-hdpi/keyboard_popup_panel_background.9.png diff --git a/core/res/res/drawable-hdpi/keyboard_popup_panel_trans_background.9.png b/core/res/res/drawable-hdpi/keyboard_popup_panel_trans_background.9.png Binary files differindex fd7366e..f82ce63 100644 --- a/core/res/res/drawable-hdpi/keyboard_popup_panel_trans_background.9.png +++ b/core/res/res/drawable-hdpi/keyboard_popup_panel_trans_background.9.png diff --git a/core/res/res/drawable-hdpi/light_header.9.png b/core/res/res/drawable-hdpi/light_header.9.png Binary files differindex 6fc53ca..ab63b5d 100644 --- a/core/res/res/drawable-hdpi/light_header.9.png +++ b/core/res/res/drawable-hdpi/light_header.9.png diff --git a/core/res/res/drawable-hdpi/list_activated_holo.9.png b/core/res/res/drawable-hdpi/list_activated_holo.9.png Binary files differindex 4ea7afa..fdbc140 100644 --- a/core/res/res/drawable-hdpi/list_activated_holo.9.png +++ b/core/res/res/drawable-hdpi/list_activated_holo.9.png diff --git a/core/res/res/drawable-hdpi/list_divider_holo_dark.9.png b/core/res/res/drawable-hdpi/list_divider_holo_dark.9.png Binary files differindex 986ab0b..d564cd4 100644 --- a/core/res/res/drawable-hdpi/list_divider_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_divider_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_divider_holo_light.9.png b/core/res/res/drawable-hdpi/list_divider_holo_light.9.png Binary files differindex 0279e17..be0d0b3 100644 --- a/core/res/res/drawable-hdpi/list_divider_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_divider_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-hdpi/list_divider_horizontal_holo_dark.9.png Binary files differindex 0a4347f..b302f08 100644 --- a/core/res/res/drawable-hdpi/list_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_focused_holo.9.png b/core/res/res/drawable-hdpi/list_focused_holo.9.png Binary files differindex 5552708..06e64c9 100644 --- a/core/res/res/drawable-hdpi/list_focused_holo.9.png +++ b/core/res/res/drawable-hdpi/list_focused_holo.9.png diff --git a/core/res/res/drawable-hdpi/list_longpressed_holo.9.png b/core/res/res/drawable-hdpi/list_longpressed_holo.9.png Binary files differindex 4ea7afa..fdbc140 100644 --- a/core/res/res/drawable-hdpi/list_longpressed_holo.9.png +++ b/core/res/res/drawable-hdpi/list_longpressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/list_longpressed_holo_dark.9.png b/core/res/res/drawable-hdpi/list_longpressed_holo_dark.9.png Binary files differindex f5cc0ed..7b3fc3e 100644 --- a/core/res/res/drawable-hdpi/list_longpressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_longpressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_longpressed_holo_light.9.png b/core/res/res/drawable-hdpi/list_longpressed_holo_light.9.png Binary files differindex e9afcc9..beacd56 100644 --- a/core/res/res/drawable-hdpi/list_longpressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_longpressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/list_pressed_holo_dark.9.png Binary files differindex 596accb..0f00e90 100644 --- a/core/res/res/drawable-hdpi/list_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/list_pressed_holo_light.9.png Binary files differindex 2054530..53e4257 100644 --- a/core/res/res/drawable-hdpi/list_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_section_divider_holo_dark.9.png b/core/res/res/drawable-hdpi/list_section_divider_holo_dark.9.png Binary files differindex 43a20ad..ffa4587 100644 --- a/core/res/res/drawable-hdpi/list_section_divider_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_section_divider_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_section_divider_holo_light.9.png b/core/res/res/drawable-hdpi/list_section_divider_holo_light.9.png Binary files differindex b7b292e..4158711 100644 --- a/core/res/res/drawable-hdpi/list_section_divider_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_section_divider_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_section_divider_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/list_section_divider_mtrl_alpha.9.png Binary files differindex 20baf2a..2c2d6d5 100644 --- a/core/res/res/drawable-hdpi/list_section_divider_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/list_section_divider_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/list_section_header_holo_dark.9.png b/core/res/res/drawable-hdpi/list_section_header_holo_dark.9.png Binary files differindex 2030d3b..eb9a8ac 100644 --- a/core/res/res/drawable-hdpi/list_section_header_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_section_header_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_section_header_holo_light.9.png b/core/res/res/drawable-hdpi/list_section_header_holo_light.9.png Binary files differindex 4ca2773..da6ee94 100644 --- a/core/res/res/drawable-hdpi/list_section_header_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_section_header_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selected_holo_dark.9.png Binary files differindex 1a0bf0d..2d58ae9 100644 --- a/core/res/res/drawable-hdpi/list_selected_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selected_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selected_holo_light.9.png b/core/res/res/drawable-hdpi/list_selected_holo_light.9.png Binary files differindex c9e662d..384f980 100644 --- a/core/res/res/drawable-hdpi/list_selected_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selected_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_activated_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selector_activated_holo_dark.9.png Binary files differindex 1a516c1..eaa6d93 100644 --- a/core/res/res/drawable-hdpi/list_selector_activated_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selector_activated_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_activated_holo_light.9.png b/core/res/res/drawable-hdpi/list_selector_activated_holo_light.9.png Binary files differindex f22217b..375d60e 100644 --- a/core/res/res/drawable-hdpi/list_selector_activated_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_activated_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_default.9.png b/core/res/res/drawable-hdpi/list_selector_background_default.9.png Binary files differindex 25c6241..5d4f8d5 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_default.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_default.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_default_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_default_light.9.png Binary files differindex c3e69f0..6684715 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_default_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_default_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_disabled.9.png b/core/res/res/drawable-hdpi/list_selector_background_disabled.9.png Binary files differindex 05b1419..edc9fdb 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_disabled.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_disabled_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_disabled_light.9.png Binary files differindex 8edc9cd..570ad16 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_disabled_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_disabled_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_focus.9.png b/core/res/res/drawable-hdpi/list_selector_background_focus.9.png Binary files differindex 3a21d35..89b6838 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_focus.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_focused.9.png b/core/res/res/drawable-hdpi/list_selector_background_focused.9.png Binary files differindex 60bb454..b9d92d4 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_focused.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_focused.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_focused_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_focused_light.9.png Binary files differindex 60bb454..b9d92d4 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_focused_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_focused_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_focused_selected.9.png b/core/res/res/drawable-hdpi/list_selector_background_focused_selected.9.png Binary files differindex b527da1..72db600 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_focused_selected.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_focused_selected.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_longpress.9.png b/core/res/res/drawable-hdpi/list_selector_background_longpress.9.png Binary files differindex 19558e9..40d1cf2 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_longpress.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_longpress_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_longpress_light.9.png Binary files differindex fc2ba2e..960bcff 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_longpress_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_longpress_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_pressed.9.png b/core/res/res/drawable-hdpi/list_selector_background_pressed.9.png Binary files differindex 0f3b444..a1ea70f 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_pressed.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_pressed_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_pressed_light.9.png Binary files differindex 00786e5..b4b7597 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_pressed_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_pressed_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_selected.9.png b/core/res/res/drawable-hdpi/list_selector_background_selected.9.png Binary files differindex cbf50b3..8398af0 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_selected.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_selected.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_background_selected_light.9.png b/core/res/res/drawable-hdpi/list_selector_background_selected_light.9.png Binary files differindex 34ea86e..c1c9d1c 100644 --- a/core/res/res/drawable-hdpi/list_selector_background_selected_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_background_selected_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selector_disabled_holo_dark.9.png Binary files differindex f6fd30d..19dc7be 100644 --- a/core/res/res/drawable-hdpi/list_selector_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selector_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/list_selector_disabled_holo_light.9.png Binary files differindex ca8e9a2..1f07bb3 100644 --- a/core/res/res/drawable-hdpi/list_selector_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selector_focused_holo_dark.9.png Binary files differindex c1f3d7d..afc0174 100644 --- a/core/res/res/drawable-hdpi/list_selector_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selector_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_focused_holo_light.9.png b/core/res/res/drawable-hdpi/list_selector_focused_holo_light.9.png Binary files differindex 99bb246..92ec377 100644 --- a/core/res/res/drawable-hdpi/list_selector_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_multiselect_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selector_multiselect_holo_dark.9.png Binary files differindex f702fc8..321e613 100644 --- a/core/res/res/drawable-hdpi/list_selector_multiselect_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selector_multiselect_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_multiselect_holo_light.9.png b/core/res/res/drawable-hdpi/list_selector_multiselect_holo_light.9.png Binary files differindex e8f277d..376bd50 100644 --- a/core/res/res/drawable-hdpi/list_selector_multiselect_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_multiselect_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/list_selector_pressed_holo_dark.9.png Binary files differindex 0ed5ba3..6f736d2 100644 --- a/core/res/res/drawable-hdpi/list_selector_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/list_selector_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/list_selector_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/list_selector_pressed_holo_light.9.png Binary files differindex 1471c17..87d65ad 100644 --- a/core/res/res/drawable-hdpi/list_selector_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/list_selector_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/magnified_region_frame.9.png b/core/res/res/drawable-hdpi/magnified_region_frame.9.png Binary files differindex 29bdc42..8d554df 100644 --- a/core/res/res/drawable-hdpi/magnified_region_frame.9.png +++ b/core/res/res/drawable-hdpi/magnified_region_frame.9.png diff --git a/core/res/res/drawable-hdpi/maps_google_logo.png b/core/res/res/drawable-hdpi/maps_google_logo.png Binary files differindex 5956ee2..3403c28 100644 --- a/core/res/res/drawable-hdpi/maps_google_logo.png +++ b/core/res/res/drawable-hdpi/maps_google_logo.png diff --git a/core/res/res/drawable-hdpi/menu_background.9.png b/core/res/res/drawable-hdpi/menu_background.9.png Binary files differindex f4c9e08..066efee 100644 --- a/core/res/res/drawable-hdpi/menu_background.9.png +++ b/core/res/res/drawable-hdpi/menu_background.9.png diff --git a/core/res/res/drawable-hdpi/menu_background_fill_parent_width.9.png b/core/res/res/drawable-hdpi/menu_background_fill_parent_width.9.png Binary files differindex a3cec11..46c0025 100644 --- a/core/res/res/drawable-hdpi/menu_background_fill_parent_width.9.png +++ b/core/res/res/drawable-hdpi/menu_background_fill_parent_width.9.png diff --git a/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_dark.9.png b/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_dark.9.png Binary files differindex 72ee35f..9af86d3 100644 --- a/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_light.9.png b/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_light.9.png Binary files differindex 0d1f9bf..1877b6c 100644 --- a/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_light.9.png +++ b/core/res/res/drawable-hdpi/menu_dropdown_panel_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_dark.9.png b/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_dark.9.png Binary files differindex 465ee6d..b204a5c 100644 --- a/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_light.9.png b/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_light.9.png Binary files differindex 76a5c53..98a6e6a 100644 --- a/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_light.9.png +++ b/core/res/res/drawable-hdpi/menu_hardkey_panel_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/menu_popup_panel_holo_dark.9.png b/core/res/res/drawable-hdpi/menu_popup_panel_holo_dark.9.png Binary files differindex e5ff886..1ee62f0 100644 --- a/core/res/res/drawable-hdpi/menu_popup_panel_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/menu_popup_panel_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/menu_popup_panel_holo_light.9.png b/core/res/res/drawable-hdpi/menu_popup_panel_holo_light.9.png Binary files differindex 06d1653..3f519ae 100644 --- a/core/res/res/drawable-hdpi/menu_popup_panel_holo_light.9.png +++ b/core/res/res/drawable-hdpi/menu_popup_panel_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/menu_separator.9.png b/core/res/res/drawable-hdpi/menu_separator.9.png Binary files differindex 3685b4e..c3024d6 100644 --- a/core/res/res/drawable-hdpi/menu_separator.9.png +++ b/core/res/res/drawable-hdpi/menu_separator.9.png diff --git a/core/res/res/drawable-hdpi/menu_submenu_background.9.png b/core/res/res/drawable-hdpi/menu_submenu_background.9.png Binary files differindex 7b7c8b2..30099b5 100644 --- a/core/res/res/drawable-hdpi/menu_submenu_background.9.png +++ b/core/res/res/drawable-hdpi/menu_submenu_background.9.png diff --git a/core/res/res/drawable-hdpi/menuitem_background_focus.9.png b/core/res/res/drawable-hdpi/menuitem_background_focus.9.png Binary files differindex d8e16b9..bfc18a1 100644 --- a/core/res/res/drawable-hdpi/menuitem_background_focus.9.png +++ b/core/res/res/drawable-hdpi/menuitem_background_focus.9.png diff --git a/core/res/res/drawable-hdpi/menuitem_background_pressed.9.png b/core/res/res/drawable-hdpi/menuitem_background_pressed.9.png Binary files differindex ba79cf7..d99b417 100644 --- a/core/res/res/drawable-hdpi/menuitem_background_pressed.9.png +++ b/core/res/res/drawable-hdpi/menuitem_background_pressed.9.png diff --git a/core/res/res/drawable-hdpi/menuitem_background_solid_focused.9.png b/core/res/res/drawable-hdpi/menuitem_background_solid_focused.9.png Binary files differindex 99dd9b1..b4ff4c4 100644 --- a/core/res/res/drawable-hdpi/menuitem_background_solid_focused.9.png +++ b/core/res/res/drawable-hdpi/menuitem_background_solid_focused.9.png diff --git a/core/res/res/drawable-hdpi/menuitem_background_solid_pressed.9.png b/core/res/res/drawable-hdpi/menuitem_background_solid_pressed.9.png Binary files differindex 389063a..a046d1b 100644 --- a/core/res/res/drawable-hdpi/menuitem_background_solid_pressed.9.png +++ b/core/res/res/drawable-hdpi/menuitem_background_solid_pressed.9.png diff --git a/core/res/res/drawable-hdpi/menuitem_checkbox_on.png b/core/res/res/drawable-hdpi/menuitem_checkbox_on.png Binary files differindex e90f631..e74bd3e 100644 --- a/core/res/res/drawable-hdpi/menuitem_checkbox_on.png +++ b/core/res/res/drawable-hdpi/menuitem_checkbox_on.png diff --git a/core/res/res/drawable-hdpi/minitab_lt_focus.9.png b/core/res/res/drawable-hdpi/minitab_lt_focus.9.png Binary files differindex 3ba8376..9769aee 100644 --- a/core/res/res/drawable-hdpi/minitab_lt_focus.9.png +++ b/core/res/res/drawable-hdpi/minitab_lt_focus.9.png diff --git a/core/res/res/drawable-hdpi/minitab_lt_press.9.png b/core/res/res/drawable-hdpi/minitab_lt_press.9.png Binary files differindex df226c7..8e02edd 100644 --- a/core/res/res/drawable-hdpi/minitab_lt_press.9.png +++ b/core/res/res/drawable-hdpi/minitab_lt_press.9.png diff --git a/core/res/res/drawable-hdpi/minitab_lt_selected.9.png b/core/res/res/drawable-hdpi/minitab_lt_selected.9.png Binary files differindex bb417e6..349948e 100644 --- a/core/res/res/drawable-hdpi/minitab_lt_selected.9.png +++ b/core/res/res/drawable-hdpi/minitab_lt_selected.9.png diff --git a/core/res/res/drawable-hdpi/minitab_lt_unselected.9.png b/core/res/res/drawable-hdpi/minitab_lt_unselected.9.png Binary files differindex d9ef49e..cdaecf1 100644 --- a/core/res/res/drawable-hdpi/minitab_lt_unselected.9.png +++ b/core/res/res/drawable-hdpi/minitab_lt_unselected.9.png diff --git a/core/res/res/drawable-hdpi/minitab_lt_unselected_press.9.png b/core/res/res/drawable-hdpi/minitab_lt_unselected_press.9.png Binary files differindex 383c4fc..342bca3 100644 --- a/core/res/res/drawable-hdpi/minitab_lt_unselected_press.9.png +++ b/core/res/res/drawable-hdpi/minitab_lt_unselected_press.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_down_disabled.9.png b/core/res/res/drawable-hdpi/numberpicker_down_disabled.9.png Binary files differindex 73b6915..60a3a0e 100644 --- a/core/res/res/drawable-hdpi/numberpicker_down_disabled.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_down_disabled.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_down_disabled_focused.9.png b/core/res/res/drawable-hdpi/numberpicker_down_disabled_focused.9.png Binary files differindex 046e60f..e4ba0b5 100644 --- a/core/res/res/drawable-hdpi/numberpicker_down_disabled_focused.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_down_disabled_focused.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_down_normal.9.png b/core/res/res/drawable-hdpi/numberpicker_down_normal.9.png Binary files differindex 9baf7cc..630b136 100644 --- a/core/res/res/drawable-hdpi/numberpicker_down_normal.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_down_normal.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_down_pressed.9.png b/core/res/res/drawable-hdpi/numberpicker_down_pressed.9.png Binary files differindex d95fdd3..d43027b 100644 --- a/core/res/res/drawable-hdpi/numberpicker_down_pressed.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_down_pressed.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_down_selected.9.png b/core/res/res/drawable-hdpi/numberpicker_down_selected.9.png Binary files differindex a84448f..73b26ff 100644 --- a/core/res/res/drawable-hdpi/numberpicker_down_selected.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_down_selected.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_input_disabled.9.png b/core/res/res/drawable-hdpi/numberpicker_input_disabled.9.png Binary files differindex aa17a98..e15d84a 100644 --- a/core/res/res/drawable-hdpi/numberpicker_input_disabled.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_input_disabled.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_input_normal.9.png b/core/res/res/drawable-hdpi/numberpicker_input_normal.9.png Binary files differindex be78a58..718d854 100644 --- a/core/res/res/drawable-hdpi/numberpicker_input_normal.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_input_normal.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_input_pressed.9.png b/core/res/res/drawable-hdpi/numberpicker_input_pressed.9.png Binary files differindex b28f66c..e6a06c8 100644 --- a/core/res/res/drawable-hdpi/numberpicker_input_pressed.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_input_pressed.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_input_selected.9.png b/core/res/res/drawable-hdpi/numberpicker_input_selected.9.png Binary files differindex 2e175e8..798b617 100644 --- a/core/res/res/drawable-hdpi/numberpicker_input_selected.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_input_selected.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_selection_divider.9.png b/core/res/res/drawable-hdpi/numberpicker_selection_divider.9.png Binary files differindex c9c72ba..e9ddc66 100644 --- a/core/res/res/drawable-hdpi/numberpicker_selection_divider.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_selection_divider.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_up_disabled.9.png b/core/res/res/drawable-hdpi/numberpicker_up_disabled.9.png Binary files differindex 348e48c..c4a51b2 100644 --- a/core/res/res/drawable-hdpi/numberpicker_up_disabled.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_up_disabled.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_up_disabled_focused.9.png b/core/res/res/drawable-hdpi/numberpicker_up_disabled_focused.9.png Binary files differindex 93cf3a0..369ff1b 100644 --- a/core/res/res/drawable-hdpi/numberpicker_up_disabled_focused.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_up_disabled_focused.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_up_normal.9.png b/core/res/res/drawable-hdpi/numberpicker_up_normal.9.png Binary files differindex b4acced..d73146d 100644 --- a/core/res/res/drawable-hdpi/numberpicker_up_normal.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_up_normal.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_up_pressed.9.png b/core/res/res/drawable-hdpi/numberpicker_up_pressed.9.png Binary files differindex bd29510..6d2a81f 100644 --- a/core/res/res/drawable-hdpi/numberpicker_up_pressed.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_up_pressed.9.png diff --git a/core/res/res/drawable-hdpi/numberpicker_up_selected.9.png b/core/res/res/drawable-hdpi/numberpicker_up_selected.9.png Binary files differindex a666998..3b887e2 100644 --- a/core/res/res/drawable-hdpi/numberpicker_up_selected.9.png +++ b/core/res/res/drawable-hdpi/numberpicker_up_selected.9.png diff --git a/core/res/res/drawable-hdpi/panel_background.9.png b/core/res/res/drawable-hdpi/panel_background.9.png Binary files differindex 03175d4..fafc410 100644 --- a/core/res/res/drawable-hdpi/panel_background.9.png +++ b/core/res/res/drawable-hdpi/panel_background.9.png diff --git a/core/res/res/drawable-hdpi/panel_bg_holo_dark.9.png b/core/res/res/drawable-hdpi/panel_bg_holo_dark.9.png Binary files differindex a5ac279..ea2ac14 100644 --- a/core/res/res/drawable-hdpi/panel_bg_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/panel_bg_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/panel_bg_holo_light.9.png b/core/res/res/drawable-hdpi/panel_bg_holo_light.9.png Binary files differindex 583865e..7f8c811 100644 --- a/core/res/res/drawable-hdpi/panel_bg_holo_light.9.png +++ b/core/res/res/drawable-hdpi/panel_bg_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/panel_picture_frame_bg_focus_blue.9.png b/core/res/res/drawable-hdpi/panel_picture_frame_bg_focus_blue.9.png Binary files differindex fdafdf5..5352cf5 100644 --- a/core/res/res/drawable-hdpi/panel_picture_frame_bg_focus_blue.9.png +++ b/core/res/res/drawable-hdpi/panel_picture_frame_bg_focus_blue.9.png diff --git a/core/res/res/drawable-hdpi/panel_picture_frame_bg_normal.9.png b/core/res/res/drawable-hdpi/panel_picture_frame_bg_normal.9.png Binary files differindex a654277..9720f46 100644 --- a/core/res/res/drawable-hdpi/panel_picture_frame_bg_normal.9.png +++ b/core/res/res/drawable-hdpi/panel_picture_frame_bg_normal.9.png diff --git a/core/res/res/drawable-hdpi/panel_picture_frame_bg_pressed_blue.9.png b/core/res/res/drawable-hdpi/panel_picture_frame_bg_pressed_blue.9.png Binary files differindex 73162a5..21317e3 100644 --- a/core/res/res/drawable-hdpi/panel_picture_frame_bg_pressed_blue.9.png +++ b/core/res/res/drawable-hdpi/panel_picture_frame_bg_pressed_blue.9.png diff --git a/core/res/res/drawable-hdpi/password_field_default.9.png b/core/res/res/drawable-hdpi/password_field_default.9.png Binary files differindex 2c424f0..9513389 100644 --- a/core/res/res/drawable-hdpi/password_field_default.9.png +++ b/core/res/res/drawable-hdpi/password_field_default.9.png diff --git a/core/res/res/drawable-hdpi/password_keyboard_background_holo.9.png b/core/res/res/drawable-hdpi/password_keyboard_background_holo.9.png Binary files differindex c56c704..70e50f6 100644 --- a/core/res/res/drawable-hdpi/password_keyboard_background_holo.9.png +++ b/core/res/res/drawable-hdpi/password_keyboard_background_holo.9.png diff --git a/core/res/res/drawable-hdpi/perm_group_accessibility_features.png b/core/res/res/drawable-hdpi/perm_group_accessibility_features.png Binary files differindex c2b5960..e5a4d00 100644 --- a/core/res/res/drawable-hdpi/perm_group_accessibility_features.png +++ b/core/res/res/drawable-hdpi/perm_group_accessibility_features.png diff --git a/core/res/res/drawable-hdpi/perm_group_accounts.png b/core/res/res/drawable-hdpi/perm_group_accounts.png Binary files differindex 5ac28e7..68a8a31 100644 --- a/core/res/res/drawable-hdpi/perm_group_accounts.png +++ b/core/res/res/drawable-hdpi/perm_group_accounts.png diff --git a/core/res/res/drawable-hdpi/perm_group_affects_battery.png b/core/res/res/drawable-hdpi/perm_group_affects_battery.png Binary files differindex 945b468..42fb1c7 100644 --- a/core/res/res/drawable-hdpi/perm_group_affects_battery.png +++ b/core/res/res/drawable-hdpi/perm_group_affects_battery.png diff --git a/core/res/res/drawable-hdpi/perm_group_app_info.png b/core/res/res/drawable-hdpi/perm_group_app_info.png Binary files differindex 754529e..3ade04d 100644 --- a/core/res/res/drawable-hdpi/perm_group_app_info.png +++ b/core/res/res/drawable-hdpi/perm_group_app_info.png diff --git a/core/res/res/drawable-hdpi/perm_group_audio_settings.png b/core/res/res/drawable-hdpi/perm_group_audio_settings.png Binary files differindex 7e5808a..44e636e 100644 --- a/core/res/res/drawable-hdpi/perm_group_audio_settings.png +++ b/core/res/res/drawable-hdpi/perm_group_audio_settings.png diff --git a/core/res/res/drawable-hdpi/perm_group_bluetooth.png b/core/res/res/drawable-hdpi/perm_group_bluetooth.png Binary files differindex dac7071..06ba0fd 100644 --- a/core/res/res/drawable-hdpi/perm_group_bluetooth.png +++ b/core/res/res/drawable-hdpi/perm_group_bluetooth.png diff --git a/core/res/res/drawable-hdpi/perm_group_bookmarks.png b/core/res/res/drawable-hdpi/perm_group_bookmarks.png Binary files differindex 0cb0c1d..37feff5 100644 --- a/core/res/res/drawable-hdpi/perm_group_bookmarks.png +++ b/core/res/res/drawable-hdpi/perm_group_bookmarks.png diff --git a/core/res/res/drawable-hdpi/perm_group_calendar.png b/core/res/res/drawable-hdpi/perm_group_calendar.png Binary files differindex 1ef032f..6ab041a 100644 --- a/core/res/res/drawable-hdpi/perm_group_calendar.png +++ b/core/res/res/drawable-hdpi/perm_group_calendar.png diff --git a/core/res/res/drawable-hdpi/perm_group_camera.png b/core/res/res/drawable-hdpi/perm_group_camera.png Binary files differindex fb5a2f5..6948856 100644 --- a/core/res/res/drawable-hdpi/perm_group_camera.png +++ b/core/res/res/drawable-hdpi/perm_group_camera.png diff --git a/core/res/res/drawable-hdpi/perm_group_device_alarms.png b/core/res/res/drawable-hdpi/perm_group_device_alarms.png Binary files differindex f38c5fe..10b3c00 100644 --- a/core/res/res/drawable-hdpi/perm_group_device_alarms.png +++ b/core/res/res/drawable-hdpi/perm_group_device_alarms.png diff --git a/core/res/res/drawable-hdpi/perm_group_display.png b/core/res/res/drawable-hdpi/perm_group_display.png Binary files differindex c10c5d8..70fce1a 100644 --- a/core/res/res/drawable-hdpi/perm_group_display.png +++ b/core/res/res/drawable-hdpi/perm_group_display.png diff --git a/core/res/res/drawable-hdpi/perm_group_location.png b/core/res/res/drawable-hdpi/perm_group_location.png Binary files differindex 6989b16..3b5f0b5 100644 --- a/core/res/res/drawable-hdpi/perm_group_location.png +++ b/core/res/res/drawable-hdpi/perm_group_location.png diff --git a/core/res/res/drawable-hdpi/perm_group_messages.png b/core/res/res/drawable-hdpi/perm_group_messages.png Binary files differindex 21929b6..63cea24 100644 --- a/core/res/res/drawable-hdpi/perm_group_messages.png +++ b/core/res/res/drawable-hdpi/perm_group_messages.png diff --git a/core/res/res/drawable-hdpi/perm_group_microphone.png b/core/res/res/drawable-hdpi/perm_group_microphone.png Binary files differindex 9f8a681..abd2e4d 100644 --- a/core/res/res/drawable-hdpi/perm_group_microphone.png +++ b/core/res/res/drawable-hdpi/perm_group_microphone.png diff --git a/core/res/res/drawable-hdpi/perm_group_network.png b/core/res/res/drawable-hdpi/perm_group_network.png Binary files differindex 0ecb7b2..0a76c72 100644 --- a/core/res/res/drawable-hdpi/perm_group_network.png +++ b/core/res/res/drawable-hdpi/perm_group_network.png diff --git a/core/res/res/drawable-hdpi/perm_group_personal_info.png b/core/res/res/drawable-hdpi/perm_group_personal_info.png Binary files differindex e1b8a5b..537d97d 100644 --- a/core/res/res/drawable-hdpi/perm_group_personal_info.png +++ b/core/res/res/drawable-hdpi/perm_group_personal_info.png diff --git a/core/res/res/drawable-hdpi/perm_group_phone_calls.png b/core/res/res/drawable-hdpi/perm_group_phone_calls.png Binary files differindex 8fa802e..7ff7003 100644 --- a/core/res/res/drawable-hdpi/perm_group_phone_calls.png +++ b/core/res/res/drawable-hdpi/perm_group_phone_calls.png diff --git a/core/res/res/drawable-hdpi/perm_group_screenlock.png b/core/res/res/drawable-hdpi/perm_group_screenlock.png Binary files differindex b5a19ee..2a2c893 100644 --- a/core/res/res/drawable-hdpi/perm_group_screenlock.png +++ b/core/res/res/drawable-hdpi/perm_group_screenlock.png diff --git a/core/res/res/drawable-hdpi/perm_group_shortrange_network.png b/core/res/res/drawable-hdpi/perm_group_shortrange_network.png Binary files differindex 99ca933..6a9ddaf 100644 --- a/core/res/res/drawable-hdpi/perm_group_shortrange_network.png +++ b/core/res/res/drawable-hdpi/perm_group_shortrange_network.png diff --git a/core/res/res/drawable-hdpi/perm_group_social_info.png b/core/res/res/drawable-hdpi/perm_group_social_info.png Binary files differindex dcf67e4..32ba26b 100644 --- a/core/res/res/drawable-hdpi/perm_group_social_info.png +++ b/core/res/res/drawable-hdpi/perm_group_social_info.png diff --git a/core/res/res/drawable-hdpi/perm_group_status_bar.png b/core/res/res/drawable-hdpi/perm_group_status_bar.png Binary files differindex e3f6ed9..9339098 100644 --- a/core/res/res/drawable-hdpi/perm_group_status_bar.png +++ b/core/res/res/drawable-hdpi/perm_group_status_bar.png diff --git a/core/res/res/drawable-hdpi/perm_group_storage.png b/core/res/res/drawable-hdpi/perm_group_storage.png Binary files differindex 598e1cc..541c9ef 100644 --- a/core/res/res/drawable-hdpi/perm_group_storage.png +++ b/core/res/res/drawable-hdpi/perm_group_storage.png diff --git a/core/res/res/drawable-hdpi/perm_group_sync_settings.png b/core/res/res/drawable-hdpi/perm_group_sync_settings.png Binary files differindex 1ca6b17..cba62dc 100644 --- a/core/res/res/drawable-hdpi/perm_group_sync_settings.png +++ b/core/res/res/drawable-hdpi/perm_group_sync_settings.png diff --git a/core/res/res/drawable-hdpi/perm_group_system_clock.png b/core/res/res/drawable-hdpi/perm_group_system_clock.png Binary files differindex 3dd4682..af7b103 100644 --- a/core/res/res/drawable-hdpi/perm_group_system_clock.png +++ b/core/res/res/drawable-hdpi/perm_group_system_clock.png diff --git a/core/res/res/drawable-hdpi/perm_group_system_tools.png b/core/res/res/drawable-hdpi/perm_group_system_tools.png Binary files differindex ae1ba2a..cfab161 100644 --- a/core/res/res/drawable-hdpi/perm_group_system_tools.png +++ b/core/res/res/drawable-hdpi/perm_group_system_tools.png diff --git a/core/res/res/drawable-hdpi/perm_group_user_dictionary.png b/core/res/res/drawable-hdpi/perm_group_user_dictionary.png Binary files differindex 62fbcdc..51937f2 100644 --- a/core/res/res/drawable-hdpi/perm_group_user_dictionary.png +++ b/core/res/res/drawable-hdpi/perm_group_user_dictionary.png diff --git a/core/res/res/drawable-hdpi/perm_group_user_dictionary_write.png b/core/res/res/drawable-hdpi/perm_group_user_dictionary_write.png Binary files differindex c62dd4c..5dada71 100644 --- a/core/res/res/drawable-hdpi/perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-hdpi/perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-hdpi/perm_group_voicemail.png b/core/res/res/drawable-hdpi/perm_group_voicemail.png Binary files differindex 3b245d6..a0ba41e 100644 --- a/core/res/res/drawable-hdpi/perm_group_voicemail.png +++ b/core/res/res/drawable-hdpi/perm_group_voicemail.png diff --git a/core/res/res/drawable-hdpi/perm_group_wallpaper.png b/core/res/res/drawable-hdpi/perm_group_wallpaper.png Binary files differindex e40c4f0..95b5cac 100644 --- a/core/res/res/drawable-hdpi/perm_group_wallpaper.png +++ b/core/res/res/drawable-hdpi/perm_group_wallpaper.png diff --git a/core/res/res/drawable-hdpi/picture_emergency.png b/core/res/res/drawable-hdpi/picture_emergency.png Binary files differindex 0e13a43..f1a15af 100644 --- a/core/res/res/drawable-hdpi/picture_emergency.png +++ b/core/res/res/drawable-hdpi/picture_emergency.png diff --git a/core/res/res/drawable-hdpi/picture_frame.9.png b/core/res/res/drawable-hdpi/picture_frame.9.png Binary files differindex c038b2a..afa81c1 100644 --- a/core/res/res/drawable-hdpi/picture_frame.9.png +++ b/core/res/res/drawable-hdpi/picture_frame.9.png diff --git a/core/res/res/drawable-hdpi/pointer_arrow.png b/core/res/res/drawable-hdpi/pointer_arrow.png Binary files differindex 0ff0fce..917c6bb 100644 --- a/core/res/res/drawable-hdpi/pointer_arrow.png +++ b/core/res/res/drawable-hdpi/pointer_arrow.png diff --git a/core/res/res/drawable-hdpi/pointer_spot_anchor.png b/core/res/res/drawable-hdpi/pointer_spot_anchor.png Binary files differindex bdb5311..cd6b9b9 100644 --- a/core/res/res/drawable-hdpi/pointer_spot_anchor.png +++ b/core/res/res/drawable-hdpi/pointer_spot_anchor.png diff --git a/core/res/res/drawable-hdpi/pointer_spot_hover.png b/core/res/res/drawable-hdpi/pointer_spot_hover.png Binary files differindex e7f2a0c..cafdadd 100644 --- a/core/res/res/drawable-hdpi/pointer_spot_hover.png +++ b/core/res/res/drawable-hdpi/pointer_spot_hover.png diff --git a/core/res/res/drawable-hdpi/pointer_spot_touch.png b/core/res/res/drawable-hdpi/pointer_spot_touch.png Binary files differindex 0326f91..39cb247 100644 --- a/core/res/res/drawable-hdpi/pointer_spot_touch.png +++ b/core/res/res/drawable-hdpi/pointer_spot_touch.png diff --git a/core/res/res/drawable-hdpi/popup_background_mtrl_mult.9.png b/core/res/res/drawable-hdpi/popup_background_mtrl_mult.9.png Binary files differindex 385734e..741c074 100644 --- a/core/res/res/drawable-hdpi/popup_background_mtrl_mult.9.png +++ b/core/res/res/drawable-hdpi/popup_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-hdpi/popup_bottom_bright.9.png b/core/res/res/drawable-hdpi/popup_bottom_bright.9.png Binary files differindex 6e5fbb5..ba616d7 100644 --- a/core/res/res/drawable-hdpi/popup_bottom_bright.9.png +++ b/core/res/res/drawable-hdpi/popup_bottom_bright.9.png diff --git a/core/res/res/drawable-hdpi/popup_bottom_dark.9.png b/core/res/res/drawable-hdpi/popup_bottom_dark.9.png Binary files differindex 3434b2d..2d690ea 100644 --- a/core/res/res/drawable-hdpi/popup_bottom_dark.9.png +++ b/core/res/res/drawable-hdpi/popup_bottom_dark.9.png diff --git a/core/res/res/drawable-hdpi/popup_bottom_medium.9.png b/core/res/res/drawable-hdpi/popup_bottom_medium.9.png Binary files differindex 673a509..6cf4479 100644 --- a/core/res/res/drawable-hdpi/popup_bottom_medium.9.png +++ b/core/res/res/drawable-hdpi/popup_bottom_medium.9.png diff --git a/core/res/res/drawable-hdpi/popup_center_bright.9.png b/core/res/res/drawable-hdpi/popup_center_bright.9.png Binary files differindex c2a739c..c183a0f 100644 --- a/core/res/res/drawable-hdpi/popup_center_bright.9.png +++ b/core/res/res/drawable-hdpi/popup_center_bright.9.png diff --git a/core/res/res/drawable-hdpi/popup_center_dark.9.png b/core/res/res/drawable-hdpi/popup_center_dark.9.png Binary files differindex 9d2bfb1..d47f8fd 100644 --- a/core/res/res/drawable-hdpi/popup_center_dark.9.png +++ b/core/res/res/drawable-hdpi/popup_center_dark.9.png diff --git a/core/res/res/drawable-hdpi/popup_center_medium.9.png b/core/res/res/drawable-hdpi/popup_center_medium.9.png Binary files differindex 4375bf2..31d4685 100644 --- a/core/res/res/drawable-hdpi/popup_center_medium.9.png +++ b/core/res/res/drawable-hdpi/popup_center_medium.9.png diff --git a/core/res/res/drawable-hdpi/popup_full_bright.9.png b/core/res/res/drawable-hdpi/popup_full_bright.9.png Binary files differindex 6b8aa9d..6a93e38 100644 --- a/core/res/res/drawable-hdpi/popup_full_bright.9.png +++ b/core/res/res/drawable-hdpi/popup_full_bright.9.png diff --git a/core/res/res/drawable-hdpi/popup_full_dark.9.png b/core/res/res/drawable-hdpi/popup_full_dark.9.png Binary files differindex 2884abe..7b1ab86 100644 --- a/core/res/res/drawable-hdpi/popup_full_dark.9.png +++ b/core/res/res/drawable-hdpi/popup_full_dark.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_above_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_above_am.9.png Binary files differindex 3d4e8ba..39d4816 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_above_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_above_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_above_holo_dark_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_above_holo_dark_am.9.png Binary files differindex 83b2bce..c508998 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_above_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_above_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_above_holo_light_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_above_holo_light_am.9.png Binary files differindex 61ea2b0..ff35592 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_above_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_above_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_am.9.png Binary files differindex b188d81..345d24d 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_holo_dark_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_holo_dark_am.9.png Binary files differindex 9f3060d..cc70f04 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_inline_error_holo_light_am.9.png b/core/res/res/drawable-hdpi/popup_inline_error_holo_light_am.9.png Binary files differindex 84fbdac..2c67f67 100644 --- a/core/res/res/drawable-hdpi/popup_inline_error_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/popup_inline_error_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/popup_top_bright.9.png b/core/res/res/drawable-hdpi/popup_top_bright.9.png Binary files differindex 76c35ec..666450a 100644 --- a/core/res/res/drawable-hdpi/popup_top_bright.9.png +++ b/core/res/res/drawable-hdpi/popup_top_bright.9.png diff --git a/core/res/res/drawable-hdpi/popup_top_dark.9.png b/core/res/res/drawable-hdpi/popup_top_dark.9.png Binary files differindex f317330..67bca6d 100644 --- a/core/res/res/drawable-hdpi/popup_top_dark.9.png +++ b/core/res/res/drawable-hdpi/popup_top_dark.9.png diff --git a/core/res/res/drawable-hdpi/presence_audio_away.png b/core/res/res/drawable-hdpi/presence_audio_away.png Binary files differindex c6af4f7..995f8ab 100644 --- a/core/res/res/drawable-hdpi/presence_audio_away.png +++ b/core/res/res/drawable-hdpi/presence_audio_away.png diff --git a/core/res/res/drawable-hdpi/presence_audio_busy.png b/core/res/res/drawable-hdpi/presence_audio_busy.png Binary files differindex ddba88d..3b3e4af 100644 --- a/core/res/res/drawable-hdpi/presence_audio_busy.png +++ b/core/res/res/drawable-hdpi/presence_audio_busy.png diff --git a/core/res/res/drawable-hdpi/presence_audio_online.png b/core/res/res/drawable-hdpi/presence_audio_online.png Binary files differindex 058963c..6bbe275 100644 --- a/core/res/res/drawable-hdpi/presence_audio_online.png +++ b/core/res/res/drawable-hdpi/presence_audio_online.png diff --git a/core/res/res/drawable-hdpi/presence_away.png b/core/res/res/drawable-hdpi/presence_away.png Binary files differindex c39d3a8..42bea54 100644 --- a/core/res/res/drawable-hdpi/presence_away.png +++ b/core/res/res/drawable-hdpi/presence_away.png diff --git a/core/res/res/drawable-hdpi/presence_busy.png b/core/res/res/drawable-hdpi/presence_busy.png Binary files differindex 391d1c9..caa977f 100644 --- a/core/res/res/drawable-hdpi/presence_busy.png +++ b/core/res/res/drawable-hdpi/presence_busy.png diff --git a/core/res/res/drawable-hdpi/presence_invisible.png b/core/res/res/drawable-hdpi/presence_invisible.png Binary files differindex 8157010..04a593f 100644 --- a/core/res/res/drawable-hdpi/presence_invisible.png +++ b/core/res/res/drawable-hdpi/presence_invisible.png diff --git a/core/res/res/drawable-hdpi/presence_offline.png b/core/res/res/drawable-hdpi/presence_offline.png Binary files differindex dc20b0f..a7ed2f7 100644 --- a/core/res/res/drawable-hdpi/presence_offline.png +++ b/core/res/res/drawable-hdpi/presence_offline.png diff --git a/core/res/res/drawable-hdpi/presence_online.png b/core/res/res/drawable-hdpi/presence_online.png Binary files differindex 7694446..0ac1b81 100644 --- a/core/res/res/drawable-hdpi/presence_online.png +++ b/core/res/res/drawable-hdpi/presence_online.png diff --git a/core/res/res/drawable-hdpi/presence_video_away.png b/core/res/res/drawable-hdpi/presence_video_away.png Binary files differindex 0e9e384..ad0a55f 100644 --- a/core/res/res/drawable-hdpi/presence_video_away.png +++ b/core/res/res/drawable-hdpi/presence_video_away.png diff --git a/core/res/res/drawable-hdpi/presence_video_busy.png b/core/res/res/drawable-hdpi/presence_video_busy.png Binary files differindex 5b01840..8876981 100644 --- a/core/res/res/drawable-hdpi/presence_video_busy.png +++ b/core/res/res/drawable-hdpi/presence_video_busy.png diff --git a/core/res/res/drawable-hdpi/presence_video_online.png b/core/res/res/drawable-hdpi/presence_video_online.png Binary files differindex fe285f5..d630a5b 100644 --- a/core/res/res/drawable-hdpi/presence_video_online.png +++ b/core/res/res/drawable-hdpi/presence_video_online.png diff --git a/core/res/res/drawable-hdpi/pressed_application_background_static.png b/core/res/res/drawable-hdpi/pressed_application_background_static.png Binary files differindex dae96e6..7e6066a 100644 --- a/core/res/res/drawable-hdpi/pressed_application_background_static.png +++ b/core/res/res/drawable-hdpi/pressed_application_background_static.png diff --git a/core/res/res/drawable-hdpi/progress_bg_holo_dark.9.png b/core/res/res/drawable-hdpi/progress_bg_holo_dark.9.png Binary files differindex a4c5b8b..5759cb3 100644 --- a/core/res/res/drawable-hdpi/progress_bg_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/progress_bg_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/progress_bg_holo_light.9.png b/core/res/res/drawable-hdpi/progress_bg_holo_light.9.png Binary files differindex 3f12166..0117f14 100644 --- a/core/res/res/drawable-hdpi/progress_bg_holo_light.9.png +++ b/core/res/res/drawable-hdpi/progress_bg_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/progress_primary_holo_dark.9.png b/core/res/res/drawable-hdpi/progress_primary_holo_dark.9.png Binary files differindex b73abba..286b611 100644 --- a/core/res/res/drawable-hdpi/progress_primary_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/progress_primary_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/progress_primary_holo_light.9.png b/core/res/res/drawable-hdpi/progress_primary_holo_light.9.png Binary files differindex 2f76a22..eeddd84 100644 --- a/core/res/res/drawable-hdpi/progress_primary_holo_light.9.png +++ b/core/res/res/drawable-hdpi/progress_primary_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/progress_secondary_holo_dark.9.png b/core/res/res/drawable-hdpi/progress_secondary_holo_dark.9.png Binary files differindex a75d0dd..ec002d7 100644 --- a/core/res/res/drawable-hdpi/progress_secondary_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/progress_secondary_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/progress_secondary_holo_light.9.png b/core/res/res/drawable-hdpi/progress_secondary_holo_light.9.png Binary files differindex 955b708..1313144 100644 --- a/core/res/res/drawable-hdpi/progress_secondary_holo_light.9.png +++ b/core/res/res/drawable-hdpi/progress_secondary_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate1.png b/core/res/res/drawable-hdpi/progressbar_indeterminate1.png Binary files differindex 197b34d..644434b 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate1.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate1.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate2.png b/core/res/res/drawable-hdpi/progressbar_indeterminate2.png Binary files differindex c6cf008..df603ae 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate2.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate2.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate3.png b/core/res/res/drawable-hdpi/progressbar_indeterminate3.png Binary files differindex bf129e0..f993dbd 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate3.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate3.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo1.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo1.png Binary files differindex 43f9e03..9f070c8 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo1.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo1.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo2.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo2.png Binary files differindex c6d95f3..9d529ab 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo2.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo2.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo3.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo3.png Binary files differindex 7829a3c..b00fa04 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo3.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo3.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo4.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo4.png Binary files differindex d0842f8..8f4b85d 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo4.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo4.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo5.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo5.png Binary files differindex e78b8f9..cace5a8 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo5.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo5.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo6.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo6.png Binary files differindex 5f9f6c32..bc3e07c 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo6.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo6.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo7.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo7.png Binary files differindex d39c4ae..5f18805 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo7.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo7.png diff --git a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo8.png b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo8.png Binary files differindex 94a6fae..c1ba839 100644 --- a/core/res/res/drawable-hdpi/progressbar_indeterminate_holo8.png +++ b/core/res/res/drawable-hdpi/progressbar_indeterminate_holo8.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_dark.9.png b/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_dark.9.png Binary files differindex 93a8417..1b3f847 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_light.9.png b/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_light.9.png Binary files differindex 61e856a..d6250d6 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_light.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowdown_left_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_dark.9.png b/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_dark.9.png Binary files differindex 7632a16..9567ed2 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_light.9.png b/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_light.9.png Binary files differindex 8e66ad1..bc0ad6e 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_light.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowdown_right_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_dark.9.png b/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_dark.9.png Binary files differindex 02618ca..d59b0f6 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_light.9.png b/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_light.9.png Binary files differindex 939050d..b84344f 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_light.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowup_left_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowup_left_right_holo_dark.9.png b/core/res/res/drawable-hdpi/quickactions_arrowup_left_right_holo_dark.9.png Binary files differindex f5cf487..f0f07de 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowup_left_right_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowup_left_right_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/quickactions_arrowup_right_holo_light.9.png b/core/res/res/drawable-hdpi/quickactions_arrowup_right_holo_light.9.png Binary files differindex 1237f26..45f20bd 100644 --- a/core/res/res/drawable-hdpi/quickactions_arrowup_right_holo_light.9.png +++ b/core/res/res/drawable-hdpi/quickactions_arrowup_right_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_dark_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_dark_am.9.png Binary files differindex cbd8c5c..7192372 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_dark_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_light_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_light_am.9.png Binary files differindex f7f4ba3..1218a5a 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_light_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_focused_light_am.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_dark_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_dark_am.9.png Binary files differindex a82e7ac..4749e12 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_dark_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_light_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_light_am.9.png Binary files differindex db4ce80..db467c8 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_light_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_normal_light_am.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_dark_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_dark_am.9.png Binary files differindex 4e40eda..0521907 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_dark_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_light_am.9.png b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_light_am.9.png Binary files differindex f1b7036..ef655ae 100644 --- a/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_light_am.9.png +++ b/core/res/res/drawable-hdpi/quickcontact_badge_overlay_pressed_light_am.9.png diff --git a/core/res/res/drawable-hdpi/radiobutton_off_background.png b/core/res/res/drawable-hdpi/radiobutton_off_background.png Binary files differindex 5ce33cd..e0041b0 100644 --- a/core/res/res/drawable-hdpi/radiobutton_off_background.png +++ b/core/res/res/drawable-hdpi/radiobutton_off_background.png diff --git a/core/res/res/drawable-hdpi/radiobutton_on_background.png b/core/res/res/drawable-hdpi/radiobutton_on_background.png Binary files differindex 0f46071..842bd8f 100644 --- a/core/res/res/drawable-hdpi/radiobutton_on_background.png +++ b/core/res/res/drawable-hdpi/radiobutton_on_background.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_half.png b/core/res/res/drawable-hdpi/rate_star_big_half.png Binary files differindex 4a91e87..9b213ae 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_half.png +++ b/core/res/res/drawable-hdpi/rate_star_big_half.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_half_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_big_half_holo_dark.png Binary files differindex 67890f0..8097f79 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_half_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_big_half_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_half_holo_light.png b/core/res/res/drawable-hdpi/rate_star_big_half_holo_light.png Binary files differindex e9ffa5b..388fa5c 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_half_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_big_half_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_off.png b/core/res/res/drawable-hdpi/rate_star_big_off.png Binary files differindex ae5883e..27fd1cf 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_off.png +++ b/core/res/res/drawable-hdpi/rate_star_big_off.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_off_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_big_off_holo_dark.png Binary files differindex cc08f88..340bc00 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_big_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_off_holo_light.png b/core/res/res/drawable-hdpi/rate_star_big_off_holo_light.png Binary files differindex ebdb47b..ec2a2e6 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_off_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_big_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_on.png b/core/res/res/drawable-hdpi/rate_star_big_on.png Binary files differindex 65c136e..ba27d7b 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_on.png +++ b/core/res/res/drawable-hdpi/rate_star_big_on.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_on_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_big_on_holo_dark.png Binary files differindex d594c46..d225fec 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_big_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_big_on_holo_light.png b/core/res/res/drawable-hdpi/rate_star_big_on_holo_light.png Binary files differindex b4fd29b..0dae976 100644 --- a/core/res/res/drawable-hdpi/rate_star_big_on_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_big_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_half.png b/core/res/res/drawable-hdpi/rate_star_med_half.png Binary files differindex a436980..9046f28 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_half.png +++ b/core/res/res/drawable-hdpi/rate_star_med_half.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_half_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_med_half_holo_dark.png Binary files differindex 65f673d..4fab3f1 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_half_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_med_half_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_half_holo_light.png b/core/res/res/drawable-hdpi/rate_star_med_half_holo_light.png Binary files differindex d1756c7..abf2818 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_half_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_med_half_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_off.png b/core/res/res/drawable-hdpi/rate_star_med_off.png Binary files differindex 981aabe..54ea45e 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_off.png +++ b/core/res/res/drawable-hdpi/rate_star_med_off.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_off_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_med_off_holo_dark.png Binary files differindex b8bca18..b504633 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_med_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_off_holo_light.png b/core/res/res/drawable-hdpi/rate_star_med_off_holo_light.png Binary files differindex 4605a42..3fb44c4 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_off_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_med_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_on.png b/core/res/res/drawable-hdpi/rate_star_med_on.png Binary files differindex 320c14f..eca2a9b 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_on.png +++ b/core/res/res/drawable-hdpi/rate_star_med_on.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_on_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_med_on_holo_dark.png Binary files differindex 1b7fe77..ed704c9 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_med_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_med_on_holo_light.png b/core/res/res/drawable-hdpi/rate_star_med_on_holo_light.png Binary files differindex 41f33a8..3b0b298 100644 --- a/core/res/res/drawable-hdpi/rate_star_med_on_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_med_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_half.png b/core/res/res/drawable-hdpi/rate_star_small_half.png Binary files differindex 0b8974e..4172d86 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_half.png +++ b/core/res/res/drawable-hdpi/rate_star_small_half.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_half_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_small_half_holo_dark.png Binary files differindex 6cd59ea..d3c7d75 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_half_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_small_half_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_half_holo_light.png b/core/res/res/drawable-hdpi/rate_star_small_half_holo_light.png Binary files differindex e03711e..ba0f634 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_half_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_small_half_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_off.png b/core/res/res/drawable-hdpi/rate_star_small_off.png Binary files differindex 7ae305f..50c35fb 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_off.png +++ b/core/res/res/drawable-hdpi/rate_star_small_off.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_off_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_small_off_holo_dark.png Binary files differindex a5ee171..b187d52c 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_small_off_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_off_holo_light.png b/core/res/res/drawable-hdpi/rate_star_small_off_holo_light.png Binary files differindex c7fb673..4f4d6ce 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_off_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_small_off_holo_light.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_on.png b/core/res/res/drawable-hdpi/rate_star_small_on.png Binary files differindex ffa5258..9462498 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_on.png +++ b/core/res/res/drawable-hdpi/rate_star_small_on.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_on_holo_dark.png b/core/res/res/drawable-hdpi/rate_star_small_on_holo_dark.png Binary files differindex 134a38b..941d0b9 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/rate_star_small_on_holo_dark.png diff --git a/core/res/res/drawable-hdpi/rate_star_small_on_holo_light.png b/core/res/res/drawable-hdpi/rate_star_small_on_holo_light.png Binary files differindex 0e7c8a9..73b0c78 100644 --- a/core/res/res/drawable-hdpi/rate_star_small_on_holo_light.png +++ b/core/res/res/drawable-hdpi/rate_star_small_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/recent_dialog_background.9.png b/core/res/res/drawable-hdpi/recent_dialog_background.9.png Binary files differindex bebcc40..383c2a4 100644 --- a/core/res/res/drawable-hdpi/recent_dialog_background.9.png +++ b/core/res/res/drawable-hdpi/recent_dialog_background.9.png diff --git a/core/res/res/drawable-hdpi/reticle.png b/core/res/res/drawable-hdpi/reticle.png Binary files differindex a3e8c1b..7ee8cde 100644 --- a/core/res/res/drawable-hdpi/reticle.png +++ b/core/res/res/drawable-hdpi/reticle.png diff --git a/core/res/res/drawable-hdpi/scrollbar_handle_accelerated_anim2.9.png b/core/res/res/drawable-hdpi/scrollbar_handle_accelerated_anim2.9.png Binary files differindex fb9e7aa..5da1f64 100644 --- a/core/res/res/drawable-hdpi/scrollbar_handle_accelerated_anim2.9.png +++ b/core/res/res/drawable-hdpi/scrollbar_handle_accelerated_anim2.9.png diff --git a/core/res/res/drawable-hdpi/scrollbar_handle_holo_dark.9.png b/core/res/res/drawable-hdpi/scrollbar_handle_holo_dark.9.png Binary files differindex 3c4a50e..5719157 100644 --- a/core/res/res/drawable-hdpi/scrollbar_handle_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/scrollbar_handle_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/scrollbar_handle_holo_light.9.png b/core/res/res/drawable-hdpi/scrollbar_handle_holo_light.9.png Binary files differindex 222c776..9cc3a82 100644 --- a/core/res/res/drawable-hdpi/scrollbar_handle_holo_light.9.png +++ b/core/res/res/drawable-hdpi/scrollbar_handle_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/scrollbar_handle_horizontal.9.png b/core/res/res/drawable-hdpi/scrollbar_handle_horizontal.9.png Binary files differindex cd206e2..9b083ad 100644 --- a/core/res/res/drawable-hdpi/scrollbar_handle_horizontal.9.png +++ b/core/res/res/drawable-hdpi/scrollbar_handle_horizontal.9.png diff --git a/core/res/res/drawable-hdpi/scrollbar_handle_vertical.9.png b/core/res/res/drawable-hdpi/scrollbar_handle_vertical.9.png Binary files differindex 3ec0791..9e1d5cc 100644 --- a/core/res/res/drawable-hdpi/scrollbar_handle_vertical.9.png +++ b/core/res/res/drawable-hdpi/scrollbar_handle_vertical.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_disabled_holo.png b/core/res/res/drawable-hdpi/scrubber_control_disabled_holo.png Binary files differindex 370242a..100ce24 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_disabled_holo.png +++ b/core/res/res/drawable-hdpi/scrubber_control_disabled_holo.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_focused_holo.png b/core/res/res/drawable-hdpi/scrubber_control_focused_holo.png Binary files differindex eea2c3e..70c7b3f 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_focused_holo.png +++ b/core/res/res/drawable-hdpi/scrubber_control_focused_holo.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_000.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_000.png Binary files differindex 281923e..7dd062e 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_000.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_000.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_001.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_001.png Binary files differindex e91d4fb..e792157 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_001.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_001.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_002.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_002.png Binary files differindex 15baded..32618a2 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_002.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_002.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_003.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_003.png Binary files differindex 3d5899f..19ab07a 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_003.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_003.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_004.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_004.png Binary files differindex e2277bd..cd26da0 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_004.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_004.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_005.png b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_005.png Binary files differindex b502e22..e063037 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_005.png +++ b/core/res/res/drawable-hdpi/scrubber_control_from_pressed_mtrl_005.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_normal_holo.png b/core/res/res/drawable-hdpi/scrubber_control_normal_holo.png Binary files differindex 3c98ee9..d8d6d5a 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_normal_holo.png +++ b/core/res/res/drawable-hdpi/scrubber_control_normal_holo.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_off_mtrl_alpha.png b/core/res/res/drawable-hdpi/scrubber_control_off_mtrl_alpha.png Binary files differindex 5a99528..4efe298 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_off_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/scrubber_control_off_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_off_pressed_mtrl_alpha.png b/core/res/res/drawable-hdpi/scrubber_control_off_pressed_mtrl_alpha.png Binary files differindex 10ce2bc..f621a1e 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_off_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/scrubber_control_off_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_on_mtrl_alpha.png b/core/res/res/drawable-hdpi/scrubber_control_on_mtrl_alpha.png Binary files differindex 79de664..f4d47c1 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_on_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/scrubber_control_on_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_on_pressed_mtrl_alpha.png b/core/res/res/drawable-hdpi/scrubber_control_on_pressed_mtrl_alpha.png Binary files differindex 0678dbb..e743a59 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/scrubber_control_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_pressed_holo.png b/core/res/res/drawable-hdpi/scrubber_control_pressed_holo.png Binary files differindex 4dc8999..5b5bfcd 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_pressed_holo.png +++ b/core/res/res/drawable-hdpi/scrubber_control_pressed_holo.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_000.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_000.png Binary files differindex a70be2c..543dec3 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_000.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_000.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_001.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_001.png Binary files differindex 9442316..c6747f3 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_001.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_001.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_002.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_002.png Binary files differindex 33db4a88..a61371b 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_002.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_002.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_003.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_003.png Binary files differindex 4e1cd16..3355831 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_003.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_003.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_004.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_004.png Binary files differindex d5254f4..3a5d634 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_004.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_004.png diff --git a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_005.png b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_005.png Binary files differindex 7aa0a3e..9930b3a 100644 --- a/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_005.png +++ b/core/res/res/drawable-hdpi/scrubber_control_to_pressed_mtrl_005.png diff --git a/core/res/res/drawable-hdpi/scrubber_primary_holo.9.png b/core/res/res/drawable-hdpi/scrubber_primary_holo.9.png Binary files differindex 260a0a5..6421f1b 100644 --- a/core/res/res/drawable-hdpi/scrubber_primary_holo.9.png +++ b/core/res/res/drawable-hdpi/scrubber_primary_holo.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_primary_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/scrubber_primary_mtrl_alpha.9.png Binary files differindex 4cfb1a7..38a6aaa 100644 --- a/core/res/res/drawable-hdpi/scrubber_primary_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/scrubber_primary_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_secondary_holo.9.png b/core/res/res/drawable-hdpi/scrubber_secondary_holo.9.png Binary files differindex 09f2d58..54054f1 100644 --- a/core/res/res/drawable-hdpi/scrubber_secondary_holo.9.png +++ b/core/res/res/drawable-hdpi/scrubber_secondary_holo.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_track_holo_dark.9.png b/core/res/res/drawable-hdpi/scrubber_track_holo_dark.9.png Binary files differindex 0c0ccda..531c302 100644 --- a/core/res/res/drawable-hdpi/scrubber_track_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/scrubber_track_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_track_holo_light.9.png b/core/res/res/drawable-hdpi/scrubber_track_holo_light.9.png Binary files differindex 90528b1..4decc80 100644 --- a/core/res/res/drawable-hdpi/scrubber_track_holo_light.9.png +++ b/core/res/res/drawable-hdpi/scrubber_track_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/scrubber_track_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/scrubber_track_mtrl_alpha.9.png Binary files differindex 32ddf7a..db44b8a 100644 --- a/core/res/res/drawable-hdpi/scrubber_track_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/scrubber_track_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/search_dropdown_background.9.png b/core/res/res/drawable-hdpi/search_dropdown_background.9.png Binary files differindex e6945db..9df1f1d 100644 --- a/core/res/res/drawable-hdpi/search_dropdown_background.9.png +++ b/core/res/res/drawable-hdpi/search_dropdown_background.9.png diff --git a/core/res/res/drawable-hdpi/search_plate.9.png b/core/res/res/drawable-hdpi/search_plate.9.png Binary files differindex 561c9fa..1299d03 100644 --- a/core/res/res/drawable-hdpi/search_plate.9.png +++ b/core/res/res/drawable-hdpi/search_plate.9.png diff --git a/core/res/res/drawable-hdpi/search_plate_global.9.png b/core/res/res/drawable-hdpi/search_plate_global.9.png Binary files differindex 32c6dc3..fc403c0 100644 --- a/core/res/res/drawable-hdpi/search_plate_global.9.png +++ b/core/res/res/drawable-hdpi/search_plate_global.9.png diff --git a/core/res/res/drawable-hdpi/seek_thumb_normal.png b/core/res/res/drawable-hdpi/seek_thumb_normal.png Binary files differindex cc83a7d..27556cb 100644 --- a/core/res/res/drawable-hdpi/seek_thumb_normal.png +++ b/core/res/res/drawable-hdpi/seek_thumb_normal.png diff --git a/core/res/res/drawable-hdpi/seek_thumb_pressed.png b/core/res/res/drawable-hdpi/seek_thumb_pressed.png Binary files differindex 15f79ea..a9ceb30 100644 --- a/core/res/res/drawable-hdpi/seek_thumb_pressed.png +++ b/core/res/res/drawable-hdpi/seek_thumb_pressed.png diff --git a/core/res/res/drawable-hdpi/seek_thumb_selected.png b/core/res/res/drawable-hdpi/seek_thumb_selected.png Binary files differindex 8a7cf68..31c296f 100644 --- a/core/res/res/drawable-hdpi/seek_thumb_selected.png +++ b/core/res/res/drawable-hdpi/seek_thumb_selected.png diff --git a/core/res/res/drawable-hdpi/settings_header_raw.9.png b/core/res/res/drawable-hdpi/settings_header_raw.9.png Binary files differindex 6857c0f..ad5c738 100644 --- a/core/res/res/drawable-hdpi/settings_header_raw.9.png +++ b/core/res/res/drawable-hdpi/settings_header_raw.9.png diff --git a/core/res/res/drawable-hdpi/sim_dark_blue.9.png b/core/res/res/drawable-hdpi/sim_dark_blue.9.png Binary files differindex b991535..a1df4ee 100755 --- a/core/res/res/drawable-hdpi/sim_dark_blue.9.png +++ b/core/res/res/drawable-hdpi/sim_dark_blue.9.png diff --git a/core/res/res/drawable-hdpi/sim_dark_green.9.png b/core/res/res/drawable-hdpi/sim_dark_green.9.png Binary files differindex c8de61d..92e43c0 100755 --- a/core/res/res/drawable-hdpi/sim_dark_green.9.png +++ b/core/res/res/drawable-hdpi/sim_dark_green.9.png diff --git a/core/res/res/drawable-hdpi/sim_dark_orange.9.png b/core/res/res/drawable-hdpi/sim_dark_orange.9.png Binary files differindex 10347e8..7814e7d 100755 --- a/core/res/res/drawable-hdpi/sim_dark_orange.9.png +++ b/core/res/res/drawable-hdpi/sim_dark_orange.9.png diff --git a/core/res/res/drawable-hdpi/sim_dark_purple.9.png b/core/res/res/drawable-hdpi/sim_dark_purple.9.png Binary files differindex ac4ee01..b6bbdc5 100755 --- a/core/res/res/drawable-hdpi/sim_dark_purple.9.png +++ b/core/res/res/drawable-hdpi/sim_dark_purple.9.png diff --git a/core/res/res/drawable-hdpi/sim_light_blue.9.png b/core/res/res/drawable-hdpi/sim_light_blue.9.png Binary files differindex b2c5581..f5597d0 100755 --- a/core/res/res/drawable-hdpi/sim_light_blue.9.png +++ b/core/res/res/drawable-hdpi/sim_light_blue.9.png diff --git a/core/res/res/drawable-hdpi/sim_light_green.9.png b/core/res/res/drawable-hdpi/sim_light_green.9.png Binary files differindex 4d29c81..15e318f 100755 --- a/core/res/res/drawable-hdpi/sim_light_green.9.png +++ b/core/res/res/drawable-hdpi/sim_light_green.9.png diff --git a/core/res/res/drawable-hdpi/sim_light_orange.9.png b/core/res/res/drawable-hdpi/sim_light_orange.9.png Binary files differindex 68c6c2f..58d4e03 100755 --- a/core/res/res/drawable-hdpi/sim_light_orange.9.png +++ b/core/res/res/drawable-hdpi/sim_light_orange.9.png diff --git a/core/res/res/drawable-hdpi/sim_light_purple.9.png b/core/res/res/drawable-hdpi/sim_light_purple.9.png Binary files differindex 4deb8dc..6f33b47 100755 --- a/core/res/res/drawable-hdpi/sim_light_purple.9.png +++ b/core/res/res/drawable-hdpi/sim_light_purple.9.png diff --git a/core/res/res/drawable-hdpi/spinner_16_inner_holo.png b/core/res/res/drawable-hdpi/spinner_16_inner_holo.png Binary files differindex 383543a..c370726 100644 --- a/core/res/res/drawable-hdpi/spinner_16_inner_holo.png +++ b/core/res/res/drawable-hdpi/spinner_16_inner_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_16_outer_holo.png b/core/res/res/drawable-hdpi/spinner_16_outer_holo.png Binary files differindex ffdb78a..6ed6403 100644 --- a/core/res/res/drawable-hdpi/spinner_16_outer_holo.png +++ b/core/res/res/drawable-hdpi/spinner_16_outer_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_48_inner_holo.png b/core/res/res/drawable-hdpi/spinner_48_inner_holo.png Binary files differindex c8358e9..df5dd75 100644 --- a/core/res/res/drawable-hdpi/spinner_48_inner_holo.png +++ b/core/res/res/drawable-hdpi/spinner_48_inner_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_48_outer_holo.png b/core/res/res/drawable-hdpi/spinner_48_outer_holo.png Binary files differindex f62f74b..863f429 100644 --- a/core/res/res/drawable-hdpi/spinner_48_outer_holo.png +++ b/core/res/res/drawable-hdpi/spinner_48_outer_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_76_inner_holo.png b/core/res/res/drawable-hdpi/spinner_76_inner_holo.png Binary files differindex c29ab07..66f658d 100644 --- a/core/res/res/drawable-hdpi/spinner_76_inner_holo.png +++ b/core/res/res/drawable-hdpi/spinner_76_inner_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_76_outer_holo.png b/core/res/res/drawable-hdpi/spinner_76_outer_holo.png Binary files differindex 287afc6..f27c76b 100644 --- a/core/res/res/drawable-hdpi/spinner_76_outer_holo.png +++ b/core/res/res/drawable-hdpi/spinner_76_outer_holo.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_default_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_default_holo_dark_am.9.png Binary files differindex 88f8765..6f6ec0d 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_default_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_default_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_default_holo_light_am.9.png Binary files differindex fa68a13..158b8e1 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_default_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_default_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_dark_am.9.png Binary files differindex 78c63cb..e351acb 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_light_am.9.png Binary files differindex e13a9f8..9b6e103 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_focused_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_focused_holo_dark_am.9.png Binary files differindex 26d2e16..e1d86cc 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_focused_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_focused_holo_light_am.9.png Binary files differindex 00ae92a..2583da2 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_focused_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_dark_am.9.png Binary files differindex 66f0d88..02efbce 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_light_am.9.png Binary files differindex 10af163..7974a9f 100644 --- a/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_ab_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_black_16.png b/core/res/res/drawable-hdpi/spinner_black_16.png Binary files differindex ef5ca35..485556c 100644 --- a/core/res/res/drawable-hdpi/spinner_black_16.png +++ b/core/res/res/drawable-hdpi/spinner_black_16.png diff --git a/core/res/res/drawable-hdpi/spinner_black_20.png b/core/res/res/drawable-hdpi/spinner_black_20.png Binary files differindex d938931..7f47ffd 100644 --- a/core/res/res/drawable-hdpi/spinner_black_20.png +++ b/core/res/res/drawable-hdpi/spinner_black_20.png diff --git a/core/res/res/drawable-hdpi/spinner_black_48.png b/core/res/res/drawable-hdpi/spinner_black_48.png Binary files differindex 9d1efb7..f523159 100644 --- a/core/res/res/drawable-hdpi/spinner_black_48.png +++ b/core/res/res/drawable-hdpi/spinner_black_48.png diff --git a/core/res/res/drawable-hdpi/spinner_black_76.png b/core/res/res/drawable-hdpi/spinner_black_76.png Binary files differindex 0d90881..cbd862b 100644 --- a/core/res/res/drawable-hdpi/spinner_black_76.png +++ b/core/res/res/drawable-hdpi/spinner_black_76.png diff --git a/core/res/res/drawable-hdpi/spinner_default_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_default_holo_dark_am.9.png Binary files differindex 78e583c..0c83851 100644 --- a/core/res/res/drawable-hdpi/spinner_default_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_default_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_default_holo_light_am.9.png Binary files differindex fb54f22..c2bddb7 100644 --- a/core/res/res/drawable-hdpi/spinner_default_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_default_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_disabled_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_disabled_holo_dark_am.9.png Binary files differindex 210832c..fa90cc6 100644 --- a/core/res/res/drawable-hdpi/spinner_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_disabled_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_disabled_holo_light_am.9.png Binary files differindex d0d9419..5b163f0 100644 --- a/core/res/res/drawable-hdpi/spinner_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_dropdown_background_down.9.png b/core/res/res/drawable-hdpi/spinner_dropdown_background_down.9.png Binary files differindex 566543d..a5ddc56 100644 --- a/core/res/res/drawable-hdpi/spinner_dropdown_background_down.9.png +++ b/core/res/res/drawable-hdpi/spinner_dropdown_background_down.9.png diff --git a/core/res/res/drawable-hdpi/spinner_dropdown_background_up.9.png b/core/res/res/drawable-hdpi/spinner_dropdown_background_up.9.png Binary files differindex 7b883cc..08bf5c3 100644 --- a/core/res/res/drawable-hdpi/spinner_dropdown_background_up.9.png +++ b/core/res/res/drawable-hdpi/spinner_dropdown_background_up.9.png diff --git a/core/res/res/drawable-hdpi/spinner_focused_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_focused_holo_dark_am.9.png Binary files differindex be365ec..8dd727f 100644 --- a/core/res/res/drawable-hdpi/spinner_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_focused_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_focused_holo_light_am.9.png Binary files differindex cd7b803..c582248 100644 --- a/core/res/res/drawable-hdpi/spinner_focused_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_normal.9.png b/core/res/res/drawable-hdpi/spinner_normal.9.png Binary files differindex b1f25f0..40a4667 100644 --- a/core/res/res/drawable-hdpi/spinner_normal.9.png +++ b/core/res/res/drawable-hdpi/spinner_normal.9.png diff --git a/core/res/res/drawable-hdpi/spinner_press.9.png b/core/res/res/drawable-hdpi/spinner_press.9.png Binary files differindex 6aab271..11d0c5d 100644 --- a/core/res/res/drawable-hdpi/spinner_press.9.png +++ b/core/res/res/drawable-hdpi/spinner_press.9.png diff --git a/core/res/res/drawable-hdpi/spinner_pressed_holo_dark_am.9.png b/core/res/res/drawable-hdpi/spinner_pressed_holo_dark_am.9.png Binary files differindex aca9435..986ca1f 100644 --- a/core/res/res/drawable-hdpi/spinner_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_pressed_holo_light_am.9.png b/core/res/res/drawable-hdpi/spinner_pressed_holo_light_am.9.png Binary files differindex eafd44a..884cba7 100644 --- a/core/res/res/drawable-hdpi/spinner_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-hdpi/spinner_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-hdpi/spinner_select.9.png b/core/res/res/drawable-hdpi/spinner_select.9.png Binary files differindex 9024d07..11f6b7b 100644 --- a/core/res/res/drawable-hdpi/spinner_select.9.png +++ b/core/res/res/drawable-hdpi/spinner_select.9.png diff --git a/core/res/res/drawable-hdpi/spinner_white_16.png b/core/res/res/drawable-hdpi/spinner_white_16.png Binary files differindex 32fa447..6857148 100644 --- a/core/res/res/drawable-hdpi/spinner_white_16.png +++ b/core/res/res/drawable-hdpi/spinner_white_16.png diff --git a/core/res/res/drawable-hdpi/spinner_white_48.png b/core/res/res/drawable-hdpi/spinner_white_48.png Binary files differindex 31fa267..b5620e0 100644 --- a/core/res/res/drawable-hdpi/spinner_white_48.png +++ b/core/res/res/drawable-hdpi/spinner_white_48.png diff --git a/core/res/res/drawable-hdpi/spinner_white_76.png b/core/res/res/drawable-hdpi/spinner_white_76.png Binary files differindex 9f63292..5c4bbdb 100644 --- a/core/res/res/drawable-hdpi/spinner_white_76.png +++ b/core/res/res/drawable-hdpi/spinner_white_76.png diff --git a/core/res/res/drawable-hdpi/star_big_off.png b/core/res/res/drawable-hdpi/star_big_off.png Binary files differindex ee6c942..dac93c7 100644 --- a/core/res/res/drawable-hdpi/star_big_off.png +++ b/core/res/res/drawable-hdpi/star_big_off.png diff --git a/core/res/res/drawable-hdpi/star_big_on.png b/core/res/res/drawable-hdpi/star_big_on.png Binary files differindex 17b4d73..c35be0a 100644 --- a/core/res/res/drawable-hdpi/star_big_on.png +++ b/core/res/res/drawable-hdpi/star_big_on.png diff --git a/core/res/res/drawable-hdpi/star_off.png b/core/res/res/drawable-hdpi/star_off.png Binary files differindex e1897c7..2445937 100644 --- a/core/res/res/drawable-hdpi/star_off.png +++ b/core/res/res/drawable-hdpi/star_off.png diff --git a/core/res/res/drawable-hdpi/star_on.png b/core/res/res/drawable-hdpi/star_on.png Binary files differindex b7440ea..8894c9b 100644 --- a/core/res/res/drawable-hdpi/star_on.png +++ b/core/res/res/drawable-hdpi/star_on.png diff --git a/core/res/res/drawable-hdpi/stat_ecb_mode.png b/core/res/res/drawable-hdpi/stat_ecb_mode.png Binary files differindex 91e6c1e..e1c84ee 100644 --- a/core/res/res/drawable-hdpi/stat_ecb_mode.png +++ b/core/res/res/drawable-hdpi/stat_ecb_mode.png diff --git a/core/res/res/drawable-hdpi/stat_notify_car_mode.png b/core/res/res/drawable-hdpi/stat_notify_car_mode.png Binary files differindex bc6137d..9412334 100644 --- a/core/res/res/drawable-hdpi/stat_notify_car_mode.png +++ b/core/res/res/drawable-hdpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-hdpi/stat_notify_chat.png b/core/res/res/drawable-hdpi/stat_notify_chat.png Binary files differindex 32ffdf1..932fff7 100644 --- a/core/res/res/drawable-hdpi/stat_notify_chat.png +++ b/core/res/res/drawable-hdpi/stat_notify_chat.png diff --git a/core/res/res/drawable-hdpi/stat_notify_disk_full.png b/core/res/res/drawable-hdpi/stat_notify_disk_full.png Binary files differindex c696a5b..0bff42c 100644 --- a/core/res/res/drawable-hdpi/stat_notify_disk_full.png +++ b/core/res/res/drawable-hdpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-hdpi/stat_notify_email_generic.png b/core/res/res/drawable-hdpi/stat_notify_email_generic.png Binary files differindex c19d667..6152ab0 100644 --- a/core/res/res/drawable-hdpi/stat_notify_email_generic.png +++ b/core/res/res/drawable-hdpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-hdpi/stat_notify_error.png b/core/res/res/drawable-hdpi/stat_notify_error.png Binary files differindex deb3872..4d07efb 100644 --- a/core/res/res/drawable-hdpi/stat_notify_error.png +++ b/core/res/res/drawable-hdpi/stat_notify_error.png diff --git a/core/res/res/drawable-hdpi/stat_notify_gmail.png b/core/res/res/drawable-hdpi/stat_notify_gmail.png Binary files differindex f205a7c..1b8d113 100644 --- a/core/res/res/drawable-hdpi/stat_notify_gmail.png +++ b/core/res/res/drawable-hdpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-hdpi/stat_notify_missed_call.png b/core/res/res/drawable-hdpi/stat_notify_missed_call.png Binary files differindex f205471..3b00679 100644 --- a/core/res/res/drawable-hdpi/stat_notify_missed_call.png +++ b/core/res/res/drawable-hdpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-hdpi/stat_notify_more.png b/core/res/res/drawable-hdpi/stat_notify_more.png Binary files differindex f54b3d4..d22e18d 100644 --- a/core/res/res/drawable-hdpi/stat_notify_more.png +++ b/core/res/res/drawable-hdpi/stat_notify_more.png diff --git a/core/res/res/drawable-hdpi/stat_notify_rssi_in_range.png b/core/res/res/drawable-hdpi/stat_notify_rssi_in_range.png Binary files differindex 74977e6..c0e35b3 100644 --- a/core/res/res/drawable-hdpi/stat_notify_rssi_in_range.png +++ b/core/res/res/drawable-hdpi/stat_notify_rssi_in_range.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sdcard.png b/core/res/res/drawable-hdpi/stat_notify_sdcard.png Binary files differindex 5892d38..5a9e265 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sdcard.png +++ b/core/res/res/drawable-hdpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-hdpi/stat_notify_sdcard_prepare.png Binary files differindex 1c101ea..cd021c7 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sdcard_prepare.png +++ b/core/res/res/drawable-hdpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-hdpi/stat_notify_sdcard_usb.png Binary files differindex 901eac4..dd66c8a 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sdcard_usb.png +++ b/core/res/res/drawable-hdpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-hdpi/stat_notify_sim_toolkit.png Binary files differindex a357251..9aacb15 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sim_toolkit.png +++ b/core/res/res/drawable-hdpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sync.png b/core/res/res/drawable-hdpi/stat_notify_sync.png Binary files differindex 90b39c9..940a778 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sync.png +++ b/core/res/res/drawable-hdpi/stat_notify_sync.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sync_anim0.png b/core/res/res/drawable-hdpi/stat_notify_sync_anim0.png Binary files differindex 90b39c9..940a778 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sync_anim0.png +++ b/core/res/res/drawable-hdpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-hdpi/stat_notify_sync_error.png b/core/res/res/drawable-hdpi/stat_notify_sync_error.png Binary files differindex 074cdee..7b55096 100644 --- a/core/res/res/drawable-hdpi/stat_notify_sync_error.png +++ b/core/res/res/drawable-hdpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-hdpi/stat_notify_voicemail.png b/core/res/res/drawable-hdpi/stat_notify_voicemail.png Binary files differindex 896d1ce..144da23 100644 --- a/core/res/res/drawable-hdpi/stat_notify_voicemail.png +++ b/core/res/res/drawable-hdpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_0.png b/core/res/res/drawable-hdpi/stat_sys_battery_0.png Binary files differindex 160a6f7..1305dee 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_0.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_0.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_10.png b/core/res/res/drawable-hdpi/stat_sys_battery_10.png Binary files differindex 4486553..3dba85f 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_10.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_10.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_100.png b/core/res/res/drawable-hdpi/stat_sys_battery_100.png Binary files differindex fa1624c..68ef88f 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_100.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_100.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_15.png b/core/res/res/drawable-hdpi/stat_sys_battery_15.png Binary files differindex 5d5ac67..005bdd3 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_15.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_15.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_20.png b/core/res/res/drawable-hdpi/stat_sys_battery_20.png Binary files differindex c8f9c92..626b39a 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_20.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_20.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_28.png b/core/res/res/drawable-hdpi/stat_sys_battery_28.png Binary files differindex a35ded9..0670789 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_28.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_28.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_40.png b/core/res/res/drawable-hdpi/stat_sys_battery_40.png Binary files differindex 441bbfb..de4573b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_40.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_40.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_43.png b/core/res/res/drawable-hdpi/stat_sys_battery_43.png Binary files differindex b0ea53a..11202ae 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_43.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_43.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_57.png b/core/res/res/drawable-hdpi/stat_sys_battery_57.png Binary files differindex f3c1bd4..38835b4 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_57.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_57.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_60.png b/core/res/res/drawable-hdpi/stat_sys_battery_60.png Binary files differindex d9467ed..676e89b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_60.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_60.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_71.png b/core/res/res/drawable-hdpi/stat_sys_battery_71.png Binary files differindex 6b3cb32..0583413 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_71.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_71.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_80.png b/core/res/res/drawable-hdpi/stat_sys_battery_80.png Binary files differindex e3f4805..03199db 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_80.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_80.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_85.png b/core/res/res/drawable-hdpi/stat_sys_battery_85.png Binary files differindex da3ea72..0ea0b69 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_85.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_85.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim0.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim0.png Binary files differindex f9f2baf..a420398 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim0.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim0.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim1.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim1.png Binary files differindex 997feb3..aa0921ad1 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim1.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim1.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim100.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim100.png Binary files differindex 2bdd813..6370386 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim100.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim100.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim15.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim15.png Binary files differindex 52b8470..ddf9f3b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim15.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim15.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim2.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim2.png Binary files differindex 426a66b..e13b689 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim2.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim2.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim28.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim28.png Binary files differindex 620db05..2f24fff 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim28.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim28.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim3.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim3.png Binary files differindex 21582ca..12664bc 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim3.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim3.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim4.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim4.png Binary files differindex 8a94763..7a861e5 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim4.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim4.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim43.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim43.png Binary files differindex bb29a6a..eb277fb 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim43.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim43.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim5.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim5.png Binary files differindex fad0d65..dba8c54 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim5.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim5.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim57.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim57.png Binary files differindex a417aa3..5821e22 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim57.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim57.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim71.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim71.png Binary files differindex ab6ed3f..e0d7414 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim71.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim71.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim85.png b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim85.png Binary files differindex c9961f1..b719ba4 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim85.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_charge_anim85.png diff --git a/core/res/res/drawable-hdpi/stat_sys_battery_unknown.png b/core/res/res/drawable-hdpi/stat_sys_battery_unknown.png Binary files differindex 368e7d9..caa0192 100644 --- a/core/res/res/drawable-hdpi/stat_sys_battery_unknown.png +++ b/core/res/res/drawable-hdpi/stat_sys_battery_unknown.png diff --git a/core/res/res/drawable-hdpi/stat_sys_certificate_info.png b/core/res/res/drawable-hdpi/stat_sys_certificate_info.png Binary files differindex 3be426c..5b73a22 100644 --- a/core/res/res/drawable-hdpi/stat_sys_certificate_info.png +++ b/core/res/res/drawable-hdpi/stat_sys_certificate_info.png diff --git a/core/res/res/drawable-hdpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-hdpi/stat_sys_data_bluetooth.png Binary files differindex 8e08f1c..ae754fc 100644 --- a/core/res/res/drawable-hdpi/stat_sys_data_bluetooth.png +++ b/core/res/res/drawable-hdpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-hdpi/stat_sys_data_usb.png b/core/res/res/drawable-hdpi/stat_sys_data_usb.png Binary files differindex f14f908..9367df4 100644 --- a/core/res/res/drawable-hdpi/stat_sys_data_usb.png +++ b/core/res/res/drawable-hdpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_3_fully.png b/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_3_fully.png Binary files differindex cb08eed..3e7373d 100644 --- a/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_3_fully.png +++ b/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_3_fully.png diff --git a/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_disconnected.png b/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_disconnected.png Binary files differindex ea065c3..fdfca20 100644 --- a/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_disconnected.png +++ b/core/res/res/drawable-hdpi/stat_sys_data_wimax_signal_disconnected.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim0.png b/core/res/res/drawable-hdpi/stat_sys_download_anim0.png Binary files differindex 910de29..e34a67b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim0.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim1.png b/core/res/res/drawable-hdpi/stat_sys_download_anim1.png Binary files differindex 0b1aa34..9825833 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim1.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim2.png b/core/res/res/drawable-hdpi/stat_sys_download_anim2.png Binary files differindex bc1877d..e6d6a37 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim2.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim3.png b/core/res/res/drawable-hdpi/stat_sys_download_anim3.png Binary files differindex 9f41092..7cbe734 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim3.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim4.png b/core/res/res/drawable-hdpi/stat_sys_download_anim4.png Binary files differindex 5fa6305..7de2096 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim4.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-hdpi/stat_sys_download_anim5.png b/core/res/res/drawable-hdpi/stat_sys_download_anim5.png Binary files differindex 703759a..d6c3225 100644 --- a/core/res/res/drawable-hdpi/stat_sys_download_anim5.png +++ b/core/res/res/drawable-hdpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-hdpi/stat_sys_gps_on.png b/core/res/res/drawable-hdpi/stat_sys_gps_on.png Binary files differindex e0f7740..a3e8e08 100644 --- a/core/res/res/drawable-hdpi/stat_sys_gps_on.png +++ b/core/res/res/drawable-hdpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-hdpi/stat_sys_headset.png b/core/res/res/drawable-hdpi/stat_sys_headset.png Binary files differindex 7a70aea..9fb232d 100644 --- a/core/res/res/drawable-hdpi/stat_sys_headset.png +++ b/core/res/res/drawable-hdpi/stat_sys_headset.png diff --git a/core/res/res/drawable-hdpi/stat_sys_phone_call.png b/core/res/res/drawable-hdpi/stat_sys_phone_call.png Binary files differindex 9b5f075..5aafe29 100644 --- a/core/res/res/drawable-hdpi/stat_sys_phone_call.png +++ b/core/res/res/drawable-hdpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-hdpi/stat_sys_phone_call_forward.png b/core/res/res/drawable-hdpi/stat_sys_phone_call_forward.png Binary files differindex 032f8f1..98907fe 100644 --- a/core/res/res/drawable-hdpi/stat_sys_phone_call_forward.png +++ b/core/res/res/drawable-hdpi/stat_sys_phone_call_forward.png diff --git a/core/res/res/drawable-hdpi/stat_sys_phone_call_on_hold.png b/core/res/res/drawable-hdpi/stat_sys_phone_call_on_hold.png Binary files differindex 5b0a68d..0913556 100644 --- a/core/res/res/drawable-hdpi/stat_sys_phone_call_on_hold.png +++ b/core/res/res/drawable-hdpi/stat_sys_phone_call_on_hold.png diff --git a/core/res/res/drawable-hdpi/stat_sys_r_signal_0_cdma.png b/core/res/res/drawable-hdpi/stat_sys_r_signal_0_cdma.png Binary files differindex 14a7e94..d9cf54d 100644 --- a/core/res/res/drawable-hdpi/stat_sys_r_signal_0_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_r_signal_0_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_r_signal_1_cdma.png b/core/res/res/drawable-hdpi/stat_sys_r_signal_1_cdma.png Binary files differindex 9cf04b5..96ad544 100644 --- a/core/res/res/drawable-hdpi/stat_sys_r_signal_1_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_r_signal_1_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_r_signal_2_cdma.png b/core/res/res/drawable-hdpi/stat_sys_r_signal_2_cdma.png Binary files differindex dbd3308..3d43278 100644 --- a/core/res/res/drawable-hdpi/stat_sys_r_signal_2_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_r_signal_2_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_r_signal_3_cdma.png b/core/res/res/drawable-hdpi/stat_sys_r_signal_3_cdma.png Binary files differindex a3a6b6c..3adbc4d 100644 --- a/core/res/res/drawable-hdpi/stat_sys_r_signal_3_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_r_signal_3_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_r_signal_4_cdma.png b/core/res/res/drawable-hdpi/stat_sys_r_signal_4_cdma.png Binary files differindex 0f95041..443c030 100644 --- a/core/res/res/drawable-hdpi/stat_sys_r_signal_4_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_r_signal_4_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_ra_signal_0_cdma.png b/core/res/res/drawable-hdpi/stat_sys_ra_signal_0_cdma.png Binary files differindex a2fa547..ff0c6a4 100644 --- a/core/res/res/drawable-hdpi/stat_sys_ra_signal_0_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_ra_signal_0_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_ra_signal_1_cdma.png b/core/res/res/drawable-hdpi/stat_sys_ra_signal_1_cdma.png Binary files differindex 17c8681..cc9d991 100644 --- a/core/res/res/drawable-hdpi/stat_sys_ra_signal_1_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_ra_signal_1_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_ra_signal_2_cdma.png b/core/res/res/drawable-hdpi/stat_sys_ra_signal_2_cdma.png Binary files differindex 4a21fb6..cbf7d37 100644 --- a/core/res/res/drawable-hdpi/stat_sys_ra_signal_2_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_ra_signal_2_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_ra_signal_3_cdma.png b/core/res/res/drawable-hdpi/stat_sys_ra_signal_3_cdma.png Binary files differindex 188b1f9..47aa7d2 100644 --- a/core/res/res/drawable-hdpi/stat_sys_ra_signal_3_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_ra_signal_3_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_ra_signal_4_cdma.png b/core/res/res/drawable-hdpi/stat_sys_ra_signal_4_cdma.png Binary files differindex 5729f7d..ce52458 100644 --- a/core/res/res/drawable-hdpi/stat_sys_ra_signal_4_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_ra_signal_4_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_0_cdma.png b/core/res/res/drawable-hdpi/stat_sys_signal_0_cdma.png Binary files differindex af43e00..7529013 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_0_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_0_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_1_cdma.png b/core/res/res/drawable-hdpi/stat_sys_signal_1_cdma.png Binary files differindex 4ffe421..86bb859 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_1_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_1_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_2_cdma.png b/core/res/res/drawable-hdpi/stat_sys_signal_2_cdma.png Binary files differindex 6f27b96..1a3345a 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_2_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_2_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_3_cdma.png b/core/res/res/drawable-hdpi/stat_sys_signal_3_cdma.png Binary files differindex ddc46b0..fb82d487 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_3_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_3_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_4_cdma.png b/core/res/res/drawable-hdpi/stat_sys_signal_4_cdma.png Binary files differindex fb3cfe9..6a0e400 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_4_cdma.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_4_cdma.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_0.png b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_0.png Binary files differindex b697ca4..d49a443 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_0.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_0.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_1.png b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_1.png Binary files differindex a61de4d..5b1ef22 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_1.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_1.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_2.png b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_2.png Binary files differindex 62e0393..cbc90d6 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_2.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_2.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_3.png b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_3.png Binary files differindex 09eae9d..09e7791 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_3.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_3.png diff --git a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_4.png b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_4.png Binary files differindex 4012ac5..4a69651 100644 --- a/core/res/res/drawable-hdpi/stat_sys_signal_evdo_4.png +++ b/core/res/res/drawable-hdpi/stat_sys_signal_evdo_4.png diff --git a/core/res/res/drawable-hdpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-hdpi/stat_sys_tether_bluetooth.png Binary files differindex 9451174..1452165 100644 --- a/core/res/res/drawable-hdpi/stat_sys_tether_bluetooth.png +++ b/core/res/res/drawable-hdpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-hdpi/stat_sys_tether_general.png b/core/res/res/drawable-hdpi/stat_sys_tether_general.png Binary files differindex 79d5756..1bc0429 100644 --- a/core/res/res/drawable-hdpi/stat_sys_tether_general.png +++ b/core/res/res/drawable-hdpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-hdpi/stat_sys_tether_usb.png b/core/res/res/drawable-hdpi/stat_sys_tether_usb.png Binary files differindex cae1bd1..456a01b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_tether_usb.png +++ b/core/res/res/drawable-hdpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-hdpi/stat_sys_throttled.png b/core/res/res/drawable-hdpi/stat_sys_throttled.png Binary files differindex ed66abf..a9cac52 100644 --- a/core/res/res/drawable-hdpi/stat_sys_throttled.png +++ b/core/res/res/drawable-hdpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim0.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim0.png Binary files differindex 78f54b7..930d9fd 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim0.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim1.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim1.png Binary files differindex 39d2c95..5408267 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim1.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim2.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim2.png Binary files differindex 3a9031e..ec29397 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim2.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim3.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim3.png Binary files differindex 937720f..dab5efd 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim3.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim4.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim4.png Binary files differindex b35672c..b581103 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim4.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-hdpi/stat_sys_upload_anim5.png b/core/res/res/drawable-hdpi/stat_sys_upload_anim5.png Binary files differindex 4611122..85fe4ee 100644 --- a/core/res/res/drawable-hdpi/stat_sys_upload_anim5.png +++ b/core/res/res/drawable-hdpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-hdpi/stat_sys_vp_phone_call.png b/core/res/res/drawable-hdpi/stat_sys_vp_phone_call.png Binary files differindex 83e8ead..74ab0d2 100644 --- a/core/res/res/drawable-hdpi/stat_sys_vp_phone_call.png +++ b/core/res/res/drawable-hdpi/stat_sys_vp_phone_call.png diff --git a/core/res/res/drawable-hdpi/stat_sys_vp_phone_call_on_hold.png b/core/res/res/drawable-hdpi/stat_sys_vp_phone_call_on_hold.png Binary files differindex 9731c46..5816c7b 100644 --- a/core/res/res/drawable-hdpi/stat_sys_vp_phone_call_on_hold.png +++ b/core/res/res/drawable-hdpi/stat_sys_vp_phone_call_on_hold.png diff --git a/core/res/res/drawable-hdpi/stat_sys_warning.png b/core/res/res/drawable-hdpi/stat_sys_warning.png Binary files differindex dbaf944..4a590dd 100644 --- a/core/res/res/drawable-hdpi/stat_sys_warning.png +++ b/core/res/res/drawable-hdpi/stat_sys_warning.png diff --git a/core/res/res/drawable-hdpi/status_bar_background.png b/core/res/res/drawable-hdpi/status_bar_background.png Binary files differindex 3d00cd0..ec0309b 100644 --- a/core/res/res/drawable-hdpi/status_bar_background.png +++ b/core/res/res/drawable-hdpi/status_bar_background.png diff --git a/core/res/res/drawable-hdpi/status_bar_header_background.9.png b/core/res/res/drawable-hdpi/status_bar_header_background.9.png Binary files differindex 37b5fef..9274423 100644 --- a/core/res/res/drawable-hdpi/status_bar_header_background.9.png +++ b/core/res/res/drawable-hdpi/status_bar_header_background.9.png diff --git a/core/res/res/drawable-hdpi/status_bar_item_app_background_normal.9.png b/core/res/res/drawable-hdpi/status_bar_item_app_background_normal.9.png Binary files differindex 4fbfa4f..483fff6 100644 --- a/core/res/res/drawable-hdpi/status_bar_item_app_background_normal.9.png +++ b/core/res/res/drawable-hdpi/status_bar_item_app_background_normal.9.png diff --git a/core/res/res/drawable-hdpi/status_bar_item_background_focus.9.png b/core/res/res/drawable-hdpi/status_bar_item_background_focus.9.png Binary files differindex 0876bc6..75fc4af 100644 --- a/core/res/res/drawable-hdpi/status_bar_item_background_focus.9.png +++ b/core/res/res/drawable-hdpi/status_bar_item_background_focus.9.png diff --git a/core/res/res/drawable-hdpi/status_bar_item_background_normal.9.png b/core/res/res/drawable-hdpi/status_bar_item_background_normal.9.png Binary files differindex 810c950..beed310 100644 --- a/core/res/res/drawable-hdpi/status_bar_item_background_normal.9.png +++ b/core/res/res/drawable-hdpi/status_bar_item_background_normal.9.png diff --git a/core/res/res/drawable-hdpi/status_bar_item_background_pressed.9.png b/core/res/res/drawable-hdpi/status_bar_item_background_pressed.9.png Binary files differindex 343e4ca..d99b417 100644 --- a/core/res/res/drawable-hdpi/status_bar_item_background_pressed.9.png +++ b/core/res/res/drawable-hdpi/status_bar_item_background_pressed.9.png diff --git a/core/res/res/drawable-hdpi/statusbar_background.9.png b/core/res/res/drawable-hdpi/statusbar_background.9.png Binary files differindex a4be298..2803cb6 100644 --- a/core/res/res/drawable-hdpi/statusbar_background.9.png +++ b/core/res/res/drawable-hdpi/statusbar_background.9.png diff --git a/core/res/res/drawable-hdpi/submenu_arrow_nofocus.png b/core/res/res/drawable-hdpi/submenu_arrow_nofocus.png Binary files differindex afc0891..a3da9bb 100644 --- a/core/res/res/drawable-hdpi/submenu_arrow_nofocus.png +++ b/core/res/res/drawable-hdpi/submenu_arrow_nofocus.png diff --git a/core/res/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png Binary files differindex f2196fd..56cf062 100644 --- a/core/res/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png Binary files differindex f111d82..8277c30 100644 --- a/core/res/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png Binary files differindex 4e2ae0f..c9583ad 100644 --- a/core/res/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_bg_focused_holo_light.9.png b/core/res/res/drawable-hdpi/switch_bg_focused_holo_light.9.png Binary files differindex 479e504..2f73aac 100644 --- a/core/res/res/drawable-hdpi/switch_bg_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_bg_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_bg_holo_dark.9.png Binary files differindex 933d99b..66dcb39 100644 --- a/core/res/res/drawable-hdpi/switch_bg_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_bg_holo_light.9.png b/core/res/res/drawable-hdpi/switch_bg_holo_light.9.png Binary files differindex 7abe99a..4c3c062 100644 --- a/core/res/res/drawable-hdpi/switch_bg_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_bg_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png Binary files differindex 9c5147e..61a2b2c 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png b/core/res/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png Binary files differindex 9c5147e..61a2b2c 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png Binary files differindex a257e26..7e3f519 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png Binary files differindex a257e26..7e3f519 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_thumb_holo_dark.9.png Binary files differindex dd999d6..0f074a7 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_holo_light.9.png b/core/res/res/drawable-hdpi/switch_thumb_holo_light.9.png Binary files differindex dd999d6..0f074a7 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png Binary files differindex b6009e6..1cbf57c 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png Binary files differindex 54d813c..5946ec2 100644 --- a/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/sym_action_add.png b/core/res/res/drawable-hdpi/sym_action_add.png Binary files differindex 6e028b2..873a2e6 100644 --- a/core/res/res/drawable-hdpi/sym_action_add.png +++ b/core/res/res/drawable-hdpi/sym_action_add.png diff --git a/core/res/res/drawable-hdpi/sym_action_call.png b/core/res/res/drawable-hdpi/sym_action_call.png Binary files differindex da8afee..3cdf6c0 100644 --- a/core/res/res/drawable-hdpi/sym_action_call.png +++ b/core/res/res/drawable-hdpi/sym_action_call.png diff --git a/core/res/res/drawable-hdpi/sym_action_chat.png b/core/res/res/drawable-hdpi/sym_action_chat.png Binary files differindex 1ed061b..883d64e 100644 --- a/core/res/res/drawable-hdpi/sym_action_chat.png +++ b/core/res/res/drawable-hdpi/sym_action_chat.png diff --git a/core/res/res/drawable-hdpi/sym_action_email.png b/core/res/res/drawable-hdpi/sym_action_email.png Binary files differindex 1d933e4..208eeca 100644 --- a/core/res/res/drawable-hdpi/sym_action_email.png +++ b/core/res/res/drawable-hdpi/sym_action_email.png diff --git a/core/res/res/drawable-hdpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/drawable-hdpi/sym_app_on_sd_unavailable_icon.png Binary files differindex d915d41..4c9e454 100644 --- a/core/res/res/drawable-hdpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/drawable-hdpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/drawable-hdpi/sym_call_incoming.png b/core/res/res/drawable-hdpi/sym_call_incoming.png Binary files differindex 83c75dc..98bad70 100644 --- a/core/res/res/drawable-hdpi/sym_call_incoming.png +++ b/core/res/res/drawable-hdpi/sym_call_incoming.png diff --git a/core/res/res/drawable-hdpi/sym_call_missed.png b/core/res/res/drawable-hdpi/sym_call_missed.png Binary files differindex abcbbbf..8e71249 100644 --- a/core/res/res/drawable-hdpi/sym_call_missed.png +++ b/core/res/res/drawable-hdpi/sym_call_missed.png diff --git a/core/res/res/drawable-hdpi/sym_call_outgoing.png b/core/res/res/drawable-hdpi/sym_call_outgoing.png Binary files differindex 6cb8653..d3f7ea6 100644 --- a/core/res/res/drawable-hdpi/sym_call_outgoing.png +++ b/core/res/res/drawable-hdpi/sym_call_outgoing.png diff --git a/core/res/res/drawable-hdpi/sym_contact_card.png b/core/res/res/drawable-hdpi/sym_contact_card.png Binary files differindex fe9c751..4befffe 100644 --- a/core/res/res/drawable-hdpi/sym_contact_card.png +++ b/core/res/res/drawable-hdpi/sym_contact_card.png diff --git a/core/res/res/drawable-hdpi/sym_def_app_icon.png b/core/res/res/drawable-hdpi/sym_def_app_icon.png Binary files differindex cde69bc..6857e39 100644 --- a/core/res/res/drawable-hdpi/sym_def_app_icon.png +++ b/core/res/res/drawable-hdpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_delete.png b/core/res/res/drawable-hdpi/sym_keyboard_delete.png Binary files differindex 476d902..2ef5ceb 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_delete_dim.png b/core/res/res/drawable-hdpi/sym_keyboard_delete_dim.png Binary files differindex 34b6d1f..2f24769 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_delete_dim.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_delete_dim.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_enter.png b/core/res/res/drawable-hdpi/sym_keyboard_enter.png Binary files differindex d118af2..5ccab2d 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_enter.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_enter.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_delete.png Binary files differindex ca76375..f53ee93 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_ok.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_ok.png Binary files differindex 2d144ec..3de42ff 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_ok.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_ok.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_return.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_return.png Binary files differindex ae57299..9b989c7 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_return.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_return.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift.png Binary files differindex 4db31c8..abc7796 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift_locked.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift_locked.png Binary files differindex 3fd5659..8a9f186 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift_locked.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_shift_locked.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_feedback_space.png b/core/res/res/drawable-hdpi/sym_keyboard_feedback_space.png Binary files differindex 98266ee..4b1a55f 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_feedback_space.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_feedback_space.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-hdpi/sym_keyboard_num0_no_plus.png Binary files differindex ad81bb3..e508162 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num0_no_plus.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num1.png b/core/res/res/drawable-hdpi/sym_keyboard_num1.png Binary files differindex 8d2468c..ff66818 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num1.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num2.png b/core/res/res/drawable-hdpi/sym_keyboard_num2.png Binary files differindex cfa972b..908b69d 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num2.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num3.png b/core/res/res/drawable-hdpi/sym_keyboard_num3.png Binary files differindex 141833a..587b798 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num3.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num4.png b/core/res/res/drawable-hdpi/sym_keyboard_num4.png Binary files differindex 07df14d..6586b58 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num4.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num5.png b/core/res/res/drawable-hdpi/sym_keyboard_num5.png Binary files differindex fbcc9bf..92f9c6b 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num5.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num6.png b/core/res/res/drawable-hdpi/sym_keyboard_num6.png Binary files differindex 9513b33..371246b 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num6.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num7.png b/core/res/res/drawable-hdpi/sym_keyboard_num7.png Binary files differindex 5ad25d8..1184be2 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num7.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num8.png b/core/res/res/drawable-hdpi/sym_keyboard_num8.png Binary files differindex 97d5c0e..61e7181 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num8.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_num9.png b/core/res/res/drawable-hdpi/sym_keyboard_num9.png Binary files differindex a7d6a83..cff73e1 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_num9.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_ok.png b/core/res/res/drawable-hdpi/sym_keyboard_ok.png Binary files differindex 9105da2..dc008e9 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_ok.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_ok.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_ok_dim.png b/core/res/res/drawable-hdpi/sym_keyboard_ok_dim.png Binary files differindex bd419de..8f1885e 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_ok_dim.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_ok_dim.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_return.png b/core/res/res/drawable-hdpi/sym_keyboard_return.png Binary files differindex 58505c5..930a7d4 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_return.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_return.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_shift.png b/core/res/res/drawable-hdpi/sym_keyboard_shift.png Binary files differindex 8149081..cb4b6ed 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_shift.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_shift.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_shift_locked.png b/core/res/res/drawable-hdpi/sym_keyboard_shift_locked.png Binary files differindex 31ca277..2705b7a 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_shift_locked.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_shift_locked.png diff --git a/core/res/res/drawable-hdpi/sym_keyboard_space.png b/core/res/res/drawable-hdpi/sym_keyboard_space.png Binary files differindex 3e98b30..26bc057 100644 --- a/core/res/res/drawable-hdpi/sym_keyboard_space.png +++ b/core/res/res/drawable-hdpi/sym_keyboard_space.png diff --git a/core/res/res/drawable-hdpi/tab_bottom_holo.9.png b/core/res/res/drawable-hdpi/tab_bottom_holo.9.png Binary files differindex 8abf2ba..543e8be 100644 --- a/core/res/res/drawable-hdpi/tab_bottom_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_bottom_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_focus.9.png b/core/res/res/drawable-hdpi/tab_focus.9.png Binary files differindex 8862fc7..1ec5125 100644 --- a/core/res/res/drawable-hdpi/tab_focus.9.png +++ b/core/res/res/drawable-hdpi/tab_focus.9.png diff --git a/core/res/res/drawable-hdpi/tab_focus_bar_left.9.png b/core/res/res/drawable-hdpi/tab_focus_bar_left.9.png Binary files differindex 7f40d36..15b3140 100644 --- a/core/res/res/drawable-hdpi/tab_focus_bar_left.9.png +++ b/core/res/res/drawable-hdpi/tab_focus_bar_left.9.png diff --git a/core/res/res/drawable-hdpi/tab_focus_bar_right.9.png b/core/res/res/drawable-hdpi/tab_focus_bar_right.9.png Binary files differindex 7f40d36..15b3140 100644 --- a/core/res/res/drawable-hdpi/tab_focus_bar_right.9.png +++ b/core/res/res/drawable-hdpi/tab_focus_bar_right.9.png diff --git a/core/res/res/drawable-hdpi/tab_indicator_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/tab_indicator_mtrl_alpha.9.png Binary files differindex 21b2135..375c485 100644 --- a/core/res/res/drawable-hdpi/tab_indicator_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/tab_indicator_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/tab_press.9.png b/core/res/res/drawable-hdpi/tab_press.9.png Binary files differindex 4650d68..9f926bd 100644 --- a/core/res/res/drawable-hdpi/tab_press.9.png +++ b/core/res/res/drawable-hdpi/tab_press.9.png diff --git a/core/res/res/drawable-hdpi/tab_press_bar_left.9.png b/core/res/res/drawable-hdpi/tab_press_bar_left.9.png Binary files differindex b43c592..dc90465 100644 --- a/core/res/res/drawable-hdpi/tab_press_bar_left.9.png +++ b/core/res/res/drawable-hdpi/tab_press_bar_left.9.png diff --git a/core/res/res/drawable-hdpi/tab_press_bar_right.9.png b/core/res/res/drawable-hdpi/tab_press_bar_right.9.png Binary files differindex b43c592..dc90465 100644 --- a/core/res/res/drawable-hdpi/tab_press_bar_right.9.png +++ b/core/res/res/drawable-hdpi/tab_press_bar_right.9.png diff --git a/core/res/res/drawable-hdpi/tab_pressed_holo.9.png b/core/res/res/drawable-hdpi/tab_pressed_holo.9.png Binary files differindex 6d05735..12f8c9e 100644 --- a/core/res/res/drawable-hdpi/tab_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected.9.png b/core/res/res/drawable-hdpi/tab_selected.9.png Binary files differindex d5d3cee..0f12db1 100644 --- a/core/res/res/drawable-hdpi/tab_selected.9.png +++ b/core/res/res/drawable-hdpi/tab_selected.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_bar_left.9.png b/core/res/res/drawable-hdpi/tab_selected_bar_left.9.png Binary files differindex c1f950c..ebc759d 100644 --- a/core/res/res/drawable-hdpi/tab_selected_bar_left.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_bar_left.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_bar_left_v4.9.png b/core/res/res/drawable-hdpi/tab_selected_bar_left_v4.9.png Binary files differindex e7a07255..0aa2799 100644 --- a/core/res/res/drawable-hdpi/tab_selected_bar_left_v4.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_bar_left_v4.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_bar_right.9.png b/core/res/res/drawable-hdpi/tab_selected_bar_right.9.png Binary files differindex c1f950c..ebc759d 100644 --- a/core/res/res/drawable-hdpi/tab_selected_bar_right.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_bar_right.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_bar_right_v4.9.png b/core/res/res/drawable-hdpi/tab_selected_bar_right_v4.9.png Binary files differindex e7a07255..0aa2799 100644 --- a/core/res/res/drawable-hdpi/tab_selected_bar_right_v4.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_bar_right_v4.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_focused_holo.9.png b/core/res/res/drawable-hdpi/tab_selected_focused_holo.9.png Binary files differindex 673e3bf..4cdecd2 100644 --- a/core/res/res/drawable-hdpi/tab_selected_focused_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_focused_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_holo.9.png b/core/res/res/drawable-hdpi/tab_selected_holo.9.png Binary files differindex d57df98..b37a091 100644 --- a/core/res/res/drawable-hdpi/tab_selected_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_pressed_holo.9.png b/core/res/res/drawable-hdpi/tab_selected_pressed_holo.9.png Binary files differindex 956d3c4..5552992 100644 --- a/core/res/res/drawable-hdpi/tab_selected_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_selected_v4.9.png b/core/res/res/drawable-hdpi/tab_selected_v4.9.png Binary files differindex 50fcb52..71141a8 100644 --- a/core/res/res/drawable-hdpi/tab_selected_v4.9.png +++ b/core/res/res/drawable-hdpi/tab_selected_v4.9.png diff --git a/core/res/res/drawable-hdpi/tab_unselected.9.png b/core/res/res/drawable-hdpi/tab_unselected.9.png Binary files differindex cdc7a4a..0e339eb 100644 --- a/core/res/res/drawable-hdpi/tab_unselected.9.png +++ b/core/res/res/drawable-hdpi/tab_unselected.9.png diff --git a/core/res/res/drawable-hdpi/tab_unselected_focused_holo.9.png b/core/res/res/drawable-hdpi/tab_unselected_focused_holo.9.png Binary files differindex 294991d..f2f8488 100644 --- a/core/res/res/drawable-hdpi/tab_unselected_focused_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_unselected_focused_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_unselected_holo.9.png b/core/res/res/drawable-hdpi/tab_unselected_holo.9.png Binary files differindex 19532ab..05fc9ab 100644 --- a/core/res/res/drawable-hdpi/tab_unselected_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_unselected_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_unselected_pressed_holo.9.png b/core/res/res/drawable-hdpi/tab_unselected_pressed_holo.9.png Binary files differindex 57e57e1..69a95f2 100644 --- a/core/res/res/drawable-hdpi/tab_unselected_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/tab_unselected_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/tab_unselected_v4.9.png b/core/res/res/drawable-hdpi/tab_unselected_v4.9.png Binary files differindex c56254c..6343a48 100644 --- a/core/res/res/drawable-hdpi/tab_unselected_v4.9.png +++ b/core/res/res/drawable-hdpi/tab_unselected_v4.9.png diff --git a/core/res/res/drawable-hdpi/text_edit_paste_window.9.png b/core/res/res/drawable-hdpi/text_edit_paste_window.9.png Binary files differindex 8a64d36..476ffd8 100644 --- a/core/res/res/drawable-hdpi/text_edit_paste_window.9.png +++ b/core/res/res/drawable-hdpi/text_edit_paste_window.9.png diff --git a/core/res/res/drawable-hdpi/text_edit_side_paste_window.9.png b/core/res/res/drawable-hdpi/text_edit_side_paste_window.9.png Binary files differindex 2b50efa..bbd7cb4 100644 --- a/core/res/res/drawable-hdpi/text_edit_side_paste_window.9.png +++ b/core/res/res/drawable-hdpi/text_edit_side_paste_window.9.png diff --git a/core/res/res/drawable-hdpi/text_edit_suggestions_window.9.png b/core/res/res/drawable-hdpi/text_edit_suggestions_window.9.png Binary files differindex 8a64d36..476ffd8 100644 --- a/core/res/res/drawable-hdpi/text_edit_suggestions_window.9.png +++ b/core/res/res/drawable-hdpi/text_edit_suggestions_window.9.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_left.png b/core/res/res/drawable-hdpi/text_select_handle_left.png Binary files differindex d2ed06d..32d7cb3 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_left.png +++ b/core/res/res/drawable-hdpi/text_select_handle_left.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_left_mtrl_alpha.png b/core/res/res/drawable-hdpi/text_select_handle_left_mtrl_alpha.png Binary files differindex 1550b44..21fe212 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_left_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/text_select_handle_left_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_middle.png b/core/res/res/drawable-hdpi/text_select_handle_middle.png Binary files differindex be2dc68..dc2b6a1 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_middle.png +++ b/core/res/res/drawable-hdpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_middle_mtrl_alpha.png b/core/res/res/drawable-hdpi/text_select_handle_middle_mtrl_alpha.png Binary files differindex df2fdb8..cd5a446 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_middle_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/text_select_handle_middle_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_right.png b/core/res/res/drawable-hdpi/text_select_handle_right.png Binary files differindex e419249..5c882e0 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_right.png +++ b/core/res/res/drawable-hdpi/text_select_handle_right.png diff --git a/core/res/res/drawable-hdpi/text_select_handle_right_mtrl_alpha.png b/core/res/res/drawable-hdpi/text_select_handle_right_mtrl_alpha.png Binary files differindex b309dfd..b894d05 100644 --- a/core/res/res/drawable-hdpi/text_select_handle_right_mtrl_alpha.png +++ b/core/res/res/drawable-hdpi/text_select_handle_right_mtrl_alpha.png diff --git a/core/res/res/drawable-hdpi/textfield_activated_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_activated_holo_dark.9.png Binary files differindex b7c5dcd..caf272f 100644 --- a/core/res/res/drawable-hdpi/textfield_activated_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_activated_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_activated_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_activated_holo_light.9.png Binary files differindex 1aaa9ae..caf272f 100644 --- a/core/res/res/drawable-hdpi/textfield_activated_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_activated_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_activated_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/textfield_activated_mtrl_alpha.9.png Binary files differindex 9501e7c..c4b167c 100644 --- a/core/res/res/drawable-hdpi/textfield_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/textfield_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/textfield_bg_activated_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_bg_activated_holo_dark.9.png Binary files differindex a233b0d..65697ea 100644 --- a/core/res/res/drawable-hdpi/textfield_bg_activated_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_bg_activated_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_bg_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_bg_default_holo_dark.9.png Binary files differindex 403f502..43dc04b 100644 --- a/core/res/res/drawable-hdpi/textfield_bg_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_bg_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_bg_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_bg_disabled_focused_holo_dark.9.png Binary files differindex 0ded801..25735c7 100644 --- a/core/res/res/drawable-hdpi/textfield_bg_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_bg_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_bg_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_bg_disabled_holo_dark.9.png Binary files differindex 27237b8..6d527ff 100644 --- a/core/res/res/drawable-hdpi/textfield_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_bg_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_bg_focused_holo_dark.9.png Binary files differindex 0e451f1..9828a97 100644 --- a/core/res/res/drawable-hdpi/textfield_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_default.9.png b/core/res/res/drawable-hdpi/textfield_default.9.png Binary files differindex f7b6e99..db6085e 100644 --- a/core/res/res/drawable-hdpi/textfield_default.9.png +++ b/core/res/res/drawable-hdpi/textfield_default.9.png diff --git a/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png Binary files differindex e6ef296..0449778 100644 --- a/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png Binary files differindex 7368261..befb60b 100644 --- a/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_default_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/textfield_default_mtrl_alpha.9.png Binary files differindex de5572d..c969862 100644 --- a/core/res/res/drawable-hdpi/textfield_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/textfield_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled.9.png b/core/res/res/drawable-hdpi/textfield_disabled.9.png Binary files differindex 3011502..6200986 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_dark.9.png Binary files differindex 29e33e3..f09b6f8 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png Binary files differindex b70db4e..b3259ed 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png Binary files differindex 73ec37c..f309d26 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png Binary files differindex a77d66d..154ae1a 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_disabled_selected.9.png b/core/res/res/drawable-hdpi/textfield_disabled_selected.9.png Binary files differindex e0f82eb..5231dc6 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_selected.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_selected.9.png diff --git a/core/res/res/drawable-hdpi/textfield_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_focused_holo_dark.9.png Binary files differindex 03a81d9..bc54218 100644 --- a/core/res/res/drawable-hdpi/textfield_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_focused_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_focused_holo_light.9.png Binary files differindex 03a81d9..bc54218 100644 --- a/core/res/res/drawable-hdpi/textfield_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_longpress_holo.9.png b/core/res/res/drawable-hdpi/textfield_longpress_holo.9.png Binary files differindex 2993b44..4ae0fd6 100644 --- a/core/res/res/drawable-hdpi/textfield_longpress_holo.9.png +++ b/core/res/res/drawable-hdpi/textfield_longpress_holo.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_dark.9.png Binary files differindex 3141caf..caf272f 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_light.9.png Binary files differindex df7f770..caf272f 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_activated_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_multiline_default_holo_dark.9.png Binary files differindex ab381a6..0449778 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_multiline_default_holo_light.9.png Binary files differindex ed1306c..befb60b 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_dark.9.png Binary files differindex 269e6b3..c0f096a 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_light.9.png Binary files differindex e0a83fe..b3259ed 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_dark.9.png Binary files differindex 9f14a06..f309d26 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_light.9.png Binary files differindex c458698..154ae1a 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_disabled_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_dark.9.png Binary files differindex 180d85c..15085ae 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_light.9.png Binary files differindex e075149..d0cd69b 100644 --- a/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_multiline_focused_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_pressed_holo.9.png b/core/res/res/drawable-hdpi/textfield_pressed_holo.9.png Binary files differindex 4aad237..7afa451 100644 --- a/core/res/res/drawable-hdpi/textfield_pressed_holo.9.png +++ b/core/res/res/drawable-hdpi/textfield_pressed_holo.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_activated_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/textfield_search_activated_mtrl_alpha.9.png Binary files differindex ce577e5..900c746 100644 --- a/core/res/res/drawable-hdpi/textfield_search_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_default.9.png b/core/res/res/drawable-hdpi/textfield_search_default.9.png Binary files differindex db64da1..de5af02 100644 --- a/core/res/res/drawable-hdpi/textfield_search_default.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_default.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png Binary files differindex 70c0e73..ffc23cf 100644 --- a/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png Binary files differindex 36e71d8..caac696 100644 --- a/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_default_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/textfield_search_default_mtrl_alpha.9.png Binary files differindex 7c305ab..c06e1ab 100644 --- a/core/res/res/drawable-hdpi/textfield_search_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_empty_default.9.png b/core/res/res/drawable-hdpi/textfield_search_empty_default.9.png Binary files differindex c0b84da..2a89b3c 100644 --- a/core/res/res/drawable-hdpi/textfield_search_empty_default.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_empty_default.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_empty_pressed.9.png b/core/res/res/drawable-hdpi/textfield_search_empty_pressed.9.png Binary files differindex 0a0fc6b..85d7baa 100644 --- a/core/res/res/drawable-hdpi/textfield_search_empty_pressed.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_empty_pressed.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_empty_selected.9.png b/core/res/res/drawable-hdpi/textfield_search_empty_selected.9.png Binary files differindex 04813c2..271501a 100644 --- a/core/res/res/drawable-hdpi/textfield_search_empty_selected.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_empty_selected.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_pressed.9.png b/core/res/res/drawable-hdpi/textfield_search_pressed.9.png Binary files differindex cde51e4..9cdeebb 100644 --- a/core/res/res/drawable-hdpi/textfield_search_pressed.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_pressed.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_right_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_right_default_holo_dark.9.png Binary files differindex 4be4af5..6af9902 100644 --- a/core/res/res/drawable-hdpi/textfield_search_right_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_right_default_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_right_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_right_default_holo_light.9.png Binary files differindex e72193f..7397078 100644 --- a/core/res/res/drawable-hdpi/textfield_search_right_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_right_default_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_dark.9.png Binary files differindex 8f20b9d..4d946d7 100644 --- a/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_light.9.png Binary files differindex 04f657e..9ddb9f6 100644 --- a/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_right_selected_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_selected.9.png b/core/res/res/drawable-hdpi/textfield_search_selected.9.png Binary files differindex f4bf352..a8f3aa4 100644 --- a/core/res/res/drawable-hdpi/textfield_search_selected.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_selected.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png Binary files differindex 99309ef..60ed5b0 100644 --- a/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png Binary files differindex 9bde7fb..f268264 100644 --- a/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/textfield_selected.9.png b/core/res/res/drawable-hdpi/textfield_selected.9.png Binary files differindex cf2cae3..de12c75 100644 --- a/core/res/res/drawable-hdpi/textfield_selected.9.png +++ b/core/res/res/drawable-hdpi/textfield_selected.9.png diff --git a/core/res/res/drawable-hdpi/title_bar_medium.9.png b/core/res/res/drawable-hdpi/title_bar_medium.9.png Binary files differindex 311a54a..79feb21 100644 --- a/core/res/res/drawable-hdpi/title_bar_medium.9.png +++ b/core/res/res/drawable-hdpi/title_bar_medium.9.png diff --git a/core/res/res/drawable-hdpi/title_bar_portrait.9.png b/core/res/res/drawable-hdpi/title_bar_portrait.9.png Binary files differindex 70f7cc2..35117e9 100644 --- a/core/res/res/drawable-hdpi/title_bar_portrait.9.png +++ b/core/res/res/drawable-hdpi/title_bar_portrait.9.png diff --git a/core/res/res/drawable-hdpi/title_bar_tall.9.png b/core/res/res/drawable-hdpi/title_bar_tall.9.png Binary files differindex 5c1a69f..ed32ce7 100644 --- a/core/res/res/drawable-hdpi/title_bar_tall.9.png +++ b/core/res/res/drawable-hdpi/title_bar_tall.9.png diff --git a/core/res/res/drawable-hdpi/toast_frame.9.png b/core/res/res/drawable-hdpi/toast_frame.9.png Binary files differindex a804a8a..b164cdd 100644 --- a/core/res/res/drawable-hdpi/toast_frame.9.png +++ b/core/res/res/drawable-hdpi/toast_frame.9.png diff --git a/core/res/res/drawable-hdpi/transportcontrol_bg.9.png b/core/res/res/drawable-hdpi/transportcontrol_bg.9.png Binary files differindex ebd6f8a..ea39840 100644 --- a/core/res/res/drawable-hdpi/transportcontrol_bg.9.png +++ b/core/res/res/drawable-hdpi/transportcontrol_bg.9.png diff --git a/core/res/res/drawable-hdpi/unknown_image.png b/core/res/res/drawable-hdpi/unknown_image.png Binary files differindex 76341db..5372f3e 100644 --- a/core/res/res/drawable-hdpi/unknown_image.png +++ b/core/res/res/drawable-hdpi/unknown_image.png diff --git a/core/res/res/drawable-hdpi/usb_android.png b/core/res/res/drawable-hdpi/usb_android.png Binary files differindex 8b5b1a9..db95148 100644 --- a/core/res/res/drawable-hdpi/usb_android.png +++ b/core/res/res/drawable-hdpi/usb_android.png diff --git a/core/res/res/drawable-hdpi/usb_android_connected.png b/core/res/res/drawable-hdpi/usb_android_connected.png Binary files differindex 442f2b3..61f1c16 100644 --- a/core/res/res/drawable-hdpi/usb_android_connected.png +++ b/core/res/res/drawable-hdpi/usb_android_connected.png diff --git a/core/res/res/drawable-hdpi/vpn_connected.png b/core/res/res/drawable-hdpi/vpn_connected.png Binary files differindex c3547e8..bed5333 100644 --- a/core/res/res/drawable-hdpi/vpn_connected.png +++ b/core/res/res/drawable-hdpi/vpn_connected.png diff --git a/core/res/res/drawable-hdpi/vpn_disconnected.png b/core/res/res/drawable-hdpi/vpn_disconnected.png Binary files differindex 10a9065..b162857 100644 --- a/core/res/res/drawable-hdpi/vpn_disconnected.png +++ b/core/res/res/drawable-hdpi/vpn_disconnected.png diff --git a/core/res/res/drawable-hdpi/zoom_plate.9.png b/core/res/res/drawable-hdpi/zoom_plate.9.png Binary files differindex e97dac1..8012007 100644 --- a/core/res/res/drawable-hdpi/zoom_plate.9.png +++ b/core/res/res/drawable-hdpi/zoom_plate.9.png diff --git a/core/res/res/drawable-land-hdpi/btn_lock_normal.9.png b/core/res/res/drawable-land-hdpi/btn_lock_normal.9.png Binary files differindex f1dac62..a03a953 100644 --- a/core/res/res/drawable-land-hdpi/btn_lock_normal.9.png +++ b/core/res/res/drawable-land-hdpi/btn_lock_normal.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex 76f76bc..27ef5b4 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex d070fad..10885c4 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex 8d38ea6..de1f6b8 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex 2da4677..4c72265 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_normal.9.png Binary files differindex a181652..1dfbe10 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 6cf3131..18c7c13 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex 05541f3..2e81efd 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex 0bf0ea9..b1f354b 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex b82a30f..4fd3285 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex 5f530fa..415d75f 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_normal.9.png Binary files differindex d8bbd17..f8c417b 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex c408087..f8368f9 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_gray.png Binary files differindex dff38b4..927ee37 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_green.png Binary files differindex 88a95be..a5eb28a 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_red.png Binary files differindex b9486ea..5ae8c7b 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_yellow.png Binary files differindex 9144d7a..49595a8 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_normal.png b/core/res/res/drawable-land-hdpi/jog_tab_left_normal.png Binary files differindex b2d7695..0597eb4 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_left_pressed.png b/core/res/res/drawable-land-hdpi/jog_tab_left_pressed.png Binary files differindex 55e170d..5877392 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_gray.png Binary files differindex 131b720..d2612ca 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_green.png Binary files differindex c36b0ad..2fd74d3 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_red.png Binary files differindex d388619..b00f473 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_yellow.png Binary files differindex 24f1aec..c87e17e 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_normal.png b/core/res/res/drawable-land-hdpi/jog_tab_right_normal.png Binary files differindex 9111649..4ac4180 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_right_pressed.png b/core/res/res/drawable-land-hdpi/jog_tab_right_pressed.png Binary files differindex 3bd2e5b..a270df3 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_target_gray.png b/core/res/res/drawable-land-hdpi/jog_tab_target_gray.png Binary files differindex 4150007..7c0123f 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_target_green.png b/core/res/res/drawable-land-hdpi/jog_tab_target_green.png Binary files differindex ef18b6c..03ec906 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_target_green.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_target_red.png b/core/res/res/drawable-land-hdpi/jog_tab_target_red.png Binary files differindex 5dfaa5f..7b0f26e 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_target_red.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-land-hdpi/jog_tab_target_yellow.png b/core/res/res/drawable-land-hdpi/jog_tab_target_yellow.png Binary files differindex d0509fa..d9cf453 100644 --- a/core/res/res/drawable-land-hdpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-land-hdpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png b/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png Binary files differindex e685adc..f2ab0e6 100644 --- a/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png +++ b/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png Binary files differindex a4e3edf..a31a9a2 100644 --- a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png Binary files differindex f8190b56..30c4c8b 100644 --- a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png Binary files differindex 16fa0db..289a68b 100644 --- a/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex e16e9f6..5853cc4 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex 90211df..3d91fd6 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex 154ae8e..aab86dc 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex 1e69e4d..4899e50 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png Binary files differindex 09710a5..3675915 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 158ce85..2de89c5 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex 1be54d4..dd398a9 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex 4ef4d69..7426e58 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex dad283e..8e8821b 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex f7aa85a..33a25ee 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png Binary files differindex 23860ce..02c4b36 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex 1105fe5..08dc778 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png Binary files differindex 945851d..ff7a7eb 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png Binary files differindex 0702927..9a67dfd 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png Binary files differindex d79f46c..0f153ca 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png Binary files differindex 8e4ef9a..2861af2 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png b/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png Binary files differindex ee6d98c..61884b8 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png b/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png Binary files differindex 727fdbb..586bc30 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png Binary files differindex 93d0bf4..96bf800 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png Binary files differindex d49c831..beb110d 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png Binary files differindex 29bddcf..638d42f 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png Binary files differindex 4cefb0c..5dd38f7 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png b/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png Binary files differindex 30fa002..dc96191 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png b/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png Binary files differindex f2d358b..35d31b4 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png Binary files differindex 1e76bc1..e011acb 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_green.png b/core/res/res/drawable-land-ldpi/jog_tab_target_green.png Binary files differindex 917769e..02040de 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_target_green.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_red.png b/core/res/res/drawable-land-ldpi/jog_tab_target_red.png Binary files differindex 3501ba38..a0aecb7 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_target_red.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png Binary files differindex ee795a3..99c25f5 100644 --- a/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-land-mdpi/btn_lock_normal.9.png b/core/res/res/drawable-land-mdpi/btn_lock_normal.9.png Binary files differindex f2482c0..41ef00e 100644 --- a/core/res/res/drawable-land-mdpi/btn_lock_normal.9.png +++ b/core/res/res/drawable-land-mdpi/btn_lock_normal.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex 61222f4..fcf715f 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex 3060f72..b7b27d6 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex cee7bf5..7c69e111 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex 4bd56d1..edb38d9 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_normal.9.png Binary files differindex 367e887..b8a01a2 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 02f3f27..3688592 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex bfaba2f..4b35b35 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex d35fe7b..60922f8 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex 508f6bd..2356a2d 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex a6041e5..bf5b6d2 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_normal.9.png Binary files differindex 28cdd0b..15a9cc5 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex 46ba76b..eca9e3b 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_gray.png Binary files differindex 396dcf7..47ea137 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_green.png Binary files differindex d928310..396ec0f 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_red.png Binary files differindex c377463..4724238 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_yellow.png Binary files differindex b868c76..5f55f99 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_normal.png b/core/res/res/drawable-land-mdpi/jog_tab_left_normal.png Binary files differindex 5ca876b..18f9095 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_left_pressed.png b/core/res/res/drawable-land-mdpi/jog_tab_left_pressed.png Binary files differindex 8c33a78..853cc9f 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_gray.png Binary files differindex 4f1a002..82c2211 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_green.png Binary files differindex af1550f..39e9e05 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_red.png Binary files differindex b458d27..3ea11a6 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_yellow.png Binary files differindex 8e55d6a..c24cebb 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_normal.png b/core/res/res/drawable-land-mdpi/jog_tab_right_normal.png Binary files differindex c607c7c..c1210f7 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_right_pressed.png b/core/res/res/drawable-land-mdpi/jog_tab_right_pressed.png Binary files differindex 2537d73..ef8c530 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_target_gray.png b/core/res/res/drawable-land-mdpi/jog_tab_target_gray.png Binary files differindex 1319b6e..5ef9e27 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_target_green.png b/core/res/res/drawable-land-mdpi/jog_tab_target_green.png Binary files differindex 88a3f30..2db0f5d 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_target_green.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_target_red.png b/core/res/res/drawable-land-mdpi/jog_tab_target_red.png Binary files differindex 300c401..959f36d 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_target_red.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-land-mdpi/jog_tab_target_yellow.png b/core/res/res/drawable-land-mdpi/jog_tab_target_yellow.png Binary files differindex efa30ee..70df5a4 100644 --- a/core/res/res/drawable-land-mdpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-land-mdpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-land-xhdpi/btn_lock_normal.9.png b/core/res/res/drawable-land-xhdpi/btn_lock_normal.9.png Binary files differindex e7c4a19..1e15357 100644 --- a/core/res/res/drawable-land-xhdpi/btn_lock_normal.9.png +++ b/core/res/res/drawable-land-xhdpi/btn_lock_normal.9.png diff --git a/core/res/res/drawable-ldpi/activity_title_bar.9.png b/core/res/res/drawable-ldpi/activity_title_bar.9.png Binary files differindex 8aaa7d1..c179a1c 100644 --- a/core/res/res/drawable-ldpi/activity_title_bar.9.png +++ b/core/res/res/drawable-ldpi/activity_title_bar.9.png diff --git a/core/res/res/drawable-ldpi/arrow_down_float.png b/core/res/res/drawable-ldpi/arrow_down_float.png Binary files differindex c41340d..2a9e683 100644 --- a/core/res/res/drawable-ldpi/arrow_down_float.png +++ b/core/res/res/drawable-ldpi/arrow_down_float.png diff --git a/core/res/res/drawable-ldpi/arrow_up_float.png b/core/res/res/drawable-ldpi/arrow_up_float.png Binary files differindex 8b60f12..dccfce5 100644 --- a/core/res/res/drawable-ldpi/arrow_up_float.png +++ b/core/res/res/drawable-ldpi/arrow_up_float.png diff --git a/core/res/res/drawable-ldpi/battery_charge_background.png b/core/res/res/drawable-ldpi/battery_charge_background.png Binary files differindex 503c4f9..dce134e 100644 --- a/core/res/res/drawable-ldpi/battery_charge_background.png +++ b/core/res/res/drawable-ldpi/battery_charge_background.png diff --git a/core/res/res/drawable-ldpi/bottom_bar.png b/core/res/res/drawable-ldpi/bottom_bar.png Binary files differindex c80fd4a..0d2022e 100644 --- a/core/res/res/drawable-ldpi/bottom_bar.png +++ b/core/res/res/drawable-ldpi/bottom_bar.png diff --git a/core/res/res/drawable-ldpi/btn_check_buttonless_off.png b/core/res/res/drawable-ldpi/btn_check_buttonless_off.png Binary files differindex 327d2c6..ab7ea5c 100644 --- a/core/res/res/drawable-ldpi/btn_check_buttonless_off.png +++ b/core/res/res/drawable-ldpi/btn_check_buttonless_off.png diff --git a/core/res/res/drawable-ldpi/btn_check_buttonless_on.png b/core/res/res/drawable-ldpi/btn_check_buttonless_on.png Binary files differindex 4d0ab2a..3ecef2c 100644 --- a/core/res/res/drawable-ldpi/btn_check_buttonless_on.png +++ b/core/res/res/drawable-ldpi/btn_check_buttonless_on.png diff --git a/core/res/res/drawable-ldpi/btn_check_label_background.9.png b/core/res/res/drawable-ldpi/btn_check_label_background.9.png Binary files differindex 5b08367..3e06c4a 100644 --- a/core/res/res/drawable-ldpi/btn_check_label_background.9.png +++ b/core/res/res/drawable-ldpi/btn_check_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_check_off.png b/core/res/res/drawable-ldpi/btn_check_off.png Binary files differindex f333117..4d89104 100644 --- a/core/res/res/drawable-ldpi/btn_check_off.png +++ b/core/res/res/drawable-ldpi/btn_check_off.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_disable.png b/core/res/res/drawable-ldpi/btn_check_off_disable.png Binary files differindex c4d7cd9..6935479 100644 --- a/core/res/res/drawable-ldpi/btn_check_off_disable.png +++ b/core/res/res/drawable-ldpi/btn_check_off_disable.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png b/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png Binary files differindex 2bc5899..d887102 100644 --- a/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_pressed.png b/core/res/res/drawable-ldpi/btn_check_off_pressed.png Binary files differindex fe77b08..e6c7287 100644 --- a/core/res/res/drawable-ldpi/btn_check_off_pressed.png +++ b/core/res/res/drawable-ldpi/btn_check_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_selected.png b/core/res/res/drawable-ldpi/btn_check_off_selected.png Binary files differindex 58542c4..916de65 100644 --- a/core/res/res/drawable-ldpi/btn_check_off_selected.png +++ b/core/res/res/drawable-ldpi/btn_check_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_check_on.png b/core/res/res/drawable-ldpi/btn_check_on.png Binary files differindex f4d777a..a859ef6 100644 --- a/core/res/res/drawable-ldpi/btn_check_on.png +++ b/core/res/res/drawable-ldpi/btn_check_on.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_disable.png b/core/res/res/drawable-ldpi/btn_check_on_disable.png Binary files differindex 57513ca..a3eb5d8 100644 --- a/core/res/res/drawable-ldpi/btn_check_on_disable.png +++ b/core/res/res/drawable-ldpi/btn_check_on_disable.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png b/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png Binary files differindex 798835e..3c9ec64 100644 --- a/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_pressed.png b/core/res/res/drawable-ldpi/btn_check_on_pressed.png Binary files differindex 0f00d17..df2c48e 100644 --- a/core/res/res/drawable-ldpi/btn_check_on_pressed.png +++ b/core/res/res/drawable-ldpi/btn_check_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_selected.png b/core/res/res/drawable-ldpi/btn_check_on_selected.png Binary files differindex 51b3566..d9e0f95 100644 --- a/core/res/res/drawable-ldpi/btn_check_on_selected.png +++ b/core/res/res/drawable-ldpi/btn_check_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_circle_disable.png b/core/res/res/drawable-ldpi/btn_circle_disable.png Binary files differindex 87a51c5..6d907d5 100644 --- a/core/res/res/drawable-ldpi/btn_circle_disable.png +++ b/core/res/res/drawable-ldpi/btn_circle_disable.png diff --git a/core/res/res/drawable-ldpi/btn_circle_disable_focused.png b/core/res/res/drawable-ldpi/btn_circle_disable_focused.png Binary files differindex cc28e3b..31a80de 100644 --- a/core/res/res/drawable-ldpi/btn_circle_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_circle_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_circle_normal.png b/core/res/res/drawable-ldpi/btn_circle_normal.png Binary files differindex b25ad81..327d5ce 100644 --- a/core/res/res/drawable-ldpi/btn_circle_normal.png +++ b/core/res/res/drawable-ldpi/btn_circle_normal.png diff --git a/core/res/res/drawable-ldpi/btn_circle_pressed.png b/core/res/res/drawable-ldpi/btn_circle_pressed.png Binary files differindex abeedad..a6488f4 100644 --- a/core/res/res/drawable-ldpi/btn_circle_pressed.png +++ b/core/res/res/drawable-ldpi/btn_circle_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_circle_selected.png b/core/res/res/drawable-ldpi/btn_circle_selected.png Binary files differindex e3e8d13..f55fcec 100644 --- a/core/res/res/drawable-ldpi/btn_circle_selected.png +++ b/core/res/res/drawable-ldpi/btn_circle_selected.png diff --git a/core/res/res/drawable-ldpi/btn_close_normal.png b/core/res/res/drawable-ldpi/btn_close_normal.png Binary files differindex e4de088..e99d566 100644 --- a/core/res/res/drawable-ldpi/btn_close_normal.png +++ b/core/res/res/drawable-ldpi/btn_close_normal.png diff --git a/core/res/res/drawable-ldpi/btn_close_pressed.png b/core/res/res/drawable-ldpi/btn_close_pressed.png Binary files differindex 5d946bd..88b6d04 100644 --- a/core/res/res/drawable-ldpi/btn_close_pressed.png +++ b/core/res/res/drawable-ldpi/btn_close_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_close_selected.png b/core/res/res/drawable-ldpi/btn_close_selected.png Binary files differindex c1ee5a8..562c848 100644 --- a/core/res/res/drawable-ldpi/btn_close_selected.png +++ b/core/res/res/drawable-ldpi/btn_close_selected.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal.9.png b/core/res/res/drawable-ldpi/btn_default_normal.9.png Binary files differindex 198da17..13bc14f 100644 --- a/core/res/res/drawable-ldpi/btn_default_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_default_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png b/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png Binary files differindex 2e61b50..378c370 100644 --- a/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png +++ b/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png b/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png Binary files differindex 9fab12e..b75a32e 100644 --- a/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png +++ b/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_pressed.9.png b/core/res/res/drawable-ldpi/btn_default_pressed.9.png Binary files differindex f5a21b2..92c8f83 100644 --- a/core/res/res/drawable-ldpi/btn_default_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_default_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_selected.9.png b/core/res/res/drawable-ldpi/btn_default_selected.9.png Binary files differindex a09da00..454ff72 100644 --- a/core/res/res/drawable-ldpi/btn_default_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_default_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal.9.png Binary files differindex 4e69058..1c93611 100644 --- a/core/res/res/drawable-ldpi/btn_default_small_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_default_small_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png Binary files differindex 64fce65..ed82e87 100644 --- a/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png +++ b/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png Binary files differindex 528b5e1..6d7392e 100644 --- a/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png +++ b/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png b/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png Binary files differindex bf70128..85f6d86 100644 --- a/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_selected.9.png b/core/res/res/drawable-ldpi/btn_default_small_selected.9.png Binary files differindex 71938d0..81b3256 100644 --- a/core/res/res/drawable-ldpi/btn_default_small_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_default_small_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png b/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png Binary files differindex 2c7249e..78417b6 100644 --- a/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_disable.png b/core/res/res/drawable-ldpi/btn_dialog_disable.png Binary files differindex 82d13f2..c29fc3c 100644 --- a/core/res/res/drawable-ldpi/btn_dialog_disable.png +++ b/core/res/res/drawable-ldpi/btn_dialog_disable.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_normal.png b/core/res/res/drawable-ldpi/btn_dialog_normal.png Binary files differindex e4de088..e99d566 100644 --- a/core/res/res/drawable-ldpi/btn_dialog_normal.png +++ b/core/res/res/drawable-ldpi/btn_dialog_normal.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_pressed.png b/core/res/res/drawable-ldpi/btn_dialog_pressed.png Binary files differindex 557c13a..01c5468 100644 --- a/core/res/res/drawable-ldpi/btn_dialog_pressed.png +++ b/core/res/res/drawable-ldpi/btn_dialog_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_selected.png b/core/res/res/drawable-ldpi/btn_dialog_selected.png Binary files differindex f63ce27..703bb13 100644 --- a/core/res/res/drawable-ldpi/btn_dialog_selected.png +++ b/core/res/res/drawable-ldpi/btn_dialog_selected.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png b/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png Binary files differindex 27cb8f5..ae0749f 100644 --- a/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png +++ b/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png Binary files differindex a0231c5..4183673 100644 --- a/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png +++ b/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png b/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png Binary files differindex b23e10f..5c1364f 100644 --- a/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png b/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png Binary files differindex c3c08e4..5842dec 100644 --- a/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png b/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png Binary files differindex 2660e43..c08973e 100644 --- a/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_default.9.png b/core/res/res/drawable-ldpi/btn_erase_default.9.png Binary files differindex dc592ca..5479ca0 100644 --- a/core/res/res/drawable-ldpi/btn_erase_default.9.png +++ b/core/res/res/drawable-ldpi/btn_erase_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_pressed.9.png b/core/res/res/drawable-ldpi/btn_erase_pressed.9.png Binary files differindex 48c0570..73b4b0a 100644 --- a/core/res/res/drawable-ldpi/btn_erase_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_erase_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_selected.9.png b/core/res/res/drawable-ldpi/btn_erase_selected.9.png Binary files differindex 51f7b86..e90c4bb 100644 --- a/core/res/res/drawable-ldpi/btn_erase_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_erase_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_global_search_normal.9.png b/core/res/res/drawable-ldpi/btn_global_search_normal.9.png Binary files differindex 60bd3ce..d1c99a1 100644 --- a/core/res/res/drawable-ldpi/btn_global_search_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_global_search_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png Binary files differindex 8cf50b8..fcf6e43 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png Binary files differindex d853bf1..e389ec1 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png Binary files differindex f54e948..becfd60 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png Binary files differindex ad7c951..ebd1700 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png Binary files differindex 1a075d2..b5b267f 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png Binary files differindex 5933f61..34a5056 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png Binary files differindex 69db65f..1424035 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png Binary files differindex 37c5fed..37eb94b 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png Binary files differindex 019e6f7..4dc9005 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png Binary files differindex d3827f0..ebe3da2 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png Binary files differindex 2bef004..356e340 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png Binary files differindex 25daabe..26d63f7 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png Binary files differindex 9d026c4..6065dcb 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png Binary files differindex 6ededbe..311f34c 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png Binary files differindex 987014f..0dabc0a 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png Binary files differindex d19a0fc..deb5f61 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png Binary files differindex 978ff4c..29471bd 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png Binary files differindex 8355c7d..28da1af 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png Binary files differindex 8afb908..8231b61 100644 --- a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player.9.png b/core/res/res/drawable-ldpi/btn_media_player.9.png Binary files differindex 7096dbc..824f0a1 100644 --- a/core/res/res/drawable-ldpi/btn_media_player.9.png +++ b/core/res/res/drawable-ldpi/btn_media_player.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png b/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png Binary files differindex 83b1059..3e19433 100644 --- a/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png +++ b/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png b/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png Binary files differindex f55ac21..96f7c25 100644 --- a/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png b/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png Binary files differindex de58ee2..25c3d29 100644 --- a/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_selected.9.png b/core/res/res/drawable-ldpi/btn_media_player_selected.9.png Binary files differindex 5443580..d367eef 100644 --- a/core/res/res/drawable-ldpi/btn_media_player_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_media_player_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_minus_default.png b/core/res/res/drawable-ldpi/btn_minus_default.png Binary files differindex 19c66e0..fd776fb 100644 --- a/core/res/res/drawable-ldpi/btn_minus_default.png +++ b/core/res/res/drawable-ldpi/btn_minus_default.png diff --git a/core/res/res/drawable-ldpi/btn_minus_disable.png b/core/res/res/drawable-ldpi/btn_minus_disable.png Binary files differindex 7b91ea6..9e2c0d1 100644 --- a/core/res/res/drawable-ldpi/btn_minus_disable.png +++ b/core/res/res/drawable-ldpi/btn_minus_disable.png diff --git a/core/res/res/drawable-ldpi/btn_minus_disable_focused.png b/core/res/res/drawable-ldpi/btn_minus_disable_focused.png Binary files differindex a347e34..124ab97 100644 --- a/core/res/res/drawable-ldpi/btn_minus_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_minus_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_minus_pressed.png b/core/res/res/drawable-ldpi/btn_minus_pressed.png Binary files differindex aaa9746..159123c 100644 --- a/core/res/res/drawable-ldpi/btn_minus_pressed.png +++ b/core/res/res/drawable-ldpi/btn_minus_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_minus_selected.png b/core/res/res/drawable-ldpi/btn_minus_selected.png Binary files differindex 29c6962..43e84b1 100644 --- a/core/res/res/drawable-ldpi/btn_minus_selected.png +++ b/core/res/res/drawable-ldpi/btn_minus_selected.png diff --git a/core/res/res/drawable-ldpi/btn_plus_default.png b/core/res/res/drawable-ldpi/btn_plus_default.png Binary files differindex 8a5c600..d7655ff 100644 --- a/core/res/res/drawable-ldpi/btn_plus_default.png +++ b/core/res/res/drawable-ldpi/btn_plus_default.png diff --git a/core/res/res/drawable-ldpi/btn_plus_disable.png b/core/res/res/drawable-ldpi/btn_plus_disable.png Binary files differindex 1903ffa..56707fc 100644 --- a/core/res/res/drawable-ldpi/btn_plus_disable.png +++ b/core/res/res/drawable-ldpi/btn_plus_disable.png diff --git a/core/res/res/drawable-ldpi/btn_plus_disable_focused.png b/core/res/res/drawable-ldpi/btn_plus_disable_focused.png Binary files differindex 92f228a..46fc45a 100644 --- a/core/res/res/drawable-ldpi/btn_plus_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_plus_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_plus_pressed.png b/core/res/res/drawable-ldpi/btn_plus_pressed.png Binary files differindex 28f4e02..04597cb 100644 --- a/core/res/res/drawable-ldpi/btn_plus_pressed.png +++ b/core/res/res/drawable-ldpi/btn_plus_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_plus_selected.png b/core/res/res/drawable-ldpi/btn_plus_selected.png Binary files differindex c6fab19..7f258fb 100644 --- a/core/res/res/drawable-ldpi/btn_plus_selected.png +++ b/core/res/res/drawable-ldpi/btn_plus_selected.png diff --git a/core/res/res/drawable-ldpi/btn_radio_label_background.9.png b/core/res/res/drawable-ldpi/btn_radio_label_background.9.png Binary files differindex d04c41f..00ef04a 100644 --- a/core/res/res/drawable-ldpi/btn_radio_label_background.9.png +++ b/core/res/res/drawable-ldpi/btn_radio_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off.png b/core/res/res/drawable-ldpi/btn_radio_off.png Binary files differindex 6df3b0d..717e217 100644 --- a/core/res/res/drawable-ldpi/btn_radio_off.png +++ b/core/res/res/drawable-ldpi/btn_radio_off.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off_pressed.png b/core/res/res/drawable-ldpi/btn_radio_off_pressed.png Binary files differindex 4848ff0..1bfab00 100644 --- a/core/res/res/drawable-ldpi/btn_radio_off_pressed.png +++ b/core/res/res/drawable-ldpi/btn_radio_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off_selected.png b/core/res/res/drawable-ldpi/btn_radio_off_selected.png Binary files differindex 9336722..8332229 100644 --- a/core/res/res/drawable-ldpi/btn_radio_off_selected.png +++ b/core/res/res/drawable-ldpi/btn_radio_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on.png b/core/res/res/drawable-ldpi/btn_radio_on.png Binary files differindex 65e5791..dd72114 100644 --- a/core/res/res/drawable-ldpi/btn_radio_on.png +++ b/core/res/res/drawable-ldpi/btn_radio_on.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on_pressed.png b/core/res/res/drawable-ldpi/btn_radio_on_pressed.png Binary files differindex 4856c32..1c6fcec 100644 --- a/core/res/res/drawable-ldpi/btn_radio_on_pressed.png +++ b/core/res/res/drawable-ldpi/btn_radio_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on_selected.png b/core/res/res/drawable-ldpi/btn_radio_on_selected.png Binary files differindex 8b19dc7..50b3d50 100644 --- a/core/res/res/drawable-ldpi/btn_radio_on_selected.png +++ b/core/res/res/drawable-ldpi/btn_radio_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png b/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png Binary files differindex 5967bd3..509e80b 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png b/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png Binary files differindex 209e6a4..fc1b6f9 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png b/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png Binary files differindex c095f7f..e2e5cc1 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png b/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png Binary files differindex 89d2612..7afeed7 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png b/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png Binary files differindex 6386eaa..8a7b0c6 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png b/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png Binary files differindex e1edf4e..9ed0357 100644 --- a/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png Binary files differindex 35111b7..81b387c 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png Binary files differindex 8ca4c65..e820597 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png Binary files differindex 0bee0b7..36cb14d 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png Binary files differindex f9e7298..2d2a5ca 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png Binary files differindex a130f65..9c1c456 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png Binary files differindex c055bfe..136a8f8 100644 --- a/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png b/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png Binary files differindex 3b60946..90bdbe5 100644 --- a/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png +++ b/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png b/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png Binary files differindex a36a9dd..6120075 100644 --- a/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png +++ b/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_normal.png b/core/res/res/drawable-ldpi/btn_square_overlay_normal.png Binary files differindex 4537623..3fe1bd5 100644 --- a/core/res/res/drawable-ldpi/btn_square_overlay_normal.png +++ b/core/res/res/drawable-ldpi/btn_square_overlay_normal.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png b/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png Binary files differindex 62f2246..230644d 100644 --- a/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png +++ b/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_selected.png b/core/res/res/drawable-ldpi/btn_square_overlay_selected.png Binary files differindex 264d3fa..835a1bc 100644 --- a/core/res/res/drawable-ldpi/btn_square_overlay_selected.png +++ b/core/res/res/drawable-ldpi/btn_square_overlay_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off.png b/core/res/res/drawable-ldpi/btn_star_big_off.png Binary files differindex f0f1eb8..4e40036 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_off.png +++ b/core/res/res/drawable-ldpi/btn_star_big_off.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_disable.png b/core/res/res/drawable-ldpi/btn_star_big_off_disable.png Binary files differindex c6f2e20..55bc2bf 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_off_disable.png +++ b/core/res/res/drawable-ldpi/btn_star_big_off_disable.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png b/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png Binary files differindex 228a84e..a375468 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png b/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png Binary files differindex 041f81a..068d4f2 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png +++ b/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_selected.png b/core/res/res/drawable-ldpi/btn_star_big_off_selected.png Binary files differindex adc8151..22bc2ca 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_off_selected.png +++ b/core/res/res/drawable-ldpi/btn_star_big_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on.png b/core/res/res/drawable-ldpi/btn_star_big_on.png Binary files differindex cf5ed35..5a67b3f 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_on.png +++ b/core/res/res/drawable-ldpi/btn_star_big_on.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_disable.png b/core/res/res/drawable-ldpi/btn_star_big_on_disable.png Binary files differindex 53e6c65..cf2a65f 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_on_disable.png +++ b/core/res/res/drawable-ldpi/btn_star_big_on_disable.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png b/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png Binary files differindex 8535013..aa72214 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png +++ b/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png b/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png Binary files differindex 272787f..0ee6428 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png +++ b/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_selected.png b/core/res/res/drawable-ldpi/btn_star_big_on_selected.png Binary files differindex 938d743..485a6f8 100644 --- a/core/res/res/drawable-ldpi/btn_star_big_on_selected.png +++ b/core/res/res/drawable-ldpi/btn_star_big_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_label_background.9.png b/core/res/res/drawable-ldpi/btn_star_label_background.9.png Binary files differindex 3bc13c8..4bc9dcd 100644 --- a/core/res/res/drawable-ldpi/btn_star_label_background.9.png +++ b/core/res/res/drawable-ldpi/btn_star_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_toggle_off.9.png b/core/res/res/drawable-ldpi/btn_toggle_off.9.png Binary files differindex d0245ff..d3b8b74 100644 --- a/core/res/res/drawable-ldpi/btn_toggle_off.9.png +++ b/core/res/res/drawable-ldpi/btn_toggle_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_toggle_on.9.png b/core/res/res/drawable-ldpi/btn_toggle_on.9.png Binary files differindex 0987759..43c65fa 100644 --- a/core/res/res/drawable-ldpi/btn_toggle_on.9.png +++ b/core/res/res/drawable-ldpi/btn_toggle_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png Binary files differindex 0346abc..31934fc 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png Binary files differindex b03aa1b..099cf61 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png Binary files differindex aa2464c..32f36bd8 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png Binary files differindex caa4d30..53e53b1 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png Binary files differindex b814785..445da55 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_page_normal.png b/core/res/res/drawable-ldpi/btn_zoom_page_normal.png Binary files differindex 453bf40..550ab85 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_page_normal.png +++ b/core/res/res/drawable-ldpi/btn_zoom_page_normal.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_page_press.png b/core/res/res/drawable-ldpi/btn_zoom_page_press.png Binary files differindex 82c29c8..46c078f 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_page_press.png +++ b/core/res/res/drawable-ldpi/btn_zoom_page_press.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png Binary files differindex e64f178..231414c 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png Binary files differindex 3b21d0a..ae80bd1 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png Binary files differindex f4b56d5..dc9b830 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png Binary files differindex 45c668c..b1f8a94 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png Binary files differindex 1a07a52..a7b4507 100644 --- a/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png +++ b/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png diff --git a/core/res/res/drawable-ldpi/button_onoff_indicator_off.png b/core/res/res/drawable-ldpi/button_onoff_indicator_off.png Binary files differindex 7946356..d3c1076 100644 --- a/core/res/res/drawable-ldpi/button_onoff_indicator_off.png +++ b/core/res/res/drawable-ldpi/button_onoff_indicator_off.png diff --git a/core/res/res/drawable-ldpi/button_onoff_indicator_on.png b/core/res/res/drawable-ldpi/button_onoff_indicator_on.png Binary files differindex 6b817d5..3ff4567 100644 --- a/core/res/res/drawable-ldpi/button_onoff_indicator_on.png +++ b/core/res/res/drawable-ldpi/button_onoff_indicator_on.png diff --git a/core/res/res/drawable-ldpi/call_contact.png b/core/res/res/drawable-ldpi/call_contact.png Binary files differindex bee1d20..284bc76 100644 --- a/core/res/res/drawable-ldpi/call_contact.png +++ b/core/res/res/drawable-ldpi/call_contact.png diff --git a/core/res/res/drawable-ldpi/checkbox_off_background.png b/core/res/res/drawable-ldpi/checkbox_off_background.png Binary files differindex ab77983..b57b0d5 100644 --- a/core/res/res/drawable-ldpi/checkbox_off_background.png +++ b/core/res/res/drawable-ldpi/checkbox_off_background.png diff --git a/core/res/res/drawable-ldpi/checkbox_on_background.png b/core/res/res/drawable-ldpi/checkbox_on_background.png Binary files differindex dd92a4c..ac5a954 100644 --- a/core/res/res/drawable-ldpi/checkbox_on_background.png +++ b/core/res/res/drawable-ldpi/checkbox_on_background.png diff --git a/core/res/res/drawable-ldpi/clock_dial.png b/core/res/res/drawable-ldpi/clock_dial.png Binary files differindex cbc9961..ce57a34 100644 --- a/core/res/res/drawable-ldpi/clock_dial.png +++ b/core/res/res/drawable-ldpi/clock_dial.png diff --git a/core/res/res/drawable-ldpi/clock_hand_hour.png b/core/res/res/drawable-ldpi/clock_hand_hour.png Binary files differindex 3362fd0..b3c9868 100644 --- a/core/res/res/drawable-ldpi/clock_hand_hour.png +++ b/core/res/res/drawable-ldpi/clock_hand_hour.png diff --git a/core/res/res/drawable-ldpi/clock_hand_minute.png b/core/res/res/drawable-ldpi/clock_hand_minute.png Binary files differindex 5c73d45..bb85a33 100644 --- a/core/res/res/drawable-ldpi/clock_hand_minute.png +++ b/core/res/res/drawable-ldpi/clock_hand_minute.png diff --git a/core/res/res/drawable-ldpi/code_lock_bottom.9.png b/core/res/res/drawable-ldpi/code_lock_bottom.9.png Binary files differindex dddac51..937330a 100644 --- a/core/res/res/drawable-ldpi/code_lock_bottom.9.png +++ b/core/res/res/drawable-ldpi/code_lock_bottom.9.png diff --git a/core/res/res/drawable-ldpi/code_lock_left.9.png b/core/res/res/drawable-ldpi/code_lock_left.9.png Binary files differindex 8834f74..de85113 100644 --- a/core/res/res/drawable-ldpi/code_lock_left.9.png +++ b/core/res/res/drawable-ldpi/code_lock_left.9.png diff --git a/core/res/res/drawable-ldpi/code_lock_top.9.png b/core/res/res/drawable-ldpi/code_lock_top.9.png Binary files differindex 2a5e353..b5d00c0 100644 --- a/core/res/res/drawable-ldpi/code_lock_top.9.png +++ b/core/res/res/drawable-ldpi/code_lock_top.9.png diff --git a/core/res/res/drawable-ldpi/compass_arrow.png b/core/res/res/drawable-ldpi/compass_arrow.png Binary files differindex f59015c..011334d 100644 --- a/core/res/res/drawable-ldpi/compass_arrow.png +++ b/core/res/res/drawable-ldpi/compass_arrow.png diff --git a/core/res/res/drawable-ldpi/compass_base.png b/core/res/res/drawable-ldpi/compass_base.png Binary files differindex a2eeb07..002d2fb 100644 --- a/core/res/res/drawable-ldpi/compass_base.png +++ b/core/res/res/drawable-ldpi/compass_base.png diff --git a/core/res/res/drawable-ldpi/contact_header_bg.9.png b/core/res/res/drawable-ldpi/contact_header_bg.9.png Binary files differindex 20f0cd3..771d753 100644 --- a/core/res/res/drawable-ldpi/contact_header_bg.9.png +++ b/core/res/res/drawable-ldpi/contact_header_bg.9.png diff --git a/core/res/res/drawable-ldpi/create_contact.png b/core/res/res/drawable-ldpi/create_contact.png Binary files differindex c920ef4..a5a6bdd 100644 --- a/core/res/res/drawable-ldpi/create_contact.png +++ b/core/res/res/drawable-ldpi/create_contact.png diff --git a/core/res/res/drawable-ldpi/dark_header.9.png b/core/res/res/drawable-ldpi/dark_header.9.png Binary files differindex 88fa160..310d9e1 100644 --- a/core/res/res/drawable-ldpi/dark_header.9.png +++ b/core/res/res/drawable-ldpi/dark_header.9.png diff --git a/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png b/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png Binary files differindex 75a1534..b9eb3eb 100644 --- a/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png +++ b/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png b/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png Binary files differindex 24f2a3f..c32de12 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png b/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png Binary files differindex 24f2a3f..c32de12 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png Binary files differindex 470be26..b29b87a 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png Binary files differindex 24f2a3f..c32de12 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png Binary files differindex e04b49d..b182e3a 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png b/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png Binary files differindex 547b180..010beeb 100644 --- a/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png +++ b/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_bright.9.png b/core/res/res/drawable-ldpi/divider_vertical_bright.9.png Binary files differindex c85f7ab..b3a3c92 100644 --- a/core/res/res/drawable-ldpi/divider_vertical_bright.9.png +++ b/core/res/res/drawable-ldpi/divider_vertical_bright.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png b/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png Binary files differindex 662e033..2c563ad 100644 --- a/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png +++ b/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_dark.9.png b/core/res/res/drawable-ldpi/divider_vertical_dark.9.png Binary files differindex 470be26..b29b87a 100644 --- a/core/res/res/drawable-ldpi/divider_vertical_dark.9.png +++ b/core/res/res/drawable-ldpi/divider_vertical_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png b/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png Binary files differindex 94d2fda..e45d959 100644 --- a/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png +++ b/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png diff --git a/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png b/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png Binary files differindex f8d65bc..86a5d7c 100644 --- a/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png +++ b/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png diff --git a/core/res/res/drawable-ldpi/editbox_background_normal.9.png b/core/res/res/drawable-ldpi/editbox_background_normal.9.png Binary files differindex f8fb178..0897e82 100644 --- a/core/res/res/drawable-ldpi/editbox_background_normal.9.png +++ b/core/res/res/drawable-ldpi/editbox_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png b/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png Binary files differindex 8717d34..e9fc68f 100644 --- a/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png +++ b/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png diff --git a/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png b/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png Binary files differindex 18885fc..842cbea 100644 --- a/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png +++ b/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png diff --git a/core/res/res/drawable-ldpi/emo_im_angel.png b/core/res/res/drawable-ldpi/emo_im_angel.png Binary files differindex eb74cb3..98fd770 100644 --- a/core/res/res/drawable-ldpi/emo_im_angel.png +++ b/core/res/res/drawable-ldpi/emo_im_angel.png diff --git a/core/res/res/drawable-ldpi/emo_im_cool.png b/core/res/res/drawable-ldpi/emo_im_cool.png Binary files differindex 657de3b..d5ef1c5 100644 --- a/core/res/res/drawable-ldpi/emo_im_cool.png +++ b/core/res/res/drawable-ldpi/emo_im_cool.png diff --git a/core/res/res/drawable-ldpi/emo_im_crying.png b/core/res/res/drawable-ldpi/emo_im_crying.png Binary files differindex 292cf0c..d1c7167 100644 --- a/core/res/res/drawable-ldpi/emo_im_crying.png +++ b/core/res/res/drawable-ldpi/emo_im_crying.png diff --git a/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png Binary files differindex b1d9983..1bcddc7 100644 --- a/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png +++ b/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-ldpi/emo_im_happy.png b/core/res/res/drawable-ldpi/emo_im_happy.png Binary files differindex b34a54b..0a7a7cd 100644 --- a/core/res/res/drawable-ldpi/emo_im_happy.png +++ b/core/res/res/drawable-ldpi/emo_im_happy.png diff --git a/core/res/res/drawable-ldpi/emo_im_kissing.png b/core/res/res/drawable-ldpi/emo_im_kissing.png Binary files differindex d8aaf11..1cb4d52 100644 --- a/core/res/res/drawable-ldpi/emo_im_kissing.png +++ b/core/res/res/drawable-ldpi/emo_im_kissing.png diff --git a/core/res/res/drawable-ldpi/emo_im_laughing.png b/core/res/res/drawable-ldpi/emo_im_laughing.png Binary files differindex 41ddb6f..35e8a65 100644 --- a/core/res/res/drawable-ldpi/emo_im_laughing.png +++ b/core/res/res/drawable-ldpi/emo_im_laughing.png diff --git a/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png Binary files differindex 85d0c42..5201e3a 100644 --- a/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png +++ b/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-ldpi/emo_im_money_mouth.png b/core/res/res/drawable-ldpi/emo_im_money_mouth.png Binary files differindex b04a56c..607cccd 100644 --- a/core/res/res/drawable-ldpi/emo_im_money_mouth.png +++ b/core/res/res/drawable-ldpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-ldpi/emo_im_sad.png b/core/res/res/drawable-ldpi/emo_im_sad.png Binary files differindex e978231..58f78c9 100644 --- a/core/res/res/drawable-ldpi/emo_im_sad.png +++ b/core/res/res/drawable-ldpi/emo_im_sad.png diff --git a/core/res/res/drawable-ldpi/emo_im_surprised.png b/core/res/res/drawable-ldpi/emo_im_surprised.png Binary files differindex 6f9c8d9..8285010 100644 --- a/core/res/res/drawable-ldpi/emo_im_surprised.png +++ b/core/res/res/drawable-ldpi/emo_im_surprised.png diff --git a/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png Binary files differindex c62447c..885f18fe 100644 --- a/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png +++ b/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-ldpi/emo_im_undecided.png b/core/res/res/drawable-ldpi/emo_im_undecided.png Binary files differindex 27c4ca3..636d700 100644 --- a/core/res/res/drawable-ldpi/emo_im_undecided.png +++ b/core/res/res/drawable-ldpi/emo_im_undecided.png diff --git a/core/res/res/drawable-ldpi/emo_im_winking.png b/core/res/res/drawable-ldpi/emo_im_winking.png Binary files differindex 97b180f..ec6fbd9 100644 --- a/core/res/res/drawable-ldpi/emo_im_winking.png +++ b/core/res/res/drawable-ldpi/emo_im_winking.png diff --git a/core/res/res/drawable-ldpi/emo_im_wtf.png b/core/res/res/drawable-ldpi/emo_im_wtf.png Binary files differindex 8d6a307..1a4d1c3 100644 --- a/core/res/res/drawable-ldpi/emo_im_wtf.png +++ b/core/res/res/drawable-ldpi/emo_im_wtf.png diff --git a/core/res/res/drawable-ldpi/emo_im_yelling.png b/core/res/res/drawable-ldpi/emo_im_yelling.png Binary files differindex ce74375..baeeb3d 100644 --- a/core/res/res/drawable-ldpi/emo_im_yelling.png +++ b/core/res/res/drawable-ldpi/emo_im_yelling.png diff --git a/core/res/res/drawable-ldpi/expander_ic_maximized.9.png b/core/res/res/drawable-ldpi/expander_ic_maximized.9.png Binary files differindex 732a6f5..ebf1e4b 100644 --- a/core/res/res/drawable-ldpi/expander_ic_maximized.9.png +++ b/core/res/res/drawable-ldpi/expander_ic_maximized.9.png diff --git a/core/res/res/drawable-ldpi/expander_ic_minimized.9.png b/core/res/res/drawable-ldpi/expander_ic_minimized.9.png Binary files differindex 054e3a4..371d081 100644 --- a/core/res/res/drawable-ldpi/expander_ic_minimized.9.png +++ b/core/res/res/drawable-ldpi/expander_ic_minimized.9.png diff --git a/core/res/res/drawable-ldpi/focused_application_background_static.png b/core/res/res/drawable-ldpi/focused_application_background_static.png Binary files differindex 8738bad..aa2047e 100644 --- a/core/res/res/drawable-ldpi/focused_application_background_static.png +++ b/core/res/res/drawable-ldpi/focused_application_background_static.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png Binary files differindex d686b77..5c36bc5 100644 --- a/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png Binary files differindex c33048a..850cf99 100644 --- a/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png Binary files differindex 8c4adbc..81c9ac5 100644 --- a/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_default.9.png b/core/res/res/drawable-ldpi/gallery_selected_default.9.png Binary files differindex 3d55225..0ef59c2 100644 --- a/core/res/res/drawable-ldpi/gallery_selected_default.9.png +++ b/core/res/res/drawable-ldpi/gallery_selected_default.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_focused.9.png b/core/res/res/drawable-ldpi/gallery_selected_focused.9.png Binary files differindex 31aabc2..7659a39 100644 --- a/core/res/res/drawable-ldpi/gallery_selected_focused.9.png +++ b/core/res/res/drawable-ldpi/gallery_selected_focused.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png b/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png Binary files differindex d05a36f..9b1a4ea 100644 --- a/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png +++ b/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png diff --git a/core/res/res/drawable-ldpi/gallery_unselected_default.9.png b/core/res/res/drawable-ldpi/gallery_unselected_default.9.png Binary files differindex 179c32c..3e8c45a 100644 --- a/core/res/res/drawable-ldpi/gallery_unselected_default.9.png +++ b/core/res/res/drawable-ldpi/gallery_unselected_default.9.png diff --git a/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png b/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png Binary files differindex 0e3f652..22cd2a8 100644 --- a/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png +++ b/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png diff --git a/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png b/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png Binary files differindex 87d47ca..b857fb0 100644 --- a/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png +++ b/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png b/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png Binary files differindex f2cc507..290aeaf 100644 --- a/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png +++ b/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/highlight_disabled.9.png b/core/res/res/drawable-ldpi/highlight_disabled.9.png Binary files differindex 473bdf6..43ece68 100644 --- a/core/res/res/drawable-ldpi/highlight_disabled.9.png +++ b/core/res/res/drawable-ldpi/highlight_disabled.9.png diff --git a/core/res/res/drawable-ldpi/highlight_pressed.9.png b/core/res/res/drawable-ldpi/highlight_pressed.9.png Binary files differindex 0ebfbde..7ee9ee3 100644 --- a/core/res/res/drawable-ldpi/highlight_pressed.9.png +++ b/core/res/res/drawable-ldpi/highlight_pressed.9.png diff --git a/core/res/res/drawable-ldpi/highlight_selected.9.png b/core/res/res/drawable-ldpi/highlight_selected.9.png Binary files differindex a4df027..557d2cb 100644 --- a/core/res/res/drawable-ldpi/highlight_selected.9.png +++ b/core/res/res/drawable-ldpi/highlight_selected.9.png diff --git a/core/res/res/drawable-ldpi/ic_aggregated.png b/core/res/res/drawable-ldpi/ic_aggregated.png Binary files differindex fdb2e90..2cf92a9 100644 --- a/core/res/res/drawable-ldpi/ic_aggregated.png +++ b/core/res/res/drawable-ldpi/ic_aggregated.png diff --git a/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png b/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png Binary files differindex 99c7a2f..3a995be 100644 --- a/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png +++ b/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png b/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png Binary files differindex a8cb6d5..5ae7c59 100644 --- a/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png +++ b/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png diff --git a/core/res/res/drawable-ldpi/ic_btn_search_go.png b/core/res/res/drawable-ldpi/ic_btn_search_go.png Binary files differindex 94e5555..9ce9de5 100644 --- a/core/res/res/drawable-ldpi/ic_btn_search_go.png +++ b/core/res/res/drawable-ldpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-ldpi/ic_btn_speak_now.png b/core/res/res/drawable-ldpi/ic_btn_speak_now.png Binary files differindex 106e8e6..f961e6a 100644 --- a/core/res/res/drawable-ldpi/ic_btn_speak_now.png +++ b/core/res/res/drawable-ldpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png Binary files differindex ef71e6c..5fa881a 100644 --- a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png Binary files differindex fc1531c..d26c394 100644 --- a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png Binary files differindex 84fcf0a..da9f5ee 100644 --- a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png Binary files differindex 70fc818..79d5c42 100644 --- a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png diff --git a/core/res/res/drawable-ldpi/ic_bullet_key_permission.png b/core/res/res/drawable-ldpi/ic_bullet_key_permission.png Binary files differindex 4aff20c..316f8f9 100644 --- a/core/res/res/drawable-ldpi/ic_bullet_key_permission.png +++ b/core/res/res/drawable-ldpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture.png b/core/res/res/drawable-ldpi/ic_contact_picture.png Binary files differindex a0444e4..edf634a 100644 --- a/core/res/res/drawable-ldpi/ic_contact_picture.png +++ b/core/res/res/drawable-ldpi/ic_contact_picture.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture_2.png b/core/res/res/drawable-ldpi/ic_contact_picture_2.png Binary files differindex 42e8d86..7439f3b 100644 --- a/core/res/res/drawable-ldpi/ic_contact_picture_2.png +++ b/core/res/res/drawable-ldpi/ic_contact_picture_2.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture_3.png b/core/res/res/drawable-ldpi/ic_contact_picture_3.png Binary files differindex c9c0a65..739eb7a 100644 --- a/core/res/res/drawable-ldpi/ic_contact_picture_3.png +++ b/core/res/res/drawable-ldpi/ic_contact_picture_3.png diff --git a/core/res/res/drawable-ldpi/ic_delete.png b/core/res/res/drawable-ldpi/ic_delete.png Binary files differindex a4cefa8..86fce26 100644 --- a/core/res/res/drawable-ldpi/ic_delete.png +++ b/core/res/res/drawable-ldpi/ic_delete.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_alert.png b/core/res/res/drawable-ldpi/ic_dialog_alert.png Binary files differindex 6c3c624..a2559d6 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_alert.png +++ b/core/res/res/drawable-ldpi/ic_dialog_alert.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_dialer.png b/core/res/res/drawable-ldpi/ic_dialog_dialer.png Binary files differindex 066efef..2976ef2 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_dialer.png +++ b/core/res/res/drawable-ldpi/ic_dialog_dialer.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_email.png b/core/res/res/drawable-ldpi/ic_dialog_email.png Binary files differindex 194222e..95ba281 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_email.png +++ b/core/res/res/drawable-ldpi/ic_dialog_email.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_info.png b/core/res/res/drawable-ldpi/ic_dialog_info.png Binary files differindex a1dcc5a..bdd7d6f 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_info.png +++ b/core/res/res/drawable-ldpi/ic_dialog_info.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_map.png b/core/res/res/drawable-ldpi/ic_dialog_map.png Binary files differindex 9b04476..34a840a 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_map.png +++ b/core/res/res/drawable-ldpi/ic_dialog_map.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_time.png b/core/res/res/drawable-ldpi/ic_dialog_time.png Binary files differindex 5b8722b..7dbaef0 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_time.png +++ b/core/res/res/drawable-ldpi/ic_dialog_time.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_usb.png b/core/res/res/drawable-ldpi/ic_dialog_usb.png Binary files differindex eeef46e..c2fa9eb 100644 --- a/core/res/res/drawable-ldpi/ic_dialog_usb.png +++ b/core/res/res/drawable-ldpi/ic_dialog_usb.png diff --git a/core/res/res/drawable-ldpi/ic_emergency.png b/core/res/res/drawable-ldpi/ic_emergency.png Binary files differindex 5c4ed5d..48e549e 100644 --- a/core/res/res/drawable-ldpi/ic_emergency.png +++ b/core/res/res/drawable-ldpi/ic_emergency.png diff --git a/core/res/res/drawable-ldpi/ic_input_add.png b/core/res/res/drawable-ldpi/ic_input_add.png Binary files differindex 04cc27a..3a7173c 100644 --- a/core/res/res/drawable-ldpi/ic_input_add.png +++ b/core/res/res/drawable-ldpi/ic_input_add.png diff --git a/core/res/res/drawable-ldpi/ic_input_delete.png b/core/res/res/drawable-ldpi/ic_input_delete.png Binary files differindex d7eff17..1d86f29 100644 --- a/core/res/res/drawable-ldpi/ic_input_delete.png +++ b/core/res/res/drawable-ldpi/ic_input_delete.png diff --git a/core/res/res/drawable-ldpi/ic_input_get.png b/core/res/res/drawable-ldpi/ic_input_get.png Binary files differindex 4452993..56e9bd8 100644 --- a/core/res/res/drawable-ldpi/ic_input_get.png +++ b/core/res/res/drawable-ldpi/ic_input_get.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer.png Binary files differindex 9c5800a..1cb2dc3 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_answer.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png Binary files differindex 117c6d8..17051ff 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png Binary files differindex 08280e3..61e0dee 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_decline.png b/core/res/res/drawable-ldpi/ic_jog_dial_decline.png Binary files differindex 7ccc1ca..d25f898 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_decline.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_decline.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png Binary files differindex a4e3edf..a31a9a2 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png Binary files differindex f8190b56..30c4c8b 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png b/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png Binary files differindex 16fa0db..289a68b 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png b/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png Binary files differindex ac5a9b9..ec65b1a 100644 --- a/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png +++ b/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png diff --git a/core/res/res/drawable-ldpi/ic_launcher_android.png b/core/res/res/drawable-ldpi/ic_launcher_android.png Binary files differindex 628a8de..4f0d032 100644 --- a/core/res/res/drawable-ldpi/ic_launcher_android.png +++ b/core/res/res/drawable-ldpi/ic_launcher_android.png diff --git a/core/res/res/drawable-ldpi/ic_lock_airplane_mode_alpha.png b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_alpha.png Binary files differindex 65a101b..69928ef 100644 --- a/core/res/res/drawable-ldpi/ic_lock_airplane_mode_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off_am_alpha.png b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off_am_alpha.png Binary files differindex 11adeb8..447cb43 100644 --- a/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off_am_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off_am_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_alarm_alpha.png b/core/res/res/drawable-ldpi/ic_lock_idle_alarm_alpha.png Binary files differindex dc133c5..5ef7b40 100644 --- a/core/res/res/drawable-ldpi/ic_lock_idle_alarm_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_idle_alarm_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_charging.png b/core/res/res/drawable-ldpi/ic_lock_idle_charging.png Binary files differindex c943b67..b9b38d2 100644 --- a/core/res/res/drawable-ldpi/ic_lock_idle_charging.png +++ b/core/res/res/drawable-ldpi/ic_lock_idle_charging.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_lock.png b/core/res/res/drawable-ldpi/ic_lock_idle_lock.png Binary files differindex bc4adfd..2534044 100644 --- a/core/res/res/drawable-ldpi/ic_lock_idle_lock.png +++ b/core/res/res/drawable-ldpi/ic_lock_idle_lock.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png b/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png Binary files differindex df7cb22..80133e7 100644 --- a/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png +++ b/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png diff --git a/core/res/res/drawable-ldpi/ic_lock_lock_alpha.png b/core/res/res/drawable-ldpi/ic_lock_lock_alpha.png Binary files differindex bde40f6..842b192 100644 --- a/core/res/res/drawable-ldpi/ic_lock_lock_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_lock_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_power_off_alpha.png b/core/res/res/drawable-ldpi/ic_lock_power_off_alpha.png Binary files differindex 074d6d0..ccc6ccd 100644 --- a/core/res/res/drawable-ldpi/ic_lock_power_off_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_power_off_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_ringer_off_alpha.png b/core/res/res/drawable-ldpi/ic_lock_ringer_off_alpha.png Binary files differindex 50ff3de..ce1ee40 100644 --- a/core/res/res/drawable-ldpi/ic_lock_ringer_off_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_ringer_off_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_ringer_on_alpha.png b/core/res/res/drawable-ldpi/ic_lock_ringer_on_alpha.png Binary files differindex 7232728..691e689 100644 --- a/core/res/res/drawable-ldpi/ic_lock_ringer_on_alpha.png +++ b/core/res/res/drawable-ldpi/ic_lock_ringer_on_alpha.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode.png Binary files differindex 8004f9d..984f5c8 100644 --- a/core/res/res/drawable-ldpi/ic_lock_silent_mode.png +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png Binary files differindex 81b7a8d..b84482c 100644 --- a/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png Binary files differindex 5f54f6f..4714a5c 100644 --- a/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png Binary files differindex 697b065..1aea7bb 100644 --- a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png Binary files differindex 15a8a08..56bcfe6 100644 --- a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png Binary files differindex f8b8de2..df69327 100644 --- a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png Binary files differindex 02f7547..aec16d2 100644 --- a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png diff --git a/core/res/res/drawable-ldpi/ic_media_embed_play.png b/core/res/res/drawable-ldpi/ic_media_embed_play.png Binary files differindex e7c1972..6a3c9ec 100644 --- a/core/res/res/drawable-ldpi/ic_media_embed_play.png +++ b/core/res/res/drawable-ldpi/ic_media_embed_play.png diff --git a/core/res/res/drawable-ldpi/ic_media_ff.png b/core/res/res/drawable-ldpi/ic_media_ff.png Binary files differindex 1b4d9db..0b66f6f 100644 --- a/core/res/res/drawable-ldpi/ic_media_ff.png +++ b/core/res/res/drawable-ldpi/ic_media_ff.png diff --git a/core/res/res/drawable-ldpi/ic_media_fullscreen.png b/core/res/res/drawable-ldpi/ic_media_fullscreen.png Binary files differindex 1a38c38..86ac90f 100644 --- a/core/res/res/drawable-ldpi/ic_media_fullscreen.png +++ b/core/res/res/drawable-ldpi/ic_media_fullscreen.png diff --git a/core/res/res/drawable-ldpi/ic_media_next.png b/core/res/res/drawable-ldpi/ic_media_next.png Binary files differindex 99927fd..c3e1c08 100644 --- a/core/res/res/drawable-ldpi/ic_media_next.png +++ b/core/res/res/drawable-ldpi/ic_media_next.png diff --git a/core/res/res/drawable-ldpi/ic_media_pause.png b/core/res/res/drawable-ldpi/ic_media_pause.png Binary files differindex 3b98d66..4bc160e 100644 --- a/core/res/res/drawable-ldpi/ic_media_pause.png +++ b/core/res/res/drawable-ldpi/ic_media_pause.png diff --git a/core/res/res/drawable-ldpi/ic_media_play.png b/core/res/res/drawable-ldpi/ic_media_play.png Binary files differindex e7c1972..6a3c9ec 100644 --- a/core/res/res/drawable-ldpi/ic_media_play.png +++ b/core/res/res/drawable-ldpi/ic_media_play.png diff --git a/core/res/res/drawable-ldpi/ic_media_previous.png b/core/res/res/drawable-ldpi/ic_media_previous.png Binary files differindex df04322..bde6386 100644 --- a/core/res/res/drawable-ldpi/ic_media_previous.png +++ b/core/res/res/drawable-ldpi/ic_media_previous.png diff --git a/core/res/res/drawable-ldpi/ic_media_rew.png b/core/res/res/drawable-ldpi/ic_media_rew.png Binary files differindex 28843f9..d458ee3 100644 --- a/core/res/res/drawable-ldpi/ic_media_rew.png +++ b/core/res/res/drawable-ldpi/ic_media_rew.png diff --git a/core/res/res/drawable-ldpi/ic_media_video_poster.png b/core/res/res/drawable-ldpi/ic_media_video_poster.png Binary files differindex 7b34913..a93833a 100644 --- a/core/res/res/drawable-ldpi/ic_media_video_poster.png +++ b/core/res/res/drawable-ldpi/ic_media_video_poster.png diff --git a/core/res/res/drawable-ldpi/ic_menu_account_list.png b/core/res/res/drawable-ldpi/ic_menu_account_list.png Binary files differindex 04ededd..9ae69b7 100644 --- a/core/res/res/drawable-ldpi/ic_menu_account_list.png +++ b/core/res/res/drawable-ldpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-ldpi/ic_menu_add.png b/core/res/res/drawable-ldpi/ic_menu_add.png Binary files differindex 89620af..5683000 100644 --- a/core/res/res/drawable-ldpi/ic_menu_add.png +++ b/core/res/res/drawable-ldpi/ic_menu_add.png diff --git a/core/res/res/drawable-ldpi/ic_menu_agenda.png b/core/res/res/drawable-ldpi/ic_menu_agenda.png Binary files differindex 9abcc68..56b9761 100644 --- a/core/res/res/drawable-ldpi/ic_menu_agenda.png +++ b/core/res/res/drawable-ldpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-ldpi/ic_menu_allfriends.png b/core/res/res/drawable-ldpi/ic_menu_allfriends.png Binary files differindex 462d078..3c3fe67 100644 --- a/core/res/res/drawable-ldpi/ic_menu_allfriends.png +++ b/core/res/res/drawable-ldpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png Binary files differindex 2c779ca..951fffa 100644 --- a/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png +++ b/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-ldpi/ic_menu_archive.png b/core/res/res/drawable-ldpi/ic_menu_archive.png Binary files differindex 719ecd8..2823825 100644 --- a/core/res/res/drawable-ldpi/ic_menu_archive.png +++ b/core/res/res/drawable-ldpi/ic_menu_archive.png diff --git a/core/res/res/drawable-ldpi/ic_menu_attachment.png b/core/res/res/drawable-ldpi/ic_menu_attachment.png Binary files differindex 8fc2211..c1ff069 100644 --- a/core/res/res/drawable-ldpi/ic_menu_attachment.png +++ b/core/res/res/drawable-ldpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-ldpi/ic_menu_back.png b/core/res/res/drawable-ldpi/ic_menu_back.png Binary files differindex 71eb533..f3778ad 100644 --- a/core/res/res/drawable-ldpi/ic_menu_back.png +++ b/core/res/res/drawable-ldpi/ic_menu_back.png diff --git a/core/res/res/drawable-ldpi/ic_menu_block.png b/core/res/res/drawable-ldpi/ic_menu_block.png Binary files differindex c8d80cd..16acb64 100644 --- a/core/res/res/drawable-ldpi/ic_menu_block.png +++ b/core/res/res/drawable-ldpi/ic_menu_block.png diff --git a/core/res/res/drawable-ldpi/ic_menu_blocked_user.png b/core/res/res/drawable-ldpi/ic_menu_blocked_user.png Binary files differindex c6407b5..4a8f3a7 100644 --- a/core/res/res/drawable-ldpi/ic_menu_blocked_user.png +++ b/core/res/res/drawable-ldpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-ldpi/ic_menu_call.png b/core/res/res/drawable-ldpi/ic_menu_call.png Binary files differindex 39d4b10..bb835e7 100644 --- a/core/res/res/drawable-ldpi/ic_menu_call.png +++ b/core/res/res/drawable-ldpi/ic_menu_call.png diff --git a/core/res/res/drawable-ldpi/ic_menu_camera.png b/core/res/res/drawable-ldpi/ic_menu_camera.png Binary files differindex 4d3a6a5..3d721a5 100644 --- a/core/res/res/drawable-ldpi/ic_menu_camera.png +++ b/core/res/res/drawable-ldpi/ic_menu_camera.png diff --git a/core/res/res/drawable-ldpi/ic_menu_cc_am.png b/core/res/res/drawable-ldpi/ic_menu_cc_am.png Binary files differindex d90d70d..c4821ea 100644 --- a/core/res/res/drawable-ldpi/ic_menu_cc_am.png +++ b/core/res/res/drawable-ldpi/ic_menu_cc_am.png diff --git a/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png Binary files differindex c417faa..657350d 100644 --- a/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png +++ b/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png b/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png Binary files differindex f3e6b51..e00f9fa 100644 --- a/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png +++ b/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png b/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png Binary files differindex 760b925..7254291 100644 --- a/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png +++ b/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png diff --git a/core/res/res/drawable-ldpi/ic_menu_compass.png b/core/res/res/drawable-ldpi/ic_menu_compass.png Binary files differindex bf1724b..d85ad81 100644 --- a/core/res/res/drawable-ldpi/ic_menu_compass.png +++ b/core/res/res/drawable-ldpi/ic_menu_compass.png diff --git a/core/res/res/drawable-ldpi/ic_menu_compose.png b/core/res/res/drawable-ldpi/ic_menu_compose.png Binary files differindex 1e6767b..ff783fe 100644 --- a/core/res/res/drawable-ldpi/ic_menu_compose.png +++ b/core/res/res/drawable-ldpi/ic_menu_compose.png diff --git a/core/res/res/drawable-ldpi/ic_menu_crop.png b/core/res/res/drawable-ldpi/ic_menu_crop.png Binary files differindex 97c9182..98a000a 100644 --- a/core/res/res/drawable-ldpi/ic_menu_crop.png +++ b/core/res/res/drawable-ldpi/ic_menu_crop.png diff --git a/core/res/res/drawable-ldpi/ic_menu_day.png b/core/res/res/drawable-ldpi/ic_menu_day.png Binary files differindex f0d661b..137ea5a 100644 --- a/core/res/res/drawable-ldpi/ic_menu_day.png +++ b/core/res/res/drawable-ldpi/ic_menu_day.png diff --git a/core/res/res/drawable-ldpi/ic_menu_delete.png b/core/res/res/drawable-ldpi/ic_menu_delete.png Binary files differindex dbad3dd..7d20568 100644 --- a/core/res/res/drawable-ldpi/ic_menu_delete.png +++ b/core/res/res/drawable-ldpi/ic_menu_delete.png diff --git a/core/res/res/drawable-ldpi/ic_menu_directions.png b/core/res/res/drawable-ldpi/ic_menu_directions.png Binary files differindex 5d89d46..2f04397 100644 --- a/core/res/res/drawable-ldpi/ic_menu_directions.png +++ b/core/res/res/drawable-ldpi/ic_menu_directions.png diff --git a/core/res/res/drawable-ldpi/ic_menu_edit.png b/core/res/res/drawable-ldpi/ic_menu_edit.png Binary files differindex 9bb66e3..9e71d56 100644 --- a/core/res/res/drawable-ldpi/ic_menu_edit.png +++ b/core/res/res/drawable-ldpi/ic_menu_edit.png diff --git a/core/res/res/drawable-ldpi/ic_menu_emoticons.png b/core/res/res/drawable-ldpi/ic_menu_emoticons.png Binary files differindex a97db87..2292a2c 100644 --- a/core/res/res/drawable-ldpi/ic_menu_emoticons.png +++ b/core/res/res/drawable-ldpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-ldpi/ic_menu_end_conversation.png b/core/res/res/drawable-ldpi/ic_menu_end_conversation.png Binary files differindex dd2005e..fdbb66f 100644 --- a/core/res/res/drawable-ldpi/ic_menu_end_conversation.png +++ b/core/res/res/drawable-ldpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_forward.png b/core/res/res/drawable-ldpi/ic_menu_forward.png Binary files differindex 554cfb7..ed9ba0d 100644 --- a/core/res/res/drawable-ldpi/ic_menu_forward.png +++ b/core/res/res/drawable-ldpi/ic_menu_forward.png diff --git a/core/res/res/drawable-ldpi/ic_menu_friendslist.png b/core/res/res/drawable-ldpi/ic_menu_friendslist.png Binary files differindex 62950da..ae7afac 100644 --- a/core/res/res/drawable-ldpi/ic_menu_friendslist.png +++ b/core/res/res/drawable-ldpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-ldpi/ic_menu_gallery.png b/core/res/res/drawable-ldpi/ic_menu_gallery.png Binary files differindex d57b284..e5cb713 100644 --- a/core/res/res/drawable-ldpi/ic_menu_gallery.png +++ b/core/res/res/drawable-ldpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-ldpi/ic_menu_goto.png b/core/res/res/drawable-ldpi/ic_menu_goto.png Binary files differindex d15ea3d..cac3e1a 100644 --- a/core/res/res/drawable-ldpi/ic_menu_goto.png +++ b/core/res/res/drawable-ldpi/ic_menu_goto.png diff --git a/core/res/res/drawable-ldpi/ic_menu_help.png b/core/res/res/drawable-ldpi/ic_menu_help.png Binary files differindex f93a4e6..078281f 100644 --- a/core/res/res/drawable-ldpi/ic_menu_help.png +++ b/core/res/res/drawable-ldpi/ic_menu_help.png diff --git a/core/res/res/drawable-ldpi/ic_menu_home.png b/core/res/res/drawable-ldpi/ic_menu_home.png Binary files differindex fd6f453..b0f4729 100644 --- a/core/res/res/drawable-ldpi/ic_menu_home.png +++ b/core/res/res/drawable-ldpi/ic_menu_home.png diff --git a/core/res/res/drawable-ldpi/ic_menu_info_details.png b/core/res/res/drawable-ldpi/ic_menu_info_details.png Binary files differindex 55c57d5..7e5c812 100644 --- a/core/res/res/drawable-ldpi/ic_menu_info_details.png +++ b/core/res/res/drawable-ldpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-ldpi/ic_menu_invite.png b/core/res/res/drawable-ldpi/ic_menu_invite.png Binary files differindex 16de8fe..07c8ee4 100644 --- a/core/res/res/drawable-ldpi/ic_menu_invite.png +++ b/core/res/res/drawable-ldpi/ic_menu_invite.png diff --git a/core/res/res/drawable-ldpi/ic_menu_login.png b/core/res/res/drawable-ldpi/ic_menu_login.png Binary files differindex d4181de..22a295c 100644 --- a/core/res/res/drawable-ldpi/ic_menu_login.png +++ b/core/res/res/drawable-ldpi/ic_menu_login.png diff --git a/core/res/res/drawable-ldpi/ic_menu_manage.png b/core/res/res/drawable-ldpi/ic_menu_manage.png Binary files differindex b137b8c..a8607ca 100644 --- a/core/res/res/drawable-ldpi/ic_menu_manage.png +++ b/core/res/res/drawable-ldpi/ic_menu_manage.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mapmode.png b/core/res/res/drawable-ldpi/ic_menu_mapmode.png Binary files differindex 8851005..41dcc82 100644 --- a/core/res/res/drawable-ldpi/ic_menu_mapmode.png +++ b/core/res/res/drawable-ldpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mark.png b/core/res/res/drawable-ldpi/ic_menu_mark.png Binary files differindex 1d44027..cc9eb3e 100644 --- a/core/res/res/drawable-ldpi/ic_menu_mark.png +++ b/core/res/res/drawable-ldpi/ic_menu_mark.png diff --git a/core/res/res/drawable-ldpi/ic_menu_month.png b/core/res/res/drawable-ldpi/ic_menu_month.png Binary files differindex a3462f6..a2a593a 100644 --- a/core/res/res/drawable-ldpi/ic_menu_month.png +++ b/core/res/res/drawable-ldpi/ic_menu_month.png diff --git a/core/res/res/drawable-ldpi/ic_menu_more.png b/core/res/res/drawable-ldpi/ic_menu_more.png Binary files differindex 9296554..a3d788f 100644 --- a/core/res/res/drawable-ldpi/ic_menu_more.png +++ b/core/res/res/drawable-ldpi/ic_menu_more.png diff --git a/core/res/res/drawable-ldpi/ic_menu_my_calendar.png b/core/res/res/drawable-ldpi/ic_menu_my_calendar.png Binary files differindex db3a8b5..aebd670 100644 --- a/core/res/res/drawable-ldpi/ic_menu_my_calendar.png +++ b/core/res/res/drawable-ldpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mylocation.png b/core/res/res/drawable-ldpi/ic_menu_mylocation.png Binary files differindex 2db7867..0b52db8 100644 --- a/core/res/res/drawable-ldpi/ic_menu_mylocation.png +++ b/core/res/res/drawable-ldpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_myplaces.png b/core/res/res/drawable-ldpi/ic_menu_myplaces.png Binary files differindex 9d2e8dc..d079a78 100644 --- a/core/res/res/drawable-ldpi/ic_menu_myplaces.png +++ b/core/res/res/drawable-ldpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-ldpi/ic_menu_notifications.png b/core/res/res/drawable-ldpi/ic_menu_notifications.png Binary files differindex 0a22b32..c066abb 100644 --- a/core/res/res/drawable-ldpi/ic_menu_notifications.png +++ b/core/res/res/drawable-ldpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-ldpi/ic_menu_play_clip.png b/core/res/res/drawable-ldpi/ic_menu_play_clip.png Binary files differindex 7d0f11e..20b4bd5 100644 --- a/core/res/res/drawable-ldpi/ic_menu_play_clip.png +++ b/core/res/res/drawable-ldpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-ldpi/ic_menu_preferences.png b/core/res/res/drawable-ldpi/ic_menu_preferences.png Binary files differindex efc2f3e..a9ced6f 100644 --- a/core/res/res/drawable-ldpi/ic_menu_preferences.png +++ b/core/res/res/drawable-ldpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-ldpi/ic_menu_recent_history.png b/core/res/res/drawable-ldpi/ic_menu_recent_history.png Binary files differindex c75f6e3..891a577 100644 --- a/core/res/res/drawable-ldpi/ic_menu_recent_history.png +++ b/core/res/res/drawable-ldpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-ldpi/ic_menu_report_image.png b/core/res/res/drawable-ldpi/ic_menu_report_image.png Binary files differindex f2c3a90..4e0785c 100644 --- a/core/res/res/drawable-ldpi/ic_menu_report_image.png +++ b/core/res/res/drawable-ldpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-ldpi/ic_menu_revert.png b/core/res/res/drawable-ldpi/ic_menu_revert.png Binary files differindex b0f2c60..2a4a2c7 100644 --- a/core/res/res/drawable-ldpi/ic_menu_revert.png +++ b/core/res/res/drawable-ldpi/ic_menu_revert.png diff --git a/core/res/res/drawable-ldpi/ic_menu_rotate.png b/core/res/res/drawable-ldpi/ic_menu_rotate.png Binary files differindex 34dcbce..f47b9f1 100644 --- a/core/res/res/drawable-ldpi/ic_menu_rotate.png +++ b/core/res/res/drawable-ldpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-ldpi/ic_menu_save.png b/core/res/res/drawable-ldpi/ic_menu_save.png Binary files differindex ac053b4..a6666ca 100644 --- a/core/res/res/drawable-ldpi/ic_menu_save.png +++ b/core/res/res/drawable-ldpi/ic_menu_save.png diff --git a/core/res/res/drawable-ldpi/ic_menu_search.png b/core/res/res/drawable-ldpi/ic_menu_search.png Binary files differindex 1d95408..08040a4 100644 --- a/core/res/res/drawable-ldpi/ic_menu_search.png +++ b/core/res/res/drawable-ldpi/ic_menu_search.png diff --git a/core/res/res/drawable-ldpi/ic_menu_send.png b/core/res/res/drawable-ldpi/ic_menu_send.png Binary files differindex 9043c11..a1dc7c0 100644 --- a/core/res/res/drawable-ldpi/ic_menu_send.png +++ b/core/res/res/drawable-ldpi/ic_menu_send.png diff --git a/core/res/res/drawable-ldpi/ic_menu_set_as.png b/core/res/res/drawable-ldpi/ic_menu_set_as.png Binary files differindex d1997d3..41e6955 100644 --- a/core/res/res/drawable-ldpi/ic_menu_set_as.png +++ b/core/res/res/drawable-ldpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-ldpi/ic_menu_share.png b/core/res/res/drawable-ldpi/ic_menu_share.png Binary files differindex f58d231..7453575 100644 --- a/core/res/res/drawable-ldpi/ic_menu_share.png +++ b/core/res/res/drawable-ldpi/ic_menu_share.png diff --git a/core/res/res/drawable-ldpi/ic_menu_slideshow.png b/core/res/res/drawable-ldpi/ic_menu_slideshow.png Binary files differindex a0625c4..5fbd20a 100644 --- a/core/res/res/drawable-ldpi/ic_menu_slideshow.png +++ b/core/res/res/drawable-ldpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png Binary files differindex 438e854..6a06986 100644 --- a/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png +++ b/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png b/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png Binary files differindex bb95da7..a41182c 100644 --- a/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png +++ b/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-ldpi/ic_menu_star.png b/core/res/res/drawable-ldpi/ic_menu_star.png Binary files differindex b88f010..f520b76 100644 --- a/core/res/res/drawable-ldpi/ic_menu_star.png +++ b/core/res/res/drawable-ldpi/ic_menu_star.png diff --git a/core/res/res/drawable-ldpi/ic_menu_start_conversation.png b/core/res/res/drawable-ldpi/ic_menu_start_conversation.png Binary files differindex 1e39928..a8b7544 100644 --- a/core/res/res/drawable-ldpi/ic_menu_start_conversation.png +++ b/core/res/res/drawable-ldpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_stop.png b/core/res/res/drawable-ldpi/ic_menu_stop.png Binary files differindex d185ae2..a6a31fe 100644 --- a/core/res/res/drawable-ldpi/ic_menu_stop.png +++ b/core/res/res/drawable-ldpi/ic_menu_stop.png diff --git a/core/res/res/drawable-ldpi/ic_menu_today.png b/core/res/res/drawable-ldpi/ic_menu_today.png Binary files differindex 2bff751..8b1b3a9 100644 --- a/core/res/res/drawable-ldpi/ic_menu_today.png +++ b/core/res/res/drawable-ldpi/ic_menu_today.png diff --git a/core/res/res/drawable-ldpi/ic_menu_upload.png b/core/res/res/drawable-ldpi/ic_menu_upload.png Binary files differindex fd64fe1..b8eadb2 100644 --- a/core/res/res/drawable-ldpi/ic_menu_upload.png +++ b/core/res/res/drawable-ldpi/ic_menu_upload.png diff --git a/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png Binary files differindex 8fa7005..79e7ba9 100644 --- a/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png +++ b/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-ldpi/ic_menu_view.png b/core/res/res/drawable-ldpi/ic_menu_view.png Binary files differindex f1acb3d..84b9e7b 100644 --- a/core/res/res/drawable-ldpi/ic_menu_view.png +++ b/core/res/res/drawable-ldpi/ic_menu_view.png diff --git a/core/res/res/drawable-ldpi/ic_menu_week.png b/core/res/res/drawable-ldpi/ic_menu_week.png Binary files differindex 0af314b..9219e3d 100644 --- a/core/res/res/drawable-ldpi/ic_menu_week.png +++ b/core/res/res/drawable-ldpi/ic_menu_week.png diff --git a/core/res/res/drawable-ldpi/ic_menu_zoom.png b/core/res/res/drawable-ldpi/ic_menu_zoom.png Binary files differindex ff29184..87af1c7 100644 --- a/core/res/res/drawable-ldpi/ic_menu_zoom.png +++ b/core/res/res/drawable-ldpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-ldpi/ic_notification_clear_all.png b/core/res/res/drawable-ldpi/ic_notification_clear_all.png Binary files differindex e779740..07dc64a 100644 --- a/core/res/res/drawable-ldpi/ic_notification_clear_all.png +++ b/core/res/res/drawable-ldpi/ic_notification_clear_all.png diff --git a/core/res/res/drawable-ldpi/ic_notification_overlay.9.png b/core/res/res/drawable-ldpi/ic_notification_overlay.9.png Binary files differindex 771fa73..ada8721 100644 --- a/core/res/res/drawable-ldpi/ic_notification_overlay.9.png +++ b/core/res/res/drawable-ldpi/ic_notification_overlay.9.png diff --git a/core/res/res/drawable-ldpi/ic_partial_secure.png b/core/res/res/drawable-ldpi/ic_partial_secure.png Binary files differindex a9c05b1..26ac6ab 100644 --- a/core/res/res/drawable-ldpi/ic_partial_secure.png +++ b/core/res/res/drawable-ldpi/ic_partial_secure.png diff --git a/core/res/res/drawable-ldpi/ic_popup_disk_full.png b/core/res/res/drawable-ldpi/ic_popup_disk_full.png Binary files differindex f613f38..c19d9f0 100644 --- a/core/res/res/drawable-ldpi/ic_popup_disk_full.png +++ b/core/res/res/drawable-ldpi/ic_popup_disk_full.png diff --git a/core/res/res/drawable-ldpi/ic_popup_reminder.png b/core/res/res/drawable-ldpi/ic_popup_reminder.png Binary files differindex 332daef..d662bb2 100644 --- a/core/res/res/drawable-ldpi/ic_popup_reminder.png +++ b/core/res/res/drawable-ldpi/ic_popup_reminder.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_1.png b/core/res/res/drawable-ldpi/ic_popup_sync_1.png Binary files differindex 407e8de..a966153 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_1.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_1.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_2.png b/core/res/res/drawable-ldpi/ic_popup_sync_2.png Binary files differindex a867aa7..3a985c9 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_2.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_2.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_3.png b/core/res/res/drawable-ldpi/ic_popup_sync_3.png Binary files differindex 77bd3d7..ea4a041 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_3.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_3.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_4.png b/core/res/res/drawable-ldpi/ic_popup_sync_4.png Binary files differindex 131486b..152d099 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_4.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_4.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_5.png b/core/res/res/drawable-ldpi/ic_popup_sync_5.png Binary files differindex 33fded8..b3b7d91 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_5.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_5.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_6.png b/core/res/res/drawable-ldpi/ic_popup_sync_6.png Binary files differindex 489dd56..2caec85 100644 --- a/core/res/res/drawable-ldpi/ic_popup_sync_6.png +++ b/core/res/res/drawable-ldpi/ic_popup_sync_6.png diff --git a/core/res/res/drawable-ldpi/ic_search_category_default.png b/core/res/res/drawable-ldpi/ic_search_category_default.png Binary files differindex 1d95408..08040a4 100644 --- a/core/res/res/drawable-ldpi/ic_search_category_default.png +++ b/core/res/res/drawable-ldpi/ic_search_category_default.png diff --git a/core/res/res/drawable-ldpi/ic_secure.png b/core/res/res/drawable-ldpi/ic_secure.png Binary files differindex 02d74d1..9dd6ad6 100644 --- a/core/res/res/drawable-ldpi/ic_secure.png +++ b/core/res/res/drawable-ldpi/ic_secure.png diff --git a/core/res/res/drawable-ldpi/ic_vibrate.png b/core/res/res/drawable-ldpi/ic_vibrate.png Binary files differindex 726e9dc..f35a3d2 100644 --- a/core/res/res/drawable-ldpi/ic_vibrate.png +++ b/core/res/res/drawable-ldpi/ic_vibrate.png diff --git a/core/res/res/drawable-ldpi/ic_vibrate_small.png b/core/res/res/drawable-ldpi/ic_vibrate_small.png Binary files differindex 06bfbb5..fcea37b 100644 --- a/core/res/res/drawable-ldpi/ic_vibrate_small.png +++ b/core/res/res/drawable-ldpi/ic_vibrate_small.png diff --git a/core/res/res/drawable-ldpi/ic_volume.png b/core/res/res/drawable-ldpi/ic_volume.png Binary files differindex b8a3561..411c78f 100644 --- a/core/res/res/drawable-ldpi/ic_volume.png +++ b/core/res/res/drawable-ldpi/ic_volume.png diff --git a/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png b/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png Binary files differindex facfa4c..cfac74c 100644 --- a/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png +++ b/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png diff --git a/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png b/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png Binary files differindex 298ce6b..0a16336 100644 --- a/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png +++ b/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png diff --git a/core/res/res/drawable-ldpi/ic_volume_off.png b/core/res/res/drawable-ldpi/ic_volume_off.png Binary files differindex bad1a68..a144a75 100644 --- a/core/res/res/drawable-ldpi/ic_volume_off.png +++ b/core/res/res/drawable-ldpi/ic_volume_off.png diff --git a/core/res/res/drawable-ldpi/ic_volume_off_small.png b/core/res/res/drawable-ldpi/ic_volume_off_small.png Binary files differindex 5623911..e8a6830 100644 --- a/core/res/res/drawable-ldpi/ic_volume_off_small.png +++ b/core/res/res/drawable-ldpi/ic_volume_off_small.png diff --git a/core/res/res/drawable-ldpi/ic_volume_small.png b/core/res/res/drawable-ldpi/ic_volume_small.png Binary files differindex 530f6b4..43f77aa 100644 --- a/core/res/res/drawable-ldpi/ic_volume_small.png +++ b/core/res/res/drawable-ldpi/ic_volume_small.png diff --git a/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png b/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png Binary files differindex 27519b2..04b836b 100644 --- a/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png +++ b/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png diff --git a/core/res/res/drawable-ldpi/icon_highlight_square.9.png b/core/res/res/drawable-ldpi/icon_highlight_square.9.png Binary files differindex 228ef23..ae88f2b 100644 --- a/core/res/res/drawable-ldpi/icon_highlight_square.9.png +++ b/core/res/res/drawable-ldpi/icon_highlight_square.9.png diff --git a/core/res/res/drawable-ldpi/ime_qwerty.png b/core/res/res/drawable-ldpi/ime_qwerty.png Binary files differindex 11e26db..25610e4 100644 --- a/core/res/res/drawable-ldpi/ime_qwerty.png +++ b/core/res/res/drawable-ldpi/ime_qwerty.png diff --git a/core/res/res/drawable-ldpi/indicator_input_error.png b/core/res/res/drawable-ldpi/indicator_input_error.png Binary files differindex f1a804a..1af9d42 100644 --- a/core/res/res/drawable-ldpi/indicator_input_error.png +++ b/core/res/res/drawable-ldpi/indicator_input_error.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png Binary files differindex cb30024..ade4630 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png Binary files differindex f63e737..ee3ce6d 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png Binary files differindex 249d53d..94f63e8 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png Binary files differindex 6a338fe..cc376b2 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png Binary files differindex 50f5c47..74aa15e 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png Binary files differindex a8ed698..903b36f 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png Binary files differindex bfd6c4e..967b29c 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png Binary files differindex d22d508..6fce716 100644 --- a/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png diff --git a/core/res/res/drawable-ldpi/jog_dial_bg.png b/core/res/res/drawable-ldpi/jog_dial_bg.png Binary files differindex 263188b..83e7bcc 100644 --- a/core/res/res/drawable-ldpi/jog_dial_bg.png +++ b/core/res/res/drawable-ldpi/jog_dial_bg.png diff --git a/core/res/res/drawable-ldpi/jog_dial_dimple.png b/core/res/res/drawable-ldpi/jog_dial_dimple.png Binary files differindex c6f52ef..778e19b 100644 --- a/core/res/res/drawable-ldpi/jog_dial_dimple.png +++ b/core/res/res/drawable-ldpi/jog_dial_dimple.png diff --git a/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png b/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png Binary files differindex b85db4e..dfc2a07 100644 --- a/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png +++ b/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex be9edd1..2cbe42d 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex 8b445fb..690b35c 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex f9b07f8..acd4011 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex 473fcb0..e318a29 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png Binary files differindex b8ecac7..1521a24 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 95b4f4b..2d2325f 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex 2bec09e..b700fbe 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex 8f8109e..2ecab69 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex a453ac3..4cbebad 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex f7ef794..1d7f684 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png Binary files differindex 74b769b..6baf124 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex d12058d..aeb78aa 100644 --- a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png Binary files differindex 92c4a2e..5d44067 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png Binary files differindex 13b7c63..9e966ae 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png Binary files differindex 414c07b..c53c21a 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png Binary files differindex afccc39..fdd16f5 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_normal.png b/core/res/res/drawable-ldpi/jog_tab_left_normal.png Binary files differindex 6ba6479..1a7814f 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_pressed.png b/core/res/res/drawable-ldpi/jog_tab_left_pressed.png Binary files differindex 3dc9c47..c7231d6 100644 --- a/core/res/res/drawable-ldpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-ldpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png Binary files differindex ec1020d..02dd58b 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png Binary files differindex 5b600c9..ce5d64b 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png Binary files differindex b640578..bde83f9 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png Binary files differindex c4490bc..514a3a1 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_normal.png b/core/res/res/drawable-ldpi/jog_tab_right_normal.png Binary files differindex 024d409..9abfaa9 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_pressed.png b/core/res/res/drawable-ldpi/jog_tab_right_pressed.png Binary files differindex 22acd25..c0f2337 100644 --- a/core/res/res/drawable-ldpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-ldpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_gray.png b/core/res/res/drawable-ldpi/jog_tab_target_gray.png Binary files differindex 7921676..85fb45c 100644 --- a/core/res/res/drawable-ldpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-ldpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_green.png b/core/res/res/drawable-ldpi/jog_tab_target_green.png Binary files differindex df5c273..0133a89 100644 --- a/core/res/res/drawable-ldpi/jog_tab_target_green.png +++ b/core/res/res/drawable-ldpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_red.png b/core/res/res/drawable-ldpi/jog_tab_target_red.png Binary files differindex 2bb6df9..c7fce73 100644 --- a/core/res/res/drawable-ldpi/jog_tab_target_red.png +++ b/core/res/res/drawable-ldpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_yellow.png b/core/res/res/drawable-ldpi/jog_tab_target_yellow.png Binary files differindex e7e4347..7f77be7 100644 --- a/core/res/res/drawable-ldpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-ldpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png b/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png Binary files differindex 4ab1dd0..5352ac9 100644 --- a/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png +++ b/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_background.9.png b/core/res/res/drawable-ldpi/keyboard_background.9.png Binary files differindex 06d42c0..48c0211 100644 --- a/core/res/res/drawable-ldpi/keyboard_background.9.png +++ b/core/res/res/drawable-ldpi/keyboard_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png b/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png Binary files differindex 6f936f1..98fa16e 100644 --- a/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png +++ b/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png b/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png Binary files differindex 7e81c3d4..4dc9743 100644 --- a/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png +++ b/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png b/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png Binary files differindex 955fecc..7185f22 100644 --- a/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png +++ b/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png b/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png Binary files differindex 78ac46d..9f14e00 100644 --- a/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png +++ b/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png diff --git a/core/res/res/drawable-ldpi/light_header.9.png b/core/res/res/drawable-ldpi/light_header.9.png Binary files differindex 4318252..4ca62ad 100644 --- a/core/res/res/drawable-ldpi/light_header.9.png +++ b/core/res/res/drawable-ldpi/light_header.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png b/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png Binary files differindex b94396b..23659d0 100644 --- a/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png +++ b/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_focus.9.png b/core/res/res/drawable-ldpi/list_selector_background_focus.9.png Binary files differindex f2887a9..eb7e699 100644 --- a/core/res/res/drawable-ldpi/list_selector_background_focus.9.png +++ b/core/res/res/drawable-ldpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png b/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png Binary files differindex 1fb46bb..1ecda6b 100644 --- a/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png +++ b/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png b/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png Binary files differindex 4980eab..ea23baa 100644 --- a/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png +++ b/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/maps_google_logo.png b/core/res/res/drawable-ldpi/maps_google_logo.png Binary files differindex 84cc523..cc40233 100644 --- a/core/res/res/drawable-ldpi/maps_google_logo.png +++ b/core/res/res/drawable-ldpi/maps_google_logo.png diff --git a/core/res/res/drawable-ldpi/menu_background.9.png b/core/res/res/drawable-ldpi/menu_background.9.png Binary files differindex 18c1f40..3a566db 100644 --- a/core/res/res/drawable-ldpi/menu_background.9.png +++ b/core/res/res/drawable-ldpi/menu_background.9.png diff --git a/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png b/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png Binary files differindex 02de323..06fd977 100644 --- a/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png +++ b/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png diff --git a/core/res/res/drawable-ldpi/menu_separator.9.png b/core/res/res/drawable-ldpi/menu_separator.9.png Binary files differindex 9e2dd7f..d7674ec 100644 --- a/core/res/res/drawable-ldpi/menu_separator.9.png +++ b/core/res/res/drawable-ldpi/menu_separator.9.png diff --git a/core/res/res/drawable-ldpi/menu_submenu_background.9.png b/core/res/res/drawable-ldpi/menu_submenu_background.9.png Binary files differindex 25b27d4..cd6629e 100644 --- a/core/res/res/drawable-ldpi/menu_submenu_background.9.png +++ b/core/res/res/drawable-ldpi/menu_submenu_background.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_focus.9.png b/core/res/res/drawable-ldpi/menuitem_background_focus.9.png Binary files differindex 072b665..6f197e2 100644 --- a/core/res/res/drawable-ldpi/menuitem_background_focus.9.png +++ b/core/res/res/drawable-ldpi/menuitem_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png b/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png Binary files differindex 1def2a1..73e676d 100644 --- a/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png +++ b/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png b/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png Binary files differindex 671e756..b4ff4c4 100644 --- a/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png +++ b/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png b/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png Binary files differindex 5f334d8..a046d1b 100644 --- a/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png +++ b/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_checkbox_on.png b/core/res/res/drawable-ldpi/menuitem_checkbox_on.png Binary files differindex 61a4843..3f1a5b4 100644 --- a/core/res/res/drawable-ldpi/menuitem_checkbox_on.png +++ b/core/res/res/drawable-ldpi/menuitem_checkbox_on.png diff --git a/core/res/res/drawable-ldpi/numberpicker_down_disabled.9.png b/core/res/res/drawable-ldpi/numberpicker_down_disabled.9.png Binary files differindex a4c2aba..b138c90 100644 --- a/core/res/res/drawable-ldpi/numberpicker_down_disabled.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_down_disabled.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_down_disabled_focused.9.png b/core/res/res/drawable-ldpi/numberpicker_down_disabled_focused.9.png Binary files differindex fdbc9d5..f4445a0 100644 --- a/core/res/res/drawable-ldpi/numberpicker_down_disabled_focused.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_down_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_down_normal.9.png b/core/res/res/drawable-ldpi/numberpicker_down_normal.9.png Binary files differindex c7e8018..1d90e56 100644 --- a/core/res/res/drawable-ldpi/numberpicker_down_normal.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_down_normal.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_down_pressed.9.png b/core/res/res/drawable-ldpi/numberpicker_down_pressed.9.png Binary files differindex 4dd82ae..2f5a968 100644 --- a/core/res/res/drawable-ldpi/numberpicker_down_pressed.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_down_pressed.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_down_selected.9.png b/core/res/res/drawable-ldpi/numberpicker_down_selected.9.png Binary files differindex ebb701e..82e3f4c 100644 --- a/core/res/res/drawable-ldpi/numberpicker_down_selected.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_down_selected.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_input_disabled.9.png b/core/res/res/drawable-ldpi/numberpicker_input_disabled.9.png Binary files differindex 39cc3d4..3c8c03a 100644 --- a/core/res/res/drawable-ldpi/numberpicker_input_disabled.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_input_disabled.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_input_normal.9.png b/core/res/res/drawable-ldpi/numberpicker_input_normal.9.png Binary files differindex 6ffabe6..d24089f 100644 --- a/core/res/res/drawable-ldpi/numberpicker_input_normal.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_input_normal.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_input_pressed.9.png b/core/res/res/drawable-ldpi/numberpicker_input_pressed.9.png Binary files differindex 9cfaaab..1946ee7 100644 --- a/core/res/res/drawable-ldpi/numberpicker_input_pressed.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_input_pressed.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_input_selected.9.png b/core/res/res/drawable-ldpi/numberpicker_input_selected.9.png Binary files differindex e819e9b..c2c5b08 100644 --- a/core/res/res/drawable-ldpi/numberpicker_input_selected.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_input_selected.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_up_disabled.9.png b/core/res/res/drawable-ldpi/numberpicker_up_disabled.9.png Binary files differindex 005a5ae..b5a84a6 100644 --- a/core/res/res/drawable-ldpi/numberpicker_up_disabled.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_up_disabled.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_up_disabled_focused.9.png b/core/res/res/drawable-ldpi/numberpicker_up_disabled_focused.9.png Binary files differindex f1c9465..5cd17b1 100644 --- a/core/res/res/drawable-ldpi/numberpicker_up_disabled_focused.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_up_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_up_normal.9.png b/core/res/res/drawable-ldpi/numberpicker_up_normal.9.png Binary files differindex 9927539..c61e20c 100644 --- a/core/res/res/drawable-ldpi/numberpicker_up_normal.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_up_normal.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_up_pressed.9.png b/core/res/res/drawable-ldpi/numberpicker_up_pressed.9.png Binary files differindex 7946450..897f6fa 100644 --- a/core/res/res/drawable-ldpi/numberpicker_up_pressed.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_up_pressed.9.png diff --git a/core/res/res/drawable-ldpi/numberpicker_up_selected.9.png b/core/res/res/drawable-ldpi/numberpicker_up_selected.9.png Binary files differindex 8c8136a..60047b1 100644 --- a/core/res/res/drawable-ldpi/numberpicker_up_selected.9.png +++ b/core/res/res/drawable-ldpi/numberpicker_up_selected.9.png diff --git a/core/res/res/drawable-ldpi/panel_background.9.png b/core/res/res/drawable-ldpi/panel_background.9.png Binary files differindex 7ea328d..e85f59b 100644 --- a/core/res/res/drawable-ldpi/panel_background.9.png +++ b/core/res/res/drawable-ldpi/panel_background.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png Binary files differindex 14eb7f7..d6a86a9 100644 --- a/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png Binary files differindex c8cd101..40da2dc 100644 --- a/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png Binary files differindex 0badf2b..4bc6003 100644 --- a/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png diff --git a/core/res/res/drawable-ldpi/password_field_default.9.png b/core/res/res/drawable-ldpi/password_field_default.9.png Binary files differindex a84abf2..72cfbe3 100644 --- a/core/res/res/drawable-ldpi/password_field_default.9.png +++ b/core/res/res/drawable-ldpi/password_field_default.9.png diff --git a/core/res/res/drawable-ldpi/picture_emergency.png b/core/res/res/drawable-ldpi/picture_emergency.png Binary files differindex dbb738f..b92acbf 100644 --- a/core/res/res/drawable-ldpi/picture_emergency.png +++ b/core/res/res/drawable-ldpi/picture_emergency.png diff --git a/core/res/res/drawable-ldpi/picture_frame.9.png b/core/res/res/drawable-ldpi/picture_frame.9.png Binary files differindex f302bf3..751618b 100644 --- a/core/res/res/drawable-ldpi/picture_frame.9.png +++ b/core/res/res/drawable-ldpi/picture_frame.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_bright.9.png b/core/res/res/drawable-ldpi/popup_bottom_bright.9.png Binary files differindex a8d52a2..0a039f7 100644 --- a/core/res/res/drawable-ldpi/popup_bottom_bright.9.png +++ b/core/res/res/drawable-ldpi/popup_bottom_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_dark.9.png b/core/res/res/drawable-ldpi/popup_bottom_dark.9.png Binary files differindex b0b64df..f4ee5f8 100644 --- a/core/res/res/drawable-ldpi/popup_bottom_dark.9.png +++ b/core/res/res/drawable-ldpi/popup_bottom_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_medium.9.png b/core/res/res/drawable-ldpi/popup_bottom_medium.9.png Binary files differindex 7bdef97..71a14f1 100644 --- a/core/res/res/drawable-ldpi/popup_bottom_medium.9.png +++ b/core/res/res/drawable-ldpi/popup_bottom_medium.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_bright.9.png b/core/res/res/drawable-ldpi/popup_center_bright.9.png Binary files differindex 0bfe6ba..81dae33 100644 --- a/core/res/res/drawable-ldpi/popup_center_bright.9.png +++ b/core/res/res/drawable-ldpi/popup_center_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_dark.9.png b/core/res/res/drawable-ldpi/popup_center_dark.9.png Binary files differindex e76a452..0db0b0f 100644 --- a/core/res/res/drawable-ldpi/popup_center_dark.9.png +++ b/core/res/res/drawable-ldpi/popup_center_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_medium.9.png b/core/res/res/drawable-ldpi/popup_center_medium.9.png Binary files differindex a8de187..6fcfcec 100644 --- a/core/res/res/drawable-ldpi/popup_center_medium.9.png +++ b/core/res/res/drawable-ldpi/popup_center_medium.9.png diff --git a/core/res/res/drawable-ldpi/popup_full_bright.9.png b/core/res/res/drawable-ldpi/popup_full_bright.9.png Binary files differindex b6bbacd..325ea66 100644 --- a/core/res/res/drawable-ldpi/popup_full_bright.9.png +++ b/core/res/res/drawable-ldpi/popup_full_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_full_dark.9.png b/core/res/res/drawable-ldpi/popup_full_dark.9.png Binary files differindex ed36fce..176ffa6 100644 --- a/core/res/res/drawable-ldpi/popup_full_dark.9.png +++ b/core/res/res/drawable-ldpi/popup_full_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_inline_error_above_am.9.png b/core/res/res/drawable-ldpi/popup_inline_error_above_am.9.png Binary files differindex 673685d..2f96b83 100644 --- a/core/res/res/drawable-ldpi/popup_inline_error_above_am.9.png +++ b/core/res/res/drawable-ldpi/popup_inline_error_above_am.9.png diff --git a/core/res/res/drawable-ldpi/popup_inline_error_am.9.png b/core/res/res/drawable-ldpi/popup_inline_error_am.9.png Binary files differindex cdc66ff..eb02ae3 100644 --- a/core/res/res/drawable-ldpi/popup_inline_error_am.9.png +++ b/core/res/res/drawable-ldpi/popup_inline_error_am.9.png diff --git a/core/res/res/drawable-ldpi/popup_top_bright.9.png b/core/res/res/drawable-ldpi/popup_top_bright.9.png Binary files differindex 51f1f0f..a93a2fb 100644 --- a/core/res/res/drawable-ldpi/popup_top_bright.9.png +++ b/core/res/res/drawable-ldpi/popup_top_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_top_dark.9.png b/core/res/res/drawable-ldpi/popup_top_dark.9.png Binary files differindex 81e1918..db461ae 100644 --- a/core/res/res/drawable-ldpi/popup_top_dark.9.png +++ b/core/res/res/drawable-ldpi/popup_top_dark.9.png diff --git a/core/res/res/drawable-ldpi/presence_audio_away.png b/core/res/res/drawable-ldpi/presence_audio_away.png Binary files differindex 73ad0da..84bda15 100644 --- a/core/res/res/drawable-ldpi/presence_audio_away.png +++ b/core/res/res/drawable-ldpi/presence_audio_away.png diff --git a/core/res/res/drawable-ldpi/presence_audio_busy.png b/core/res/res/drawable-ldpi/presence_audio_busy.png Binary files differindex 8b64d45..2cbab56 100644 --- a/core/res/res/drawable-ldpi/presence_audio_busy.png +++ b/core/res/res/drawable-ldpi/presence_audio_busy.png diff --git a/core/res/res/drawable-ldpi/presence_audio_online.png b/core/res/res/drawable-ldpi/presence_audio_online.png Binary files differindex 455db0528..0a217b4 100644 --- a/core/res/res/drawable-ldpi/presence_audio_online.png +++ b/core/res/res/drawable-ldpi/presence_audio_online.png diff --git a/core/res/res/drawable-ldpi/presence_away.png b/core/res/res/drawable-ldpi/presence_away.png Binary files differindex 5228a4b..360aeec 100644 --- a/core/res/res/drawable-ldpi/presence_away.png +++ b/core/res/res/drawable-ldpi/presence_away.png diff --git a/core/res/res/drawable-ldpi/presence_busy.png b/core/res/res/drawable-ldpi/presence_busy.png Binary files differindex 79fddf7..d706685 100644 --- a/core/res/res/drawable-ldpi/presence_busy.png +++ b/core/res/res/drawable-ldpi/presence_busy.png diff --git a/core/res/res/drawable-ldpi/presence_invisible.png b/core/res/res/drawable-ldpi/presence_invisible.png Binary files differindex fb1654b..ec34ae0 100644 --- a/core/res/res/drawable-ldpi/presence_invisible.png +++ b/core/res/res/drawable-ldpi/presence_invisible.png diff --git a/core/res/res/drawable-ldpi/presence_offline.png b/core/res/res/drawable-ldpi/presence_offline.png Binary files differindex 4546799..dafc585 100644 --- a/core/res/res/drawable-ldpi/presence_offline.png +++ b/core/res/res/drawable-ldpi/presence_offline.png diff --git a/core/res/res/drawable-ldpi/presence_online.png b/core/res/res/drawable-ldpi/presence_online.png Binary files differindex c400a18..7dcefad 100644 --- a/core/res/res/drawable-ldpi/presence_online.png +++ b/core/res/res/drawable-ldpi/presence_online.png diff --git a/core/res/res/drawable-ldpi/presence_video_away.png b/core/res/res/drawable-ldpi/presence_video_away.png Binary files differindex 3695a0e..cbacad8 100644 --- a/core/res/res/drawable-ldpi/presence_video_away.png +++ b/core/res/res/drawable-ldpi/presence_video_away.png diff --git a/core/res/res/drawable-ldpi/presence_video_busy.png b/core/res/res/drawable-ldpi/presence_video_busy.png Binary files differindex c4b0728..4814cde 100644 --- a/core/res/res/drawable-ldpi/presence_video_busy.png +++ b/core/res/res/drawable-ldpi/presence_video_busy.png diff --git a/core/res/res/drawable-ldpi/presence_video_online.png b/core/res/res/drawable-ldpi/presence_video_online.png Binary files differindex 786d0e6..4debd36 100644 --- a/core/res/res/drawable-ldpi/presence_video_online.png +++ b/core/res/res/drawable-ldpi/presence_video_online.png diff --git a/core/res/res/drawable-ldpi/pressed_application_background_static.png b/core/res/res/drawable-ldpi/pressed_application_background_static.png Binary files differindex d0fd302..899ede9 100644 --- a/core/res/res/drawable-ldpi/pressed_application_background_static.png +++ b/core/res/res/drawable-ldpi/pressed_application_background_static.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate1.png b/core/res/res/drawable-ldpi/progressbar_indeterminate1.png Binary files differindex 92a1aee..96013d7 100644 --- a/core/res/res/drawable-ldpi/progressbar_indeterminate1.png +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate1.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate2.png b/core/res/res/drawable-ldpi/progressbar_indeterminate2.png Binary files differindex 1fd2f37..95df9d8 100644 --- a/core/res/res/drawable-ldpi/progressbar_indeterminate2.png +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate2.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate3.png b/core/res/res/drawable-ldpi/progressbar_indeterminate3.png Binary files differindex adb8022..ecb9211 100644 --- a/core/res/res/drawable-ldpi/progressbar_indeterminate3.png +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate3.png diff --git a/core/res/res/drawable-ldpi/radiobutton_off_background.png b/core/res/res/drawable-ldpi/radiobutton_off_background.png Binary files differindex d8023c9..a71a36a 100644 --- a/core/res/res/drawable-ldpi/radiobutton_off_background.png +++ b/core/res/res/drawable-ldpi/radiobutton_off_background.png diff --git a/core/res/res/drawable-ldpi/radiobutton_on_background.png b/core/res/res/drawable-ldpi/radiobutton_on_background.png Binary files differindex 4014d4b..fc3c08d 100644 --- a/core/res/res/drawable-ldpi/radiobutton_on_background.png +++ b/core/res/res/drawable-ldpi/radiobutton_on_background.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_half.png b/core/res/res/drawable-ldpi/rate_star_big_half.png Binary files differindex 0b4dc17..8593247 100644 --- a/core/res/res/drawable-ldpi/rate_star_big_half.png +++ b/core/res/res/drawable-ldpi/rate_star_big_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_off.png b/core/res/res/drawable-ldpi/rate_star_big_off.png Binary files differindex 1d8eef6..a28633d 100644 --- a/core/res/res/drawable-ldpi/rate_star_big_off.png +++ b/core/res/res/drawable-ldpi/rate_star_big_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_on.png b/core/res/res/drawable-ldpi/rate_star_big_on.png Binary files differindex b6d4d89..d31078c 100644 --- a/core/res/res/drawable-ldpi/rate_star_big_on.png +++ b/core/res/res/drawable-ldpi/rate_star_big_on.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_half.png b/core/res/res/drawable-ldpi/rate_star_med_half.png Binary files differindex f9bcc5c..3c12358 100644 --- a/core/res/res/drawable-ldpi/rate_star_med_half.png +++ b/core/res/res/drawable-ldpi/rate_star_med_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_off.png b/core/res/res/drawable-ldpi/rate_star_med_off.png Binary files differindex eec4ae5..71b0e03 100644 --- a/core/res/res/drawable-ldpi/rate_star_med_off.png +++ b/core/res/res/drawable-ldpi/rate_star_med_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_on.png b/core/res/res/drawable-ldpi/rate_star_med_on.png Binary files differindex 03a4cff..1b48cd1 100644 --- a/core/res/res/drawable-ldpi/rate_star_med_on.png +++ b/core/res/res/drawable-ldpi/rate_star_med_on.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_half.png b/core/res/res/drawable-ldpi/rate_star_small_half.png Binary files differindex 3e2b99b..b27e2fc 100644 --- a/core/res/res/drawable-ldpi/rate_star_small_half.png +++ b/core/res/res/drawable-ldpi/rate_star_small_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_off.png b/core/res/res/drawable-ldpi/rate_star_small_off.png Binary files differindex 19db372..37ce51f 100644 --- a/core/res/res/drawable-ldpi/rate_star_small_off.png +++ b/core/res/res/drawable-ldpi/rate_star_small_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_on.png b/core/res/res/drawable-ldpi/rate_star_small_on.png Binary files differindex b3b9a84..932b1c1 100644 --- a/core/res/res/drawable-ldpi/rate_star_small_on.png +++ b/core/res/res/drawable-ldpi/rate_star_small_on.png diff --git a/core/res/res/drawable-ldpi/recent_dialog_background.9.png b/core/res/res/drawable-ldpi/recent_dialog_background.9.png Binary files differindex ab8d87d..0b232d5 100644 --- a/core/res/res/drawable-ldpi/recent_dialog_background.9.png +++ b/core/res/res/drawable-ldpi/recent_dialog_background.9.png diff --git a/core/res/res/drawable-ldpi/reticle.png b/core/res/res/drawable-ldpi/reticle.png Binary files differindex daaee11..c2026b2 100644 --- a/core/res/res/drawable-ldpi/reticle.png +++ b/core/res/res/drawable-ldpi/reticle.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png Binary files differindex a4ca3e0..966c67a 100644 --- a/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png +++ b/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png Binary files differindex b3c10cf..148c301 100644 --- a/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png +++ b/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png Binary files differindex a04e632..d7d462d 100644 --- a/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png +++ b/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png diff --git a/core/res/res/drawable-ldpi/search_dropdown_background.9.png b/core/res/res/drawable-ldpi/search_dropdown_background.9.png Binary files differindex b695dcb..79efd87 100644 --- a/core/res/res/drawable-ldpi/search_dropdown_background.9.png +++ b/core/res/res/drawable-ldpi/search_dropdown_background.9.png diff --git a/core/res/res/drawable-ldpi/search_plate.9.png b/core/res/res/drawable-ldpi/search_plate.9.png Binary files differindex 40a351f..0008ac6 100644 --- a/core/res/res/drawable-ldpi/search_plate.9.png +++ b/core/res/res/drawable-ldpi/search_plate.9.png diff --git a/core/res/res/drawable-ldpi/search_plate_global.9.png b/core/res/res/drawable-ldpi/search_plate_global.9.png Binary files differindex 2fa2129..a1a6dc9 100644 --- a/core/res/res/drawable-ldpi/search_plate_global.9.png +++ b/core/res/res/drawable-ldpi/search_plate_global.9.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_normal.png b/core/res/res/drawable-ldpi/seek_thumb_normal.png Binary files differindex 9c2d90d..3ceb28b 100644 --- a/core/res/res/drawable-ldpi/seek_thumb_normal.png +++ b/core/res/res/drawable-ldpi/seek_thumb_normal.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_pressed.png b/core/res/res/drawable-ldpi/seek_thumb_pressed.png Binary files differindex 555cde8..c3cad47 100644 --- a/core/res/res/drawable-ldpi/seek_thumb_pressed.png +++ b/core/res/res/drawable-ldpi/seek_thumb_pressed.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_selected.png b/core/res/res/drawable-ldpi/seek_thumb_selected.png Binary files differindex 4f11818..ca5657a 100644 --- a/core/res/res/drawable-ldpi/seek_thumb_selected.png +++ b/core/res/res/drawable-ldpi/seek_thumb_selected.png diff --git a/core/res/res/drawable-ldpi/settings_header_raw.9.png b/core/res/res/drawable-ldpi/settings_header_raw.9.png Binary files differindex 142d8c2..1333266 100644 --- a/core/res/res/drawable-ldpi/settings_header_raw.9.png +++ b/core/res/res/drawable-ldpi/settings_header_raw.9.png diff --git a/core/res/res/drawable-ldpi/spinner_black_16.png b/core/res/res/drawable-ldpi/spinner_black_16.png Binary files differindex c876d8a..5cb7802 100644 --- a/core/res/res/drawable-ldpi/spinner_black_16.png +++ b/core/res/res/drawable-ldpi/spinner_black_16.png diff --git a/core/res/res/drawable-ldpi/spinner_black_20.png b/core/res/res/drawable-ldpi/spinner_black_20.png Binary files differindex 7751f9a..5bbd8b6 100644 --- a/core/res/res/drawable-ldpi/spinner_black_20.png +++ b/core/res/res/drawable-ldpi/spinner_black_20.png diff --git a/core/res/res/drawable-ldpi/spinner_black_48.png b/core/res/res/drawable-ldpi/spinner_black_48.png Binary files differindex c7aa517..40859e8 100644 --- a/core/res/res/drawable-ldpi/spinner_black_48.png +++ b/core/res/res/drawable-ldpi/spinner_black_48.png diff --git a/core/res/res/drawable-ldpi/spinner_black_76.png b/core/res/res/drawable-ldpi/spinner_black_76.png Binary files differindex 44f559c..8c2d087 100644 --- a/core/res/res/drawable-ldpi/spinner_black_76.png +++ b/core/res/res/drawable-ldpi/spinner_black_76.png diff --git a/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png b/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png Binary files differindex f9c4610..ff7e78b 100644 --- a/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png +++ b/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png diff --git a/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png b/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png Binary files differindex f458ad4..a1deb2d 100644 --- a/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png +++ b/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png diff --git a/core/res/res/drawable-ldpi/spinner_normal.9.png b/core/res/res/drawable-ldpi/spinner_normal.9.png Binary files differindex 151c2e6..1f5d3b8 100644 --- a/core/res/res/drawable-ldpi/spinner_normal.9.png +++ b/core/res/res/drawable-ldpi/spinner_normal.9.png diff --git a/core/res/res/drawable-ldpi/spinner_press.9.png b/core/res/res/drawable-ldpi/spinner_press.9.png Binary files differindex f3be1fc..1db89b7 100644 --- a/core/res/res/drawable-ldpi/spinner_press.9.png +++ b/core/res/res/drawable-ldpi/spinner_press.9.png diff --git a/core/res/res/drawable-ldpi/spinner_select.9.png b/core/res/res/drawable-ldpi/spinner_select.9.png Binary files differindex 092168b..6b29f53 100644 --- a/core/res/res/drawable-ldpi/spinner_select.9.png +++ b/core/res/res/drawable-ldpi/spinner_select.9.png diff --git a/core/res/res/drawable-ldpi/spinner_white_16.png b/core/res/res/drawable-ldpi/spinner_white_16.png Binary files differindex 0ad9eb0..13ef63d 100644 --- a/core/res/res/drawable-ldpi/spinner_white_16.png +++ b/core/res/res/drawable-ldpi/spinner_white_16.png diff --git a/core/res/res/drawable-ldpi/spinner_white_48.png b/core/res/res/drawable-ldpi/spinner_white_48.png Binary files differindex f0f0827..82858a5 100644 --- a/core/res/res/drawable-ldpi/spinner_white_48.png +++ b/core/res/res/drawable-ldpi/spinner_white_48.png diff --git a/core/res/res/drawable-ldpi/spinner_white_76.png b/core/res/res/drawable-ldpi/spinner_white_76.png Binary files differindex 8be8f26..494e02f 100644 --- a/core/res/res/drawable-ldpi/spinner_white_76.png +++ b/core/res/res/drawable-ldpi/spinner_white_76.png diff --git a/core/res/res/drawable-ldpi/star_big_off.png b/core/res/res/drawable-ldpi/star_big_off.png Binary files differindex d91c3a4..e2ebd7e 100644 --- a/core/res/res/drawable-ldpi/star_big_off.png +++ b/core/res/res/drawable-ldpi/star_big_off.png diff --git a/core/res/res/drawable-ldpi/star_big_on.png b/core/res/res/drawable-ldpi/star_big_on.png Binary files differindex 69d92a2..c69755f 100644 --- a/core/res/res/drawable-ldpi/star_big_on.png +++ b/core/res/res/drawable-ldpi/star_big_on.png diff --git a/core/res/res/drawable-ldpi/star_off.png b/core/res/res/drawable-ldpi/star_off.png Binary files differindex 6bc28fc..75b2b50 100644 --- a/core/res/res/drawable-ldpi/star_off.png +++ b/core/res/res/drawable-ldpi/star_off.png diff --git a/core/res/res/drawable-ldpi/star_on.png b/core/res/res/drawable-ldpi/star_on.png Binary files differindex d2e3845..57ca7eb 100644 --- a/core/res/res/drawable-ldpi/star_on.png +++ b/core/res/res/drawable-ldpi/star_on.png diff --git a/core/res/res/drawable-ldpi/stat_ecb_mode.png b/core/res/res/drawable-ldpi/stat_ecb_mode.png Binary files differindex a17d7db..d3796e2 100644 --- a/core/res/res/drawable-ldpi/stat_ecb_mode.png +++ b/core/res/res/drawable-ldpi/stat_ecb_mode.png diff --git a/core/res/res/drawable-ldpi/stat_notify_car_mode.png b/core/res/res/drawable-ldpi/stat_notify_car_mode.png Binary files differindex 22e90ae..8750d7d 100644 --- a/core/res/res/drawable-ldpi/stat_notify_car_mode.png +++ b/core/res/res/drawable-ldpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-ldpi/stat_notify_chat.png b/core/res/res/drawable-ldpi/stat_notify_chat.png Binary files differindex 562fbcc..b9f43af 100644 --- a/core/res/res/drawable-ldpi/stat_notify_chat.png +++ b/core/res/res/drawable-ldpi/stat_notify_chat.png diff --git a/core/res/res/drawable-ldpi/stat_notify_disk_full.png b/core/res/res/drawable-ldpi/stat_notify_disk_full.png Binary files differindex c329486..236470c 100644 --- a/core/res/res/drawable-ldpi/stat_notify_disk_full.png +++ b/core/res/res/drawable-ldpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-ldpi/stat_notify_email_generic.png b/core/res/res/drawable-ldpi/stat_notify_email_generic.png Binary files differindex 352267c..141306b 100644 --- a/core/res/res/drawable-ldpi/stat_notify_email_generic.png +++ b/core/res/res/drawable-ldpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-ldpi/stat_notify_error.png b/core/res/res/drawable-ldpi/stat_notify_error.png Binary files differindex a2eab9b..bf5ae73 100644 --- a/core/res/res/drawable-ldpi/stat_notify_error.png +++ b/core/res/res/drawable-ldpi/stat_notify_error.png diff --git a/core/res/res/drawable-ldpi/stat_notify_gmail.png b/core/res/res/drawable-ldpi/stat_notify_gmail.png Binary files differindex 8fbfd00..8886c034 100644 --- a/core/res/res/drawable-ldpi/stat_notify_gmail.png +++ b/core/res/res/drawable-ldpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-ldpi/stat_notify_missed_call.png b/core/res/res/drawable-ldpi/stat_notify_missed_call.png Binary files differindex 4c01206..c2c586a 100644 --- a/core/res/res/drawable-ldpi/stat_notify_missed_call.png +++ b/core/res/res/drawable-ldpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-ldpi/stat_notify_more.png b/core/res/res/drawable-ldpi/stat_notify_more.png Binary files differindex a51341d..054e5de 100644 --- a/core/res/res/drawable-ldpi/stat_notify_more.png +++ b/core/res/res/drawable-ldpi/stat_notify_more.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard.png b/core/res/res/drawable-ldpi/stat_notify_sdcard.png Binary files differindex 265fd8f..f11d18f 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sdcard.png +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png Binary files differindex 84cb224..cb7e922 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png Binary files differindex cb7022b..2ffaaf7 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png Binary files differindex d9a62a9..8377901 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png +++ b/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync.png b/core/res/res/drawable-ldpi/stat_notify_sync.png Binary files differindex dd63030..f13273c 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sync.png +++ b/core/res/res/drawable-ldpi/stat_notify_sync.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png b/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png Binary files differindex 9aa4edf..f0e29ae 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png +++ b/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync_error.png b/core/res/res/drawable-ldpi/stat_notify_sync_error.png Binary files differindex 431a86f..afd4d95 100644 --- a/core/res/res/drawable-ldpi/stat_notify_sync_error.png +++ b/core/res/res/drawable-ldpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-ldpi/stat_notify_voicemail.png b/core/res/res/drawable-ldpi/stat_notify_voicemail.png Binary files differindex 36d61a4..67cce53 100644 --- a/core/res/res/drawable-ldpi/stat_notify_voicemail.png +++ b/core/res/res/drawable-ldpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_0.png b/core/res/res/drawable-ldpi/stat_sys_battery_0.png Binary files differindex b692c7a..2165a68 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_0.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_10.png b/core/res/res/drawable-ldpi/stat_sys_battery_10.png Binary files differindex 5e7efd1..f859d8f 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_10.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_10.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_100.png b/core/res/res/drawable-ldpi/stat_sys_battery_100.png Binary files differindex 7023ea7..d5ad88e 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_100.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_100.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_20.png b/core/res/res/drawable-ldpi/stat_sys_battery_20.png Binary files differindex 275ebbb..0e6de6a 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_20.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_20.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_40.png b/core/res/res/drawable-ldpi/stat_sys_battery_40.png Binary files differindex 6a46fe0..8c9fec7 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_40.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_40.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_60.png b/core/res/res/drawable-ldpi/stat_sys_battery_60.png Binary files differindex f94115a..bf09f4c 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_60.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_60.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_80.png b/core/res/res/drawable-ldpi/stat_sys_battery_80.png Binary files differindex 8b07df9..cfbe0d5 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_80.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_80.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png Binary files differindex 7c4a783..e194375 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png Binary files differindex 9eea8ae..c629adf 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png Binary files differindex 112c869..ef49882 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png Binary files differindex 7b5c08b..c39b682 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png Binary files differindex ddda4ad..48a89db 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png Binary files differindex 52050b2..bcb780c 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png b/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png Binary files differindex e095aa4..e0c659e 100644 --- a/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png +++ b/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png diff --git a/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png Binary files differindex 2ae3355..32f9135 100644 --- a/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png +++ b/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-ldpi/stat_sys_data_usb.png b/core/res/res/drawable-ldpi/stat_sys_data_usb.png Binary files differindex ffaccbd..813a347 100644 --- a/core/res/res/drawable-ldpi/stat_sys_data_usb.png +++ b/core/res/res/drawable-ldpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim0.png b/core/res/res/drawable-ldpi/stat_sys_download_anim0.png Binary files differindex 12c0e21..e528ca4 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim0.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim1.png b/core/res/res/drawable-ldpi/stat_sys_download_anim1.png Binary files differindex f5ec4ac..453b522 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim1.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim2.png b/core/res/res/drawable-ldpi/stat_sys_download_anim2.png Binary files differindex 4900ebd..8c31d22 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim2.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim3.png b/core/res/res/drawable-ldpi/stat_sys_download_anim3.png Binary files differindex aff9ebd..e2a82fd 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim3.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim4.png b/core/res/res/drawable-ldpi/stat_sys_download_anim4.png Binary files differindex 2eb65db..02871245 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim4.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim5.png b/core/res/res/drawable-ldpi/stat_sys_download_anim5.png Binary files differindex a9f2448..4f63dcd 100644 --- a/core/res/res/drawable-ldpi/stat_sys_download_anim5.png +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_gps_on.png b/core/res/res/drawable-ldpi/stat_sys_gps_on.png Binary files differindex 77776f5..23bb8f5 100644 --- a/core/res/res/drawable-ldpi/stat_sys_gps_on.png +++ b/core/res/res/drawable-ldpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-ldpi/stat_sys_headset.png b/core/res/res/drawable-ldpi/stat_sys_headset.png Binary files differindex 8f143a3..875a5d3 100644 --- a/core/res/res/drawable-ldpi/stat_sys_headset.png +++ b/core/res/res/drawable-ldpi/stat_sys_headset.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call.png b/core/res/res/drawable-ldpi/stat_sys_phone_call.png Binary files differindex 275bef2..b65becf 100644 --- a/core/res/res/drawable-ldpi/stat_sys_phone_call.png +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png b/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png Binary files differindex bb07c69..a10f1d8 100644 --- a/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png b/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png Binary files differindex b03816a..7a24b05 100644 --- a/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png Binary files differindex 2c4ff06..c8dc917 100644 --- a/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png Binary files differindex 82626ac..05964e6 100644 --- a/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png Binary files differindex 96304b1..aba3ee9 100644 --- a/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png Binary files differindex 9a3f230..69a7006 100644 --- a/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png Binary files differindex 5a607ee..724fb07 100644 --- a/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png Binary files differindex 0db564b..0968ee6 100644 --- a/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png Binary files differindex ca697db..88910d4 100644 --- a/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png Binary files differindex 816aaaa..04e122b 100644 --- a/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png Binary files differindex ebb103c..804f823 100644 --- a/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png Binary files differindex f211201..39415ca 100644 --- a/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png Binary files differindex dabba9c..d112a5b 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png Binary files differindex 5d99b45..64a0874 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png Binary files differindex f68f836..f291e3a 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png Binary files differindex 370b91f..be49cfb 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png Binary files differindex e8b4d38..6c97a47 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png Binary files differindex 2b360c2..6cc888d 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png Binary files differindex dfcd1f7..d72eb15 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png Binary files differindex b8a5bda..55497c2 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png Binary files differindex 65c76d3..af2c6a1 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png Binary files differindex 974f936..c4b11fd 100644 --- a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png Binary files differindex ffe8e8c..d469166 100644 --- a/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png +++ b/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_general.png b/core/res/res/drawable-ldpi/stat_sys_tether_general.png Binary files differindex ca20f73..bc8f977 100644 --- a/core/res/res/drawable-ldpi/stat_sys_tether_general.png +++ b/core/res/res/drawable-ldpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_usb.png b/core/res/res/drawable-ldpi/stat_sys_tether_usb.png Binary files differindex 65e9075..b0260e4 100644 --- a/core/res/res/drawable-ldpi/stat_sys_tether_usb.png +++ b/core/res/res/drawable-ldpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-ldpi/stat_sys_throttled.png b/core/res/res/drawable-ldpi/stat_sys_throttled.png Binary files differindex cfeb3b6..2af77fa 100644 --- a/core/res/res/drawable-ldpi/stat_sys_throttled.png +++ b/core/res/res/drawable-ldpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png Binary files differindex 29f9082..2c7d458 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png Binary files differindex bd1b72a..8a32b6f 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png Binary files differindex e49d23b..5f628d6 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png Binary files differindex 64525ac..caa983b 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png Binary files differindex 20f8f59..09f806c 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png Binary files differindex 0f482df..b9fc74b 100644 --- a/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png Binary files differindex 504d7a5..2b75d66 100644 --- a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png +++ b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png diff --git a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png Binary files differindex edeef2b..3cc6b1b 100644 --- a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png +++ b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png diff --git a/core/res/res/drawable-ldpi/stat_sys_warning.png b/core/res/res/drawable-ldpi/stat_sys_warning.png Binary files differindex 289c6a0..ed56ad0 100644 --- a/core/res/res/drawable-ldpi/stat_sys_warning.png +++ b/core/res/res/drawable-ldpi/stat_sys_warning.png diff --git a/core/res/res/drawable-ldpi/status_bar_background.png b/core/res/res/drawable-ldpi/status_bar_background.png Binary files differindex 7881bce..5826286 100644 --- a/core/res/res/drawable-ldpi/status_bar_background.png +++ b/core/res/res/drawable-ldpi/status_bar_background.png diff --git a/core/res/res/drawable-ldpi/status_bar_header_background.9.png b/core/res/res/drawable-ldpi/status_bar_header_background.9.png Binary files differindex 74dddb9..81e91b8 100644 --- a/core/res/res/drawable-ldpi/status_bar_header_background.9.png +++ b/core/res/res/drawable-ldpi/status_bar_header_background.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png b/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png Binary files differindex f8cfe2c..ff34702 100644 --- a/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png +++ b/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png Binary files differindex 07cd873..e8d6b20 100644 --- a/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png +++ b/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png Binary files differindex e07f774..bbe73c3 100644 --- a/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png +++ b/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png Binary files differindex aea2f5f..6538d26 100644 --- a/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png +++ b/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png b/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png Binary files differindex ce30b58..dd516f9 100644 --- a/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png +++ b/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png diff --git a/core/res/res/drawable-ldpi/sym_action_add.png b/core/res/res/drawable-ldpi/sym_action_add.png Binary files differindex 7afaede..a5644a9 100644 --- a/core/res/res/drawable-ldpi/sym_action_add.png +++ b/core/res/res/drawable-ldpi/sym_action_add.png diff --git a/core/res/res/drawable-ldpi/sym_action_call.png b/core/res/res/drawable-ldpi/sym_action_call.png Binary files differindex 190572d..bf6a799 100644 --- a/core/res/res/drawable-ldpi/sym_action_call.png +++ b/core/res/res/drawable-ldpi/sym_action_call.png diff --git a/core/res/res/drawable-ldpi/sym_action_chat.png b/core/res/res/drawable-ldpi/sym_action_chat.png Binary files differindex 4eeb59b..b8e7535 100644 --- a/core/res/res/drawable-ldpi/sym_action_chat.png +++ b/core/res/res/drawable-ldpi/sym_action_chat.png diff --git a/core/res/res/drawable-ldpi/sym_action_email.png b/core/res/res/drawable-ldpi/sym_action_email.png Binary files differindex 47dc63a..d78901c 100644 --- a/core/res/res/drawable-ldpi/sym_action_email.png +++ b/core/res/res/drawable-ldpi/sym_action_email.png diff --git a/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png Binary files differindex d88250a..3931e85 100644 --- a/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/drawable-ldpi/sym_call_incoming.png b/core/res/res/drawable-ldpi/sym_call_incoming.png Binary files differindex ec609c6..87a8365 100644 --- a/core/res/res/drawable-ldpi/sym_call_incoming.png +++ b/core/res/res/drawable-ldpi/sym_call_incoming.png diff --git a/core/res/res/drawable-ldpi/sym_call_missed.png b/core/res/res/drawable-ldpi/sym_call_missed.png Binary files differindex 8bad634..3fe997e 100644 --- a/core/res/res/drawable-ldpi/sym_call_missed.png +++ b/core/res/res/drawable-ldpi/sym_call_missed.png diff --git a/core/res/res/drawable-ldpi/sym_call_outgoing.png b/core/res/res/drawable-ldpi/sym_call_outgoing.png Binary files differindex 362df01..814f9eb 100644 --- a/core/res/res/drawable-ldpi/sym_call_outgoing.png +++ b/core/res/res/drawable-ldpi/sym_call_outgoing.png diff --git a/core/res/res/drawable-ldpi/sym_contact_card.png b/core/res/res/drawable-ldpi/sym_contact_card.png Binary files differindex 8ffd06e..21a588b 100644 --- a/core/res/res/drawable-ldpi/sym_contact_card.png +++ b/core/res/res/drawable-ldpi/sym_contact_card.png diff --git a/core/res/res/drawable-ldpi/sym_def_app_icon.png b/core/res/res/drawable-ldpi/sym_def_app_icon.png Binary files differindex 2c205c8..6e5e462 100644 --- a/core/res/res/drawable-ldpi/sym_def_app_icon.png +++ b/core/res/res/drawable-ldpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_delete.png b/core/res/res/drawable-ldpi/sym_keyboard_delete.png Binary files differindex d9d5653..731cefd 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png b/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png Binary files differindex d7d9385..a9951e9 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png Binary files differindex 8922bf9..b180ad0 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png Binary files differindex 304141b5..847b05e 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png Binary files differindex c5f3247..1c39906 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png Binary files differindex a7bf565..faf1433 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png Binary files differindex 114abac..d5c7aac 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png Binary files differindex 5d52970..6bcd74b 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png Binary files differindex eb4764d..1c87ec6 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num1.png b/core/res/res/drawable-ldpi/sym_keyboard_num1.png Binary files differindex 1339b6d..984da02 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num1.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num2.png b/core/res/res/drawable-ldpi/sym_keyboard_num2.png Binary files differindex bd2379d..47aef08 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num2.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num3.png b/core/res/res/drawable-ldpi/sym_keyboard_num3.png Binary files differindex 43e8b15..229ca4a 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num3.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num4.png b/core/res/res/drawable-ldpi/sym_keyboard_num4.png Binary files differindex 70d4f78..e3c351c 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num4.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num5.png b/core/res/res/drawable-ldpi/sym_keyboard_num5.png Binary files differindex 5acda28..316e3a3 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num5.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num6.png b/core/res/res/drawable-ldpi/sym_keyboard_num6.png Binary files differindex 950600b..e469151 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num6.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num7.png b/core/res/res/drawable-ldpi/sym_keyboard_num7.png Binary files differindex caea4bb..fa9534e 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num7.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num8.png b/core/res/res/drawable-ldpi/sym_keyboard_num8.png Binary files differindex b528fc7..7f519d7 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num8.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num9.png b/core/res/res/drawable-ldpi/sym_keyboard_num9.png Binary files differindex 1835e21..685e32b 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_num9.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_ok.png b/core/res/res/drawable-ldpi/sym_keyboard_ok.png Binary files differindex 70bffc1..8d58135 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_ok.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_ok.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png b/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png Binary files differindex 01cf616..4fd8695 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_return.png b/core/res/res/drawable-ldpi/sym_keyboard_return.png Binary files differindex 1c7c58d..0f405b1 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_return.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_return.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_shift.png b/core/res/res/drawable-ldpi/sym_keyboard_shift.png Binary files differindex 382a08f..985ff5e 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_shift.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_shift.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png b/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png Binary files differindex c644eff..60df7c4 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_space.png b/core/res/res/drawable-ldpi/sym_keyboard_space.png Binary files differindex 0b91646..bdd38c5 100644 --- a/core/res/res/drawable-ldpi/sym_keyboard_space.png +++ b/core/res/res/drawable-ldpi/sym_keyboard_space.png diff --git a/core/res/res/drawable-ldpi/tab_focus.9.png b/core/res/res/drawable-ldpi/tab_focus.9.png Binary files differindex 59a0b65..6af519c 100644 --- a/core/res/res/drawable-ldpi/tab_focus.9.png +++ b/core/res/res/drawable-ldpi/tab_focus.9.png diff --git a/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png b/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png Binary files differindex 0ee8347..1d034f8 100644 --- a/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png +++ b/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png b/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png Binary files differindex 0ee8347..1d034f8 100644 --- a/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png +++ b/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_press.9.png b/core/res/res/drawable-ldpi/tab_press.9.png Binary files differindex ba9c82d..5b187dd 100644 --- a/core/res/res/drawable-ldpi/tab_press.9.png +++ b/core/res/res/drawable-ldpi/tab_press.9.png diff --git a/core/res/res/drawable-ldpi/tab_press_bar_left.9.png b/core/res/res/drawable-ldpi/tab_press_bar_left.9.png Binary files differindex ee129ba..8a50d1a 100644 --- a/core/res/res/drawable-ldpi/tab_press_bar_left.9.png +++ b/core/res/res/drawable-ldpi/tab_press_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_press_bar_right.9.png b/core/res/res/drawable-ldpi/tab_press_bar_right.9.png Binary files differindex ee129ba..8a50d1a 100644 --- a/core/res/res/drawable-ldpi/tab_press_bar_right.9.png +++ b/core/res/res/drawable-ldpi/tab_press_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected.9.png b/core/res/res/drawable-ldpi/tab_selected.9.png Binary files differindex 318f09f..0da141b 100644 --- a/core/res/res/drawable-ldpi/tab_selected.9.png +++ b/core/res/res/drawable-ldpi/tab_selected.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png Binary files differindex 03bcc13..e13313a 100644 --- a/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png +++ b/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png Binary files differindex e7a07255..0aa2799 100644 --- a/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png +++ b/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png Binary files differindex f228445..e13313a 100644 --- a/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png +++ b/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png Binary files differindex e7a07255..0aa2799 100644 --- a/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png +++ b/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_v4.9.png Binary files differindex 2ad1757..2eb2d01 100644 --- a/core/res/res/drawable-ldpi/tab_selected_v4.9.png +++ b/core/res/res/drawable-ldpi/tab_selected_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_unselected.9.png b/core/res/res/drawable-ldpi/tab_unselected.9.png Binary files differindex de7c467..6e3e6a2 100644 --- a/core/res/res/drawable-ldpi/tab_unselected.9.png +++ b/core/res/res/drawable-ldpi/tab_unselected.9.png diff --git a/core/res/res/drawable-ldpi/tab_unselected_v4.9.png b/core/res/res/drawable-ldpi/tab_unselected_v4.9.png Binary files differindex 61d4ef0..7b96a08 100644 --- a/core/res/res/drawable-ldpi/tab_unselected_v4.9.png +++ b/core/res/res/drawable-ldpi/tab_unselected_v4.9.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_left.png b/core/res/res/drawable-ldpi/text_select_handle_left.png Binary files differindex bded42c..05fd37c 100644 --- a/core/res/res/drawable-ldpi/text_select_handle_left.png +++ b/core/res/res/drawable-ldpi/text_select_handle_left.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_middle.png b/core/res/res/drawable-ldpi/text_select_handle_middle.png Binary files differindex c1d8d17..aafcee9 100644 --- a/core/res/res/drawable-ldpi/text_select_handle_middle.png +++ b/core/res/res/drawable-ldpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_right.png b/core/res/res/drawable-ldpi/text_select_handle_right.png Binary files differindex aae0b40..8d1e827 100644 --- a/core/res/res/drawable-ldpi/text_select_handle_right.png +++ b/core/res/res/drawable-ldpi/text_select_handle_right.png diff --git a/core/res/res/drawable-ldpi/textfield_default.9.png b/core/res/res/drawable-ldpi/textfield_default.9.png Binary files differindex 4cfa745..4a1a48b 100644 --- a/core/res/res/drawable-ldpi/textfield_default.9.png +++ b/core/res/res/drawable-ldpi/textfield_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_disabled.9.png b/core/res/res/drawable-ldpi/textfield_disabled.9.png Binary files differindex e54bf30..c3544de 100644 --- a/core/res/res/drawable-ldpi/textfield_disabled.9.png +++ b/core/res/res/drawable-ldpi/textfield_disabled.9.png diff --git a/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png b/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png Binary files differindex 02f6b5e..5cd14cd 100644 --- a/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png +++ b/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_default.9.png b/core/res/res/drawable-ldpi/textfield_search_default.9.png Binary files differindex dfb3f7a..e8de38c 100644 --- a/core/res/res/drawable-ldpi/textfield_search_default.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png Binary files differindex 65fbe33..9b51d2b 100644 --- a/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png Binary files differindex 2a72142..d6182d3 100644 --- a/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png Binary files differindex 162c178..6e4b8e0 100644 --- a/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_pressed.9.png b/core/res/res/drawable-ldpi/textfield_search_pressed.9.png Binary files differindex b414f6c..44a003e 100644 --- a/core/res/res/drawable-ldpi/textfield_search_pressed.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_pressed.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_selected.9.png b/core/res/res/drawable-ldpi/textfield_search_selected.9.png Binary files differindex d6e6a44..329af25 100644 --- a/core/res/res/drawable-ldpi/textfield_search_selected.9.png +++ b/core/res/res/drawable-ldpi/textfield_search_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_selected.9.png b/core/res/res/drawable-ldpi/textfield_selected.9.png Binary files differindex 80a6f39..766a45c 100644 --- a/core/res/res/drawable-ldpi/textfield_selected.9.png +++ b/core/res/res/drawable-ldpi/textfield_selected.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_medium.9.png b/core/res/res/drawable-ldpi/title_bar_medium.9.png Binary files differindex ab95aad..1b8927f 100644 --- a/core/res/res/drawable-ldpi/title_bar_medium.9.png +++ b/core/res/res/drawable-ldpi/title_bar_medium.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_portrait.9.png b/core/res/res/drawable-ldpi/title_bar_portrait.9.png Binary files differindex 6f868db..a358812 100644 --- a/core/res/res/drawable-ldpi/title_bar_portrait.9.png +++ b/core/res/res/drawable-ldpi/title_bar_portrait.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_tall.9.png b/core/res/res/drawable-ldpi/title_bar_tall.9.png Binary files differindex b4729b7..7d51d0e 100644 --- a/core/res/res/drawable-ldpi/title_bar_tall.9.png +++ b/core/res/res/drawable-ldpi/title_bar_tall.9.png diff --git a/core/res/res/drawable-ldpi/toast_frame.9.png b/core/res/res/drawable-ldpi/toast_frame.9.png Binary files differindex e64dc75..ec3a15a 100644 --- a/core/res/res/drawable-ldpi/toast_frame.9.png +++ b/core/res/res/drawable-ldpi/toast_frame.9.png diff --git a/core/res/res/drawable-ldpi/unknown_image.png b/core/res/res/drawable-ldpi/unknown_image.png Binary files differindex c6255ba..addfd9e 100644 --- a/core/res/res/drawable-ldpi/unknown_image.png +++ b/core/res/res/drawable-ldpi/unknown_image.png diff --git a/core/res/res/drawable-ldpi/usb_android.png b/core/res/res/drawable-ldpi/usb_android.png Binary files differindex d7b1d93..fab61e1 100644 --- a/core/res/res/drawable-ldpi/usb_android.png +++ b/core/res/res/drawable-ldpi/usb_android.png diff --git a/core/res/res/drawable-ldpi/usb_android_connected.png b/core/res/res/drawable-ldpi/usb_android_connected.png Binary files differindex c9d8439..858c546 100644 --- a/core/res/res/drawable-ldpi/usb_android_connected.png +++ b/core/res/res/drawable-ldpi/usb_android_connected.png diff --git a/core/res/res/drawable-ldpi/vpn_connected.png b/core/res/res/drawable-ldpi/vpn_connected.png Binary files differindex 65fc6db..c2afeb8 100644 --- a/core/res/res/drawable-ldpi/vpn_connected.png +++ b/core/res/res/drawable-ldpi/vpn_connected.png diff --git a/core/res/res/drawable-ldpi/vpn_disconnected.png b/core/res/res/drawable-ldpi/vpn_disconnected.png Binary files differindex 2440c69..7143161 100644 --- a/core/res/res/drawable-ldpi/vpn_disconnected.png +++ b/core/res/res/drawable-ldpi/vpn_disconnected.png diff --git a/core/res/res/drawable-ldpi/zoom_plate.9.png b/core/res/res/drawable-ldpi/zoom_plate.9.png Binary files differindex 5e34e7a..c337301 100644 --- a/core/res/res/drawable-ldpi/zoom_plate.9.png +++ b/core/res/res/drawable-ldpi/zoom_plate.9.png diff --git a/core/res/res/drawable-mdpi/ab_bottom_solid_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_bottom_solid_dark_holo.9.png Binary files differindex b229367..f65450e 100644 --- a/core/res/res/drawable-mdpi/ab_bottom_solid_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_bottom_solid_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_bottom_solid_inverse_holo.9.png b/core/res/res/drawable-mdpi/ab_bottom_solid_inverse_holo.9.png Binary files differindex c65f443..6bf08c8 100644 --- a/core/res/res/drawable-mdpi/ab_bottom_solid_inverse_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_bottom_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_bottom_solid_light_holo.9.png b/core/res/res/drawable-mdpi/ab_bottom_solid_light_holo.9.png Binary files differindex 0706c8a..02352fa 100644 --- a/core/res/res/drawable-mdpi/ab_bottom_solid_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_bottom_solid_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_bottom_transparent_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_bottom_transparent_dark_holo.9.png Binary files differindex d814d02..6e2ddc0 100644 --- a/core/res/res/drawable-mdpi/ab_bottom_transparent_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_bottom_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_bottom_transparent_light_holo.9.png b/core/res/res/drawable-mdpi/ab_bottom_transparent_light_holo.9.png Binary files differindex b139c8e..cefb371 100644 --- a/core/res/res/drawable-mdpi/ab_bottom_transparent_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_bottom_transparent_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_share_pack_holo_dark.9.png b/core/res/res/drawable-mdpi/ab_share_pack_holo_dark.9.png Binary files differindex ed4ba34..a05e95b 100644 --- a/core/res/res/drawable-mdpi/ab_share_pack_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/ab_share_pack_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/ab_share_pack_holo_light.9.png b/core/res/res/drawable-mdpi/ab_share_pack_holo_light.9.png Binary files differindex 8f10bd5..afd5b97 100644 --- a/core/res/res/drawable-mdpi/ab_share_pack_holo_light.9.png +++ b/core/res/res/drawable-mdpi/ab_share_pack_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/ab_share_pack_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/ab_share_pack_mtrl_alpha.9.png Binary files differindex f31730d..3051095 100644 --- a/core/res/res/drawable-mdpi/ab_share_pack_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/ab_share_pack_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/ab_solid_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_solid_dark_holo.9.png Binary files differindex 743d00b..6a62325 100644 --- a/core/res/res/drawable-mdpi/ab_solid_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_solid_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_solid_light_holo.9.png b/core/res/res/drawable-mdpi/ab_solid_light_holo.9.png Binary files differindex 17c1fb9..c56acf2 100644 --- a/core/res/res/drawable-mdpi/ab_solid_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_solid_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_solid_shadow_holo.9.png b/core/res/res/drawable-mdpi/ab_solid_shadow_holo.9.png Binary files differindex ddfc8e3..7d08e40 100644 --- a/core/res/res/drawable-mdpi/ab_solid_shadow_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_solid_shadow_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_solid_shadow_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/ab_solid_shadow_mtrl_alpha.9.png Binary files differindex ebdea00..43b3b92 100644 --- a/core/res/res/drawable-mdpi/ab_solid_shadow_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/ab_solid_shadow_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/ab_stacked_solid_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_stacked_solid_dark_holo.9.png Binary files differindex 007a4b2..c2c4f47 100644 --- a/core/res/res/drawable-mdpi/ab_stacked_solid_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_stacked_solid_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_stacked_solid_inverse_holo.9.png b/core/res/res/drawable-mdpi/ab_stacked_solid_inverse_holo.9.png Binary files differindex a823841..50f2544 100644 --- a/core/res/res/drawable-mdpi/ab_stacked_solid_inverse_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_stacked_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_stacked_solid_light_holo.9.png b/core/res/res/drawable-mdpi/ab_stacked_solid_light_holo.9.png Binary files differindex ad6e1a4..070ebe9 100644 --- a/core/res/res/drawable-mdpi/ab_stacked_solid_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_stacked_solid_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_stacked_transparent_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_stacked_transparent_dark_holo.9.png Binary files differindex 0ad6c88..fbbd139 100644 --- a/core/res/res/drawable-mdpi/ab_stacked_transparent_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_stacked_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_stacked_transparent_light_holo.9.png b/core/res/res/drawable-mdpi/ab_stacked_transparent_light_holo.9.png Binary files differindex 19b50ab..5a7788f 100644 --- a/core/res/res/drawable-mdpi/ab_stacked_transparent_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_stacked_transparent_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_transparent_dark_holo.9.png b/core/res/res/drawable-mdpi/ab_transparent_dark_holo.9.png Binary files differindex ad980b1..102fc7e 100644 --- a/core/res/res/drawable-mdpi/ab_transparent_dark_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-mdpi/ab_transparent_light_holo.9.png b/core/res/res/drawable-mdpi/ab_transparent_light_holo.9.png Binary files differindex 60e6c52..958d7ec 100644 --- a/core/res/res/drawable-mdpi/ab_transparent_light_holo.9.png +++ b/core/res/res/drawable-mdpi/ab_transparent_light_holo.9.png diff --git a/core/res/res/drawable-mdpi/activity_title_bar.9.png b/core/res/res/drawable-mdpi/activity_title_bar.9.png Binary files differindex bd0680d..64f27fd 100644 --- a/core/res/res/drawable-mdpi/activity_title_bar.9.png +++ b/core/res/res/drawable-mdpi/activity_title_bar.9.png diff --git a/core/res/res/drawable-mdpi/arrow_down_float.png b/core/res/res/drawable-mdpi/arrow_down_float.png Binary files differindex dd82523..1414e00 100644 --- a/core/res/res/drawable-mdpi/arrow_down_float.png +++ b/core/res/res/drawable-mdpi/arrow_down_float.png diff --git a/core/res/res/drawable-mdpi/arrow_up_float.png b/core/res/res/drawable-mdpi/arrow_up_float.png Binary files differindex 9bc3d1c..3ecd995 100644 --- a/core/res/res/drawable-mdpi/arrow_up_float.png +++ b/core/res/res/drawable-mdpi/arrow_up_float.png diff --git a/core/res/res/drawable-mdpi/battery_charge_background.png b/core/res/res/drawable-mdpi/battery_charge_background.png Binary files differindex 9219745..7ed1756 100644 --- a/core/res/res/drawable-mdpi/battery_charge_background.png +++ b/core/res/res/drawable-mdpi/battery_charge_background.png diff --git a/core/res/res/drawable-mdpi/bottom_bar.png b/core/res/res/drawable-mdpi/bottom_bar.png Binary files differindex 1fdb078..250a0ba 100644 --- a/core/res/res/drawable-mdpi/bottom_bar.png +++ b/core/res/res/drawable-mdpi/bottom_bar.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_default_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_cab_done_default_holo_dark.9.png Binary files differindex 5461b9c..a1fb44b 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_default_holo_light.9.png b/core/res/res/drawable-mdpi/btn_cab_done_default_holo_light.9.png Binary files differindex 5dc6f80..15eec00 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_dark.9.png Binary files differindex a70b53c..8205242 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_light.9.png Binary files differindex c7a9896..92f81da 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_dark.9.png Binary files differindex f4185d1..ec2e4a2 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_light.9.png Binary files differindex d59219b..be6e614 100644 --- a/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_cab_done_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_check_buttonless_off.png b/core/res/res/drawable-mdpi/btn_check_buttonless_off.png Binary files differindex f8972fc..06009b2 100644 --- a/core/res/res/drawable-mdpi/btn_check_buttonless_off.png +++ b/core/res/res/drawable-mdpi/btn_check_buttonless_off.png diff --git a/core/res/res/drawable-mdpi/btn_check_buttonless_on.png b/core/res/res/drawable-mdpi/btn_check_buttonless_on.png Binary files differindex a10a37a..b103254 100644 --- a/core/res/res/drawable-mdpi/btn_check_buttonless_on.png +++ b/core/res/res/drawable-mdpi/btn_check_buttonless_on.png diff --git a/core/res/res/drawable-mdpi/btn_check_label_background.9.png b/core/res/res/drawable-mdpi/btn_check_label_background.9.png Binary files differindex 79367b8..b5ec7c4 100644 --- a/core/res/res/drawable-mdpi/btn_check_label_background.9.png +++ b/core/res/res/drawable-mdpi/btn_check_label_background.9.png diff --git a/core/res/res/drawable-mdpi/btn_check_off.png b/core/res/res/drawable-mdpi/btn_check_off.png Binary files differindex b0541d9..738d573 100644 --- a/core/res/res/drawable-mdpi/btn_check_off.png +++ b/core/res/res/drawable-mdpi/btn_check_off.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable.png b/core/res/res/drawable-mdpi/btn_check_off_disable.png Binary files differindex 5ec8d03..5bfa65b 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_focused.png b/core/res/res/drawable-mdpi/btn_check_off_disable_focused.png Binary files differindex 341ffb9..6844154 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png Binary files differindex f3194b7..d85e694 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png Binary files differindex bd71072..ab9fd36 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png Binary files differindex f3194b7..d85e694 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png Binary files differindex bd71072..ab9fd36 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_dark.png Binary files differindex 049cd28..f805963 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_light.png Binary files differindex 42442e8..deeff5e 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_dark.png Binary files differindex 654d449..53f94ec 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_light.png Binary files differindex db19043..c59acbd 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_focused_holo_dark.png Binary files differindex a09cd48..e4f4c1f 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_focused_holo_light.png Binary files differindex 3fc71fd..8d2029c 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_holo.png b/core/res/res/drawable-mdpi/btn_check_off_holo.png Binary files differindex 8655e0c..d31cbaf 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_holo.png +++ b/core/res/res/drawable-mdpi/btn_check_off_holo.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png Binary files differindex 6081079..bd4f068 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_holo_light.png Binary files differindex 5e04a57..8cbd92f 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_normal_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_normal_holo_dark.png Binary files differindex 1561176..f756529 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_normal_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_normal_holo_light.png Binary files differindex b39ad3d..d94364e 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_pressed.png b/core/res/res/drawable-mdpi/btn_check_off_pressed.png Binary files differindex 5e77a77..fc59da1 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_pressed.png +++ b/core/res/res/drawable-mdpi/btn_check_off_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png Binary files differindex 47e8b5b..3fc2d11 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png Binary files differindex 1dc83fa..d30b023 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_off_selected.png b/core/res/res/drawable-mdpi/btn_check_off_selected.png Binary files differindex 4e40f207..73e102d 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_selected.png +++ b/core/res/res/drawable-mdpi/btn_check_off_selected.png diff --git a/core/res/res/drawable-mdpi/btn_check_on.png b/core/res/res/drawable-mdpi/btn_check_on.png Binary files differindex 23304a1..8eb2ea5 100644 --- a/core/res/res/drawable-mdpi/btn_check_on.png +++ b/core/res/res/drawable-mdpi/btn_check_on.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable.png b/core/res/res/drawable-mdpi/btn_check_on_disable.png Binary files differindex 817745c..47fea2f 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disable.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disable.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_focused.png b/core/res/res/drawable-mdpi/btn_check_on_disable_focused.png Binary files differindex 13d13b6..725fa50 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png Binary files differindex c9ebbca..3fb1ca9 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png Binary files differindex 48cc017..a7e03e3 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png Binary files differindex c9ebbca..3fb1ca9 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_dark.png Binary files differindex 29fa22f..6824d82 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_light.png Binary files differindex 997045d..457a3cb 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_dark.png Binary files differindex e180ea7..1804598 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_light.png Binary files differindex 20e2aab..9c2fc08 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_focused_holo_dark.png Binary files differindex 9c089aa..1a9eb27 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_focused_holo_light.png Binary files differindex a3b4916..a02896a 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_holo.png b/core/res/res/drawable-mdpi/btn_check_on_holo.png Binary files differindex 2737d8c..16912ea 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_holo.png +++ b/core/res/res/drawable-mdpi/btn_check_on_holo.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png Binary files differindex 9f31c1b..a953a48 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_holo_light.png Binary files differindex f657c5b..2e8163b 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_pressed.png b/core/res/res/drawable-mdpi/btn_check_on_pressed.png Binary files differindex 9cdc796..6ed6efd 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_pressed.png +++ b/core/res/res/drawable-mdpi/btn_check_on_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png Binary files differindex eafc553..d7ce9fe 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png Binary files differindex 6583e99..30de430 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_check_on_selected.png b/core/res/res/drawable-mdpi/btn_check_on_selected.png Binary files differindex b2c3727..fcdb782 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_selected.png +++ b/core/res/res/drawable-mdpi/btn_check_on_selected.png diff --git a/core/res/res/drawable-mdpi/btn_circle_disable.png b/core/res/res/drawable-mdpi/btn_circle_disable.png Binary files differindex 29e227c..a3be367 100644 --- a/core/res/res/drawable-mdpi/btn_circle_disable.png +++ b/core/res/res/drawable-mdpi/btn_circle_disable.png diff --git a/core/res/res/drawable-mdpi/btn_circle_disable_focused.png b/core/res/res/drawable-mdpi/btn_circle_disable_focused.png Binary files differindex c5aa3c5..bcede02 100644 --- a/core/res/res/drawable-mdpi/btn_circle_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_circle_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_circle_normal.png b/core/res/res/drawable-mdpi/btn_circle_normal.png Binary files differindex 6358351..3a03584 100644 --- a/core/res/res/drawable-mdpi/btn_circle_normal.png +++ b/core/res/res/drawable-mdpi/btn_circle_normal.png diff --git a/core/res/res/drawable-mdpi/btn_circle_pressed.png b/core/res/res/drawable-mdpi/btn_circle_pressed.png Binary files differindex dc07a61..680d312 100644 --- a/core/res/res/drawable-mdpi/btn_circle_pressed.png +++ b/core/res/res/drawable-mdpi/btn_circle_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_circle_selected.png b/core/res/res/drawable-mdpi/btn_circle_selected.png Binary files differindex 6eb2ff5..3a04655 100644 --- a/core/res/res/drawable-mdpi/btn_circle_selected.png +++ b/core/res/res/drawable-mdpi/btn_circle_selected.png diff --git a/core/res/res/drawable-mdpi/btn_close_normal.png b/core/res/res/drawable-mdpi/btn_close_normal.png Binary files differindex eca5828..4df3a52 100644 --- a/core/res/res/drawable-mdpi/btn_close_normal.png +++ b/core/res/res/drawable-mdpi/btn_close_normal.png diff --git a/core/res/res/drawable-mdpi/btn_close_pressed.png b/core/res/res/drawable-mdpi/btn_close_pressed.png Binary files differindex 3c745bb..86aade0 100644 --- a/core/res/res/drawable-mdpi/btn_close_pressed.png +++ b/core/res/res/drawable-mdpi/btn_close_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_close_selected.png b/core/res/res/drawable-mdpi/btn_close_selected.png Binary files differindex c41f039..94446a1 100644 --- a/core/res/res/drawable-mdpi/btn_close_selected.png +++ b/core/res/res/drawable-mdpi/btn_close_selected.png diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png Binary files differindex 3ce61b3..c02795c 100644 --- a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png Binary files differindex 3ce61b3..c02795c 100644 --- a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_holo.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_holo.9.png Binary files differindex 77f6492..0df4f47 100644 --- a/core/res/res/drawable-mdpi/btn_default_disabled_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_default_disabled_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png Binary files differindex 82e54fd..846b471 100644 --- a/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png Binary files differindex 82e54fd..846b471 100644 --- a/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_focused_holo.9.png b/core/res/res/drawable-mdpi/btn_default_focused_holo.9.png Binary files differindex 683f128..a04b7cf 100644 --- a/core/res/res/drawable-mdpi/btn_default_focused_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_default_focused_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png Binary files differindex c389871..538ec7a 100644 --- a/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png Binary files differindex c389871..538ec7a 100644 --- a/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal.9.png b/core/res/res/drawable-mdpi/btn_default_normal.9.png Binary files differindex 7ff74b2..f7a5e59 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal_disable.9.png b/core/res/res/drawable-mdpi/btn_default_normal_disable.9.png Binary files differindex d3e11b5..774b928 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal_disable.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal_disable.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal_disable_focused.9.png b/core/res/res/drawable-mdpi/btn_default_normal_disable_focused.9.png Binary files differindex 843ca7a..91069d5 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal_disable_focused.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal_disable_focused.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal_holo.9.png b/core/res/res/drawable-mdpi/btn_default_normal_holo.9.png Binary files differindex 0e0da34..e15a9b0 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png Binary files differindex 211be67..9a7b43a 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png Binary files differindex accc761..735f4b8 100644 --- a/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_pressed.9.png b/core/res/res/drawable-mdpi/btn_default_pressed.9.png Binary files differindex 74fd58b..e964478 100644 --- a/core/res/res/drawable-mdpi/btn_default_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_default_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_pressed_holo.9.png b/core/res/res/drawable-mdpi/btn_default_pressed_holo.9.png Binary files differindex 1940216..fd27f3c 100644 --- a/core/res/res/drawable-mdpi/btn_default_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_default_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png Binary files differindex ebdc717..a597462 100644 --- a/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png Binary files differindex c73984e..6b60af4 100644 --- a/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_selected.9.png b/core/res/res/drawable-mdpi/btn_default_selected.9.png Binary files differindex 415b145..da82aec 100644 --- a/core/res/res/drawable-mdpi/btn_default_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_default_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_small_normal.9.png b/core/res/res/drawable-mdpi/btn_default_small_normal.9.png Binary files differindex 5dddd46..25017e6 100644 --- a/core/res/res/drawable-mdpi/btn_default_small_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_default_small_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_small_normal_disable.9.png b/core/res/res/drawable-mdpi/btn_default_small_normal_disable.9.png Binary files differindex 6ab5c4a..92d5a55 100644 --- a/core/res/res/drawable-mdpi/btn_default_small_normal_disable.9.png +++ b/core/res/res/drawable-mdpi/btn_default_small_normal_disable.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_small_normal_disable_focused.9.png b/core/res/res/drawable-mdpi/btn_default_small_normal_disable_focused.9.png Binary files differindex c65bace..52f3e6f 100644 --- a/core/res/res/drawable-mdpi/btn_default_small_normal_disable_focused.9.png +++ b/core/res/res/drawable-mdpi/btn_default_small_normal_disable_focused.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_small_pressed.9.png b/core/res/res/drawable-mdpi/btn_default_small_pressed.9.png Binary files differindex 43e82f9..0f9c7f8 100644 --- a/core/res/res/drawable-mdpi/btn_default_small_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_default_small_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_small_selected.9.png b/core/res/res/drawable-mdpi/btn_default_small_selected.9.png Binary files differindex 7a376a9..f7212b3 100644 --- a/core/res/res/drawable-mdpi/btn_default_small_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_default_small_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_default_transparent_normal.9.png b/core/res/res/drawable-mdpi/btn_default_transparent_normal.9.png Binary files differindex 3b3dea9..122c338 100644 --- a/core/res/res/drawable-mdpi/btn_default_transparent_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_default_transparent_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_dialog_disable.png b/core/res/res/drawable-mdpi/btn_dialog_disable.png Binary files differindex 3de9895..72bb3ac 100644 --- a/core/res/res/drawable-mdpi/btn_dialog_disable.png +++ b/core/res/res/drawable-mdpi/btn_dialog_disable.png diff --git a/core/res/res/drawable-mdpi/btn_dialog_normal.png b/core/res/res/drawable-mdpi/btn_dialog_normal.png Binary files differindex eca5828..4df3a52 100644 --- a/core/res/res/drawable-mdpi/btn_dialog_normal.png +++ b/core/res/res/drawable-mdpi/btn_dialog_normal.png diff --git a/core/res/res/drawable-mdpi/btn_dialog_pressed.png b/core/res/res/drawable-mdpi/btn_dialog_pressed.png Binary files differindex f9c4551..3505168 100644 --- a/core/res/res/drawable-mdpi/btn_dialog_pressed.png +++ b/core/res/res/drawable-mdpi/btn_dialog_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_dialog_selected.png b/core/res/res/drawable-mdpi/btn_dialog_selected.png Binary files differindex b0afd7f..401d3c3 100644 --- a/core/res/res/drawable-mdpi/btn_dialog_selected.png +++ b/core/res/res/drawable-mdpi/btn_dialog_selected.png diff --git a/core/res/res/drawable-mdpi/btn_dropdown_disabled.9.png b/core/res/res/drawable-mdpi/btn_dropdown_disabled.9.png Binary files differindex 72915b5..7df9910 100644 --- a/core/res/res/drawable-mdpi/btn_dropdown_disabled.9.png +++ b/core/res/res/drawable-mdpi/btn_dropdown_disabled.9.png diff --git a/core/res/res/drawable-mdpi/btn_dropdown_disabled_focused.9.png b/core/res/res/drawable-mdpi/btn_dropdown_disabled_focused.9.png Binary files differindex 438c06a..8ae5b58 100644 --- a/core/res/res/drawable-mdpi/btn_dropdown_disabled_focused.9.png +++ b/core/res/res/drawable-mdpi/btn_dropdown_disabled_focused.9.png diff --git a/core/res/res/drawable-mdpi/btn_dropdown_normal.9.png b/core/res/res/drawable-mdpi/btn_dropdown_normal.9.png Binary files differindex 8540501..1216e64 100644 --- a/core/res/res/drawable-mdpi/btn_dropdown_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_dropdown_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_dropdown_pressed.9.png b/core/res/res/drawable-mdpi/btn_dropdown_pressed.9.png Binary files differindex 9a50396..5150639 100644 --- a/core/res/res/drawable-mdpi/btn_dropdown_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_dropdown_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_dropdown_selected.9.png b/core/res/res/drawable-mdpi/btn_dropdown_selected.9.png Binary files differindex a0a3fef..42b1f0d 100644 --- a/core/res/res/drawable-mdpi/btn_dropdown_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_dropdown_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_erase_default.9.png b/core/res/res/drawable-mdpi/btn_erase_default.9.png Binary files differindex c3bf60c..3753852 100644 --- a/core/res/res/drawable-mdpi/btn_erase_default.9.png +++ b/core/res/res/drawable-mdpi/btn_erase_default.9.png diff --git a/core/res/res/drawable-mdpi/btn_erase_pressed.9.png b/core/res/res/drawable-mdpi/btn_erase_pressed.9.png Binary files differindex 727aafe..abed438 100644 --- a/core/res/res/drawable-mdpi/btn_erase_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_erase_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_erase_selected.9.png b/core/res/res/drawable-mdpi/btn_erase_selected.9.png Binary files differindex c6bd020..97757cc 100644 --- a/core/res/res/drawable-mdpi/btn_erase_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_erase_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_global_search_normal.9.png b/core/res/res/drawable-mdpi/btn_global_search_normal.9.png Binary files differindex 9b7d3e5..297ad29 100644 --- a/core/res/res/drawable-mdpi/btn_global_search_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_global_search_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_group_disabled_holo_dark.9.png Binary files differindex 5894afe..e989f11 100644 --- a/core/res/res/drawable-mdpi/btn_group_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_group_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_group_disabled_holo_light.9.png Binary files differindex 1dfc7d3..6abfea4 100644 --- a/core/res/res/drawable-mdpi/btn_group_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_group_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_group_focused_holo_dark.9.png Binary files differindex db2eae1..96d7e45 100644 --- a/core/res/res/drawable-mdpi/btn_group_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_group_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_group_focused_holo_light.9.png Binary files differindex db2eae1..96d7e45 100644 --- a/core/res/res/drawable-mdpi/btn_group_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_group_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_group_normal_holo_dark.9.png Binary files differindex c6257bb..739dcc9 100644 --- a/core/res/res/drawable-mdpi/btn_group_normal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_group_normal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_group_normal_holo_light.9.png Binary files differindex 7e25ad3..b87deb7 100644 --- a/core/res/res/drawable-mdpi/btn_group_normal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_group_normal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_group_pressed_holo_dark.9.png Binary files differindex 67b5e4e..967728b 100644 --- a/core/res/res/drawable-mdpi/btn_group_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_group_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_group_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_group_pressed_holo_light.9.png Binary files differindex 1547267..fa849b0 100644 --- a/core/res/res/drawable-mdpi/btn_group_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_group_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png Binary files differindex d449d76..080e954 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_off_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_off_holo.9.png Binary files differindex 80fe863..9ea0984 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_off_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_off_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_on_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_on_holo.9.png Binary files differindex 196d6d9..18a515f 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_on_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_normal_on_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png Binary files differindex 8f340d3..54e90c1 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_off_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_off_holo.9.png Binary files differindex b34b957..2e42be4 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_off_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_off_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_on_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_on_holo.9.png Binary files differindex 02f4b3d..a012c06 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_on_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_dark_pressed_on_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal.9.png Binary files differindex 93767a5..738c80c 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_off.9.png Binary files differindex 7f16a44..a78d559 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_on.9.png Binary files differindex 7887c2e..ad1d82e 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_normal_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed.9.png Binary files differindex 88dc173..862bbe3 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_off.9.png Binary files differindex 9578c09..4e3ee11 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_on.9.png Binary files differindex 48d2b09..13b68a6 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_fulltrans_pressed_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png Binary files differindex 976083f..32426a83 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_light_normal_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png Binary files differindex c39dd4a..06eefa4 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_light_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_normal.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_normal.9.png Binary files differindex 7ba18dd..334a57c 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_normal_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_normal_off.9.png Binary files differindex bda9b83..7851634 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_normal_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_normal_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_normal_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_normal_on.9.png Binary files differindex 0c16ed5..e3ed31a 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_normal_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_normal_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed.9.png Binary files differindex 39b9314..3fc64b1 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_off.9.png Binary files differindex bdcf06e..cf87146 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_on.9.png Binary files differindex 79621a9..a9bb616 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_pressed_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal.9.png Binary files differindex 652c05f..747ceda 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_off.9.png Binary files differindex 77426ef..c5503c1 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_on.9.png Binary files differindex e4c9bd5..6c483a7 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_normal_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed.9.png Binary files differindex 1d1e9c0..0dba213 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_off.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_off.9.png Binary files differindex bb98b01..1b2b308 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_off.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_on.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_on.9.png Binary files differindex 3c7dcc8..9ad3b4f 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_on.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_pressed_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_selected.9.png b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_selected.9.png Binary files differindex b168e0c..d509602 100644 --- a/core/res/res/drawable-mdpi/btn_keyboard_key_trans_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_keyboard_key_trans_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_media_player.9.png b/core/res/res/drawable-mdpi/btn_media_player.9.png Binary files differindex 3ec3f68..7479fb7 100644 --- a/core/res/res/drawable-mdpi/btn_media_player.9.png +++ b/core/res/res/drawable-mdpi/btn_media_player.9.png diff --git a/core/res/res/drawable-mdpi/btn_media_player_disabled.9.png b/core/res/res/drawable-mdpi/btn_media_player_disabled.9.png Binary files differindex e74335b..980f987 100644 --- a/core/res/res/drawable-mdpi/btn_media_player_disabled.9.png +++ b/core/res/res/drawable-mdpi/btn_media_player_disabled.9.png diff --git a/core/res/res/drawable-mdpi/btn_media_player_disabled_selected.9.png b/core/res/res/drawable-mdpi/btn_media_player_disabled_selected.9.png Binary files differindex 2c6517f..9801e91 100644 --- a/core/res/res/drawable-mdpi/btn_media_player_disabled_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_media_player_disabled_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_media_player_pressed.9.png b/core/res/res/drawable-mdpi/btn_media_player_pressed.9.png Binary files differindex 40bee47..78f9277 100644 --- a/core/res/res/drawable-mdpi/btn_media_player_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_media_player_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_media_player_selected.9.png b/core/res/res/drawable-mdpi/btn_media_player_selected.9.png Binary files differindex 28d809f..8d8e0e3 100644 --- a/core/res/res/drawable-mdpi/btn_media_player_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_media_player_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_minus_default.png b/core/res/res/drawable-mdpi/btn_minus_default.png Binary files differindex ee95879..f7cea76 100644 --- a/core/res/res/drawable-mdpi/btn_minus_default.png +++ b/core/res/res/drawable-mdpi/btn_minus_default.png diff --git a/core/res/res/drawable-mdpi/btn_minus_disable.png b/core/res/res/drawable-mdpi/btn_minus_disable.png Binary files differindex dff7bf7..5692119 100644 --- a/core/res/res/drawable-mdpi/btn_minus_disable.png +++ b/core/res/res/drawable-mdpi/btn_minus_disable.png diff --git a/core/res/res/drawable-mdpi/btn_minus_disable_focused.png b/core/res/res/drawable-mdpi/btn_minus_disable_focused.png Binary files differindex 3f04557..7e236ec 100644 --- a/core/res/res/drawable-mdpi/btn_minus_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_minus_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_minus_pressed.png b/core/res/res/drawable-mdpi/btn_minus_pressed.png Binary files differindex 758d958..edd393b 100644 --- a/core/res/res/drawable-mdpi/btn_minus_pressed.png +++ b/core/res/res/drawable-mdpi/btn_minus_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_minus_selected.png b/core/res/res/drawable-mdpi/btn_minus_selected.png Binary files differindex 752a249..6fa9a45 100644 --- a/core/res/res/drawable-mdpi/btn_minus_selected.png +++ b/core/res/res/drawable-mdpi/btn_minus_selected.png diff --git a/core/res/res/drawable-mdpi/btn_plus_default.png b/core/res/res/drawable-mdpi/btn_plus_default.png Binary files differindex aa31e37..e172111 100644 --- a/core/res/res/drawable-mdpi/btn_plus_default.png +++ b/core/res/res/drawable-mdpi/btn_plus_default.png diff --git a/core/res/res/drawable-mdpi/btn_plus_disable.png b/core/res/res/drawable-mdpi/btn_plus_disable.png Binary files differindex c373cd3..f0b30fa 100644 --- a/core/res/res/drawable-mdpi/btn_plus_disable.png +++ b/core/res/res/drawable-mdpi/btn_plus_disable.png diff --git a/core/res/res/drawable-mdpi/btn_plus_disable_focused.png b/core/res/res/drawable-mdpi/btn_plus_disable_focused.png Binary files differindex 8f72a5f..ff0b88f 100644 --- a/core/res/res/drawable-mdpi/btn_plus_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_plus_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_plus_pressed.png b/core/res/res/drawable-mdpi/btn_plus_pressed.png Binary files differindex 1fb8413..b8dc3af 100644 --- a/core/res/res/drawable-mdpi/btn_plus_pressed.png +++ b/core/res/res/drawable-mdpi/btn_plus_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_plus_selected.png b/core/res/res/drawable-mdpi/btn_plus_selected.png Binary files differindex 47fe9bf..8965fc9 100644 --- a/core/res/res/drawable-mdpi/btn_plus_selected.png +++ b/core/res/res/drawable-mdpi/btn_plus_selected.png diff --git a/core/res/res/drawable-mdpi/btn_radio_label_background.9.png b/core/res/res/drawable-mdpi/btn_radio_label_background.9.png Binary files differindex 16e8939..b5ec7c4 100644 --- a/core/res/res/drawable-mdpi/btn_radio_label_background.9.png +++ b/core/res/res/drawable-mdpi/btn_radio_label_background.9.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off.png b/core/res/res/drawable-mdpi/btn_radio_off.png Binary files differindex ef7130d..0535b6e 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off.png +++ b/core/res/res/drawable-mdpi/btn_radio_off.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_dark.png Binary files differindex 0ad3a31..1e113a4 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_light.png Binary files differindex 4dac84c..08549ce 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_dark.png Binary files differindex 20d3d77..bdd7b45 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_light.png Binary files differindex a67375e..f62488b 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_dark.png Binary files differindex 5878db1..953b7f5 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_light.png Binary files differindex 6753d08..fa0f7ae 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_holo.png b/core/res/res/drawable-mdpi/btn_radio_off_holo.png Binary files differindex e2077a9..1a5afc5 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_holo.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_holo.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png Binary files differindex ac3ef06..a1a8124 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png Binary files differindex 665cb17..3560a64 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_pressed.png b/core/res/res/drawable-mdpi/btn_radio_off_pressed.png Binary files differindex f7b77c3..68bb971 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_pressed.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png Binary files differindex cebaf6d..d5ac7c8 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png Binary files differindex 7b12bea..3093250 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_off_selected.png b/core/res/res/drawable-mdpi/btn_radio_off_selected.png Binary files differindex 5a0d488..2cfdbcd 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_selected.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_selected.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on.png b/core/res/res/drawable-mdpi/btn_radio_on.png Binary files differindex e13e639..e693cf6 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on.png +++ b/core/res/res/drawable-mdpi/btn_radio_on.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_dark.png Binary files differindex 8ffe006..9a7baeb 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_light.png Binary files differindex c9be37e..753f41a 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_dark.png Binary files differindex 605af76..1cf93c9 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_light.png Binary files differindex 4583c3e..0462acf 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_dark.png Binary files differindex 456d15d..d925b3a 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_light.png Binary files differindex db3b30a..143661e 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_holo.png b/core/res/res/drawable-mdpi/btn_radio_on_holo.png Binary files differindex 22f9a73..4b7bdc1 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_holo.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_holo.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png Binary files differindex 54674d0..5f640c6 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png Binary files differindex 917417a..5363896 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_mtrl_alpha.png b/core/res/res/drawable-mdpi/btn_radio_on_mtrl_alpha.png Binary files differindex 04a8edb..25e7597 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed.png Binary files differindex ae50c20..92052b3 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_pressed.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png Binary files differindex eabb9d2..38ce4f5 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png Binary files differindex 09592355..e918627 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed_mtrl_alpha.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed_mtrl_alpha.png Binary files differindex 3c304bf..48cb49a 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/btn_radio_on_selected.png b/core/res/res/drawable-mdpi/btn_radio_on_selected.png Binary files differindex 3e704aa..73ee5d3 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_selected.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_selected.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_000.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_000.png Binary files differindex a2b7fce..3c76c95 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_000.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_000.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_001.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_001.png Binary files differindex fe0d3b1..903cd9b 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_001.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_001.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_002.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_002.png Binary files differindex d66d00d..4144995 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_002.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_002.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_003.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_003.png Binary files differindex 2f2f5cd..e569271 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_003.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_003.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_004.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_004.png Binary files differindex 72c9495..d1bf705 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_004.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_004.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_005.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_005.png Binary files differindex 7d9090f..5fa28ea 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_005.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_005.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_006.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_006.png Binary files differindex c5442e8..7b1bc4c2 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_006.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_006.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_007.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_007.png Binary files differindex ca80cdb..4ab2809 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_007.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_007.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_008.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_008.png Binary files differindex d41a10b..4689f61 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_008.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_008.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_009.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_009.png Binary files differindex 262c838..a91c923 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_009.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_009.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_010.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_010.png Binary files differindex 7f6ea8b..e3ab767 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_010.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_010.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_011.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_011.png Binary files differindex 8d50a81..85fed28 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_011.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_011.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_012.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_012.png Binary files differindex 0725a68..71964de 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_012.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_012.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_013.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_013.png Binary files differindex 6191a4b..4cd9515 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_013.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_013.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_014.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_014.png Binary files differindex 1904d74..e8d840e 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_014.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_014.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_015.png b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_015.png Binary files differindex bec8dda..1d7a44b 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_015.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_off_mtrl_015.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_000.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_000.png Binary files differindex 54ef480..1d7a44b 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_000.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_000.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_001.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_001.png Binary files differindex 55c5163..3a0a0db 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_001.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_001.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_002.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_002.png Binary files differindex 0fe2a89..df6a9d4 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_002.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_002.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_003.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_003.png Binary files differindex 86efab7..2192900 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_003.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_003.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_004.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_004.png Binary files differindex c0a5ca5..a7c3e11 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_004.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_004.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_005.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_005.png Binary files differindex ec55175..9ca7b23 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_005.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_005.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_006.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_006.png Binary files differindex 3e4a690..79c489d 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_006.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_006.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_007.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_007.png Binary files differindex da49734..0f3cf98 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_007.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_007.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_008.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_008.png Binary files differindex 471cda1..a75a158 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_008.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_008.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_009.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_009.png Binary files differindex d560262..747cdc7 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_009.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_009.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_010.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_010.png Binary files differindex f6096b4..1be07af 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_010.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_010.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_011.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_011.png Binary files differindex 9e2500b..af30ed8 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_011.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_011.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_012.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_012.png Binary files differindex efbac99..a5bcebf 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_012.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_012.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_013.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_013.png Binary files differindex 676f0ca..1e6f8a4 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_013.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_013.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_014.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_014.png Binary files differindex 4803157..e5e9eb4 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_014.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_014.png diff --git a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_015.png b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_015.png Binary files differindex 4f8a162..3c76c95 100644 --- a/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_015.png +++ b/core/res/res/drawable-mdpi/btn_radio_to_on_mtrl_015.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_dark.png Binary files differindex 563f609..123c66e 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_light.png Binary files differindex 60e4717..9d214c2 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_dark.png Binary files differindex fa4db4f..8a43b10 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_light.png Binary files differindex 73a9d9e..f203538 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_dark.png Binary files differindex 790251f..2e8be25 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_light.png Binary files differindex aa4690f..3caf538 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_mtrl_alpha.png b/core/res/res/drawable-mdpi/btn_rating_star_off_mtrl_alpha.png Binary files differindex d38aed2..08c92ea 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_normal.png b/core/res/res/drawable-mdpi/btn_rating_star_off_normal.png Binary files differindex a99441d..2d349c1 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_normal.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_normal.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_dark.png Binary files differindex c08b5c2..593344e 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_light.png Binary files differindex 5f0a748..8d52789 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed.png b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed.png Binary files differindex f47a454..4fd63ca 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_dark.png Binary files differindex ba916c1..a22a291 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_light.png Binary files differindex 8d0638d..bf33e33 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_off_selected.png b/core/res/res/drawable-mdpi/btn_rating_star_off_selected.png Binary files differindex 5f71e08..bfbaf34 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_off_selected.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_off_selected.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_dark.png Binary files differindex 9b04c59..75d65fe 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_light.png Binary files differindex 291fdb3..cdda387 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_dark.png Binary files differindex 5cc6600..5a6b6ae 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_light.png Binary files differindex f17edca..01be966 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_dark.png Binary files differindex 26f5f11..f7234cd 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_light.png Binary files differindex 6346fff..2ad0d31 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_mtrl_alpha.png b/core/res/res/drawable-mdpi/btn_rating_star_on_mtrl_alpha.png Binary files differindex 87dade3..f84e5e4 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_normal.png b/core/res/res/drawable-mdpi/btn_rating_star_on_normal.png Binary files differindex b7825d3..51e7202 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_normal.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_normal.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_dark.png Binary files differindex 14bfde7..6338309 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_light.png Binary files differindex c5005f1..b7b9ff6 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed.png b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed.png Binary files differindex 4052445..54f93a7 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_dark.png Binary files differindex 886d86a..e6d1022 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_light.png Binary files differindex 9f9eb1d..22abca4 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_rating_star_on_selected.png b/core/res/res/drawable-mdpi/btn_rating_star_on_selected.png Binary files differindex 5d139b6..5253b4b 100644 --- a/core/res/res/drawable-mdpi/btn_rating_star_on_selected.png +++ b/core/res/res/drawable-mdpi/btn_rating_star_on_selected.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_default.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_default.9.png Binary files differindex 7275231..8081549 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_default.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_default.9.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_pressed.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_pressed.9.png Binary files differindex 50a9209..4b06c03 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_selected.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_selected.9.png Binary files differindex 14b774a..abd7f1f 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_voice_default.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_voice_default.9.png Binary files differindex 42be225..c80b2a6 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_voice_default.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_voice_default.9.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_voice_pressed.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_voice_pressed.9.png Binary files differindex 9984096..9bc63c8 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_voice_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_voice_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_search_dialog_voice_selected.9.png b/core/res/res/drawable-mdpi/btn_search_dialog_voice_selected.9.png Binary files differindex de2b030..563891b 100644 --- a/core/res/res/drawable-mdpi/btn_search_dialog_voice_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_search_dialog_voice_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_square_overlay_disabled.png b/core/res/res/drawable-mdpi/btn_square_overlay_disabled.png Binary files differindex cf7e4ea..1d77d30 100644 --- a/core/res/res/drawable-mdpi/btn_square_overlay_disabled.png +++ b/core/res/res/drawable-mdpi/btn_square_overlay_disabled.png diff --git a/core/res/res/drawable-mdpi/btn_square_overlay_disabled_focused.png b/core/res/res/drawable-mdpi/btn_square_overlay_disabled_focused.png Binary files differindex 5aa1143..05ffbd6 100644 --- a/core/res/res/drawable-mdpi/btn_square_overlay_disabled_focused.png +++ b/core/res/res/drawable-mdpi/btn_square_overlay_disabled_focused.png diff --git a/core/res/res/drawable-mdpi/btn_square_overlay_normal.png b/core/res/res/drawable-mdpi/btn_square_overlay_normal.png Binary files differindex 45fa4fe..c3df70b 100644 --- a/core/res/res/drawable-mdpi/btn_square_overlay_normal.png +++ b/core/res/res/drawable-mdpi/btn_square_overlay_normal.png diff --git a/core/res/res/drawable-mdpi/btn_square_overlay_pressed.png b/core/res/res/drawable-mdpi/btn_square_overlay_pressed.png Binary files differindex 952571b..888b206 100644 --- a/core/res/res/drawable-mdpi/btn_square_overlay_pressed.png +++ b/core/res/res/drawable-mdpi/btn_square_overlay_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_square_overlay_selected.png b/core/res/res/drawable-mdpi/btn_square_overlay_selected.png Binary files differindex ce4515e..8d185d73 100644 --- a/core/res/res/drawable-mdpi/btn_square_overlay_selected.png +++ b/core/res/res/drawable-mdpi/btn_square_overlay_selected.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_off.png b/core/res/res/drawable-mdpi/btn_star_big_off.png Binary files differindex 7e9342b..5181783 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_off.png +++ b/core/res/res/drawable-mdpi/btn_star_big_off.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_off_disable.png b/core/res/res/drawable-mdpi/btn_star_big_off_disable.png Binary files differindex 066d920..74da741 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_off_disable.png +++ b/core/res/res/drawable-mdpi/btn_star_big_off_disable.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_off_disable_focused.png b/core/res/res/drawable-mdpi/btn_star_big_off_disable_focused.png Binary files differindex 1855d2c..eca7ed2 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_off_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_star_big_off_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_off_pressed.png b/core/res/res/drawable-mdpi/btn_star_big_off_pressed.png Binary files differindex f1b8912..1e99f9b 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_off_pressed.png +++ b/core/res/res/drawable-mdpi/btn_star_big_off_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_off_selected.png b/core/res/res/drawable-mdpi/btn_star_big_off_selected.png Binary files differindex 0be64c4..7a76764 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_off_selected.png +++ b/core/res/res/drawable-mdpi/btn_star_big_off_selected.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_on.png b/core/res/res/drawable-mdpi/btn_star_big_on.png Binary files differindex a9bdb05..2c8eb0f 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_on.png +++ b/core/res/res/drawable-mdpi/btn_star_big_on.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_on_disable.png b/core/res/res/drawable-mdpi/btn_star_big_on_disable.png Binary files differindex 5e65a2f..244e750 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_on_disable.png +++ b/core/res/res/drawable-mdpi/btn_star_big_on_disable.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_on_disable_focused.png b/core/res/res/drawable-mdpi/btn_star_big_on_disable_focused.png Binary files differindex de57571..9e9ae7f 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_on_disable_focused.png +++ b/core/res/res/drawable-mdpi/btn_star_big_on_disable_focused.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_on_pressed.png b/core/res/res/drawable-mdpi/btn_star_big_on_pressed.png Binary files differindex 159a84b..4caac5c 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_on_pressed.png +++ b/core/res/res/drawable-mdpi/btn_star_big_on_pressed.png diff --git a/core/res/res/drawable-mdpi/btn_star_big_on_selected.png b/core/res/res/drawable-mdpi/btn_star_big_on_selected.png Binary files differindex 0592d51..feffa4a 100644 --- a/core/res/res/drawable-mdpi/btn_star_big_on_selected.png +++ b/core/res/res/drawable-mdpi/btn_star_big_on_selected.png diff --git a/core/res/res/drawable-mdpi/btn_star_label_background.9.png b/core/res/res/drawable-mdpi/btn_star_label_background.9.png Binary files differindex e493171..c300f5c 100644 --- a/core/res/res/drawable-mdpi/btn_star_label_background.9.png +++ b/core/res/res/drawable-mdpi/btn_star_label_background.9.png diff --git a/core/res/res/drawable-mdpi/btn_star_mtrl_alpha.png b/core/res/res/drawable-mdpi/btn_star_mtrl_alpha.png Binary files differindex 7ce950d..3f0719c 100644 --- a/core/res/res/drawable-mdpi/btn_star_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/btn_star_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_dark.png Binary files differindex 690371d..38f52a1 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png Binary files differindex 6d026dc..3375529 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_dark.png Binary files differindex 6e368d6..be820a2 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_light.png Binary files differindex 71cb582..5a0bf53 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_off_focused_holo_dark.png Binary files differindex ebc9914..4d3e88c 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_star_off_focused_holo_light.png Binary files differindex edc3399..e537db0 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_normal_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_off_normal_holo_dark.png Binary files differindex 7dc8089..25bc0bc 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_normal_holo_light.png b/core/res/res/drawable-mdpi/btn_star_off_normal_holo_light.png Binary files differindex a9abdc0..3ff4493 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_dark.png Binary files differindex 360ce61..f33c483 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_light.png Binary files differindex 4884309..89c6a0b 100644 --- a/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_dark.png Binary files differindex 3b5901f..10ce1de 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png Binary files differindex d61bf39..1ed91cf 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_dark.png Binary files differindex ff9f888..2c0ebf7 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_light.png b/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_light.png Binary files differindex 0aa36fe..f31a837 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_on_focused_holo_dark.png Binary files differindex fdd1e95..2f4c516 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_star_on_focused_holo_light.png Binary files differindex 15c9334..910797c 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_normal_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_on_normal_holo_dark.png Binary files differindex 14183171..018d4d9 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_normal_holo_light.png b/core/res/res/drawable-mdpi/btn_star_on_normal_holo_light.png Binary files differindex 2e81887..6e5ffb9 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_dark.png Binary files differindex 9083aec..ba21968 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_light.png Binary files differindex b5f0542..5ff1c07 100644 --- a/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00001.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00001.9.png Binary files differindex 36ed954..a5a1f46 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00001.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00001.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00002.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00002.9.png Binary files differindex 863eee1..72ac851 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00002.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00002.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00003.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00003.9.png Binary files differindex 63e93a8..037180a 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00003.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00003.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00004.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00004.9.png Binary files differindex 85c851d..16aa503 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00004.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00004.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00005.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00005.9.png Binary files differindex 8637636..2937a77 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00005.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00005.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00006.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00006.9.png Binary files differindex 2945c29..5582b9b 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00006.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00006.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00007.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00007.9.png Binary files differindex 678a6c8..8e487d9 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00007.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00007.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00008.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00008.9.png Binary files differindex 238a6f1..29126b5 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00008.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00008.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00009.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00009.9.png Binary files differindex 4a342a6..f940f26 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00009.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00009.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00010.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00010.9.png Binary files differindex 5842b19..3c051ef 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00010.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00010.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00011.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00011.9.png Binary files differindex 3e1bd2d..26af4a4 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00011.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00011.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00012.9.png b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00012.9.png Binary files differindex 73ed10b..88b8168 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00012.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_off_mtrl_00012.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00001.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00001.9.png Binary files differindex 03d3dfb..650a917 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00001.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00001.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00002.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00002.9.png Binary files differindex 25085ce..57d0f1a 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00002.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00002.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00003.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00003.9.png Binary files differindex 9e4d2f3..9de793e 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00003.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00003.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00004.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00004.9.png Binary files differindex ab5bd1e..f25cb15 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00004.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00004.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00005.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00005.9.png Binary files differindex f5297ce..ec2326d 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00005.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00005.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00006.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00006.9.png Binary files differindex 1ad56e9..4e423ef 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00006.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00006.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00007.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00007.9.png Binary files differindex 4bad055..8e487d9 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00007.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00007.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00008.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00008.9.png Binary files differindex d908034..531ac92 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00008.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00008.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00009.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00009.9.png Binary files differindex 8ed4fb4..16a5738 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00009.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00009.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00010.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00010.9.png Binary files differindex 61d3ced..bfaef7e 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00010.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00010.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00011.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00011.9.png Binary files differindex dec2a82..5c23a32 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00011.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00011.9.png diff --git a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00012.9.png b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00012.9.png Binary files differindex 6635830..77b63df 100644 --- a/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00012.9.png +++ b/core/res/res/drawable-mdpi/btn_switch_to_on_mtrl_00012.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off.9.png b/core/res/res/drawable-mdpi/btn_toggle_off.9.png Binary files differindex 38e810c..f9726c3 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png Binary files differindex 4e6d076..16d84bd 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png Binary files differindex 4e6d076..16d84bd 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png Binary files differindex ca61cb2..bdff7d3 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png Binary files differindex ca61cb2..bdff7d3 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png Binary files differindex b5999be..a5e0e0b 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png Binary files differindex b5999be..a5e0e0b 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png Binary files differindex 8392ac3..b0abf65 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png Binary files differindex 522bafd..1005987 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png Binary files differindex 626a605..aae9f00 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png Binary files differindex 196c650..8b55b5a 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on.9.png b/core/res/res/drawable-mdpi/btn_toggle_on.9.png Binary files differindex ef39dec..5e2009d 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png Binary files differindex ebb2f8b..386437c 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png Binary files differindex ebb2f8b..386437c 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png Binary files differindex 3fa20ca..c86dc90 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png Binary files differindex 3fa20ca..c86dc90 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png Binary files differindex 6cc59ed..2a3435d 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png Binary files differindex 6cc59ed..2a3435d 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png Binary files differindex a1fcd08..4aef95b 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png Binary files differindex c6c0224..d7da20e 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png Binary files differindex 0536053..8525eb8 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png Binary files differindex 9fc345b..5dddabf 100644 --- a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_down_disabled.9.png b/core/res/res/drawable-mdpi/btn_zoom_down_disabled.9.png Binary files differindex 7780bd7..85a2164 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_down_disabled.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_down_disabled.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_down_disabled_focused.9.png b/core/res/res/drawable-mdpi/btn_zoom_down_disabled_focused.9.png Binary files differindex 39131c5..7529528 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_down_disabled_focused.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_down_disabled_focused.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_down_normal.9.png b/core/res/res/drawable-mdpi/btn_zoom_down_normal.9.png Binary files differindex b589a84..1dac57f 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_down_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_down_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_down_pressed.9.png b/core/res/res/drawable-mdpi/btn_zoom_down_pressed.9.png Binary files differindex a8ca467..224f56e 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_down_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_down_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_down_selected.9.png b/core/res/res/drawable-mdpi/btn_zoom_down_selected.9.png Binary files differindex af551e7..798e2fd 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_down_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_down_selected.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_page_normal.png b/core/res/res/drawable-mdpi/btn_zoom_page_normal.png Binary files differindex 839915b..68a4df8 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_page_normal.png +++ b/core/res/res/drawable-mdpi/btn_zoom_page_normal.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_page_press.png b/core/res/res/drawable-mdpi/btn_zoom_page_press.png Binary files differindex e8af276..4bcad45 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_page_press.png +++ b/core/res/res/drawable-mdpi/btn_zoom_page_press.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_up_disabled.9.png b/core/res/res/drawable-mdpi/btn_zoom_up_disabled.9.png Binary files differindex 5203630..edd7c38 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_up_disabled.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_up_disabled.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_up_disabled_focused.9.png b/core/res/res/drawable-mdpi/btn_zoom_up_disabled_focused.9.png Binary files differindex c72c9cd..46b1d19 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_up_disabled_focused.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_up_disabled_focused.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_up_normal.9.png b/core/res/res/drawable-mdpi/btn_zoom_up_normal.9.png Binary files differindex 5027348..57f5e16 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_up_normal.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_up_normal.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_up_pressed.9.png b/core/res/res/drawable-mdpi/btn_zoom_up_pressed.9.png Binary files differindex 1a93e3a..ca052a4 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_up_pressed.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_up_pressed.9.png diff --git a/core/res/res/drawable-mdpi/btn_zoom_up_selected.9.png b/core/res/res/drawable-mdpi/btn_zoom_up_selected.9.png Binary files differindex 26aafee..a10fcc1 100644 --- a/core/res/res/drawable-mdpi/btn_zoom_up_selected.9.png +++ b/core/res/res/drawable-mdpi/btn_zoom_up_selected.9.png diff --git a/core/res/res/drawable-mdpi/button_onoff_indicator_off.png b/core/res/res/drawable-mdpi/button_onoff_indicator_off.png Binary files differindex 91e7244..80f035e 100644 --- a/core/res/res/drawable-mdpi/button_onoff_indicator_off.png +++ b/core/res/res/drawable-mdpi/button_onoff_indicator_off.png diff --git a/core/res/res/drawable-mdpi/button_onoff_indicator_on.png b/core/res/res/drawable-mdpi/button_onoff_indicator_on.png Binary files differindex 361364b..5abf7f5 100644 --- a/core/res/res/drawable-mdpi/button_onoff_indicator_on.png +++ b/core/res/res/drawable-mdpi/button_onoff_indicator_on.png diff --git a/core/res/res/drawable-mdpi/cab_background_bottom_holo_dark.9.png b/core/res/res/drawable-mdpi/cab_background_bottom_holo_dark.9.png Binary files differindex d8f1c8b..64a829a 100644 --- a/core/res/res/drawable-mdpi/cab_background_bottom_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/cab_background_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/cab_background_bottom_holo_light.9.png b/core/res/res/drawable-mdpi/cab_background_bottom_holo_light.9.png Binary files differindex 31e4989..d638854 100644 --- a/core/res/res/drawable-mdpi/cab_background_bottom_holo_light.9.png +++ b/core/res/res/drawable-mdpi/cab_background_bottom_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/cab_background_bottom_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/cab_background_bottom_mtrl_alpha.9.png Binary files differindex df292a0..204457f 100644 --- a/core/res/res/drawable-mdpi/cab_background_bottom_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/cab_background_bottom_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/cab_background_top_holo_dark.9.png b/core/res/res/drawable-mdpi/cab_background_top_holo_dark.9.png Binary files differindex 7c2cbe5..129ec1e 100644 --- a/core/res/res/drawable-mdpi/cab_background_top_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/cab_background_top_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/cab_background_top_holo_light.9.png b/core/res/res/drawable-mdpi/cab_background_top_holo_light.9.png Binary files differindex 30cbdc1..950a8ba 100644 --- a/core/res/res/drawable-mdpi/cab_background_top_holo_light.9.png +++ b/core/res/res/drawable-mdpi/cab_background_top_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/cab_background_top_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/cab_background_top_mtrl_alpha.9.png Binary files differindex ae8cccd..a33d610 100644 --- a/core/res/res/drawable-mdpi/cab_background_top_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/cab_background_top_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/call_contact.png b/core/res/res/drawable-mdpi/call_contact.png Binary files differindex 1abeb5d..0bb7be1 100644 --- a/core/res/res/drawable-mdpi/call_contact.png +++ b/core/res/res/drawable-mdpi/call_contact.png diff --git a/core/res/res/drawable-mdpi/checkbox_off_background.png b/core/res/res/drawable-mdpi/checkbox_off_background.png Binary files differindex 825ea66..b9e8880 100644 --- a/core/res/res/drawable-mdpi/checkbox_off_background.png +++ b/core/res/res/drawable-mdpi/checkbox_off_background.png diff --git a/core/res/res/drawable-mdpi/checkbox_on_background.png b/core/res/res/drawable-mdpi/checkbox_on_background.png Binary files differindex 57585da..8aeb61d 100644 --- a/core/res/res/drawable-mdpi/checkbox_on_background.png +++ b/core/res/res/drawable-mdpi/checkbox_on_background.png diff --git a/core/res/res/drawable-mdpi/cling_arrow_up.png b/core/res/res/drawable-mdpi/cling_arrow_up.png Binary files differindex ee6c378..8e50799 100644 --- a/core/res/res/drawable-mdpi/cling_arrow_up.png +++ b/core/res/res/drawable-mdpi/cling_arrow_up.png diff --git a/core/res/res/drawable-mdpi/cling_bg.9.png b/core/res/res/drawable-mdpi/cling_bg.9.png Binary files differindex 4c0f139..811e075 100644 --- a/core/res/res/drawable-mdpi/cling_bg.9.png +++ b/core/res/res/drawable-mdpi/cling_bg.9.png diff --git a/core/res/res/drawable-mdpi/cling_button_normal.9.png b/core/res/res/drawable-mdpi/cling_button_normal.9.png Binary files differindex a0b6f97..195ebe0 100644 --- a/core/res/res/drawable-mdpi/cling_button_normal.9.png +++ b/core/res/res/drawable-mdpi/cling_button_normal.9.png diff --git a/core/res/res/drawable-mdpi/cling_button_pressed.9.png b/core/res/res/drawable-mdpi/cling_button_pressed.9.png Binary files differindex 986e669..d5f7f76 100644 --- a/core/res/res/drawable-mdpi/cling_button_pressed.9.png +++ b/core/res/res/drawable-mdpi/cling_button_pressed.9.png diff --git a/core/res/res/drawable-mdpi/clock_dial.png b/core/res/res/drawable-mdpi/clock_dial.png Binary files differindex 82f73fe..afa347c 100644 --- a/core/res/res/drawable-mdpi/clock_dial.png +++ b/core/res/res/drawable-mdpi/clock_dial.png diff --git a/core/res/res/drawable-mdpi/clock_hand_hour.png b/core/res/res/drawable-mdpi/clock_hand_hour.png Binary files differindex 1f0aec8..ba38cc6 100644 --- a/core/res/res/drawable-mdpi/clock_hand_hour.png +++ b/core/res/res/drawable-mdpi/clock_hand_hour.png diff --git a/core/res/res/drawable-mdpi/clock_hand_minute.png b/core/res/res/drawable-mdpi/clock_hand_minute.png Binary files differindex 6cd8a4b..9a5a2e4 100644 --- a/core/res/res/drawable-mdpi/clock_hand_minute.png +++ b/core/res/res/drawable-mdpi/clock_hand_minute.png diff --git a/core/res/res/drawable-mdpi/code_lock_bottom.9.png b/core/res/res/drawable-mdpi/code_lock_bottom.9.png Binary files differindex 812cf00..b56275d 100644 --- a/core/res/res/drawable-mdpi/code_lock_bottom.9.png +++ b/core/res/res/drawable-mdpi/code_lock_bottom.9.png diff --git a/core/res/res/drawable-mdpi/code_lock_left.9.png b/core/res/res/drawable-mdpi/code_lock_left.9.png Binary files differindex 215dcc8..9a3ed33 100644 --- a/core/res/res/drawable-mdpi/code_lock_left.9.png +++ b/core/res/res/drawable-mdpi/code_lock_left.9.png diff --git a/core/res/res/drawable-mdpi/code_lock_top.9.png b/core/res/res/drawable-mdpi/code_lock_top.9.png Binary files differindex 2b75a7c..92ea200 100644 --- a/core/res/res/drawable-mdpi/code_lock_top.9.png +++ b/core/res/res/drawable-mdpi/code_lock_top.9.png diff --git a/core/res/res/drawable-mdpi/combobox_disabled.png b/core/res/res/drawable-mdpi/combobox_disabled.png Binary files differindex ac8a235..359f3e2 100644 --- a/core/res/res/drawable-mdpi/combobox_disabled.png +++ b/core/res/res/drawable-mdpi/combobox_disabled.png diff --git a/core/res/res/drawable-mdpi/combobox_nohighlight.png b/core/res/res/drawable-mdpi/combobox_nohighlight.png Binary files differindex 9d60e26..7310048 100644 --- a/core/res/res/drawable-mdpi/combobox_nohighlight.png +++ b/core/res/res/drawable-mdpi/combobox_nohighlight.png diff --git a/core/res/res/drawable-mdpi/compass_arrow.png b/core/res/res/drawable-mdpi/compass_arrow.png Binary files differindex 5a4d8c1..aa1be37 100644 --- a/core/res/res/drawable-mdpi/compass_arrow.png +++ b/core/res/res/drawable-mdpi/compass_arrow.png diff --git a/core/res/res/drawable-mdpi/compass_base.png b/core/res/res/drawable-mdpi/compass_base.png Binary files differindex 3d694f0..8ef4ec6 100644 --- a/core/res/res/drawable-mdpi/compass_base.png +++ b/core/res/res/drawable-mdpi/compass_base.png diff --git a/core/res/res/drawable-mdpi/contact_header_bg.9.png b/core/res/res/drawable-mdpi/contact_header_bg.9.png Binary files differindex 7f9a5a3..7c4a659 100644 --- a/core/res/res/drawable-mdpi/contact_header_bg.9.png +++ b/core/res/res/drawable-mdpi/contact_header_bg.9.png diff --git a/core/res/res/drawable-mdpi/create_contact.png b/core/res/res/drawable-mdpi/create_contact.png Binary files differindex 5a9360b..a781544 100644 --- a/core/res/res/drawable-mdpi/create_contact.png +++ b/core/res/res/drawable-mdpi/create_contact.png diff --git a/core/res/res/drawable-mdpi/dark_header.9.png b/core/res/res/drawable-mdpi/dark_header.9.png Binary files differindex ac906cd..4225f76 100644 --- a/core/res/res/drawable-mdpi/dark_header.9.png +++ b/core/res/res/drawable-mdpi/dark_header.9.png diff --git a/core/res/res/drawable-mdpi/day_picker_week_view_dayline_holo.9.png b/core/res/res/drawable-mdpi/day_picker_week_view_dayline_holo.9.png Binary files differindex 7b75019..5b5319d 100644 --- a/core/res/res/drawable-mdpi/day_picker_week_view_dayline_holo.9.png +++ b/core/res/res/drawable-mdpi/day_picker_week_view_dayline_holo.9.png diff --git a/core/res/res/drawable-mdpi/dialog_background_mtrl_mult.9.png b/core/res/res/drawable-mdpi/dialog_background_mtrl_mult.9.png Binary files differindex 8322ae3..84f90a7 100644 --- a/core/res/res/drawable-mdpi/dialog_background_mtrl_mult.9.png +++ b/core/res/res/drawable-mdpi/dialog_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-mdpi/dialog_bottom_holo_dark.9.png b/core/res/res/drawable-mdpi/dialog_bottom_holo_dark.9.png Binary files differindex 31dc4fd..2dd1046 100644 --- a/core/res/res/drawable-mdpi/dialog_bottom_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dialog_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dialog_bottom_holo_light.9.png b/core/res/res/drawable-mdpi/dialog_bottom_holo_light.9.png Binary files differindex 7541e8a..ccb5e0e 100644 --- a/core/res/res/drawable-mdpi/dialog_bottom_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_bottom_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_dark.9.png Binary files differindex 1851468..7bc0d2c 100644 --- a/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_light.9.png b/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_light.9.png Binary files differindex a60aad5..83c5e0c 100644 --- a/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dialog_divider_horizontal_light.9.png b/core/res/res/drawable-mdpi/dialog_divider_horizontal_light.9.png Binary files differindex b69619b..ff29d1c 100644 --- a/core/res/res/drawable-mdpi/dialog_divider_horizontal_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_divider_horizontal_light.9.png diff --git a/core/res/res/drawable-mdpi/dialog_full_holo_dark.9.png b/core/res/res/drawable-mdpi/dialog_full_holo_dark.9.png Binary files differindex dc37316..38fcfd8 100644 --- a/core/res/res/drawable-mdpi/dialog_full_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dialog_full_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dialog_full_holo_light.9.png b/core/res/res/drawable-mdpi/dialog_full_holo_light.9.png Binary files differindex 0c5770a..01f6c41 100644 --- a/core/res/res/drawable-mdpi/dialog_full_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_full_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_dark.png b/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_dark.png Binary files differindex cc5f4f4..7f9d5a7 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_light.png b/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_light.png Binary files differindex 51b4e4d..9f48699 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_dark.png b/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_dark.png Binary files differindex 503db7c..25c0094 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_light.png b/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_light.png Binary files differindex 6a2fb5e..0d706b0 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_dark.png b/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_dark.png Binary files differindex 3463b66..66820bb 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_light.png b/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_light.png Binary files differindex 55dedc6..4b0193a 100644 --- a/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/dialog_ic_close_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/dialog_middle_holo.9.png b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png Binary files differindex 36da5ca..9b1584a 100644 --- a/core/res/res/drawable-mdpi/dialog_middle_holo.9.png +++ b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png diff --git a/core/res/res/drawable-mdpi/dialog_middle_holo_dark.9.png b/core/res/res/drawable-mdpi/dialog_middle_holo_dark.9.png Binary files differindex ca389e3..c7ac060 100644 --- a/core/res/res/drawable-mdpi/dialog_middle_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dialog_middle_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dialog_middle_holo_light.9.png b/core/res/res/drawable-mdpi/dialog_middle_holo_light.9.png Binary files differindex 7a836ce..a5a2bf7 100644 --- a/core/res/res/drawable-mdpi/dialog_middle_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_middle_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dialog_top_holo_dark.9.png b/core/res/res/drawable-mdpi/dialog_top_holo_dark.9.png Binary files differindex fb848a3..3af2581 100644 --- a/core/res/res/drawable-mdpi/dialog_top_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dialog_top_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dialog_top_holo_light.9.png b/core/res/res/drawable-mdpi/dialog_top_holo_light.9.png Binary files differindex 2ddcab1..8a72dfd 100644 --- a/core/res/res/drawable-mdpi/dialog_top_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dialog_top_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_bright.9.png b/core/res/res/drawable-mdpi/divider_horizontal_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_bright.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_bright.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_bright_opaque.9.png b/core/res/res/drawable-mdpi/divider_horizontal_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_bright_opaque.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_bright_opaque.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_dark.9.png b/core/res/res/drawable-mdpi/divider_horizontal_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_dark.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_dark.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_dark_opaque.9.png b/core/res/res/drawable-mdpi/divider_horizontal_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_dark_opaque.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_dark_opaque.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_dim_dark.9.png b/core/res/res/drawable-mdpi/divider_horizontal_dim_dark.9.png Binary files differindex cf34613..60b021e 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_dim_dark.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_dim_dark.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png b/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png Binary files differindex d6548c6..e841a1c 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png b/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png Binary files differindex 9a42dd2..4970f7e 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/divider_horizontal_textfield.9.png b/core/res/res/drawable-mdpi/divider_horizontal_textfield.9.png Binary files differindex 43eb51d..ead340c 100644 --- a/core/res/res/drawable-mdpi/divider_horizontal_textfield.9.png +++ b/core/res/res/drawable-mdpi/divider_horizontal_textfield.9.png diff --git a/core/res/res/drawable-mdpi/divider_strong_holo.9.png b/core/res/res/drawable-mdpi/divider_strong_holo.9.png Binary files differindex 0758593..68d25b6 100644 --- a/core/res/res/drawable-mdpi/divider_strong_holo.9.png +++ b/core/res/res/drawable-mdpi/divider_strong_holo.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_bright.9.png b/core/res/res/drawable-mdpi/divider_vertical_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_bright.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_bright.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_bright_opaque.9.png b/core/res/res/drawable-mdpi/divider_vertical_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_bright_opaque.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_bright_opaque.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_dark.9.png b/core/res/res/drawable-mdpi/divider_vertical_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_dark.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_dark.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_dark_opaque.9.png b/core/res/res/drawable-mdpi/divider_vertical_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_dark_opaque.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_dark_opaque.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png b/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png Binary files differindex c039428..5939b8f 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png b/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png Binary files differindex 7c4a29f..04885b2 100644 --- a/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png +++ b/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_dark.9.png Binary files differindex bc6636c..0e026b8 100644 --- a/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_light.9.png Binary files differindex 7f9a9f1..89bcaa3 100644 --- a/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dropdown_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/dropdown_disabled_holo_dark.9.png Binary files differindex 6af742a..3121a81 100644 --- a/core/res/res/drawable-mdpi/dropdown_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dropdown_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/dropdown_disabled_holo_light.9.png Binary files differindex f54d0b4..e5511fa 100644 --- a/core/res/res/drawable-mdpi/dropdown_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dropdown_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/dropdown_focused_holo_dark.9.png Binary files differindex b7044db..f5f756b 100644 --- a/core/res/res/drawable-mdpi/dropdown_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dropdown_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_focused_holo_light.9.png b/core/res/res/drawable-mdpi/dropdown_focused_holo_light.9.png Binary files differindex 0de1bb1..df3fc0c 100644 --- a/core/res/res/drawable-mdpi/dropdown_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dropdown_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png Binary files differindex 95e684a..be825f8 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_light.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_light.png Binary files differindex ed3e240..85b7f35 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_dark.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_dark.png Binary files differindex 2bbfc3a..0c1ae3b 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_light.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_light.png Binary files differindex db6347b..e6f9548 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_dark.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_dark.png Binary files differindex 9196b72..1503236 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_light.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_light.png Binary files differindex 7c88a57..b1b351d 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_dark.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_dark.png Binary files differindex 81de1bb..9c55b8b 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_light.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_light.png Binary files differindex c3fdef7..6ca1ded 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_dark.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_dark.png Binary files differindex ef21dc2..dee57b9 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_dark.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_dark.png diff --git a/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_light.png b/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_light.png Binary files differindex 5352c02..ec10e20 100644 --- a/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_light.png +++ b/core/res/res/drawable-mdpi/dropdown_ic_arrow_pressed_holo_light.png diff --git a/core/res/res/drawable-mdpi/dropdown_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/dropdown_normal_holo_dark.9.png Binary files differindex 05d9e7e..6231678 100644 --- a/core/res/res/drawable-mdpi/dropdown_normal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dropdown_normal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_normal_holo_light.9.png b/core/res/res/drawable-mdpi/dropdown_normal_holo_light.9.png Binary files differindex 4a15c63..2c0cdbb 100644 --- a/core/res/res/drawable-mdpi/dropdown_normal_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dropdown_normal_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/dropdown_pressed_holo_dark.9.png Binary files differindex 5248c48..5e55506 100644 --- a/core/res/res/drawable-mdpi/dropdown_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/dropdown_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/dropdown_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/dropdown_pressed_holo_light.9.png Binary files differindex f2f6428..13e55ba 100644 --- a/core/res/res/drawable-mdpi/dropdown_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/dropdown_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/edit_query.png b/core/res/res/drawable-mdpi/edit_query.png Binary files differindex 22322cb..078856d 100644 --- a/core/res/res/drawable-mdpi/edit_query.png +++ b/core/res/res/drawable-mdpi/edit_query.png diff --git a/core/res/res/drawable-mdpi/edit_query_background_normal.9.png b/core/res/res/drawable-mdpi/edit_query_background_normal.9.png Binary files differindex 8f957b8..32f48a5 100644 --- a/core/res/res/drawable-mdpi/edit_query_background_normal.9.png +++ b/core/res/res/drawable-mdpi/edit_query_background_normal.9.png diff --git a/core/res/res/drawable-mdpi/edit_query_background_pressed.9.png b/core/res/res/drawable-mdpi/edit_query_background_pressed.9.png Binary files differindex c88d4d5..adf99d9 100644 --- a/core/res/res/drawable-mdpi/edit_query_background_pressed.9.png +++ b/core/res/res/drawable-mdpi/edit_query_background_pressed.9.png diff --git a/core/res/res/drawable-mdpi/edit_query_background_selected.9.png b/core/res/res/drawable-mdpi/edit_query_background_selected.9.png Binary files differindex ffe5791..0c07f33 100644 --- a/core/res/res/drawable-mdpi/edit_query_background_selected.9.png +++ b/core/res/res/drawable-mdpi/edit_query_background_selected.9.png diff --git a/core/res/res/drawable-mdpi/editbox_background_focus_yellow.9.png b/core/res/res/drawable-mdpi/editbox_background_focus_yellow.9.png Binary files differindex faf52ed..e2f2d39 100644 --- a/core/res/res/drawable-mdpi/editbox_background_focus_yellow.9.png +++ b/core/res/res/drawable-mdpi/editbox_background_focus_yellow.9.png diff --git a/core/res/res/drawable-mdpi/editbox_background_normal.9.png b/core/res/res/drawable-mdpi/editbox_background_normal.9.png Binary files differindex 9b8be77..6a1c691 100644 --- a/core/res/res/drawable-mdpi/editbox_background_normal.9.png +++ b/core/res/res/drawable-mdpi/editbox_background_normal.9.png diff --git a/core/res/res/drawable-mdpi/editbox_dropdown_background.9.png b/core/res/res/drawable-mdpi/editbox_dropdown_background.9.png Binary files differindex ed1bc29..b9ea0bd 100644 --- a/core/res/res/drawable-mdpi/editbox_dropdown_background.9.png +++ b/core/res/res/drawable-mdpi/editbox_dropdown_background.9.png diff --git a/core/res/res/drawable-mdpi/editbox_dropdown_background_dark.9.png b/core/res/res/drawable-mdpi/editbox_dropdown_background_dark.9.png Binary files differindex 88c1d9d..3afed40 100644 --- a/core/res/res/drawable-mdpi/editbox_dropdown_background_dark.9.png +++ b/core/res/res/drawable-mdpi/editbox_dropdown_background_dark.9.png diff --git a/core/res/res/drawable-mdpi/emo_im_angel.png b/core/res/res/drawable-mdpi/emo_im_angel.png Binary files differindex 3efea42..fb31dbd 100644 --- a/core/res/res/drawable-mdpi/emo_im_angel.png +++ b/core/res/res/drawable-mdpi/emo_im_angel.png diff --git a/core/res/res/drawable-mdpi/emo_im_cool.png b/core/res/res/drawable-mdpi/emo_im_cool.png Binary files differindex 650ed8f..4a279e6 100644 --- a/core/res/res/drawable-mdpi/emo_im_cool.png +++ b/core/res/res/drawable-mdpi/emo_im_cool.png diff --git a/core/res/res/drawable-mdpi/emo_im_crying.png b/core/res/res/drawable-mdpi/emo_im_crying.png Binary files differindex ad1e50f..7f0216d 100644 --- a/core/res/res/drawable-mdpi/emo_im_crying.png +++ b/core/res/res/drawable-mdpi/emo_im_crying.png diff --git a/core/res/res/drawable-mdpi/emo_im_embarrassed.png b/core/res/res/drawable-mdpi/emo_im_embarrassed.png Binary files differindex 8a34321..858cb9f 100644 --- a/core/res/res/drawable-mdpi/emo_im_embarrassed.png +++ b/core/res/res/drawable-mdpi/emo_im_embarrassed.png diff --git a/core/res/res/drawable-mdpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-mdpi/emo_im_foot_in_mouth.png Binary files differindex 9607ff7..f9dc59f 100644 --- a/core/res/res/drawable-mdpi/emo_im_foot_in_mouth.png +++ b/core/res/res/drawable-mdpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-mdpi/emo_im_happy.png b/core/res/res/drawable-mdpi/emo_im_happy.png Binary files differindex a324720..8819e9a 100644 --- a/core/res/res/drawable-mdpi/emo_im_happy.png +++ b/core/res/res/drawable-mdpi/emo_im_happy.png diff --git a/core/res/res/drawable-mdpi/emo_im_kissing.png b/core/res/res/drawable-mdpi/emo_im_kissing.png Binary files differindex f18a391..a63a311 100644 --- a/core/res/res/drawable-mdpi/emo_im_kissing.png +++ b/core/res/res/drawable-mdpi/emo_im_kissing.png diff --git a/core/res/res/drawable-mdpi/emo_im_laughing.png b/core/res/res/drawable-mdpi/emo_im_laughing.png Binary files differindex 963a4ba..354a2dd 100644 --- a/core/res/res/drawable-mdpi/emo_im_laughing.png +++ b/core/res/res/drawable-mdpi/emo_im_laughing.png diff --git a/core/res/res/drawable-mdpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-mdpi/emo_im_lips_are_sealed.png Binary files differindex 58bd138..16a8c1c 100644 --- a/core/res/res/drawable-mdpi/emo_im_lips_are_sealed.png +++ b/core/res/res/drawable-mdpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-mdpi/emo_im_money_mouth.png b/core/res/res/drawable-mdpi/emo_im_money_mouth.png Binary files differindex 718c7e3..ebe1f04 100644 --- a/core/res/res/drawable-mdpi/emo_im_money_mouth.png +++ b/core/res/res/drawable-mdpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-mdpi/emo_im_sad.png b/core/res/res/drawable-mdpi/emo_im_sad.png Binary files differindex 7daac6c..87d114c 100644 --- a/core/res/res/drawable-mdpi/emo_im_sad.png +++ b/core/res/res/drawable-mdpi/emo_im_sad.png diff --git a/core/res/res/drawable-mdpi/emo_im_surprised.png b/core/res/res/drawable-mdpi/emo_im_surprised.png Binary files differindex b4b614d..52d047f 100644 --- a/core/res/res/drawable-mdpi/emo_im_surprised.png +++ b/core/res/res/drawable-mdpi/emo_im_surprised.png diff --git a/core/res/res/drawable-mdpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-mdpi/emo_im_tongue_sticking_out.png Binary files differindex 9fa6534..8fdd725 100644 --- a/core/res/res/drawable-mdpi/emo_im_tongue_sticking_out.png +++ b/core/res/res/drawable-mdpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-mdpi/emo_im_undecided.png b/core/res/res/drawable-mdpi/emo_im_undecided.png Binary files differindex 8b2577a..dcdace0 100644 --- a/core/res/res/drawable-mdpi/emo_im_undecided.png +++ b/core/res/res/drawable-mdpi/emo_im_undecided.png diff --git a/core/res/res/drawable-mdpi/emo_im_winking.png b/core/res/res/drawable-mdpi/emo_im_winking.png Binary files differindex 069e9e3..3002952 100644 --- a/core/res/res/drawable-mdpi/emo_im_winking.png +++ b/core/res/res/drawable-mdpi/emo_im_winking.png diff --git a/core/res/res/drawable-mdpi/emo_im_wtf.png b/core/res/res/drawable-mdpi/emo_im_wtf.png Binary files differindex 0d963ec..b97a1c7 100644 --- a/core/res/res/drawable-mdpi/emo_im_wtf.png +++ b/core/res/res/drawable-mdpi/emo_im_wtf.png diff --git a/core/res/res/drawable-mdpi/emo_im_yelling.png b/core/res/res/drawable-mdpi/emo_im_yelling.png Binary files differindex 836f60f..6179c85 100644 --- a/core/res/res/drawable-mdpi/emo_im_yelling.png +++ b/core/res/res/drawable-mdpi/emo_im_yelling.png diff --git a/core/res/res/drawable-mdpi/expander_close_holo_dark.9.png b/core/res/res/drawable-mdpi/expander_close_holo_dark.9.png Binary files differindex 036ffb7..babef34 100644 --- a/core/res/res/drawable-mdpi/expander_close_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/expander_close_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/expander_close_holo_light.9.png b/core/res/res/drawable-mdpi/expander_close_holo_light.9.png Binary files differindex 9f9dd70..fafaed5 100644 --- a/core/res/res/drawable-mdpi/expander_close_holo_light.9.png +++ b/core/res/res/drawable-mdpi/expander_close_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/expander_close_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/expander_close_mtrl_alpha.9.png Binary files differindex 6070397..da2c981 100644 --- a/core/res/res/drawable-mdpi/expander_close_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/expander_close_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/expander_ic_maximized.9.png b/core/res/res/drawable-mdpi/expander_ic_maximized.9.png Binary files differindex d5c3276..2307d0b 100644 --- a/core/res/res/drawable-mdpi/expander_ic_maximized.9.png +++ b/core/res/res/drawable-mdpi/expander_ic_maximized.9.png diff --git a/core/res/res/drawable-mdpi/expander_ic_minimized.9.png b/core/res/res/drawable-mdpi/expander_ic_minimized.9.png Binary files differindex 4515b42..e1b8e1d 100644 --- a/core/res/res/drawable-mdpi/expander_ic_minimized.9.png +++ b/core/res/res/drawable-mdpi/expander_ic_minimized.9.png diff --git a/core/res/res/drawable-mdpi/expander_open_holo_dark.9.png b/core/res/res/drawable-mdpi/expander_open_holo_dark.9.png Binary files differindex 867f36d..6e7a763 100644 --- a/core/res/res/drawable-mdpi/expander_open_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/expander_open_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/expander_open_holo_light.9.png b/core/res/res/drawable-mdpi/expander_open_holo_light.9.png Binary files differindex 7f5ca48..dee42b2 100644 --- a/core/res/res/drawable-mdpi/expander_open_holo_light.9.png +++ b/core/res/res/drawable-mdpi/expander_open_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/expander_open_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/expander_open_mtrl_alpha.9.png Binary files differindex 29a3a1a..2787c4d 100644 --- a/core/res/res/drawable-mdpi/expander_open_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/expander_open_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_label_left_holo_dark.9.png b/core/res/res/drawable-mdpi/fastscroll_label_left_holo_dark.9.png Binary files differindex 94b944d..3d0c702 100644 --- a/core/res/res/drawable-mdpi/fastscroll_label_left_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_label_left_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_label_left_holo_light.9.png b/core/res/res/drawable-mdpi/fastscroll_label_left_holo_light.9.png Binary files differindex 987c097..b05bbd9 100644 --- a/core/res/res/drawable-mdpi/fastscroll_label_left_holo_light.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_label_left_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_label_right_holo_dark.9.png b/core/res/res/drawable-mdpi/fastscroll_label_right_holo_dark.9.png Binary files differindex 8d87032..48d984d 100644 --- a/core/res/res/drawable-mdpi/fastscroll_label_right_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_label_right_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_label_right_holo_light.9.png b/core/res/res/drawable-mdpi/fastscroll_label_right_holo_light.9.png Binary files differindex b29042a..b996668 100644 --- a/core/res/res/drawable-mdpi/fastscroll_label_right_holo_light.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_label_right_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_thumb_default_holo.png b/core/res/res/drawable-mdpi/fastscroll_thumb_default_holo.png Binary files differindex 9dddbd2..b802c4b 100644 --- a/core/res/res/drawable-mdpi/fastscroll_thumb_default_holo.png +++ b/core/res/res/drawable-mdpi/fastscroll_thumb_default_holo.png diff --git a/core/res/res/drawable-mdpi/fastscroll_thumb_pressed_holo.png b/core/res/res/drawable-mdpi/fastscroll_thumb_pressed_holo.png Binary files differindex 6da2c1c..580472e 100644 --- a/core/res/res/drawable-mdpi/fastscroll_thumb_pressed_holo.png +++ b/core/res/res/drawable-mdpi/fastscroll_thumb_pressed_holo.png diff --git a/core/res/res/drawable-mdpi/fastscroll_track_default_holo_dark.9.png b/core/res/res/drawable-mdpi/fastscroll_track_default_holo_dark.9.png Binary files differindex eb2b8bd..4ec1169 100644 --- a/core/res/res/drawable-mdpi/fastscroll_track_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_track_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_track_default_holo_light.9.png b/core/res/res/drawable-mdpi/fastscroll_track_default_holo_light.9.png Binary files differindex eb2b8bd..4ec1169 100644 --- a/core/res/res/drawable-mdpi/fastscroll_track_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_track_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_dark.9.png Binary files differindex 6fb59b6..f5e3656 100644 --- a/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_light.9.png Binary files differindex 1a63f5d..a53db12 100644 --- a/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/fastscroll_track_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/focused_application_background_static.png b/core/res/res/drawable-mdpi/focused_application_background_static.png Binary files differindex fd18d30..8eaa9ba 100644 --- a/core/res/res/drawable-mdpi/focused_application_background_static.png +++ b/core/res/res/drawable-mdpi/focused_application_background_static.png diff --git a/core/res/res/drawable-mdpi/frame_gallery_thumb.9.png b/core/res/res/drawable-mdpi/frame_gallery_thumb.9.png Binary files differindex 804f6f3..d9e86d5 100644 --- a/core/res/res/drawable-mdpi/frame_gallery_thumb.9.png +++ b/core/res/res/drawable-mdpi/frame_gallery_thumb.9.png diff --git a/core/res/res/drawable-mdpi/frame_gallery_thumb_pressed.9.png b/core/res/res/drawable-mdpi/frame_gallery_thumb_pressed.9.png Binary files differindex e1ffa06..2b3a242 100644 --- a/core/res/res/drawable-mdpi/frame_gallery_thumb_pressed.9.png +++ b/core/res/res/drawable-mdpi/frame_gallery_thumb_pressed.9.png diff --git a/core/res/res/drawable-mdpi/frame_gallery_thumb_selected.9.png b/core/res/res/drawable-mdpi/frame_gallery_thumb_selected.9.png Binary files differindex 8bae932..e4caed9 100644 --- a/core/res/res/drawable-mdpi/frame_gallery_thumb_selected.9.png +++ b/core/res/res/drawable-mdpi/frame_gallery_thumb_selected.9.png diff --git a/core/res/res/drawable-mdpi/gallery_selected_default.9.png b/core/res/res/drawable-mdpi/gallery_selected_default.9.png Binary files differindex 22122b2..ee474a9 100644 --- a/core/res/res/drawable-mdpi/gallery_selected_default.9.png +++ b/core/res/res/drawable-mdpi/gallery_selected_default.9.png diff --git a/core/res/res/drawable-mdpi/gallery_selected_focused.9.png b/core/res/res/drawable-mdpi/gallery_selected_focused.9.png Binary files differindex 1332745..c2165a3 100644 --- a/core/res/res/drawable-mdpi/gallery_selected_focused.9.png +++ b/core/res/res/drawable-mdpi/gallery_selected_focused.9.png diff --git a/core/res/res/drawable-mdpi/gallery_selected_pressed.9.png b/core/res/res/drawable-mdpi/gallery_selected_pressed.9.png Binary files differindex 306e543..faa68a4 100644 --- a/core/res/res/drawable-mdpi/gallery_selected_pressed.9.png +++ b/core/res/res/drawable-mdpi/gallery_selected_pressed.9.png diff --git a/core/res/res/drawable-mdpi/gallery_unselected_default.9.png b/core/res/res/drawable-mdpi/gallery_unselected_default.9.png Binary files differindex 0df06fa..6f4237a 100644 --- a/core/res/res/drawable-mdpi/gallery_unselected_default.9.png +++ b/core/res/res/drawable-mdpi/gallery_unselected_default.9.png diff --git a/core/res/res/drawable-mdpi/gallery_unselected_pressed.9.png b/core/res/res/drawable-mdpi/gallery_unselected_pressed.9.png Binary files differindex 4b25c3f..60af4dd 100644 --- a/core/res/res/drawable-mdpi/gallery_unselected_pressed.9.png +++ b/core/res/res/drawable-mdpi/gallery_unselected_pressed.9.png diff --git a/core/res/res/drawable-mdpi/grid_selector_background_focus.9.png b/core/res/res/drawable-mdpi/grid_selector_background_focus.9.png Binary files differindex 2e28232..df8b12d 100644 --- a/core/res/res/drawable-mdpi/grid_selector_background_focus.9.png +++ b/core/res/res/drawable-mdpi/grid_selector_background_focus.9.png diff --git a/core/res/res/drawable-mdpi/grid_selector_background_pressed.9.png b/core/res/res/drawable-mdpi/grid_selector_background_pressed.9.png Binary files differindex e20f091..75633fe 100644 --- a/core/res/res/drawable-mdpi/grid_selector_background_pressed.9.png +++ b/core/res/res/drawable-mdpi/grid_selector_background_pressed.9.png diff --git a/core/res/res/drawable-mdpi/highlight_disabled.9.png b/core/res/res/drawable-mdpi/highlight_disabled.9.png Binary files differindex 1393262..9c29795 100644 --- a/core/res/res/drawable-mdpi/highlight_disabled.9.png +++ b/core/res/res/drawable-mdpi/highlight_disabled.9.png diff --git a/core/res/res/drawable-mdpi/highlight_pressed.9.png b/core/res/res/drawable-mdpi/highlight_pressed.9.png Binary files differindex 9bd2b50..00bcb94 100644 --- a/core/res/res/drawable-mdpi/highlight_pressed.9.png +++ b/core/res/res/drawable-mdpi/highlight_pressed.9.png diff --git a/core/res/res/drawable-mdpi/highlight_selected.9.png b/core/res/res/drawable-mdpi/highlight_selected.9.png Binary files differindex ecf0cad..2cd1bc0 100644 --- a/core/res/res/drawable-mdpi/highlight_selected.9.png +++ b/core/res/res/drawable-mdpi/highlight_selected.9.png diff --git a/core/res/res/drawable-mdpi/ic_ab_back_holo_dark_am.png b/core/res/res/drawable-mdpi/ic_ab_back_holo_dark_am.png Binary files differindex df2d3d1..a59edf2 100644 --- a/core/res/res/drawable-mdpi/ic_ab_back_holo_dark_am.png +++ b/core/res/res/drawable-mdpi/ic_ab_back_holo_dark_am.png diff --git a/core/res/res/drawable-mdpi/ic_ab_back_holo_light_am.png b/core/res/res/drawable-mdpi/ic_ab_back_holo_light_am.png Binary files differindex b2aa9c2..e47d88f 100644 --- a/core/res/res/drawable-mdpi/ic_ab_back_holo_light_am.png +++ b/core/res/res/drawable-mdpi/ic_ab_back_holo_light_am.png diff --git a/core/res/res/drawable-mdpi/ic_action_assist_focused.png b/core/res/res/drawable-mdpi/ic_action_assist_focused.png Binary files differindex 3f96d03..68bdcd7 100644 --- a/core/res/res/drawable-mdpi/ic_action_assist_focused.png +++ b/core/res/res/drawable-mdpi/ic_action_assist_focused.png diff --git a/core/res/res/drawable-mdpi/ic_aggregated.png b/core/res/res/drawable-mdpi/ic_aggregated.png Binary files differindex ad42071..536e601 100644 --- a/core/res/res/drawable-mdpi/ic_aggregated.png +++ b/core/res/res/drawable-mdpi/ic_aggregated.png diff --git a/core/res/res/drawable-mdpi/ic_audio_notification_am_alpha.png b/core/res/res/drawable-mdpi/ic_audio_notification_am_alpha.png Binary files differindex b41ccd0..6908272 100644 --- a/core/res/res/drawable-mdpi/ic_audio_notification_am_alpha.png +++ b/core/res/res/drawable-mdpi/ic_audio_notification_am_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_audio_notification_mute_am_alpha.png b/core/res/res/drawable-mdpi/ic_audio_notification_mute_am_alpha.png Binary files differindex 2567f76..f027f91 100644 --- a/core/res/res/drawable-mdpi/ic_audio_notification_mute_am_alpha.png +++ b/core/res/res/drawable-mdpi/ic_audio_notification_mute_am_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_btn_round_more_disabled.png b/core/res/res/drawable-mdpi/ic_btn_round_more_disabled.png Binary files differindex 428edf2..dd64145 100644 --- a/core/res/res/drawable-mdpi/ic_btn_round_more_disabled.png +++ b/core/res/res/drawable-mdpi/ic_btn_round_more_disabled.png diff --git a/core/res/res/drawable-mdpi/ic_btn_round_more_normal.png b/core/res/res/drawable-mdpi/ic_btn_round_more_normal.png Binary files differindex c2ecb01..eb6d90b 100644 --- a/core/res/res/drawable-mdpi/ic_btn_round_more_normal.png +++ b/core/res/res/drawable-mdpi/ic_btn_round_more_normal.png diff --git a/core/res/res/drawable-mdpi/ic_btn_search_go.png b/core/res/res/drawable-mdpi/ic_btn_search_go.png Binary files differindex 9a4e9b9..bb2f633 100644 --- a/core/res/res/drawable-mdpi/ic_btn_search_go.png +++ b/core/res/res/drawable-mdpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-mdpi/ic_btn_speak_now.png b/core/res/res/drawable-mdpi/ic_btn_speak_now.png Binary files differindex 0589be6..7e60f36 100644 --- a/core/res/res/drawable-mdpi/ic_btn_speak_now.png +++ b/core/res/res/drawable-mdpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_disabled.png b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_disabled.png Binary files differindex 914662d..e0c4ad3 100644 --- a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_disabled.png +++ b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_disabled.png diff --git a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_normal.png b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_normal.png Binary files differindex 3b67c6d..1f78ab7 100644 --- a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_normal.png +++ b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_fit_page_normal.png diff --git a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_disabled.png b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_disabled.png Binary files differindex 859900a..c329867 100644 --- a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_disabled.png +++ b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_disabled.png diff --git a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_normal.png b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_normal.png Binary files differindex 4e8ff35..fd739ba 100644 --- a/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_normal.png +++ b/core/res/res/drawable-mdpi/ic_btn_square_browser_zoom_page_overview_normal.png diff --git a/core/res/res/drawable-mdpi/ic_bullet_key_permission.png b/core/res/res/drawable-mdpi/ic_bullet_key_permission.png Binary files differindex 7fee560..d418ebca 100644 --- a/core/res/res/drawable-mdpi/ic_bullet_key_permission.png +++ b/core/res/res/drawable-mdpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-mdpi/ic_cab_done_holo.png b/core/res/res/drawable-mdpi/ic_cab_done_holo.png Binary files differindex f5c27a6..f1140b5 100644 --- a/core/res/res/drawable-mdpi/ic_cab_done_holo.png +++ b/core/res/res/drawable-mdpi/ic_cab_done_holo.png diff --git a/core/res/res/drawable-mdpi/ic_cab_done_holo_dark.png b/core/res/res/drawable-mdpi/ic_cab_done_holo_dark.png Binary files differindex a17b6a7..c62a439 100644 --- a/core/res/res/drawable-mdpi/ic_cab_done_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_cab_done_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_cab_done_holo_light.png b/core/res/res/drawable-mdpi/ic_cab_done_holo_light.png Binary files differindex b28b3b5..4384d84 100644 --- a/core/res/res/drawable-mdpi/ic_cab_done_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_cab_done_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_cab_done_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_cab_done_mtrl_alpha.png Binary files differindex 541184a..fa98bba 100644 --- a/core/res/res/drawable-mdpi/ic_cab_done_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_cab_done_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_checkmark_holo_light.png b/core/res/res/drawable-mdpi/ic_checkmark_holo_light.png Binary files differindex 744e964..4b8d88d 100644 --- a/core/res/res/drawable-mdpi/ic_checkmark_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_checkmark_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_clear_disabled.png b/core/res/res/drawable-mdpi/ic_clear_disabled.png Binary files differindex 79228ba..2f465f2 100644 --- a/core/res/res/drawable-mdpi/ic_clear_disabled.png +++ b/core/res/res/drawable-mdpi/ic_clear_disabled.png diff --git a/core/res/res/drawable-mdpi/ic_clear_normal.png b/core/res/res/drawable-mdpi/ic_clear_normal.png Binary files differindex 86944a8..f487c3b 100644 --- a/core/res/res/drawable-mdpi/ic_clear_normal.png +++ b/core/res/res/drawable-mdpi/ic_clear_normal.png diff --git a/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_dark.png b/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_dark.png Binary files differindex 6a34dba..857d834 100644 --- a/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_light.png b/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_light.png Binary files differindex c0bdf06..5b45566 100644 --- a/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_clear_search_api_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_clear_search_api_holo_dark.png b/core/res/res/drawable-mdpi/ic_clear_search_api_holo_dark.png Binary files differindex ee16528..ceb5ecf 100644 --- a/core/res/res/drawable-mdpi/ic_clear_search_api_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_clear_search_api_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_clear_search_api_holo_light.png b/core/res/res/drawable-mdpi/ic_clear_search_api_holo_light.png Binary files differindex 15b86cb..3e28a7a 100644 --- a/core/res/res/drawable-mdpi/ic_clear_search_api_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_clear_search_api_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_coins_l.png b/core/res/res/drawable-mdpi/ic_coins_l.png Binary files differindex a6d7abb..c91c5b4 100644 --- a/core/res/res/drawable-mdpi/ic_coins_l.png +++ b/core/res/res/drawable-mdpi/ic_coins_l.png diff --git a/core/res/res/drawable-mdpi/ic_coins_s.png b/core/res/res/drawable-mdpi/ic_coins_s.png Binary files differindex 3b8fd8a..84c7ac2 100644 --- a/core/res/res/drawable-mdpi/ic_coins_s.png +++ b/core/res/res/drawable-mdpi/ic_coins_s.png diff --git a/core/res/res/drawable-mdpi/ic_commit.png b/core/res/res/drawable-mdpi/ic_commit.png Binary files differindex 3d167b5..7e74601 100644 --- a/core/res/res/drawable-mdpi/ic_commit.png +++ b/core/res/res/drawable-mdpi/ic_commit.png diff --git a/core/res/res/drawable-mdpi/ic_commit_search_api_holo_dark.png b/core/res/res/drawable-mdpi/ic_commit_search_api_holo_dark.png Binary files differindex 844c99c..196278b 100644 --- a/core/res/res/drawable-mdpi/ic_commit_search_api_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_commit_search_api_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_commit_search_api_holo_light.png b/core/res/res/drawable-mdpi/ic_commit_search_api_holo_light.png Binary files differindex 86c170e..b451ab3 100644 --- a/core/res/res/drawable-mdpi/ic_commit_search_api_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_commit_search_api_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_commit_search_api_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_commit_search_api_mtrl_alpha.png Binary files differindex 42ac8ca..4e30602 100644 --- a/core/res/res/drawable-mdpi/ic_commit_search_api_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_commit_search_api_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_contact_picture.png b/core/res/res/drawable-mdpi/ic_contact_picture.png Binary files differindex 771cb6b..0db1006 100644 --- a/core/res/res/drawable-mdpi/ic_contact_picture.png +++ b/core/res/res/drawable-mdpi/ic_contact_picture.png diff --git a/core/res/res/drawable-mdpi/ic_contact_picture_2.png b/core/res/res/drawable-mdpi/ic_contact_picture_2.png Binary files differindex 004a6c6..e2a94e8 100644 --- a/core/res/res/drawable-mdpi/ic_contact_picture_2.png +++ b/core/res/res/drawable-mdpi/ic_contact_picture_2.png diff --git a/core/res/res/drawable-mdpi/ic_contact_picture_3.png b/core/res/res/drawable-mdpi/ic_contact_picture_3.png Binary files differindex 001bf29..4572606 100644 --- a/core/res/res/drawable-mdpi/ic_contact_picture_3.png +++ b/core/res/res/drawable-mdpi/ic_contact_picture_3.png diff --git a/core/res/res/drawable-mdpi/ic_corp_icon.png b/core/res/res/drawable-mdpi/ic_corp_icon.png Binary files differindex 79372b2..ff57705 100644 --- a/core/res/res/drawable-mdpi/ic_corp_icon.png +++ b/core/res/res/drawable-mdpi/ic_corp_icon.png diff --git a/core/res/res/drawable-mdpi/ic_delete.png b/core/res/res/drawable-mdpi/ic_delete.png Binary files differindex f074db3..2eb3b08 100644 --- a/core/res/res/drawable-mdpi/ic_delete.png +++ b/core/res/res/drawable-mdpi/ic_delete.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_alert.png b/core/res/res/drawable-mdpi/ic_dialog_alert.png Binary files differindex ef498ef..ca0c6c9 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_alert.png +++ b/core/res/res/drawable-mdpi/ic_dialog_alert.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_alert_holo_dark.png b/core/res/res/drawable-mdpi/ic_dialog_alert_holo_dark.png Binary files differindex 75d9db7..a9ed5cd 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_alert_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_dialog_alert_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_alert_holo_light.png b/core/res/res/drawable-mdpi/ic_dialog_alert_holo_light.png Binary files differindex 9e7f0bd..1a5c19b 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_alert_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_dialog_alert_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png b/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png Binary files differindex 7f2a029..54dd47f 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png +++ b/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png b/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png Binary files differindex daa8e18..f5579da 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png +++ b/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_dialer.png b/core/res/res/drawable-mdpi/ic_dialog_dialer.png Binary files differindex f0c1838..cc5d574 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_dialer.png +++ b/core/res/res/drawable-mdpi/ic_dialog_dialer.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_email.png b/core/res/res/drawable-mdpi/ic_dialog_email.png Binary files differindex 20ebb13..7371de7 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_email.png +++ b/core/res/res/drawable-mdpi/ic_dialog_email.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png Binary files differindex 179f2de..74bbe68 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png +++ b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_info.png b/core/res/res/drawable-mdpi/ic_dialog_info.png Binary files differindex e8b0229..5fb8ad9 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_info.png +++ b/core/res/res/drawable-mdpi/ic_dialog_info.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_map.png b/core/res/res/drawable-mdpi/ic_dialog_map.png Binary files differindex b126354..4309621 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_map.png +++ b/core/res/res/drawable-mdpi/ic_dialog_map.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_time.png b/core/res/res/drawable-mdpi/ic_dialog_time.png Binary files differindex dffec29..259549d 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_time.png +++ b/core/res/res/drawable-mdpi/ic_dialog_time.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_usb.png b/core/res/res/drawable-mdpi/ic_dialog_usb.png Binary files differindex fbc8a9d..5bd3bd4 100644 --- a/core/res/res/drawable-mdpi/ic_dialog_usb.png +++ b/core/res/res/drawable-mdpi/ic_dialog_usb.png diff --git a/core/res/res/drawable-mdpi/ic_emergency.png b/core/res/res/drawable-mdpi/ic_emergency.png Binary files differindex dfa17c6..1c71be4 100644 --- a/core/res/res/drawable-mdpi/ic_emergency.png +++ b/core/res/res/drawable-mdpi/ic_emergency.png diff --git a/core/res/res/drawable-mdpi/ic_find_next_holo_dark.png b/core/res/res/drawable-mdpi/ic_find_next_holo_dark.png Binary files differindex c138916..f0800d7 100644 --- a/core/res/res/drawable-mdpi/ic_find_next_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_find_next_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_find_next_holo_light.png b/core/res/res/drawable-mdpi/ic_find_next_holo_light.png Binary files differindex 4eea3c3..e07ef0b 100644 --- a/core/res/res/drawable-mdpi/ic_find_next_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_find_next_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_find_next_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_find_next_mtrl_alpha.png Binary files differindex 1cfdb3f..3a1c3a4 100644 --- a/core/res/res/drawable-mdpi/ic_find_next_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_find_next_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_find_previous_holo_dark.png b/core/res/res/drawable-mdpi/ic_find_previous_holo_dark.png Binary files differindex d239274..2c69ec4 100644 --- a/core/res/res/drawable-mdpi/ic_find_previous_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_find_previous_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_find_previous_holo_light.png b/core/res/res/drawable-mdpi/ic_find_previous_holo_light.png Binary files differindex 786e1d6..2cd6b48 100644 --- a/core/res/res/drawable-mdpi/ic_find_previous_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_find_previous_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_find_previous_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_find_previous_mtrl_alpha.png Binary files differindex 0d3c009..8fd713d 100644 --- a/core/res/res/drawable-mdpi/ic_find_previous_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_find_previous_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_go.png b/core/res/res/drawable-mdpi/ic_go.png Binary files differindex bf19833..474167e 100644 --- a/core/res/res/drawable-mdpi/ic_go.png +++ b/core/res/res/drawable-mdpi/ic_go.png diff --git a/core/res/res/drawable-mdpi/ic_go_search_api_holo_dark.png b/core/res/res/drawable-mdpi/ic_go_search_api_holo_dark.png Binary files differindex 591f734..c6060c7 100644 --- a/core/res/res/drawable-mdpi/ic_go_search_api_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_go_search_api_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_go_search_api_holo_light.png b/core/res/res/drawable-mdpi/ic_go_search_api_holo_light.png Binary files differindex 8518498..feb7ff8 100644 --- a/core/res/res/drawable-mdpi/ic_go_search_api_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_go_search_api_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_grayedout_printer.png b/core/res/res/drawable-mdpi/ic_grayedout_printer.png Binary files differindex 5e54970..627ebae 100644 --- a/core/res/res/drawable-mdpi/ic_grayedout_printer.png +++ b/core/res/res/drawable-mdpi/ic_grayedout_printer.png diff --git a/core/res/res/drawable-mdpi/ic_input_add.png b/core/res/res/drawable-mdpi/ic_input_add.png Binary files differindex 00770f8..775428e 100644 --- a/core/res/res/drawable-mdpi/ic_input_add.png +++ b/core/res/res/drawable-mdpi/ic_input_add.png diff --git a/core/res/res/drawable-mdpi/ic_input_delete.png b/core/res/res/drawable-mdpi/ic_input_delete.png Binary files differindex 47c8708..022a519 100644 --- a/core/res/res/drawable-mdpi/ic_input_delete.png +++ b/core/res/res/drawable-mdpi/ic_input_delete.png diff --git a/core/res/res/drawable-mdpi/ic_input_get.png b/core/res/res/drawable-mdpi/ic_input_get.png Binary files differindex 2f2cfcf..3515e70 100644 --- a/core/res/res/drawable-mdpi/ic_input_get.png +++ b/core/res/res/drawable-mdpi/ic_input_get.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_answer.png b/core/res/res/drawable-mdpi/ic_jog_dial_answer.png Binary files differindex e2bc483..3b1892e 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_answer.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_answer.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_end.png b/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_end.png Binary files differindex aa0fab2..b1c7501 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_end.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_end.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_hold.png b/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_hold.png Binary files differindex 9effe37..c068114 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_hold.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_answer_and_hold.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_decline.png b/core/res/res/drawable-mdpi/ic_jog_dial_decline.png Binary files differindex 81c76b5..8357a5d 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_decline.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_decline.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-mdpi/ic_jog_dial_sound_off.png Binary files differindex b9aec69..f29bab0 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_sound_off.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-mdpi/ic_jog_dial_sound_on.png Binary files differindex 4952746..6c93ce4 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_sound_on.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_unlock.png b/core/res/res/drawable-mdpi/ic_jog_dial_unlock.png Binary files differindex e697d91..2343790 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_unlock.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-mdpi/ic_jog_dial_vibrate_on.png b/core/res/res/drawable-mdpi/ic_jog_dial_vibrate_on.png Binary files differindex 9aa9b13..eab09af 100644 --- a/core/res/res/drawable-mdpi/ic_jog_dial_vibrate_on.png +++ b/core/res/res/drawable-mdpi/ic_jog_dial_vibrate_on.png diff --git a/core/res/res/drawable-mdpi/ic_launcher_android.png b/core/res/res/drawable-mdpi/ic_launcher_android.png Binary files differindex 6a97d5b..da368f1 100644 --- a/core/res/res/drawable-mdpi/ic_launcher_android.png +++ b/core/res/res/drawable-mdpi/ic_launcher_android.png diff --git a/core/res/res/drawable-mdpi/ic_lock_airplane_mode_alpha.png b/core/res/res/drawable-mdpi/ic_lock_airplane_mode_alpha.png Binary files differindex 2b1dc1a..2d5517b 100644 --- a/core/res/res/drawable-mdpi/ic_lock_airplane_mode_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_airplane_mode_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_airplane_mode_off_am_alpha.png b/core/res/res/drawable-mdpi/ic_lock_airplane_mode_off_am_alpha.png Binary files differindex 49ed3d2..a8b82a1 100644 --- a/core/res/res/drawable-mdpi/ic_lock_airplane_mode_off_am_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_airplane_mode_off_am_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_idle_alarm_alpha.png b/core/res/res/drawable-mdpi/ic_lock_idle_alarm_alpha.png Binary files differindex b5d3e09..48528f7 100644 --- a/core/res/res/drawable-mdpi/ic_lock_idle_alarm_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_idle_alarm_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_idle_charging.png b/core/res/res/drawable-mdpi/ic_lock_idle_charging.png Binary files differindex 20d6320..0fcd48d 100644 --- a/core/res/res/drawable-mdpi/ic_lock_idle_charging.png +++ b/core/res/res/drawable-mdpi/ic_lock_idle_charging.png diff --git a/core/res/res/drawable-mdpi/ic_lock_idle_lock.png b/core/res/res/drawable-mdpi/ic_lock_idle_lock.png Binary files differindex 0206aee..cba1bf9 100644 --- a/core/res/res/drawable-mdpi/ic_lock_idle_lock.png +++ b/core/res/res/drawable-mdpi/ic_lock_idle_lock.png diff --git a/core/res/res/drawable-mdpi/ic_lock_idle_low_battery.png b/core/res/res/drawable-mdpi/ic_lock_idle_low_battery.png Binary files differindex bb96782..76bb8c2 100644 --- a/core/res/res/drawable-mdpi/ic_lock_idle_low_battery.png +++ b/core/res/res/drawable-mdpi/ic_lock_idle_low_battery.png diff --git a/core/res/res/drawable-mdpi/ic_lock_lock_alpha.png b/core/res/res/drawable-mdpi/ic_lock_lock_alpha.png Binary files differindex 5ff3654..18d410e 100644 --- a/core/res/res/drawable-mdpi/ic_lock_lock_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_lock_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_open_wht_24dp.png b/core/res/res/drawable-mdpi/ic_lock_open_wht_24dp.png Binary files differindex 163f4a0..78b7af3 100644 --- a/core/res/res/drawable-mdpi/ic_lock_open_wht_24dp.png +++ b/core/res/res/drawable-mdpi/ic_lock_open_wht_24dp.png diff --git a/core/res/res/drawable-mdpi/ic_lock_outline_wht_24dp.png b/core/res/res/drawable-mdpi/ic_lock_outline_wht_24dp.png Binary files differindex bbfb83c..bc9d392 100644 --- a/core/res/res/drawable-mdpi/ic_lock_outline_wht_24dp.png +++ b/core/res/res/drawable-mdpi/ic_lock_outline_wht_24dp.png diff --git a/core/res/res/drawable-mdpi/ic_lock_power_off_alpha.png b/core/res/res/drawable-mdpi/ic_lock_power_off_alpha.png Binary files differindex 2c55e47..3b7270b 100644 --- a/core/res/res/drawable-mdpi/ic_lock_power_off_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_power_off_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_ringer_off_alpha.png b/core/res/res/drawable-mdpi/ic_lock_ringer_off_alpha.png Binary files differindex 98cfb11..78a90c5 100644 --- a/core/res/res/drawable-mdpi/ic_lock_ringer_off_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_ringer_off_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_ringer_on_alpha.png b/core/res/res/drawable-mdpi/ic_lock_ringer_on_alpha.png Binary files differindex 691b99e..d300284 100644 --- a/core/res/res/drawable-mdpi/ic_lock_ringer_on_alpha.png +++ b/core/res/res/drawable-mdpi/ic_lock_ringer_on_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_lock_silent_mode.png b/core/res/res/drawable-mdpi/ic_lock_silent_mode.png Binary files differindex 5c3a226..4776861 100644 --- a/core/res/res/drawable-mdpi/ic_lock_silent_mode.png +++ b/core/res/res/drawable-mdpi/ic_lock_silent_mode.png diff --git a/core/res/res/drawable-mdpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-mdpi/ic_lock_silent_mode_off.png Binary files differindex 1a02aaa..4225aa0 100644 --- a/core/res/res/drawable-mdpi/ic_lock_silent_mode_off.png +++ b/core/res/res/drawable-mdpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-mdpi/ic_lock_silent_mode_vibrate.png b/core/res/res/drawable-mdpi/ic_lock_silent_mode_vibrate.png Binary files differindex 7da79aa..359dee1 100644 --- a/core/res/res/drawable-mdpi/ic_lock_silent_mode_vibrate.png +++ b/core/res/res/drawable-mdpi/ic_lock_silent_mode_vibrate.png diff --git a/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png Binary files differindex 0187a02..3b535de 100644 --- a/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position.png b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position.png Binary files differindex 4e427d8..f2061ce 100644 --- a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position.png +++ b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position.png diff --git a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim1.png b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim1.png Binary files differindex 47bb9fa..32fc2b1 100644 --- a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim1.png +++ b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim1.png diff --git a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim2.png b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim2.png Binary files differindex b1167bc..2fdfe3a 100644 --- a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim2.png +++ b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim2.png diff --git a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim3.png b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim3.png Binary files differindex f681a4c..55047ee 100644 --- a/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim3.png +++ b/core/res/res/drawable-mdpi/ic_maps_indicator_current_position_anim3.png diff --git a/core/res/res/drawable-mdpi/ic_media_embed_play.png b/core/res/res/drawable-mdpi/ic_media_embed_play.png Binary files differindex 3576ce5..844e29b 100644 --- a/core/res/res/drawable-mdpi/ic_media_embed_play.png +++ b/core/res/res/drawable-mdpi/ic_media_embed_play.png diff --git a/core/res/res/drawable-mdpi/ic_media_ff.png b/core/res/res/drawable-mdpi/ic_media_ff.png Binary files differindex 170dd2d..a5d11a7 100644 --- a/core/res/res/drawable-mdpi/ic_media_ff.png +++ b/core/res/res/drawable-mdpi/ic_media_ff.png diff --git a/core/res/res/drawable-mdpi/ic_media_fullscreen.png b/core/res/res/drawable-mdpi/ic_media_fullscreen.png Binary files differindex 960aa85..16925cc 100644 --- a/core/res/res/drawable-mdpi/ic_media_fullscreen.png +++ b/core/res/res/drawable-mdpi/ic_media_fullscreen.png diff --git a/core/res/res/drawable-mdpi/ic_media_next.png b/core/res/res/drawable-mdpi/ic_media_next.png Binary files differindex fcd73d9..d7132c9 100644 --- a/core/res/res/drawable-mdpi/ic_media_next.png +++ b/core/res/res/drawable-mdpi/ic_media_next.png diff --git a/core/res/res/drawable-mdpi/ic_media_pause.png b/core/res/res/drawable-mdpi/ic_media_pause.png Binary files differindex 3e6b2a1..715fd3a 100644 --- a/core/res/res/drawable-mdpi/ic_media_pause.png +++ b/core/res/res/drawable-mdpi/ic_media_pause.png diff --git a/core/res/res/drawable-mdpi/ic_media_play.png b/core/res/res/drawable-mdpi/ic_media_play.png Binary files differindex 7966bbc..b0d51c3 100644 --- a/core/res/res/drawable-mdpi/ic_media_play.png +++ b/core/res/res/drawable-mdpi/ic_media_play.png diff --git a/core/res/res/drawable-mdpi/ic_media_previous.png b/core/res/res/drawable-mdpi/ic_media_previous.png Binary files differindex b653d05..da0f31a 100644 --- a/core/res/res/drawable-mdpi/ic_media_previous.png +++ b/core/res/res/drawable-mdpi/ic_media_previous.png diff --git a/core/res/res/drawable-mdpi/ic_media_rew.png b/core/res/res/drawable-mdpi/ic_media_rew.png Binary files differindex 5489180..7c961f4 100644 --- a/core/res/res/drawable-mdpi/ic_media_rew.png +++ b/core/res/res/drawable-mdpi/ic_media_rew.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_dark.png Binary files differindex 52e3a5a..9ec78f5 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_light.png Binary files differindex 319c57e..e7a7707 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_disabled_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_disabled_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_disabled_mtrl_alpha.png Binary files differindex ec43047..f24077f 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_disabled_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_disabled_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_off_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_off_holo_dark.png Binary files differindex f98c0a8..d51a1f8 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_off_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_off_holo_light.png Binary files differindex b74cdb5..955190b 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_off_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_off_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_off_mtrl_alpha.png Binary files differindex a652117..1d9f942 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_off_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_off_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_dark.png Binary files differindex a6a4bd0..67deb83 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_light.png Binary files differindex 106fd3a..4221d22 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_0_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_0_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_on_0_mtrl_alpha.png Binary files differindex 35d1c56..84b9008 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_0_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_0_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_dark.png Binary files differindex 2c141ab..33201b4 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_light.png Binary files differindex 0b62d0b..b1f1a06 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_1_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_1_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_on_1_mtrl_alpha.png Binary files differindex 264188b..5ccf793 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_1_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_1_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_dark.png Binary files differindex 23442b0..5ab8471 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_light.png Binary files differindex 42b329f..9fea65f 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_2_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_2_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_on_2_mtrl_alpha.png Binary files differindex 06ae665..117e993 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_2_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_2_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_holo_dark.png b/core/res/res/drawable-mdpi/ic_media_route_on_holo_dark.png Binary files differindex 58ff506..a88e58f 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_holo_light.png b/core/res/res/drawable-mdpi/ic_media_route_on_holo_light.png Binary files differindex 25257f8..1c4a1be 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_media_route_on_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_media_route_on_mtrl_alpha.png Binary files differindex a69e301..4f25117 100644 --- a/core/res/res/drawable-mdpi/ic_media_route_on_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_media_route_on_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_media_stop.png b/core/res/res/drawable-mdpi/ic_media_stop.png Binary files differindex 8ea7efe..42cf32a 100644 --- a/core/res/res/drawable-mdpi/ic_media_stop.png +++ b/core/res/res/drawable-mdpi/ic_media_stop.png diff --git a/core/res/res/drawable-mdpi/ic_media_video_poster.png b/core/res/res/drawable-mdpi/ic_media_video_poster.png Binary files differindex f457f23..4b7a967 100644 --- a/core/res/res/drawable-mdpi/ic_media_video_poster.png +++ b/core/res/res/drawable-mdpi/ic_media_video_poster.png diff --git a/core/res/res/drawable-mdpi/ic_menu_account_list.png b/core/res/res/drawable-mdpi/ic_menu_account_list.png Binary files differindex e4e717e..6e71c73 100644 --- a/core/res/res/drawable-mdpi/ic_menu_account_list.png +++ b/core/res/res/drawable-mdpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-mdpi/ic_menu_add.png b/core/res/res/drawable-mdpi/ic_menu_add.png Binary files differindex 361c7c4..17784e7 100644 --- a/core/res/res/drawable-mdpi/ic_menu_add.png +++ b/core/res/res/drawable-mdpi/ic_menu_add.png diff --git a/core/res/res/drawable-mdpi/ic_menu_agenda.png b/core/res/res/drawable-mdpi/ic_menu_agenda.png Binary files differindex c63a12bf..cfd6b27 100644 --- a/core/res/res/drawable-mdpi/ic_menu_agenda.png +++ b/core/res/res/drawable-mdpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-mdpi/ic_menu_allfriends.png b/core/res/res/drawable-mdpi/ic_menu_allfriends.png Binary files differindex 45256d1..ca05af5 100644 --- a/core/res/res/drawable-mdpi/ic_menu_allfriends.png +++ b/core/res/res/drawable-mdpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-mdpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-mdpi/ic_menu_always_landscape_portrait.png Binary files differindex f9f475a..18c918c 100644 --- a/core/res/res/drawable-mdpi/ic_menu_always_landscape_portrait.png +++ b/core/res/res/drawable-mdpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-mdpi/ic_menu_archive.png b/core/res/res/drawable-mdpi/ic_menu_archive.png Binary files differindex 49ac569..1de6e43 100644 --- a/core/res/res/drawable-mdpi/ic_menu_archive.png +++ b/core/res/res/drawable-mdpi/ic_menu_archive.png diff --git a/core/res/res/drawable-mdpi/ic_menu_attachment.png b/core/res/res/drawable-mdpi/ic_menu_attachment.png Binary files differindex d3d4812..b7db36d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_attachment.png +++ b/core/res/res/drawable-mdpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-mdpi/ic_menu_back.png b/core/res/res/drawable-mdpi/ic_menu_back.png Binary files differindex bb69245..33b7da5 100644 --- a/core/res/res/drawable-mdpi/ic_menu_back.png +++ b/core/res/res/drawable-mdpi/ic_menu_back.png diff --git a/core/res/res/drawable-mdpi/ic_menu_block.png b/core/res/res/drawable-mdpi/ic_menu_block.png Binary files differindex 63f952d..a95acdd 100644 --- a/core/res/res/drawable-mdpi/ic_menu_block.png +++ b/core/res/res/drawable-mdpi/ic_menu_block.png diff --git a/core/res/res/drawable-mdpi/ic_menu_blocked_user.png b/core/res/res/drawable-mdpi/ic_menu_blocked_user.png Binary files differindex ac8cc10..735fe39 100644 --- a/core/res/res/drawable-mdpi/ic_menu_blocked_user.png +++ b/core/res/res/drawable-mdpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-mdpi/ic_menu_btn_add.png b/core/res/res/drawable-mdpi/ic_menu_btn_add.png Binary files differindex 361c7c4..17784e7 100644 --- a/core/res/res/drawable-mdpi/ic_menu_btn_add.png +++ b/core/res/res/drawable-mdpi/ic_menu_btn_add.png diff --git a/core/res/res/drawable-mdpi/ic_menu_call.png b/core/res/res/drawable-mdpi/ic_menu_call.png Binary files differindex b7ee91a..09203b6 100644 --- a/core/res/res/drawable-mdpi/ic_menu_call.png +++ b/core/res/res/drawable-mdpi/ic_menu_call.png diff --git a/core/res/res/drawable-mdpi/ic_menu_camera.png b/core/res/res/drawable-mdpi/ic_menu_camera.png Binary files differindex f8cf93c..ae21217 100644 --- a/core/res/res/drawable-mdpi/ic_menu_camera.png +++ b/core/res/res/drawable-mdpi/ic_menu_camera.png diff --git a/core/res/res/drawable-mdpi/ic_menu_cc_am.png b/core/res/res/drawable-mdpi/ic_menu_cc_am.png Binary files differindex 8e2ba09..066b170 100644 --- a/core/res/res/drawable-mdpi/ic_menu_cc_am.png +++ b/core/res/res/drawable-mdpi/ic_menu_cc_am.png diff --git a/core/res/res/drawable-mdpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-mdpi/ic_menu_chat_dashboard.png Binary files differindex 14b7482..b11e2b2 100644 --- a/core/res/res/drawable-mdpi/ic_menu_chat_dashboard.png +++ b/core/res/res/drawable-mdpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-mdpi/ic_menu_clear_playlist.png b/core/res/res/drawable-mdpi/ic_menu_clear_playlist.png Binary files differindex 9100a69..923e8e6 100644 --- a/core/res/res/drawable-mdpi/ic_menu_clear_playlist.png +++ b/core/res/res/drawable-mdpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-mdpi/ic_menu_close_clear_cancel.png b/core/res/res/drawable-mdpi/ic_menu_close_clear_cancel.png Binary files differindex 1161a7c..2729de4 100644 --- a/core/res/res/drawable-mdpi/ic_menu_close_clear_cancel.png +++ b/core/res/res/drawable-mdpi/ic_menu_close_clear_cancel.png diff --git a/core/res/res/drawable-mdpi/ic_menu_compass.png b/core/res/res/drawable-mdpi/ic_menu_compass.png Binary files differindex 25235cc..5e18e44 100644 --- a/core/res/res/drawable-mdpi/ic_menu_compass.png +++ b/core/res/res/drawable-mdpi/ic_menu_compass.png diff --git a/core/res/res/drawable-mdpi/ic_menu_compose.png b/core/res/res/drawable-mdpi/ic_menu_compose.png Binary files differindex a911141..cf2a9cd 100644 --- a/core/res/res/drawable-mdpi/ic_menu_compose.png +++ b/core/res/res/drawable-mdpi/ic_menu_compose.png diff --git a/core/res/res/drawable-mdpi/ic_menu_copy.png b/core/res/res/drawable-mdpi/ic_menu_copy.png Binary files differindex eee5540..a6ef784 100644 --- a/core/res/res/drawable-mdpi/ic_menu_copy.png +++ b/core/res/res/drawable-mdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-mdpi/ic_menu_copy_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_copy_holo_dark.png Binary files differindex 97e8ac1..7ac6d2f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_copy_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_copy_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_copy_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_copy_holo_light.png Binary files differindex 74cb920..89cb095 100644 --- a/core/res/res/drawable-mdpi/ic_menu_copy_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_copy_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_crop.png b/core/res/res/drawable-mdpi/ic_menu_crop.png Binary files differindex 30e40cf..e934508 100644 --- a/core/res/res/drawable-mdpi/ic_menu_crop.png +++ b/core/res/res/drawable-mdpi/ic_menu_crop.png diff --git a/core/res/res/drawable-mdpi/ic_menu_cut.png b/core/res/res/drawable-mdpi/ic_menu_cut.png Binary files differindex 865d1e0..f2aa194 100644 --- a/core/res/res/drawable-mdpi/ic_menu_cut.png +++ b/core/res/res/drawable-mdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-mdpi/ic_menu_cut_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_cut_holo_dark.png Binary files differindex baa5427..95860eb 100644 --- a/core/res/res/drawable-mdpi/ic_menu_cut_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_cut_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_cut_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_cut_holo_light.png Binary files differindex 8e6a93f..0bb34b4 100644 --- a/core/res/res/drawable-mdpi/ic_menu_cut_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_cut_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_day.png b/core/res/res/drawable-mdpi/ic_menu_day.png Binary files differindex 88bc348..ccd7f74 100644 --- a/core/res/res/drawable-mdpi/ic_menu_day.png +++ b/core/res/res/drawable-mdpi/ic_menu_day.png diff --git a/core/res/res/drawable-mdpi/ic_menu_delete.png b/core/res/res/drawable-mdpi/ic_menu_delete.png Binary files differindex e2c8700..8ba527f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_delete.png +++ b/core/res/res/drawable-mdpi/ic_menu_delete.png diff --git a/core/res/res/drawable-mdpi/ic_menu_directions.png b/core/res/res/drawable-mdpi/ic_menu_directions.png Binary files differindex d10e0b1..d1e23f7 100644 --- a/core/res/res/drawable-mdpi/ic_menu_directions.png +++ b/core/res/res/drawable-mdpi/ic_menu_directions.png diff --git a/core/res/res/drawable-mdpi/ic_menu_edit.png b/core/res/res/drawable-mdpi/ic_menu_edit.png Binary files differindex d0314e9..e0b29dc 100644 --- a/core/res/res/drawable-mdpi/ic_menu_edit.png +++ b/core/res/res/drawable-mdpi/ic_menu_edit.png diff --git a/core/res/res/drawable-mdpi/ic_menu_emoticons.png b/core/res/res/drawable-mdpi/ic_menu_emoticons.png Binary files differindex 8d1780f..cce115f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_emoticons.png +++ b/core/res/res/drawable-mdpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-mdpi/ic_menu_end_conversation.png b/core/res/res/drawable-mdpi/ic_menu_end_conversation.png Binary files differindex fb9f153..2e109aa 100644 --- a/core/res/res/drawable-mdpi/ic_menu_end_conversation.png +++ b/core/res/res/drawable-mdpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-mdpi/ic_menu_find.png b/core/res/res/drawable-mdpi/ic_menu_find.png Binary files differindex 82dcba7..888fe67 100644 --- a/core/res/res/drawable-mdpi/ic_menu_find.png +++ b/core/res/res/drawable-mdpi/ic_menu_find.png diff --git a/core/res/res/drawable-mdpi/ic_menu_find_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_find_holo_dark.png Binary files differindex 45f8fd3..1c4dfb0 100644 --- a/core/res/res/drawable-mdpi/ic_menu_find_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_find_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_find_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_find_holo_light.png Binary files differindex 9033f1e..c2f9a4a 100644 --- a/core/res/res/drawable-mdpi/ic_menu_find_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_find_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_find_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_menu_find_mtrl_alpha.png Binary files differindex 6be897d..96b38b5 100644 --- a/core/res/res/drawable-mdpi/ic_menu_find_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_menu_find_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_menu_forward.png b/core/res/res/drawable-mdpi/ic_menu_forward.png Binary files differindex 4a0b6ef..4df3cdf 100644 --- a/core/res/res/drawable-mdpi/ic_menu_forward.png +++ b/core/res/res/drawable-mdpi/ic_menu_forward.png diff --git a/core/res/res/drawable-mdpi/ic_menu_friendslist.png b/core/res/res/drawable-mdpi/ic_menu_friendslist.png Binary files differindex 8a29be3b..1252930 100644 --- a/core/res/res/drawable-mdpi/ic_menu_friendslist.png +++ b/core/res/res/drawable-mdpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-mdpi/ic_menu_gallery.png b/core/res/res/drawable-mdpi/ic_menu_gallery.png Binary files differindex d3a0200..bedab9d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_gallery.png +++ b/core/res/res/drawable-mdpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-mdpi/ic_menu_goto.png b/core/res/res/drawable-mdpi/ic_menu_goto.png Binary files differindex 5471f5b..f165d9f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_goto.png +++ b/core/res/res/drawable-mdpi/ic_menu_goto.png diff --git a/core/res/res/drawable-mdpi/ic_menu_help.png b/core/res/res/drawable-mdpi/ic_menu_help.png Binary files differindex dd24845..7fcfc4b 100644 --- a/core/res/res/drawable-mdpi/ic_menu_help.png +++ b/core/res/res/drawable-mdpi/ic_menu_help.png diff --git a/core/res/res/drawable-mdpi/ic_menu_help_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_help_holo_light.png Binary files differindex 010577f..46a4e7d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_help_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_help_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_home.png b/core/res/res/drawable-mdpi/ic_menu_home.png Binary files differindex f19f58d..b0427a1 100644 --- a/core/res/res/drawable-mdpi/ic_menu_home.png +++ b/core/res/res/drawable-mdpi/ic_menu_home.png diff --git a/core/res/res/drawable-mdpi/ic_menu_info_details.png b/core/res/res/drawable-mdpi/ic_menu_info_details.png Binary files differindex 18b15b5..0d7387d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_info_details.png +++ b/core/res/res/drawable-mdpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-mdpi/ic_menu_invite.png b/core/res/res/drawable-mdpi/ic_menu_invite.png Binary files differindex aa1898d..5de44ab 100644 --- a/core/res/res/drawable-mdpi/ic_menu_invite.png +++ b/core/res/res/drawable-mdpi/ic_menu_invite.png diff --git a/core/res/res/drawable-mdpi/ic_menu_login.png b/core/res/res/drawable-mdpi/ic_menu_login.png Binary files differindex 122ba33..7041d2e 100644 --- a/core/res/res/drawable-mdpi/ic_menu_login.png +++ b/core/res/res/drawable-mdpi/ic_menu_login.png diff --git a/core/res/res/drawable-mdpi/ic_menu_manage.png b/core/res/res/drawable-mdpi/ic_menu_manage.png Binary files differindex 8d3a9fa..5a2cc3c 100644 --- a/core/res/res/drawable-mdpi/ic_menu_manage.png +++ b/core/res/res/drawable-mdpi/ic_menu_manage.png diff --git a/core/res/res/drawable-mdpi/ic_menu_mapmode.png b/core/res/res/drawable-mdpi/ic_menu_mapmode.png Binary files differindex 1b50b5a..7100a0b 100644 --- a/core/res/res/drawable-mdpi/ic_menu_mapmode.png +++ b/core/res/res/drawable-mdpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-mdpi/ic_menu_mark.png b/core/res/res/drawable-mdpi/ic_menu_mark.png Binary files differindex 0c55506..dad8dbd 100644 --- a/core/res/res/drawable-mdpi/ic_menu_mark.png +++ b/core/res/res/drawable-mdpi/ic_menu_mark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_month.png b/core/res/res/drawable-mdpi/ic_menu_month.png Binary files differindex ff201df..673c5e9 100644 --- a/core/res/res/drawable-mdpi/ic_menu_month.png +++ b/core/res/res/drawable-mdpi/ic_menu_month.png diff --git a/core/res/res/drawable-mdpi/ic_menu_more.png b/core/res/res/drawable-mdpi/ic_menu_more.png Binary files differindex 263fef8..5c968b1 100644 --- a/core/res/res/drawable-mdpi/ic_menu_more.png +++ b/core/res/res/drawable-mdpi/ic_menu_more.png diff --git a/core/res/res/drawable-mdpi/ic_menu_moreoverflow.png b/core/res/res/drawable-mdpi/ic_menu_moreoverflow.png Binary files differindex e478922..6fcb270 100644 --- a/core/res/res/drawable-mdpi/ic_menu_moreoverflow.png +++ b/core/res/res/drawable-mdpi/ic_menu_moreoverflow.png diff --git a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_dark.png Binary files differindex 48d6c78..9f53bd2 100644 --- a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_light.png Binary files differindex 50ff8fc..ebbe964 100644 --- a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_focused_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png Binary files differindex ba704b6..9676f44 100644 --- a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png Binary files differindex 01d6816..09cd9f4 100644 --- a/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_my_calendar.png b/core/res/res/drawable-mdpi/ic_menu_my_calendar.png Binary files differindex 991dfb0..f25cf0b 100644 --- a/core/res/res/drawable-mdpi/ic_menu_my_calendar.png +++ b/core/res/res/drawable-mdpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-mdpi/ic_menu_mylocation.png b/core/res/res/drawable-mdpi/ic_menu_mylocation.png Binary files differindex 2a61a97..e799ec8 100644 --- a/core/res/res/drawable-mdpi/ic_menu_mylocation.png +++ b/core/res/res/drawable-mdpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-mdpi/ic_menu_myplaces.png b/core/res/res/drawable-mdpi/ic_menu_myplaces.png Binary files differindex 75f2c9b..8bbcf94 100644 --- a/core/res/res/drawable-mdpi/ic_menu_myplaces.png +++ b/core/res/res/drawable-mdpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-mdpi/ic_menu_notifications.png b/core/res/res/drawable-mdpi/ic_menu_notifications.png Binary files differindex 2474d56..873fb4d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_notifications.png +++ b/core/res/res/drawable-mdpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-mdpi/ic_menu_paste.png b/core/res/res/drawable-mdpi/ic_menu_paste.png Binary files differindex 8c9916c..a47f436 100644 --- a/core/res/res/drawable-mdpi/ic_menu_paste.png +++ b/core/res/res/drawable-mdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-mdpi/ic_menu_paste_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_paste_holo_dark.png Binary files differindex 093496d..e87ae6d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_paste_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_paste_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_paste_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_paste_holo_light.png Binary files differindex 61fd91c..1d130d3 100644 --- a/core/res/res/drawable-mdpi/ic_menu_paste_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_paste_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_play_clip.png b/core/res/res/drawable-mdpi/ic_menu_play_clip.png Binary files differindex 5983c22..acb789d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_play_clip.png +++ b/core/res/res/drawable-mdpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-mdpi/ic_menu_preferences.png b/core/res/res/drawable-mdpi/ic_menu_preferences.png Binary files differindex ccc50e6..6e6e6fe 100644 --- a/core/res/res/drawable-mdpi/ic_menu_preferences.png +++ b/core/res/res/drawable-mdpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-mdpi/ic_menu_recent_history.png b/core/res/res/drawable-mdpi/ic_menu_recent_history.png Binary files differindex e5f8e2d..afc5257 100644 --- a/core/res/res/drawable-mdpi/ic_menu_recent_history.png +++ b/core/res/res/drawable-mdpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-mdpi/ic_menu_report_image.png b/core/res/res/drawable-mdpi/ic_menu_report_image.png Binary files differindex 414b0ae..a3a786c 100644 --- a/core/res/res/drawable-mdpi/ic_menu_report_image.png +++ b/core/res/res/drawable-mdpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-mdpi/ic_menu_revert.png b/core/res/res/drawable-mdpi/ic_menu_revert.png Binary files differindex 7a45163..219ecd8 100644 --- a/core/res/res/drawable-mdpi/ic_menu_revert.png +++ b/core/res/res/drawable-mdpi/ic_menu_revert.png diff --git a/core/res/res/drawable-mdpi/ic_menu_rotate.png b/core/res/res/drawable-mdpi/ic_menu_rotate.png Binary files differindex 35fa56d..dbc824a 100644 --- a/core/res/res/drawable-mdpi/ic_menu_rotate.png +++ b/core/res/res/drawable-mdpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-mdpi/ic_menu_save.png b/core/res/res/drawable-mdpi/ic_menu_save.png Binary files differindex 5f66864..ae9926f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_save.png +++ b/core/res/res/drawable-mdpi/ic_menu_save.png diff --git a/core/res/res/drawable-mdpi/ic_menu_search.png b/core/res/res/drawable-mdpi/ic_menu_search.png Binary files differindex d18f542..94da2dd 100644 --- a/core/res/res/drawable-mdpi/ic_menu_search.png +++ b/core/res/res/drawable-mdpi/ic_menu_search.png diff --git a/core/res/res/drawable-mdpi/ic_menu_search_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_search_holo_dark.png Binary files differindex 906da53..9fccb9c 100644 --- a/core/res/res/drawable-mdpi/ic_menu_search_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_search_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_search_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_search_holo_light.png Binary files differindex 0350a43..29f2b5f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_search_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_search_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_search_mtrl_alpha.png b/core/res/res/drawable-mdpi/ic_menu_search_mtrl_alpha.png Binary files differindex 0fb57b2..02d3775 100644 --- a/core/res/res/drawable-mdpi/ic_menu_search_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/ic_menu_search_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/ic_menu_selectall_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_selectall_holo_dark.png Binary files differindex da64c75..7869668 100644 --- a/core/res/res/drawable-mdpi/ic_menu_selectall_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_selectall_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_selectall_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_selectall_holo_light.png Binary files differindex e0dd67c..bbbd2f1 100644 --- a/core/res/res/drawable-mdpi/ic_menu_selectall_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_selectall_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_send.png b/core/res/res/drawable-mdpi/ic_menu_send.png Binary files differindex 06b4717..0d1e251 100644 --- a/core/res/res/drawable-mdpi/ic_menu_send.png +++ b/core/res/res/drawable-mdpi/ic_menu_send.png diff --git a/core/res/res/drawable-mdpi/ic_menu_set_as.png b/core/res/res/drawable-mdpi/ic_menu_set_as.png Binary files differindex 98cc305..98ec156 100644 --- a/core/res/res/drawable-mdpi/ic_menu_set_as.png +++ b/core/res/res/drawable-mdpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-mdpi/ic_menu_settings_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_settings_holo_light.png Binary files differindex f32a37e..9a6e196 100644 --- a/core/res/res/drawable-mdpi/ic_menu_settings_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_settings_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_share.png b/core/res/res/drawable-mdpi/ic_menu_share.png Binary files differindex d89ca5f..27f3541 100644 --- a/core/res/res/drawable-mdpi/ic_menu_share.png +++ b/core/res/res/drawable-mdpi/ic_menu_share.png diff --git a/core/res/res/drawable-mdpi/ic_menu_share_holo_dark.png b/core/res/res/drawable-mdpi/ic_menu_share_holo_dark.png Binary files differindex 6bf21e3..746a081 100644 --- a/core/res/res/drawable-mdpi/ic_menu_share_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_menu_share_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_menu_share_holo_light.png b/core/res/res/drawable-mdpi/ic_menu_share_holo_light.png Binary files differindex 70fe31a..ad6482d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_share_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_menu_share_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_menu_slideshow.png b/core/res/res/drawable-mdpi/ic_menu_slideshow.png Binary files differindex 72bfcd9..f453a50 100644 --- a/core/res/res/drawable-mdpi/ic_menu_slideshow.png +++ b/core/res/res/drawable-mdpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-mdpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-mdpi/ic_menu_sort_alphabetically.png Binary files differindex 0c5ffad..3c6f96a 100644 --- a/core/res/res/drawable-mdpi/ic_menu_sort_alphabetically.png +++ b/core/res/res/drawable-mdpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-mdpi/ic_menu_sort_by_size.png b/core/res/res/drawable-mdpi/ic_menu_sort_by_size.png Binary files differindex 19e8d1b..6e16a7e 100644 --- a/core/res/res/drawable-mdpi/ic_menu_sort_by_size.png +++ b/core/res/res/drawable-mdpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-mdpi/ic_menu_star.png b/core/res/res/drawable-mdpi/ic_menu_star.png Binary files differindex 0c22fe8..3c2be48 100644 --- a/core/res/res/drawable-mdpi/ic_menu_star.png +++ b/core/res/res/drawable-mdpi/ic_menu_star.png diff --git a/core/res/res/drawable-mdpi/ic_menu_start_conversation.png b/core/res/res/drawable-mdpi/ic_menu_start_conversation.png Binary files differindex 24b6540..83a7e8f 100644 --- a/core/res/res/drawable-mdpi/ic_menu_start_conversation.png +++ b/core/res/res/drawable-mdpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-mdpi/ic_menu_stop.png b/core/res/res/drawable-mdpi/ic_menu_stop.png Binary files differindex efb4036..acf6c9d 100644 --- a/core/res/res/drawable-mdpi/ic_menu_stop.png +++ b/core/res/res/drawable-mdpi/ic_menu_stop.png diff --git a/core/res/res/drawable-mdpi/ic_menu_today.png b/core/res/res/drawable-mdpi/ic_menu_today.png Binary files differindex 8c248ae..1216bb9 100644 --- a/core/res/res/drawable-mdpi/ic_menu_today.png +++ b/core/res/res/drawable-mdpi/ic_menu_today.png diff --git a/core/res/res/drawable-mdpi/ic_menu_upload.png b/core/res/res/drawable-mdpi/ic_menu_upload.png Binary files differindex 9e8459a..bbe153a 100644 --- a/core/res/res/drawable-mdpi/ic_menu_upload.png +++ b/core/res/res/drawable-mdpi/ic_menu_upload.png diff --git a/core/res/res/drawable-mdpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-mdpi/ic_menu_upload_you_tube.png Binary files differindex a67c409..1614017 100644 --- a/core/res/res/drawable-mdpi/ic_menu_upload_you_tube.png +++ b/core/res/res/drawable-mdpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-mdpi/ic_menu_view.png b/core/res/res/drawable-mdpi/ic_menu_view.png Binary files differindex 082810d..512c4de 100644 --- a/core/res/res/drawable-mdpi/ic_menu_view.png +++ b/core/res/res/drawable-mdpi/ic_menu_view.png diff --git a/core/res/res/drawable-mdpi/ic_menu_week.png b/core/res/res/drawable-mdpi/ic_menu_week.png Binary files differindex e11e5f1..9f4d7f0 100644 --- a/core/res/res/drawable-mdpi/ic_menu_week.png +++ b/core/res/res/drawable-mdpi/ic_menu_week.png diff --git a/core/res/res/drawable-mdpi/ic_menu_zoom.png b/core/res/res/drawable-mdpi/ic_menu_zoom.png Binary files differindex 062d6f3..a4747b3 100644 --- a/core/res/res/drawable-mdpi/ic_menu_zoom.png +++ b/core/res/res/drawable-mdpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-mdpi/ic_notification_cast_0.png b/core/res/res/drawable-mdpi/ic_notification_cast_0.png Binary files differindex a51a3cb..1bfa960 100644 --- a/core/res/res/drawable-mdpi/ic_notification_cast_0.png +++ b/core/res/res/drawable-mdpi/ic_notification_cast_0.png diff --git a/core/res/res/drawable-mdpi/ic_notification_cast_1.png b/core/res/res/drawable-mdpi/ic_notification_cast_1.png Binary files differindex e081367..29bd473 100644 --- a/core/res/res/drawable-mdpi/ic_notification_cast_1.png +++ b/core/res/res/drawable-mdpi/ic_notification_cast_1.png diff --git a/core/res/res/drawable-mdpi/ic_notification_cast_2.png b/core/res/res/drawable-mdpi/ic_notification_cast_2.png Binary files differindex a7f4de4..3b0f65f 100644 --- a/core/res/res/drawable-mdpi/ic_notification_cast_2.png +++ b/core/res/res/drawable-mdpi/ic_notification_cast_2.png diff --git a/core/res/res/drawable-mdpi/ic_notification_clear_all.png b/core/res/res/drawable-mdpi/ic_notification_clear_all.png Binary files differindex f2114d7..56e0873 100644 --- a/core/res/res/drawable-mdpi/ic_notification_clear_all.png +++ b/core/res/res/drawable-mdpi/ic_notification_clear_all.png diff --git a/core/res/res/drawable-mdpi/ic_notification_ime_default.png b/core/res/res/drawable-mdpi/ic_notification_ime_default.png Binary files differindex 7d97eb5..c00da01 100644 --- a/core/res/res/drawable-mdpi/ic_notification_ime_default.png +++ b/core/res/res/drawable-mdpi/ic_notification_ime_default.png diff --git a/core/res/res/drawable-mdpi/ic_notification_overlay.9.png b/core/res/res/drawable-mdpi/ic_notification_overlay.9.png Binary files differindex 1a3063c..20df353 100644 --- a/core/res/res/drawable-mdpi/ic_notification_overlay.9.png +++ b/core/res/res/drawable-mdpi/ic_notification_overlay.9.png diff --git a/core/res/res/drawable-mdpi/ic_partial_secure.png b/core/res/res/drawable-mdpi/ic_partial_secure.png Binary files differindex 76ba96a..b454575 100644 --- a/core/res/res/drawable-mdpi/ic_partial_secure.png +++ b/core/res/res/drawable-mdpi/ic_partial_secure.png diff --git a/core/res/res/drawable-mdpi/ic_popup_disk_full.png b/core/res/res/drawable-mdpi/ic_popup_disk_full.png Binary files differindex e6da5d0..1780af9 100644 --- a/core/res/res/drawable-mdpi/ic_popup_disk_full.png +++ b/core/res/res/drawable-mdpi/ic_popup_disk_full.png diff --git a/core/res/res/drawable-mdpi/ic_popup_reminder.png b/core/res/res/drawable-mdpi/ic_popup_reminder.png Binary files differindex af15279..e1b84a9 100644 --- a/core/res/res/drawable-mdpi/ic_popup_reminder.png +++ b/core/res/res/drawable-mdpi/ic_popup_reminder.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_1.png b/core/res/res/drawable-mdpi/ic_popup_sync_1.png Binary files differindex 13d8cdd..cbe5e08 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_1.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_1.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_2.png b/core/res/res/drawable-mdpi/ic_popup_sync_2.png Binary files differindex 6ca162a..75b79d9 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_2.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_2.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_3.png b/core/res/res/drawable-mdpi/ic_popup_sync_3.png Binary files differindex a7c21dd..258400c 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_3.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_3.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_4.png b/core/res/res/drawable-mdpi/ic_popup_sync_4.png Binary files differindex e9be04e..317a9e5 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_4.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_4.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_5.png b/core/res/res/drawable-mdpi/ic_popup_sync_5.png Binary files differindex 65d87c4..6bf7bc4 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_5.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_5.png diff --git a/core/res/res/drawable-mdpi/ic_popup_sync_6.png b/core/res/res/drawable-mdpi/ic_popup_sync_6.png Binary files differindex 2015c88..0f215ed 100644 --- a/core/res/res/drawable-mdpi/ic_popup_sync_6.png +++ b/core/res/res/drawable-mdpi/ic_popup_sync_6.png diff --git a/core/res/res/drawable-mdpi/ic_print.png b/core/res/res/drawable-mdpi/ic_print.png Binary files differindex a3954b5..49a0120 100644 --- a/core/res/res/drawable-mdpi/ic_print.png +++ b/core/res/res/drawable-mdpi/ic_print.png diff --git a/core/res/res/drawable-mdpi/ic_print_error.png b/core/res/res/drawable-mdpi/ic_print_error.png Binary files differindex 44109eb..8fe7354 100644 --- a/core/res/res/drawable-mdpi/ic_print_error.png +++ b/core/res/res/drawable-mdpi/ic_print_error.png diff --git a/core/res/res/drawable-mdpi/ic_search.png b/core/res/res/drawable-mdpi/ic_search.png Binary files differindex 66145e0..65b6592 100644 --- a/core/res/res/drawable-mdpi/ic_search.png +++ b/core/res/res/drawable-mdpi/ic_search.png diff --git a/core/res/res/drawable-mdpi/ic_search_api_holo_dark.png b/core/res/res/drawable-mdpi/ic_search_api_holo_dark.png Binary files differindex 4771a56..d00b4e1 100644 --- a/core/res/res/drawable-mdpi/ic_search_api_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_search_api_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_search_api_holo_light.png b/core/res/res/drawable-mdpi/ic_search_api_holo_light.png Binary files differindex 60a55f8..89c5fdf 100644 --- a/core/res/res/drawable-mdpi/ic_search_api_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_search_api_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_search_category_default.png b/core/res/res/drawable-mdpi/ic_search_category_default.png Binary files differindex 94446db..9eaa663 100644 --- a/core/res/res/drawable-mdpi/ic_search_category_default.png +++ b/core/res/res/drawable-mdpi/ic_search_category_default.png diff --git a/core/res/res/drawable-mdpi/ic_secure.png b/core/res/res/drawable-mdpi/ic_secure.png Binary files differindex 4f15fc4..b82cf12 100644 --- a/core/res/res/drawable-mdpi/ic_secure.png +++ b/core/res/res/drawable-mdpi/ic_secure.png diff --git a/core/res/res/drawable-mdpi/ic_settings.png b/core/res/res/drawable-mdpi/ic_settings.png Binary files differindex e6237eb..f27c916 100644 --- a/core/res/res/drawable-mdpi/ic_settings.png +++ b/core/res/res/drawable-mdpi/ic_settings.png diff --git a/core/res/res/drawable-mdpi/ic_settings_language.png b/core/res/res/drawable-mdpi/ic_settings_language.png Binary files differindex f8aca67..b380430 100644 --- a/core/res/res/drawable-mdpi/ic_settings_language.png +++ b/core/res/res/drawable-mdpi/ic_settings_language.png diff --git a/core/res/res/drawable-mdpi/ic_sim_card_multi_24px_clr.png b/core/res/res/drawable-mdpi/ic_sim_card_multi_24px_clr.png Binary files differindex 5d21285..c77e323 100644 --- a/core/res/res/drawable-mdpi/ic_sim_card_multi_24px_clr.png +++ b/core/res/res/drawable-mdpi/ic_sim_card_multi_24px_clr.png diff --git a/core/res/res/drawable-mdpi/ic_sim_card_multi_48px_clr.png b/core/res/res/drawable-mdpi/ic_sim_card_multi_48px_clr.png Binary files differindex 249379d..2809be4 100644 --- a/core/res/res/drawable-mdpi/ic_sim_card_multi_48px_clr.png +++ b/core/res/res/drawable-mdpi/ic_sim_card_multi_48px_clr.png diff --git a/core/res/res/drawable-mdpi/ic_star_black_16dp.png b/core/res/res/drawable-mdpi/ic_star_black_16dp.png Binary files differindex 3f5d25e..748dd53 100644 --- a/core/res/res/drawable-mdpi/ic_star_black_16dp.png +++ b/core/res/res/drawable-mdpi/ic_star_black_16dp.png diff --git a/core/res/res/drawable-mdpi/ic_star_black_36dp.png b/core/res/res/drawable-mdpi/ic_star_black_36dp.png Binary files differindex 92a0f58..d8704dd 100644 --- a/core/res/res/drawable-mdpi/ic_star_black_36dp.png +++ b/core/res/res/drawable-mdpi/ic_star_black_36dp.png diff --git a/core/res/res/drawable-mdpi/ic_star_black_48dp.png b/core/res/res/drawable-mdpi/ic_star_black_48dp.png Binary files differindex c636ce8..8e540e9 100644 --- a/core/res/res/drawable-mdpi/ic_star_black_48dp.png +++ b/core/res/res/drawable-mdpi/ic_star_black_48dp.png diff --git a/core/res/res/drawable-mdpi/ic_star_half_black_16dp.png b/core/res/res/drawable-mdpi/ic_star_half_black_16dp.png Binary files differindex beea92a..a959022 100644 --- a/core/res/res/drawable-mdpi/ic_star_half_black_16dp.png +++ b/core/res/res/drawable-mdpi/ic_star_half_black_16dp.png diff --git a/core/res/res/drawable-mdpi/ic_star_half_black_36dp.png b/core/res/res/drawable-mdpi/ic_star_half_black_36dp.png Binary files differindex 5caae60..6e29456 100644 --- a/core/res/res/drawable-mdpi/ic_star_half_black_36dp.png +++ b/core/res/res/drawable-mdpi/ic_star_half_black_36dp.png diff --git a/core/res/res/drawable-mdpi/ic_star_half_black_48dp.png b/core/res/res/drawable-mdpi/ic_star_half_black_48dp.png Binary files differindex d53afa22..62c7f8b 100644 --- a/core/res/res/drawable-mdpi/ic_star_half_black_48dp.png +++ b/core/res/res/drawable-mdpi/ic_star_half_black_48dp.png diff --git a/core/res/res/drawable-mdpi/ic_sysbar_quicksettings.png b/core/res/res/drawable-mdpi/ic_sysbar_quicksettings.png Binary files differindex 7928104..760e086 100644 --- a/core/res/res/drawable-mdpi/ic_sysbar_quicksettings.png +++ b/core/res/res/drawable-mdpi/ic_sysbar_quicksettings.png diff --git a/core/res/res/drawable-mdpi/ic_vibrate.png b/core/res/res/drawable-mdpi/ic_vibrate.png Binary files differindex 4fecce1..87d9d0d 100644 --- a/core/res/res/drawable-mdpi/ic_vibrate.png +++ b/core/res/res/drawable-mdpi/ic_vibrate.png diff --git a/core/res/res/drawable-mdpi/ic_vibrate_small.png b/core/res/res/drawable-mdpi/ic_vibrate_small.png Binary files differindex f04804e..d14a43d 100644 --- a/core/res/res/drawable-mdpi/ic_vibrate_small.png +++ b/core/res/res/drawable-mdpi/ic_vibrate_small.png diff --git a/core/res/res/drawable-mdpi/ic_voice_search.png b/core/res/res/drawable-mdpi/ic_voice_search.png Binary files differindex b2535fb..f1b189d 100644 --- a/core/res/res/drawable-mdpi/ic_voice_search.png +++ b/core/res/res/drawable-mdpi/ic_voice_search.png diff --git a/core/res/res/drawable-mdpi/ic_voice_search_api_holo_dark.png b/core/res/res/drawable-mdpi/ic_voice_search_api_holo_dark.png Binary files differindex fcc2105..662b714 100644 --- a/core/res/res/drawable-mdpi/ic_voice_search_api_holo_dark.png +++ b/core/res/res/drawable-mdpi/ic_voice_search_api_holo_dark.png diff --git a/core/res/res/drawable-mdpi/ic_voice_search_api_holo_light.png b/core/res/res/drawable-mdpi/ic_voice_search_api_holo_light.png Binary files differindex b516b95..ac04a0e 100644 --- a/core/res/res/drawable-mdpi/ic_voice_search_api_holo_light.png +++ b/core/res/res/drawable-mdpi/ic_voice_search_api_holo_light.png diff --git a/core/res/res/drawable-mdpi/ic_volume.png b/core/res/res/drawable-mdpi/ic_volume.png Binary files differindex 20aa030..b747cdf 100644 --- a/core/res/res/drawable-mdpi/ic_volume.png +++ b/core/res/res/drawable-mdpi/ic_volume.png diff --git a/core/res/res/drawable-mdpi/ic_volume_bluetooth_ad2p.png b/core/res/res/drawable-mdpi/ic_volume_bluetooth_ad2p.png Binary files differindex cf86ab3..bef1ebd 100644 --- a/core/res/res/drawable-mdpi/ic_volume_bluetooth_ad2p.png +++ b/core/res/res/drawable-mdpi/ic_volume_bluetooth_ad2p.png diff --git a/core/res/res/drawable-mdpi/ic_volume_bluetooth_in_call.png b/core/res/res/drawable-mdpi/ic_volume_bluetooth_in_call.png Binary files differindex 94801fc..d4d019c 100644 --- a/core/res/res/drawable-mdpi/ic_volume_bluetooth_in_call.png +++ b/core/res/res/drawable-mdpi/ic_volume_bluetooth_in_call.png diff --git a/core/res/res/drawable-mdpi/ic_volume_off.png b/core/res/res/drawable-mdpi/ic_volume_off.png Binary files differindex fefb9c4..b81b28e 100644 --- a/core/res/res/drawable-mdpi/ic_volume_off.png +++ b/core/res/res/drawable-mdpi/ic_volume_off.png diff --git a/core/res/res/drawable-mdpi/ic_volume_off_small.png b/core/res/res/drawable-mdpi/ic_volume_off_small.png Binary files differindex 529298c..dc7707e 100644 --- a/core/res/res/drawable-mdpi/ic_volume_off_small.png +++ b/core/res/res/drawable-mdpi/ic_volume_off_small.png diff --git a/core/res/res/drawable-mdpi/ic_volume_small.png b/core/res/res/drawable-mdpi/ic_volume_small.png Binary files differindex 2a7ec03..bd7ce41 100644 --- a/core/res/res/drawable-mdpi/ic_volume_small.png +++ b/core/res/res/drawable-mdpi/ic_volume_small.png diff --git a/core/res/res/drawable-mdpi/icon_highlight_rectangle.9.png b/core/res/res/drawable-mdpi/icon_highlight_rectangle.9.png Binary files differindex 3dafde3..99d3d6d 100644 --- a/core/res/res/drawable-mdpi/icon_highlight_rectangle.9.png +++ b/core/res/res/drawable-mdpi/icon_highlight_rectangle.9.png diff --git a/core/res/res/drawable-mdpi/icon_highlight_square.9.png b/core/res/res/drawable-mdpi/icon_highlight_square.9.png Binary files differindex a93a3f8..8fb1992 100644 --- a/core/res/res/drawable-mdpi/icon_highlight_square.9.png +++ b/core/res/res/drawable-mdpi/icon_highlight_square.9.png diff --git a/core/res/res/drawable-mdpi/ime_qwerty.png b/core/res/res/drawable-mdpi/ime_qwerty.png Binary files differindex e6e5cda..997b1e2 100644 --- a/core/res/res/drawable-mdpi/ime_qwerty.png +++ b/core/res/res/drawable-mdpi/ime_qwerty.png diff --git a/core/res/res/drawable-mdpi/indicator_input_error.png b/core/res/res/drawable-mdpi/indicator_input_error.png Binary files differindex 775e417..d833df3 100644 --- a/core/res/res/drawable-mdpi/indicator_input_error.png +++ b/core/res/res/drawable-mdpi/indicator_input_error.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_green.png b/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_green.png Binary files differindex 334a8e0..1fc4d1e 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_green.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_green.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_yellow.png b/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_yellow.png Binary files differindex 2e011ca..f93f21e 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_yellow.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_long_left_yellow.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_long_middle_yellow.png b/core/res/res/drawable-mdpi/jog_dial_arrow_long_middle_yellow.png Binary files differindex 323745e..1906b60 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_long_middle_yellow.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_long_middle_yellow.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_red.png b/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_red.png Binary files differindex 1e97c9a..2919c01 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_red.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_red.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_yellow.png b/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_yellow.png Binary files differindex 3536e58..5a00bd5 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_yellow.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_long_right_yellow.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_short_left.png b/core/res/res/drawable-mdpi/jog_dial_arrow_short_left.png Binary files differindex 4a4ab3ae..8aedee2 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_short_left.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_short_left.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_short_left_and_right.png b/core/res/res/drawable-mdpi/jog_dial_arrow_short_left_and_right.png Binary files differindex 987cfa7..9755344 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_short_left_and_right.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_short_left_and_right.png diff --git a/core/res/res/drawable-mdpi/jog_dial_arrow_short_right.png b/core/res/res/drawable-mdpi/jog_dial_arrow_short_right.png Binary files differindex ee79875..c6c8639 100644 --- a/core/res/res/drawable-mdpi/jog_dial_arrow_short_right.png +++ b/core/res/res/drawable-mdpi/jog_dial_arrow_short_right.png diff --git a/core/res/res/drawable-mdpi/jog_dial_bg.png b/core/res/res/drawable-mdpi/jog_dial_bg.png Binary files differindex 2f8f24d..e335d85 100644 --- a/core/res/res/drawable-mdpi/jog_dial_bg.png +++ b/core/res/res/drawable-mdpi/jog_dial_bg.png diff --git a/core/res/res/drawable-mdpi/jog_dial_dimple.png b/core/res/res/drawable-mdpi/jog_dial_dimple.png Binary files differindex 85d3a43..ed7ef0e 100644 --- a/core/res/res/drawable-mdpi/jog_dial_dimple.png +++ b/core/res/res/drawable-mdpi/jog_dial_dimple.png diff --git a/core/res/res/drawable-mdpi/jog_dial_dimple_dim.png b/core/res/res/drawable-mdpi/jog_dial_dimple_dim.png Binary files differindex 664e89d..10fdc23 100644 --- a/core/res/res/drawable-mdpi/jog_dial_dimple_dim.png +++ b/core/res/res/drawable-mdpi/jog_dial_dimple_dim.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differindex 0f1190b..80b4504 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_gray.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differindex 88ca2e0..bf0a5d2 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_green.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differindex f0f9436..20266ae 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_red.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differindex 8aa1263..bd05285 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_normal.9.png Binary files differindex 4a89f4b..5a433eb 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_normal.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_pressed.9.png Binary files differindex 78c7a9f..007dd85 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_left_end_pressed.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differindex a6ee329..4249651 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_gray.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differindex 386ed9d..e5b00c0 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_green.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differindex 0242a42..677f709 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_red.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differindex b8c2e18..6c77b1d 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_normal.9.png Binary files differindex 36f9a32..f76ccfc 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_normal.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_pressed.9.png Binary files differindex 8bdfd84..1623407 100644 --- a/core/res/res/drawable-mdpi/jog_tab_bar_right_end_pressed.9.png +++ b/core/res/res/drawable-mdpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-mdpi/jog_tab_left_confirm_gray.png Binary files differindex 3dce451..d0de9de 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_confirm_gray.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-mdpi/jog_tab_left_confirm_green.png Binary files differindex 829b146..b1da362 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_confirm_green.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-mdpi/jog_tab_left_confirm_red.png Binary files differindex f2ceb2e..6713559 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_confirm_red.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-mdpi/jog_tab_left_confirm_yellow.png Binary files differindex 5a29262..4afbab5 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_confirm_yellow.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_normal.png b/core/res/res/drawable-mdpi/jog_tab_left_normal.png Binary files differindex eb91e97..4c08e7f 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_normal.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-mdpi/jog_tab_left_pressed.png b/core/res/res/drawable-mdpi/jog_tab_left_pressed.png Binary files differindex 9951992..0b5f242 100644 --- a/core/res/res/drawable-mdpi/jog_tab_left_pressed.png +++ b/core/res/res/drawable-mdpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-mdpi/jog_tab_right_confirm_gray.png Binary files differindex d446480..bfaa029 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_confirm_gray.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-mdpi/jog_tab_right_confirm_green.png Binary files differindex 96d7acb..b11fce5 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_confirm_green.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-mdpi/jog_tab_right_confirm_red.png Binary files differindex 2e1e105..0b368cd 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_confirm_red.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-mdpi/jog_tab_right_confirm_yellow.png Binary files differindex 8224c38..ac5855d 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_confirm_yellow.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_normal.png b/core/res/res/drawable-mdpi/jog_tab_right_normal.png Binary files differindex f2113f2..5f833f2 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_normal.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-mdpi/jog_tab_right_pressed.png b/core/res/res/drawable-mdpi/jog_tab_right_pressed.png Binary files differindex 65cd51e..1ac1b9c 100644 --- a/core/res/res/drawable-mdpi/jog_tab_right_pressed.png +++ b/core/res/res/drawable-mdpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-mdpi/jog_tab_target_gray.png b/core/res/res/drawable-mdpi/jog_tab_target_gray.png Binary files differindex a1e25e1..6556a0d 100644 --- a/core/res/res/drawable-mdpi/jog_tab_target_gray.png +++ b/core/res/res/drawable-mdpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-mdpi/jog_tab_target_green.png b/core/res/res/drawable-mdpi/jog_tab_target_green.png Binary files differindex d1377ee..9c99604 100644 --- a/core/res/res/drawable-mdpi/jog_tab_target_green.png +++ b/core/res/res/drawable-mdpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-mdpi/jog_tab_target_red.png b/core/res/res/drawable-mdpi/jog_tab_target_red.png Binary files differindex b840bc6..54c6348 100644 --- a/core/res/res/drawable-mdpi/jog_tab_target_red.png +++ b/core/res/res/drawable-mdpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-mdpi/jog_tab_target_yellow.png b/core/res/res/drawable-mdpi/jog_tab_target_yellow.png Binary files differindex 58b2e62..17d0c63 100644 --- a/core/res/res/drawable-mdpi/jog_tab_target_yellow.png +++ b/core/res/res/drawable-mdpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-mdpi/keyboard_accessory_bg_landscape.9.png b/core/res/res/drawable-mdpi/keyboard_accessory_bg_landscape.9.png Binary files differindex 8f828f6..eedff87 100644 --- a/core/res/res/drawable-mdpi/keyboard_accessory_bg_landscape.9.png +++ b/core/res/res/drawable-mdpi/keyboard_accessory_bg_landscape.9.png diff --git a/core/res/res/drawable-mdpi/keyboard_background.9.png b/core/res/res/drawable-mdpi/keyboard_background.9.png Binary files differindex 1d3ce05..1496311 100644 --- a/core/res/res/drawable-mdpi/keyboard_background.9.png +++ b/core/res/res/drawable-mdpi/keyboard_background.9.png diff --git a/core/res/res/drawable-mdpi/keyboard_key_feedback_background.9.png b/core/res/res/drawable-mdpi/keyboard_key_feedback_background.9.png Binary files differindex 2a80f09..2759587 100644 --- a/core/res/res/drawable-mdpi/keyboard_key_feedback_background.9.png +++ b/core/res/res/drawable-mdpi/keyboard_key_feedback_background.9.png diff --git a/core/res/res/drawable-mdpi/keyboard_key_feedback_more_background.9.png b/core/res/res/drawable-mdpi/keyboard_key_feedback_more_background.9.png Binary files differindex 29aa285..1138e96 100644 --- a/core/res/res/drawable-mdpi/keyboard_key_feedback_more_background.9.png +++ b/core/res/res/drawable-mdpi/keyboard_key_feedback_more_background.9.png diff --git a/core/res/res/drawable-mdpi/keyboard_popup_panel_background.9.png b/core/res/res/drawable-mdpi/keyboard_popup_panel_background.9.png Binary files differindex 36d75df..864cf98 100644 --- a/core/res/res/drawable-mdpi/keyboard_popup_panel_background.9.png +++ b/core/res/res/drawable-mdpi/keyboard_popup_panel_background.9.png diff --git a/core/res/res/drawable-mdpi/keyboard_popup_panel_trans_background.9.png b/core/res/res/drawable-mdpi/keyboard_popup_panel_trans_background.9.png Binary files differindex 4ba2a49..5a983ce 100644 --- a/core/res/res/drawable-mdpi/keyboard_popup_panel_trans_background.9.png +++ b/core/res/res/drawable-mdpi/keyboard_popup_panel_trans_background.9.png diff --git a/core/res/res/drawable-mdpi/light_header.9.png b/core/res/res/drawable-mdpi/light_header.9.png Binary files differindex fcd9e2d..8f6c475 100644 --- a/core/res/res/drawable-mdpi/light_header.9.png +++ b/core/res/res/drawable-mdpi/light_header.9.png diff --git a/core/res/res/drawable-mdpi/list_activated_holo.9.png b/core/res/res/drawable-mdpi/list_activated_holo.9.png Binary files differindex 3bf8e03..6610b14 100644 --- a/core/res/res/drawable-mdpi/list_activated_holo.9.png +++ b/core/res/res/drawable-mdpi/list_activated_holo.9.png diff --git a/core/res/res/drawable-mdpi/list_divider_holo_dark.9.png b/core/res/res/drawable-mdpi/list_divider_holo_dark.9.png Binary files differindex 986ab0b..d564cd4 100644 --- a/core/res/res/drawable-mdpi/list_divider_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_divider_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_divider_holo_light.9.png b/core/res/res/drawable-mdpi/list_divider_holo_light.9.png Binary files differindex 0279e17..be0d0b3 100644 --- a/core/res/res/drawable-mdpi/list_divider_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_divider_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-mdpi/list_divider_horizontal_holo_dark.9.png Binary files differindex 0a4347f..b302f08 100644 --- a/core/res/res/drawable-mdpi/list_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_focused_holo.9.png b/core/res/res/drawable-mdpi/list_focused_holo.9.png Binary files differindex 00f05d8..cfb6d799 100644 --- a/core/res/res/drawable-mdpi/list_focused_holo.9.png +++ b/core/res/res/drawable-mdpi/list_focused_holo.9.png diff --git a/core/res/res/drawable-mdpi/list_longpressed_holo.9.png b/core/res/res/drawable-mdpi/list_longpressed_holo.9.png Binary files differindex 3bf8e03..6610b14 100644 --- a/core/res/res/drawable-mdpi/list_longpressed_holo.9.png +++ b/core/res/res/drawable-mdpi/list_longpressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/list_longpressed_holo_dark.9.png b/core/res/res/drawable-mdpi/list_longpressed_holo_dark.9.png Binary files differindex c6c1c02..1a57152 100644 --- a/core/res/res/drawable-mdpi/list_longpressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_longpressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_longpressed_holo_light.9.png b/core/res/res/drawable-mdpi/list_longpressed_holo_light.9.png Binary files differindex 3226ab7..d50cd53 100644 --- a/core/res/res/drawable-mdpi/list_longpressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_longpressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/list_pressed_holo_dark.9.png Binary files differindex fd0e8d7..e141a52 100644 --- a/core/res/res/drawable-mdpi/list_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/list_pressed_holo_light.9.png Binary files differindex 061904c..d38abd6 100644 --- a/core/res/res/drawable-mdpi/list_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_section_divider_holo_dark.9.png b/core/res/res/drawable-mdpi/list_section_divider_holo_dark.9.png Binary files differindex af0bc16..8420017 100644 --- a/core/res/res/drawable-mdpi/list_section_divider_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_section_divider_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_section_divider_holo_light.9.png b/core/res/res/drawable-mdpi/list_section_divider_holo_light.9.png Binary files differindex c2f2dd8..482b727 100644 --- a/core/res/res/drawable-mdpi/list_section_divider_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_section_divider_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_section_divider_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/list_section_divider_mtrl_alpha.9.png Binary files differindex 11ae4f4..119b743 100644 --- a/core/res/res/drawable-mdpi/list_section_divider_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/list_section_divider_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/list_section_header_holo_dark.9.png b/core/res/res/drawable-mdpi/list_section_header_holo_dark.9.png Binary files differindex 48dfea0..e5abc2b 100644 --- a/core/res/res/drawable-mdpi/list_section_header_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_section_header_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_section_header_holo_light.9.png b/core/res/res/drawable-mdpi/list_section_header_holo_light.9.png Binary files differindex 36a046b..86d26d6 100644 --- a/core/res/res/drawable-mdpi/list_section_header_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_section_header_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selected_holo_dark.9.png Binary files differindex 5f97f2b..3df7b39 100644 --- a/core/res/res/drawable-mdpi/list_selected_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selected_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selected_holo_light.9.png b/core/res/res/drawable-mdpi/list_selected_holo_light.9.png Binary files differindex 779d10e..88333e8 100644 --- a/core/res/res/drawable-mdpi/list_selected_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selected_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_activated_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selector_activated_holo_dark.9.png Binary files differindex 66bc259..01d47e3 100644 --- a/core/res/res/drawable-mdpi/list_selector_activated_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selector_activated_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_activated_holo_light.9.png b/core/res/res/drawable-mdpi/list_selector_activated_holo_light.9.png Binary files differindex c5822b1..924c880 100644 --- a/core/res/res/drawable-mdpi/list_selector_activated_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_activated_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_default.9.png b/core/res/res/drawable-mdpi/list_selector_background_default.9.png Binary files differindex cac71b0..ad74cc3 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_default.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_default.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_default_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_default_light.9.png Binary files differindex bdedffd..e911524 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_default_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_default_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_disabled.9.png b/core/res/res/drawable-mdpi/list_selector_background_disabled.9.png Binary files differindex 8ad0b32..908b57a 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_disabled.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_disabled_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_disabled_light.9.png Binary files differindex bc99261..410c6f0 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_disabled_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_disabled_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_focus.9.png b/core/res/res/drawable-mdpi/list_selector_background_focus.9.png Binary files differindex da625af..fde25b8 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_focus.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_focused.9.png b/core/res/res/drawable-mdpi/list_selector_background_focused.9.png Binary files differindex 5b1f195..b515b48 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_focused.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_focused.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_focused_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_focused_light.9.png Binary files differindex 5b1f195..b515b48 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_focused_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_focused_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_focused_selected.9.png b/core/res/res/drawable-mdpi/list_selector_background_focused_selected.9.png Binary files differindex e5b0c1d..07c7305 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_focused_selected.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_focused_selected.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_longpress.9.png b/core/res/res/drawable-mdpi/list_selector_background_longpress.9.png Binary files differindex fbf7ef0..0be272b 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_longpress.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_longpress_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_longpress_light.9.png Binary files differindex 646fc69..b7414ce 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_longpress_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_longpress_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_pressed.9.png b/core/res/res/drawable-mdpi/list_selector_background_pressed.9.png Binary files differindex dd2a024..9032570 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_pressed.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_pressed_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_pressed_light.9.png Binary files differindex fdf6f49..7018155 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_pressed_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_pressed_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_selected.9.png b/core/res/res/drawable-mdpi/list_selector_background_selected.9.png Binary files differindex a4ac1e3..db1e871d 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_selected.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_selected.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_background_selected_light.9.png b/core/res/res/drawable-mdpi/list_selector_background_selected_light.9.png Binary files differindex d086194..b5f1194 100644 --- a/core/res/res/drawable-mdpi/list_selector_background_selected_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_background_selected_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selector_disabled_holo_dark.9.png Binary files differindex 92da2f0..1c0f13c 100644 --- a/core/res/res/drawable-mdpi/list_selector_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selector_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/list_selector_disabled_holo_light.9.png Binary files differindex 42cb646..73c0f73 100644 --- a/core/res/res/drawable-mdpi/list_selector_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selector_focused_holo_dark.9.png Binary files differindex eb4555d..e09b30c 100644 --- a/core/res/res/drawable-mdpi/list_selector_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selector_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_focused_holo_light.9.png b/core/res/res/drawable-mdpi/list_selector_focused_holo_light.9.png Binary files differindex d799fbf..b766831 100644 --- a/core/res/res/drawable-mdpi/list_selector_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_multiselect_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selector_multiselect_holo_dark.9.png Binary files differindex 2c3647e..f91c671 100644 --- a/core/res/res/drawable-mdpi/list_selector_multiselect_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selector_multiselect_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_multiselect_holo_light.9.png b/core/res/res/drawable-mdpi/list_selector_multiselect_holo_light.9.png Binary files differindex 860c58e..943a746 100644 --- a/core/res/res/drawable-mdpi/list_selector_multiselect_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_multiselect_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/list_selector_pressed_holo_dark.9.png Binary files differindex bf36a43..74f4e91 100644 --- a/core/res/res/drawable-mdpi/list_selector_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/list_selector_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/list_selector_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/list_selector_pressed_holo_light.9.png Binary files differindex 0f0be2a..7988c0a 100644 --- a/core/res/res/drawable-mdpi/list_selector_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/list_selector_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/magnified_region_frame.9.png b/core/res/res/drawable-mdpi/magnified_region_frame.9.png Binary files differindex a61cbea..9313244 100644 --- a/core/res/res/drawable-mdpi/magnified_region_frame.9.png +++ b/core/res/res/drawable-mdpi/magnified_region_frame.9.png diff --git a/core/res/res/drawable-mdpi/maps_google_logo.png b/core/res/res/drawable-mdpi/maps_google_logo.png Binary files differindex 1374aaa..4de7ca8 100644 --- a/core/res/res/drawable-mdpi/maps_google_logo.png +++ b/core/res/res/drawable-mdpi/maps_google_logo.png diff --git a/core/res/res/drawable-mdpi/menu_background.9.png b/core/res/res/drawable-mdpi/menu_background.9.png Binary files differindex 41a3d34..1bf3cf4 100644 --- a/core/res/res/drawable-mdpi/menu_background.9.png +++ b/core/res/res/drawable-mdpi/menu_background.9.png diff --git a/core/res/res/drawable-mdpi/menu_background_fill_parent_width.9.png b/core/res/res/drawable-mdpi/menu_background_fill_parent_width.9.png Binary files differindex 1ddf091..c13afb5 100644 --- a/core/res/res/drawable-mdpi/menu_background_fill_parent_width.9.png +++ b/core/res/res/drawable-mdpi/menu_background_fill_parent_width.9.png diff --git a/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_dark.9.png b/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_dark.9.png Binary files differindex 31dc342..1211f95 100644 --- a/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_light.9.png b/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_light.9.png Binary files differindex 755c145..5dc94bc 100644 --- a/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_light.9.png +++ b/core/res/res/drawable-mdpi/menu_dropdown_panel_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_dark.9.png b/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_dark.9.png Binary files differindex 3677994..77dedd3 100644 --- a/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_light.9.png b/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_light.9.png Binary files differindex 02b25f0..02b64f0 100644 --- a/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_light.9.png +++ b/core/res/res/drawable-mdpi/menu_hardkey_panel_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/menu_popup_panel_holo_dark.9.png b/core/res/res/drawable-mdpi/menu_popup_panel_holo_dark.9.png Binary files differindex 2020a42..08c0f94 100644 --- a/core/res/res/drawable-mdpi/menu_popup_panel_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/menu_popup_panel_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/menu_popup_panel_holo_light.9.png b/core/res/res/drawable-mdpi/menu_popup_panel_holo_light.9.png Binary files differindex 7cae402..1d8de8a 100644 --- a/core/res/res/drawable-mdpi/menu_popup_panel_holo_light.9.png +++ b/core/res/res/drawable-mdpi/menu_popup_panel_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/menu_separator.9.png b/core/res/res/drawable-mdpi/menu_separator.9.png Binary files differindex 8a1a336..b5c4c55 100644 --- a/core/res/res/drawable-mdpi/menu_separator.9.png +++ b/core/res/res/drawable-mdpi/menu_separator.9.png diff --git a/core/res/res/drawable-mdpi/menu_submenu_background.9.png b/core/res/res/drawable-mdpi/menu_submenu_background.9.png Binary files differindex 2281c46..e42e183 100644 --- a/core/res/res/drawable-mdpi/menu_submenu_background.9.png +++ b/core/res/res/drawable-mdpi/menu_submenu_background.9.png diff --git a/core/res/res/drawable-mdpi/menuitem_background_focus.9.png b/core/res/res/drawable-mdpi/menuitem_background_focus.9.png Binary files differindex c3e2415..8778f7f 100644 --- a/core/res/res/drawable-mdpi/menuitem_background_focus.9.png +++ b/core/res/res/drawable-mdpi/menuitem_background_focus.9.png diff --git a/core/res/res/drawable-mdpi/menuitem_background_pressed.9.png b/core/res/res/drawable-mdpi/menuitem_background_pressed.9.png Binary files differindex 02b4e9a..7402a69 100644 --- a/core/res/res/drawable-mdpi/menuitem_background_pressed.9.png +++ b/core/res/res/drawable-mdpi/menuitem_background_pressed.9.png diff --git a/core/res/res/drawable-mdpi/menuitem_background_solid_focused.9.png b/core/res/res/drawable-mdpi/menuitem_background_solid_focused.9.png Binary files differindex 99dd9b1..b4ff4c4 100644 --- a/core/res/res/drawable-mdpi/menuitem_background_solid_focused.9.png +++ b/core/res/res/drawable-mdpi/menuitem_background_solid_focused.9.png diff --git a/core/res/res/drawable-mdpi/menuitem_background_solid_pressed.9.png b/core/res/res/drawable-mdpi/menuitem_background_solid_pressed.9.png Binary files differindex 389063a..a046d1b 100644 --- a/core/res/res/drawable-mdpi/menuitem_background_solid_pressed.9.png +++ b/core/res/res/drawable-mdpi/menuitem_background_solid_pressed.9.png diff --git a/core/res/res/drawable-mdpi/menuitem_checkbox_on.png b/core/res/res/drawable-mdpi/menuitem_checkbox_on.png Binary files differindex bd8ff93..21241a6 100644 --- a/core/res/res/drawable-mdpi/menuitem_checkbox_on.png +++ b/core/res/res/drawable-mdpi/menuitem_checkbox_on.png diff --git a/core/res/res/drawable-mdpi/minitab_lt_focus.9.png b/core/res/res/drawable-mdpi/minitab_lt_focus.9.png Binary files differindex 415c571..259ee93 100644 --- a/core/res/res/drawable-mdpi/minitab_lt_focus.9.png +++ b/core/res/res/drawable-mdpi/minitab_lt_focus.9.png diff --git a/core/res/res/drawable-mdpi/minitab_lt_press.9.png b/core/res/res/drawable-mdpi/minitab_lt_press.9.png Binary files differindex 4166543..8a19a93 100644 --- a/core/res/res/drawable-mdpi/minitab_lt_press.9.png +++ b/core/res/res/drawable-mdpi/minitab_lt_press.9.png diff --git a/core/res/res/drawable-mdpi/minitab_lt_selected.9.png b/core/res/res/drawable-mdpi/minitab_lt_selected.9.png Binary files differindex fefa27e..f9ace58 100644 --- a/core/res/res/drawable-mdpi/minitab_lt_selected.9.png +++ b/core/res/res/drawable-mdpi/minitab_lt_selected.9.png diff --git a/core/res/res/drawable-mdpi/minitab_lt_unselected.9.png b/core/res/res/drawable-mdpi/minitab_lt_unselected.9.png Binary files differindex 0051cd5..505cb54 100644 --- a/core/res/res/drawable-mdpi/minitab_lt_unselected.9.png +++ b/core/res/res/drawable-mdpi/minitab_lt_unselected.9.png diff --git a/core/res/res/drawable-mdpi/minitab_lt_unselected_press.9.png b/core/res/res/drawable-mdpi/minitab_lt_unselected_press.9.png Binary files differindex 69444dd..8b29021 100644 --- a/core/res/res/drawable-mdpi/minitab_lt_unselected_press.9.png +++ b/core/res/res/drawable-mdpi/minitab_lt_unselected_press.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_down_disabled.9.png b/core/res/res/drawable-mdpi/numberpicker_down_disabled.9.png Binary files differindex 596294b..a3b83c6 100644 --- a/core/res/res/drawable-mdpi/numberpicker_down_disabled.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_down_disabled.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_down_disabled_focused.9.png b/core/res/res/drawable-mdpi/numberpicker_down_disabled_focused.9.png Binary files differindex 662cffd..46ebd02 100644 --- a/core/res/res/drawable-mdpi/numberpicker_down_disabled_focused.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_down_disabled_focused.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_down_normal.9.png b/core/res/res/drawable-mdpi/numberpicker_down_normal.9.png Binary files differindex f17e8f9..decad71 100644 --- a/core/res/res/drawable-mdpi/numberpicker_down_normal.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_down_normal.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_down_pressed.9.png b/core/res/res/drawable-mdpi/numberpicker_down_pressed.9.png Binary files differindex 777bcf5..b74014f 100644 --- a/core/res/res/drawable-mdpi/numberpicker_down_pressed.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_down_pressed.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_down_selected.9.png b/core/res/res/drawable-mdpi/numberpicker_down_selected.9.png Binary files differindex b45db62..a75c1d4 100644 --- a/core/res/res/drawable-mdpi/numberpicker_down_selected.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_down_selected.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_input_disabled.9.png b/core/res/res/drawable-mdpi/numberpicker_input_disabled.9.png Binary files differindex f73658e..db113e0 100644 --- a/core/res/res/drawable-mdpi/numberpicker_input_disabled.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_input_disabled.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_input_normal.9.png b/core/res/res/drawable-mdpi/numberpicker_input_normal.9.png Binary files differindex 8032ada..4e7ca4d 100644 --- a/core/res/res/drawable-mdpi/numberpicker_input_normal.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_input_normal.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_input_pressed.9.png b/core/res/res/drawable-mdpi/numberpicker_input_pressed.9.png Binary files differindex 30d8d5f..469c98c 100644 --- a/core/res/res/drawable-mdpi/numberpicker_input_pressed.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_input_pressed.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_input_selected.9.png b/core/res/res/drawable-mdpi/numberpicker_input_selected.9.png Binary files differindex 874f18f..b078ba2 100644 --- a/core/res/res/drawable-mdpi/numberpicker_input_selected.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_input_selected.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_selection_divider.9.png b/core/res/res/drawable-mdpi/numberpicker_selection_divider.9.png Binary files differindex 076fc16..ce51a9e 100644 --- a/core/res/res/drawable-mdpi/numberpicker_selection_divider.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_selection_divider.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_up_disabled.9.png b/core/res/res/drawable-mdpi/numberpicker_up_disabled.9.png Binary files differindex 327b0b5..ecebf42 100644 --- a/core/res/res/drawable-mdpi/numberpicker_up_disabled.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_up_disabled.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_up_disabled_focused.9.png b/core/res/res/drawable-mdpi/numberpicker_up_disabled_focused.9.png Binary files differindex 4c96680..96ea67e 100644 --- a/core/res/res/drawable-mdpi/numberpicker_up_disabled_focused.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_up_disabled_focused.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_up_normal.9.png b/core/res/res/drawable-mdpi/numberpicker_up_normal.9.png Binary files differindex dcd26e0..2c471ae 100644 --- a/core/res/res/drawable-mdpi/numberpicker_up_normal.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_up_normal.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_up_pressed.9.png b/core/res/res/drawable-mdpi/numberpicker_up_pressed.9.png Binary files differindex 7dac778..64db0e4 100644 --- a/core/res/res/drawable-mdpi/numberpicker_up_pressed.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_up_pressed.9.png diff --git a/core/res/res/drawable-mdpi/numberpicker_up_selected.9.png b/core/res/res/drawable-mdpi/numberpicker_up_selected.9.png Binary files differindex 35dae8e..5363659 100644 --- a/core/res/res/drawable-mdpi/numberpicker_up_selected.9.png +++ b/core/res/res/drawable-mdpi/numberpicker_up_selected.9.png diff --git a/core/res/res/drawable-mdpi/panel_background.9.png b/core/res/res/drawable-mdpi/panel_background.9.png Binary files differindex 822b6c6..e99d09c 100644 --- a/core/res/res/drawable-mdpi/panel_background.9.png +++ b/core/res/res/drawable-mdpi/panel_background.9.png diff --git a/core/res/res/drawable-mdpi/panel_bg_holo_dark.9.png b/core/res/res/drawable-mdpi/panel_bg_holo_dark.9.png Binary files differindex 588eb3c..5360f3b 100644 --- a/core/res/res/drawable-mdpi/panel_bg_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/panel_bg_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/panel_bg_holo_light.9.png b/core/res/res/drawable-mdpi/panel_bg_holo_light.9.png Binary files differindex c1cdbc7..9fce325 100644 --- a/core/res/res/drawable-mdpi/panel_bg_holo_light.9.png +++ b/core/res/res/drawable-mdpi/panel_bg_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/panel_picture_frame_bg_focus_blue.9.png b/core/res/res/drawable-mdpi/panel_picture_frame_bg_focus_blue.9.png Binary files differindex 7ebdbe5..ab49bc3 100644 --- a/core/res/res/drawable-mdpi/panel_picture_frame_bg_focus_blue.9.png +++ b/core/res/res/drawable-mdpi/panel_picture_frame_bg_focus_blue.9.png diff --git a/core/res/res/drawable-mdpi/panel_picture_frame_bg_normal.9.png b/core/res/res/drawable-mdpi/panel_picture_frame_bg_normal.9.png Binary files differindex fd17d09..28daa78 100644 --- a/core/res/res/drawable-mdpi/panel_picture_frame_bg_normal.9.png +++ b/core/res/res/drawable-mdpi/panel_picture_frame_bg_normal.9.png diff --git a/core/res/res/drawable-mdpi/panel_picture_frame_bg_pressed_blue.9.png b/core/res/res/drawable-mdpi/panel_picture_frame_bg_pressed_blue.9.png Binary files differindex 7bb0216..1165988 100644 --- a/core/res/res/drawable-mdpi/panel_picture_frame_bg_pressed_blue.9.png +++ b/core/res/res/drawable-mdpi/panel_picture_frame_bg_pressed_blue.9.png diff --git a/core/res/res/drawable-mdpi/password_field_default.9.png b/core/res/res/drawable-mdpi/password_field_default.9.png Binary files differindex 3193275..a6b8c63 100644 --- a/core/res/res/drawable-mdpi/password_field_default.9.png +++ b/core/res/res/drawable-mdpi/password_field_default.9.png diff --git a/core/res/res/drawable-mdpi/password_keyboard_background_holo.9.png b/core/res/res/drawable-mdpi/password_keyboard_background_holo.9.png Binary files differindex c56c704..70e50f6 100644 --- a/core/res/res/drawable-mdpi/password_keyboard_background_holo.9.png +++ b/core/res/res/drawable-mdpi/password_keyboard_background_holo.9.png diff --git a/core/res/res/drawable-mdpi/perm_group_accessibility_features.png b/core/res/res/drawable-mdpi/perm_group_accessibility_features.png Binary files differindex 57c4167..ad48af2 100644 --- a/core/res/res/drawable-mdpi/perm_group_accessibility_features.png +++ b/core/res/res/drawable-mdpi/perm_group_accessibility_features.png diff --git a/core/res/res/drawable-mdpi/perm_group_accounts.png b/core/res/res/drawable-mdpi/perm_group_accounts.png Binary files differindex ce4e683..bde82e5 100644 --- a/core/res/res/drawable-mdpi/perm_group_accounts.png +++ b/core/res/res/drawable-mdpi/perm_group_accounts.png diff --git a/core/res/res/drawable-mdpi/perm_group_affects_battery.png b/core/res/res/drawable-mdpi/perm_group_affects_battery.png Binary files differindex 55a0b79..bd171cf 100644 --- a/core/res/res/drawable-mdpi/perm_group_affects_battery.png +++ b/core/res/res/drawable-mdpi/perm_group_affects_battery.png diff --git a/core/res/res/drawable-mdpi/perm_group_app_info.png b/core/res/res/drawable-mdpi/perm_group_app_info.png Binary files differindex 8393586..e9cf404 100644 --- a/core/res/res/drawable-mdpi/perm_group_app_info.png +++ b/core/res/res/drawable-mdpi/perm_group_app_info.png diff --git a/core/res/res/drawable-mdpi/perm_group_audio_settings.png b/core/res/res/drawable-mdpi/perm_group_audio_settings.png Binary files differindex 734429f..506d7e9 100644 --- a/core/res/res/drawable-mdpi/perm_group_audio_settings.png +++ b/core/res/res/drawable-mdpi/perm_group_audio_settings.png diff --git a/core/res/res/drawable-mdpi/perm_group_bluetooth.png b/core/res/res/drawable-mdpi/perm_group_bluetooth.png Binary files differindex 4b79c1a..62cd07a 100644 --- a/core/res/res/drawable-mdpi/perm_group_bluetooth.png +++ b/core/res/res/drawable-mdpi/perm_group_bluetooth.png diff --git a/core/res/res/drawable-mdpi/perm_group_bookmarks.png b/core/res/res/drawable-mdpi/perm_group_bookmarks.png Binary files differindex ca3d453..60f8d1a 100644 --- a/core/res/res/drawable-mdpi/perm_group_bookmarks.png +++ b/core/res/res/drawable-mdpi/perm_group_bookmarks.png diff --git a/core/res/res/drawable-mdpi/perm_group_calendar.png b/core/res/res/drawable-mdpi/perm_group_calendar.png Binary files differindex d2ad9d6..dd0a618 100644 --- a/core/res/res/drawable-mdpi/perm_group_calendar.png +++ b/core/res/res/drawable-mdpi/perm_group_calendar.png diff --git a/core/res/res/drawable-mdpi/perm_group_camera.png b/core/res/res/drawable-mdpi/perm_group_camera.png Binary files differindex 1727cf1..0e1e2b2 100644 --- a/core/res/res/drawable-mdpi/perm_group_camera.png +++ b/core/res/res/drawable-mdpi/perm_group_camera.png diff --git a/core/res/res/drawable-mdpi/perm_group_device_alarms.png b/core/res/res/drawable-mdpi/perm_group_device_alarms.png Binary files differindex 48339cd..361c75c 100644 --- a/core/res/res/drawable-mdpi/perm_group_device_alarms.png +++ b/core/res/res/drawable-mdpi/perm_group_device_alarms.png diff --git a/core/res/res/drawable-mdpi/perm_group_display.png b/core/res/res/drawable-mdpi/perm_group_display.png Binary files differindex 9738f15..16f0476 100644 --- a/core/res/res/drawable-mdpi/perm_group_display.png +++ b/core/res/res/drawable-mdpi/perm_group_display.png diff --git a/core/res/res/drawable-mdpi/perm_group_location.png b/core/res/res/drawable-mdpi/perm_group_location.png Binary files differindex 7ad1e02..443c744 100644 --- a/core/res/res/drawable-mdpi/perm_group_location.png +++ b/core/res/res/drawable-mdpi/perm_group_location.png diff --git a/core/res/res/drawable-mdpi/perm_group_messages.png b/core/res/res/drawable-mdpi/perm_group_messages.png Binary files differindex 12c5d88..7bb9fbe 100644 --- a/core/res/res/drawable-mdpi/perm_group_messages.png +++ b/core/res/res/drawable-mdpi/perm_group_messages.png diff --git a/core/res/res/drawable-mdpi/perm_group_microphone.png b/core/res/res/drawable-mdpi/perm_group_microphone.png Binary files differindex f6015b5..2de5614 100644 --- a/core/res/res/drawable-mdpi/perm_group_microphone.png +++ b/core/res/res/drawable-mdpi/perm_group_microphone.png diff --git a/core/res/res/drawable-mdpi/perm_group_network.png b/core/res/res/drawable-mdpi/perm_group_network.png Binary files differindex c575d70..8f43876 100644 --- a/core/res/res/drawable-mdpi/perm_group_network.png +++ b/core/res/res/drawable-mdpi/perm_group_network.png diff --git a/core/res/res/drawable-mdpi/perm_group_personal_info.png b/core/res/res/drawable-mdpi/perm_group_personal_info.png Binary files differindex 13ec27e..8aae136 100644 --- a/core/res/res/drawable-mdpi/perm_group_personal_info.png +++ b/core/res/res/drawable-mdpi/perm_group_personal_info.png diff --git a/core/res/res/drawable-mdpi/perm_group_phone_calls.png b/core/res/res/drawable-mdpi/perm_group_phone_calls.png Binary files differindex e373c2c..4799caf 100644 --- a/core/res/res/drawable-mdpi/perm_group_phone_calls.png +++ b/core/res/res/drawable-mdpi/perm_group_phone_calls.png diff --git a/core/res/res/drawable-mdpi/perm_group_screenlock.png b/core/res/res/drawable-mdpi/perm_group_screenlock.png Binary files differindex 9d9bb75..6d2142e 100644 --- a/core/res/res/drawable-mdpi/perm_group_screenlock.png +++ b/core/res/res/drawable-mdpi/perm_group_screenlock.png diff --git a/core/res/res/drawable-mdpi/perm_group_shortrange_network.png b/core/res/res/drawable-mdpi/perm_group_shortrange_network.png Binary files differindex 5d35676..0580799 100644 --- a/core/res/res/drawable-mdpi/perm_group_shortrange_network.png +++ b/core/res/res/drawable-mdpi/perm_group_shortrange_network.png diff --git a/core/res/res/drawable-mdpi/perm_group_social_info.png b/core/res/res/drawable-mdpi/perm_group_social_info.png Binary files differindex 4ca0767..960d4aa 100644 --- a/core/res/res/drawable-mdpi/perm_group_social_info.png +++ b/core/res/res/drawable-mdpi/perm_group_social_info.png diff --git a/core/res/res/drawable-mdpi/perm_group_status_bar.png b/core/res/res/drawable-mdpi/perm_group_status_bar.png Binary files differindex f10536b..ef3111e 100644 --- a/core/res/res/drawable-mdpi/perm_group_status_bar.png +++ b/core/res/res/drawable-mdpi/perm_group_status_bar.png diff --git a/core/res/res/drawable-mdpi/perm_group_storage.png b/core/res/res/drawable-mdpi/perm_group_storage.png Binary files differindex b7a06fb..a6c02e9 100644 --- a/core/res/res/drawable-mdpi/perm_group_storage.png +++ b/core/res/res/drawable-mdpi/perm_group_storage.png diff --git a/core/res/res/drawable-mdpi/perm_group_sync_settings.png b/core/res/res/drawable-mdpi/perm_group_sync_settings.png Binary files differindex f5ef82b..50b813f 100644 --- a/core/res/res/drawable-mdpi/perm_group_sync_settings.png +++ b/core/res/res/drawable-mdpi/perm_group_sync_settings.png diff --git a/core/res/res/drawable-mdpi/perm_group_system_clock.png b/core/res/res/drawable-mdpi/perm_group_system_clock.png Binary files differindex 3a67642..62ee3c6 100644 --- a/core/res/res/drawable-mdpi/perm_group_system_clock.png +++ b/core/res/res/drawable-mdpi/perm_group_system_clock.png diff --git a/core/res/res/drawable-mdpi/perm_group_system_tools.png b/core/res/res/drawable-mdpi/perm_group_system_tools.png Binary files differindex fd282e6..bfdf3fe 100644 --- a/core/res/res/drawable-mdpi/perm_group_system_tools.png +++ b/core/res/res/drawable-mdpi/perm_group_system_tools.png diff --git a/core/res/res/drawable-mdpi/perm_group_user_dictionary.png b/core/res/res/drawable-mdpi/perm_group_user_dictionary.png Binary files differindex a303dc1..79875a6 100644 --- a/core/res/res/drawable-mdpi/perm_group_user_dictionary.png +++ b/core/res/res/drawable-mdpi/perm_group_user_dictionary.png diff --git a/core/res/res/drawable-mdpi/perm_group_user_dictionary_write.png b/core/res/res/drawable-mdpi/perm_group_user_dictionary_write.png Binary files differindex 2fc4056..6b26e47 100644 --- a/core/res/res/drawable-mdpi/perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-mdpi/perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-mdpi/perm_group_voicemail.png b/core/res/res/drawable-mdpi/perm_group_voicemail.png Binary files differindex 108a725..1ad2981 100644 --- a/core/res/res/drawable-mdpi/perm_group_voicemail.png +++ b/core/res/res/drawable-mdpi/perm_group_voicemail.png diff --git a/core/res/res/drawable-mdpi/perm_group_wallpaper.png b/core/res/res/drawable-mdpi/perm_group_wallpaper.png Binary files differindex aa06f38..f29f805 100644 --- a/core/res/res/drawable-mdpi/perm_group_wallpaper.png +++ b/core/res/res/drawable-mdpi/perm_group_wallpaper.png diff --git a/core/res/res/drawable-mdpi/picture_emergency.png b/core/res/res/drawable-mdpi/picture_emergency.png Binary files differindex a224b80..46efd1b 100644 --- a/core/res/res/drawable-mdpi/picture_emergency.png +++ b/core/res/res/drawable-mdpi/picture_emergency.png diff --git a/core/res/res/drawable-mdpi/picture_frame.9.png b/core/res/res/drawable-mdpi/picture_frame.9.png Binary files differindex ba71570..4d9c748 100644 --- a/core/res/res/drawable-mdpi/picture_frame.9.png +++ b/core/res/res/drawable-mdpi/picture_frame.9.png diff --git a/core/res/res/drawable-mdpi/pointer_arrow.png b/core/res/res/drawable-mdpi/pointer_arrow.png Binary files differindex 0745db2..544936a 100644 --- a/core/res/res/drawable-mdpi/pointer_arrow.png +++ b/core/res/res/drawable-mdpi/pointer_arrow.png diff --git a/core/res/res/drawable-mdpi/pointer_spot_anchor.png b/core/res/res/drawable-mdpi/pointer_spot_anchor.png Binary files differindex 4e282e7..e337c0e 100644 --- a/core/res/res/drawable-mdpi/pointer_spot_anchor.png +++ b/core/res/res/drawable-mdpi/pointer_spot_anchor.png diff --git a/core/res/res/drawable-mdpi/pointer_spot_hover.png b/core/res/res/drawable-mdpi/pointer_spot_hover.png Binary files differindex 67d0b06..9e58b5e 100644 --- a/core/res/res/drawable-mdpi/pointer_spot_hover.png +++ b/core/res/res/drawable-mdpi/pointer_spot_hover.png diff --git a/core/res/res/drawable-mdpi/pointer_spot_touch.png b/core/res/res/drawable-mdpi/pointer_spot_touch.png Binary files differindex 45dc5c0..b3a45d0 100644 --- a/core/res/res/drawable-mdpi/pointer_spot_touch.png +++ b/core/res/res/drawable-mdpi/pointer_spot_touch.png diff --git a/core/res/res/drawable-mdpi/popup_background_mtrl_mult.9.png b/core/res/res/drawable-mdpi/popup_background_mtrl_mult.9.png Binary files differindex e920499..6dfeafc 100644 --- a/core/res/res/drawable-mdpi/popup_background_mtrl_mult.9.png +++ b/core/res/res/drawable-mdpi/popup_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-mdpi/popup_bottom_bright.9.png b/core/res/res/drawable-mdpi/popup_bottom_bright.9.png Binary files differindex e7b713d..5c56b7c 100644 --- a/core/res/res/drawable-mdpi/popup_bottom_bright.9.png +++ b/core/res/res/drawable-mdpi/popup_bottom_bright.9.png diff --git a/core/res/res/drawable-mdpi/popup_bottom_dark.9.png b/core/res/res/drawable-mdpi/popup_bottom_dark.9.png Binary files differindex 88ce336..47635d1 100644 --- a/core/res/res/drawable-mdpi/popup_bottom_dark.9.png +++ b/core/res/res/drawable-mdpi/popup_bottom_dark.9.png diff --git a/core/res/res/drawable-mdpi/popup_bottom_medium.9.png b/core/res/res/drawable-mdpi/popup_bottom_medium.9.png Binary files differindex e5aaad0..d5f6a06 100644 --- a/core/res/res/drawable-mdpi/popup_bottom_medium.9.png +++ b/core/res/res/drawable-mdpi/popup_bottom_medium.9.png diff --git a/core/res/res/drawable-mdpi/popup_center_bright.9.png b/core/res/res/drawable-mdpi/popup_center_bright.9.png Binary files differindex a259356..6a7bbb9 100644 --- a/core/res/res/drawable-mdpi/popup_center_bright.9.png +++ b/core/res/res/drawable-mdpi/popup_center_bright.9.png diff --git a/core/res/res/drawable-mdpi/popup_center_dark.9.png b/core/res/res/drawable-mdpi/popup_center_dark.9.png Binary files differindex 9378dbf..170f509 100644 --- a/core/res/res/drawable-mdpi/popup_center_dark.9.png +++ b/core/res/res/drawable-mdpi/popup_center_dark.9.png diff --git a/core/res/res/drawable-mdpi/popup_center_medium.9.png b/core/res/res/drawable-mdpi/popup_center_medium.9.png Binary files differindex 885403c..3aa27c4 100644 --- a/core/res/res/drawable-mdpi/popup_center_medium.9.png +++ b/core/res/res/drawable-mdpi/popup_center_medium.9.png diff --git a/core/res/res/drawable-mdpi/popup_full_bright.9.png b/core/res/res/drawable-mdpi/popup_full_bright.9.png Binary files differindex d7fb3db..7c94154 100644 --- a/core/res/res/drawable-mdpi/popup_full_bright.9.png +++ b/core/res/res/drawable-mdpi/popup_full_bright.9.png diff --git a/core/res/res/drawable-mdpi/popup_full_dark.9.png b/core/res/res/drawable-mdpi/popup_full_dark.9.png Binary files differindex 7b9f291..5ec264f 100644 --- a/core/res/res/drawable-mdpi/popup_full_dark.9.png +++ b/core/res/res/drawable-mdpi/popup_full_dark.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_above_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_above_am.9.png Binary files differindex 1d93817..96376be 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_above_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_above_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_above_holo_dark_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_above_holo_dark_am.9.png Binary files differindex 19b153b..683cc49 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_above_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_above_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_above_holo_light_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_above_holo_light_am.9.png Binary files differindex c03e658..c74776f 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_above_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_above_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_am.9.png Binary files differindex 17fbe4a..9c4d164 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_holo_dark_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_holo_dark_am.9.png Binary files differindex c3b8db9..0c506f1 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_inline_error_holo_light_am.9.png b/core/res/res/drawable-mdpi/popup_inline_error_holo_light_am.9.png Binary files differindex c228a83..ccf132d 100644 --- a/core/res/res/drawable-mdpi/popup_inline_error_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/popup_inline_error_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/popup_top_bright.9.png b/core/res/res/drawable-mdpi/popup_top_bright.9.png Binary files differindex 72d82f0..badc8b4 100644 --- a/core/res/res/drawable-mdpi/popup_top_bright.9.png +++ b/core/res/res/drawable-mdpi/popup_top_bright.9.png diff --git a/core/res/res/drawable-mdpi/popup_top_dark.9.png b/core/res/res/drawable-mdpi/popup_top_dark.9.png Binary files differindex 616d80f..518ca47 100644 --- a/core/res/res/drawable-mdpi/popup_top_dark.9.png +++ b/core/res/res/drawable-mdpi/popup_top_dark.9.png diff --git a/core/res/res/drawable-mdpi/presence_audio_away.png b/core/res/res/drawable-mdpi/presence_audio_away.png Binary files differindex e68bc11..f35937a 100644 --- a/core/res/res/drawable-mdpi/presence_audio_away.png +++ b/core/res/res/drawable-mdpi/presence_audio_away.png diff --git a/core/res/res/drawable-mdpi/presence_audio_busy.png b/core/res/res/drawable-mdpi/presence_audio_busy.png Binary files differindex caa6d06..26693bd 100644 --- a/core/res/res/drawable-mdpi/presence_audio_busy.png +++ b/core/res/res/drawable-mdpi/presence_audio_busy.png diff --git a/core/res/res/drawable-mdpi/presence_audio_online.png b/core/res/res/drawable-mdpi/presence_audio_online.png Binary files differindex a740598..eed490e 100644 --- a/core/res/res/drawable-mdpi/presence_audio_online.png +++ b/core/res/res/drawable-mdpi/presence_audio_online.png diff --git a/core/res/res/drawable-mdpi/presence_away.png b/core/res/res/drawable-mdpi/presence_away.png Binary files differindex 62ee0ca..a89b0ad 100644 --- a/core/res/res/drawable-mdpi/presence_away.png +++ b/core/res/res/drawable-mdpi/presence_away.png diff --git a/core/res/res/drawable-mdpi/presence_busy.png b/core/res/res/drawable-mdpi/presence_busy.png Binary files differindex 6def876..59de6a7 100644 --- a/core/res/res/drawable-mdpi/presence_busy.png +++ b/core/res/res/drawable-mdpi/presence_busy.png diff --git a/core/res/res/drawable-mdpi/presence_invisible.png b/core/res/res/drawable-mdpi/presence_invisible.png Binary files differindex 715a164..48beb5e 100644 --- a/core/res/res/drawable-mdpi/presence_invisible.png +++ b/core/res/res/drawable-mdpi/presence_invisible.png diff --git a/core/res/res/drawable-mdpi/presence_offline.png b/core/res/res/drawable-mdpi/presence_offline.png Binary files differindex 262d530..e679a96 100644 --- a/core/res/res/drawable-mdpi/presence_offline.png +++ b/core/res/res/drawable-mdpi/presence_offline.png diff --git a/core/res/res/drawable-mdpi/presence_online.png b/core/res/res/drawable-mdpi/presence_online.png Binary files differindex e16ec81..237abfe 100644 --- a/core/res/res/drawable-mdpi/presence_online.png +++ b/core/res/res/drawable-mdpi/presence_online.png diff --git a/core/res/res/drawable-mdpi/presence_video_away.png b/core/res/res/drawable-mdpi/presence_video_away.png Binary files differindex 2d3508d..85a4cd4 100644 --- a/core/res/res/drawable-mdpi/presence_video_away.png +++ b/core/res/res/drawable-mdpi/presence_video_away.png diff --git a/core/res/res/drawable-mdpi/presence_video_busy.png b/core/res/res/drawable-mdpi/presence_video_busy.png Binary files differindex f317efa..b6961f3 100644 --- a/core/res/res/drawable-mdpi/presence_video_busy.png +++ b/core/res/res/drawable-mdpi/presence_video_busy.png diff --git a/core/res/res/drawable-mdpi/presence_video_online.png b/core/res/res/drawable-mdpi/presence_video_online.png Binary files differindex 777b6ff..4a8c68d 100644 --- a/core/res/res/drawable-mdpi/presence_video_online.png +++ b/core/res/res/drawable-mdpi/presence_video_online.png diff --git a/core/res/res/drawable-mdpi/pressed_application_background_static.png b/core/res/res/drawable-mdpi/pressed_application_background_static.png Binary files differindex 070f6fd..0c04410 100644 --- a/core/res/res/drawable-mdpi/pressed_application_background_static.png +++ b/core/res/res/drawable-mdpi/pressed_application_background_static.png diff --git a/core/res/res/drawable-mdpi/progress_bg_holo_dark.9.png b/core/res/res/drawable-mdpi/progress_bg_holo_dark.9.png Binary files differindex b1f5cf3..65a3163 100644 --- a/core/res/res/drawable-mdpi/progress_bg_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/progress_bg_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/progress_bg_holo_light.9.png b/core/res/res/drawable-mdpi/progress_bg_holo_light.9.png Binary files differindex 780b4b2..d7ab883 100644 --- a/core/res/res/drawable-mdpi/progress_bg_holo_light.9.png +++ b/core/res/res/drawable-mdpi/progress_bg_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/progress_primary_holo_dark.9.png b/core/res/res/drawable-mdpi/progress_primary_holo_dark.9.png Binary files differindex b86f4b5..c96058c 100644 --- a/core/res/res/drawable-mdpi/progress_primary_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/progress_primary_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/progress_primary_holo_light.9.png b/core/res/res/drawable-mdpi/progress_primary_holo_light.9.png Binary files differindex 6fb9445..f41141f 100644 --- a/core/res/res/drawable-mdpi/progress_primary_holo_light.9.png +++ b/core/res/res/drawable-mdpi/progress_primary_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/progress_secondary_holo_dark.9.png b/core/res/res/drawable-mdpi/progress_secondary_holo_dark.9.png Binary files differindex 5651a7a..b9a25c2 100644 --- a/core/res/res/drawable-mdpi/progress_secondary_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/progress_secondary_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/progress_secondary_holo_light.9.png b/core/res/res/drawable-mdpi/progress_secondary_holo_light.9.png Binary files differindex 9104cf9..f81712b 100644 --- a/core/res/res/drawable-mdpi/progress_secondary_holo_light.9.png +++ b/core/res/res/drawable-mdpi/progress_secondary_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate1.png b/core/res/res/drawable-mdpi/progressbar_indeterminate1.png Binary files differindex 71780ef..81b2f86 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate1.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate1.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate2.png b/core/res/res/drawable-mdpi/progressbar_indeterminate2.png Binary files differindex 236988b..c9587e9 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate2.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate2.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate3.png b/core/res/res/drawable-mdpi/progressbar_indeterminate3.png Binary files differindex 1570235..d66e123 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate3.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate3.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo1.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo1.png Binary files differindex df7d06a..8a7a233 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo1.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo1.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo2.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo2.png Binary files differindex b5b933f..575f49b 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo2.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo2.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo3.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo3.png Binary files differindex b4dccc6..1f8ce51 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo3.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo3.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo4.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo4.png Binary files differindex e61f3b3..feb8336 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo4.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo4.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo5.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo5.png Binary files differindex 969ab74..063bbea 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo5.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo5.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo6.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo6.png Binary files differindex 5c1aa61..20c54ee 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo6.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo6.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo7.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo7.png Binary files differindex 0946f2d..4c22504 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo7.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo7.png diff --git a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo8.png b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo8.png Binary files differindex a900c9f..a0da931 100644 --- a/core/res/res/drawable-mdpi/progressbar_indeterminate_holo8.png +++ b/core/res/res/drawable-mdpi/progressbar_indeterminate_holo8.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_dark.9.png b/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_dark.9.png Binary files differindex ece6551..eee0488 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_light.9.png b/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_light.9.png Binary files differindex 819656f..e732eb9 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_light.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowdown_left_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_dark.9.png b/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_dark.9.png Binary files differindex 8e95970..929499f 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_light.9.png b/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_light.9.png Binary files differindex d5bef51..7aa8af1 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_light.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowdown_right_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_dark.9.png b/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_dark.9.png Binary files differindex 543e341..2fa08bf 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_light.9.png b/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_light.9.png Binary files differindex e40e91d..14c5a4b 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_light.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowup_left_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowup_left_right_holo_dark.9.png b/core/res/res/drawable-mdpi/quickactions_arrowup_left_right_holo_dark.9.png Binary files differindex a4617e7..8b2b5e7 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowup_left_right_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowup_left_right_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/quickactions_arrowup_right_holo_light.9.png b/core/res/res/drawable-mdpi/quickactions_arrowup_right_holo_light.9.png Binary files differindex 1e8e7a0..4d05489 100644 --- a/core/res/res/drawable-mdpi/quickactions_arrowup_right_holo_light.9.png +++ b/core/res/res/drawable-mdpi/quickactions_arrowup_right_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_dark_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_dark_am.9.png Binary files differindex d12a196..e452fb1 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_dark_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_light_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_light_am.9.png Binary files differindex 27c7977..fbb190b 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_light_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_focused_light_am.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_dark_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_dark_am.9.png Binary files differindex 99c42c5..1356ab9 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_dark_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_light_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_light_am.9.png Binary files differindex 886b044..d8c2145 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_light_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_normal_light_am.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_dark_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_dark_am.9.png Binary files differindex a70615a..749303f 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_dark_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_light_am.9.png b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_light_am.9.png Binary files differindex e7dd785..c1fd901 100644 --- a/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_light_am.9.png +++ b/core/res/res/drawable-mdpi/quickcontact_badge_overlay_pressed_light_am.9.png diff --git a/core/res/res/drawable-mdpi/radiobutton_off_background.png b/core/res/res/drawable-mdpi/radiobutton_off_background.png Binary files differindex 1b94e21..909a034 100644 --- a/core/res/res/drawable-mdpi/radiobutton_off_background.png +++ b/core/res/res/drawable-mdpi/radiobutton_off_background.png diff --git a/core/res/res/drawable-mdpi/radiobutton_on_background.png b/core/res/res/drawable-mdpi/radiobutton_on_background.png Binary files differindex 636a803..e16db0a 100644 --- a/core/res/res/drawable-mdpi/radiobutton_on_background.png +++ b/core/res/res/drawable-mdpi/radiobutton_on_background.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_half.png b/core/res/res/drawable-mdpi/rate_star_big_half.png Binary files differindex 9762292..91b9a75 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_half.png +++ b/core/res/res/drawable-mdpi/rate_star_big_half.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_half_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_big_half_holo_dark.png Binary files differindex dac51df..e9d940b 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_half_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_big_half_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_half_holo_light.png b/core/res/res/drawable-mdpi/rate_star_big_half_holo_light.png Binary files differindex 441dbf7..1afc2f1 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_half_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_big_half_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_off.png b/core/res/res/drawable-mdpi/rate_star_big_off.png Binary files differindex 6b5039f..72b4f8d 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_off.png +++ b/core/res/res/drawable-mdpi/rate_star_big_off.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_off_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_big_off_holo_dark.png Binary files differindex cde1fb9..869b54e 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_big_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_off_holo_light.png b/core/res/res/drawable-mdpi/rate_star_big_off_holo_light.png Binary files differindex 8ecf0f9..95a2f4d 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_off_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_big_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_on.png b/core/res/res/drawable-mdpi/rate_star_big_on.png Binary files differindex a972db2..c2ac3b1 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_on.png +++ b/core/res/res/drawable-mdpi/rate_star_big_on.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_on_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_big_on_holo_dark.png Binary files differindex 0674db3..23503dd 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_big_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_big_on_holo_light.png b/core/res/res/drawable-mdpi/rate_star_big_on_holo_light.png Binary files differindex 0117919..0cf16e0 100644 --- a/core/res/res/drawable-mdpi/rate_star_big_on_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_big_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_half.png b/core/res/res/drawable-mdpi/rate_star_med_half.png Binary files differindex 65a8671..eaf3cda 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_half.png +++ b/core/res/res/drawable-mdpi/rate_star_med_half.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_half_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_med_half_holo_dark.png Binary files differindex f2ce7ab..8587ad6 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_half_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_med_half_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_half_holo_light.png b/core/res/res/drawable-mdpi/rate_star_med_half_holo_light.png Binary files differindex 48bcf85..8d22a0d 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_half_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_med_half_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_off.png b/core/res/res/drawable-mdpi/rate_star_med_off.png Binary files differindex fba0ade..646bc6a 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_off.png +++ b/core/res/res/drawable-mdpi/rate_star_med_off.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_off_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_med_off_holo_dark.png Binary files differindex d2e7ab6..1f68e03 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_med_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_off_holo_light.png b/core/res/res/drawable-mdpi/rate_star_med_off_holo_light.png Binary files differindex 69824eb..479ca00 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_off_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_med_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_on.png b/core/res/res/drawable-mdpi/rate_star_med_on.png Binary files differindex a1941b6..ad9530d 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_on.png +++ b/core/res/res/drawable-mdpi/rate_star_med_on.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_on_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_med_on_holo_dark.png Binary files differindex b3b8016..071ca68 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_med_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_med_on_holo_light.png b/core/res/res/drawable-mdpi/rate_star_med_on_holo_light.png Binary files differindex 84ca715..6046e9b 100644 --- a/core/res/res/drawable-mdpi/rate_star_med_on_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_med_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_half.png b/core/res/res/drawable-mdpi/rate_star_small_half.png Binary files differindex 437a11c..afbbd83 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_half.png +++ b/core/res/res/drawable-mdpi/rate_star_small_half.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_half_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_small_half_holo_dark.png Binary files differindex 56a62d2..175e517 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_half_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_small_half_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_half_holo_light.png b/core/res/res/drawable-mdpi/rate_star_small_half_holo_light.png Binary files differindex 83b7c1c..5fc7245 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_half_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_small_half_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_off.png b/core/res/res/drawable-mdpi/rate_star_small_off.png Binary files differindex 6fb0a36..e3abc67 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_off.png +++ b/core/res/res/drawable-mdpi/rate_star_small_off.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_off_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_small_off_holo_dark.png Binary files differindex b70244b..49c869b 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_small_off_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_off_holo_light.png b/core/res/res/drawable-mdpi/rate_star_small_off_holo_light.png Binary files differindex bb5c08c..4a819f7 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_off_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_small_off_holo_light.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_on.png b/core/res/res/drawable-mdpi/rate_star_small_on.png Binary files differindex 5392361..81c7267 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_on.png +++ b/core/res/res/drawable-mdpi/rate_star_small_on.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_on_holo_dark.png b/core/res/res/drawable-mdpi/rate_star_small_on_holo_dark.png Binary files differindex 444e882..14c5e8a 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/rate_star_small_on_holo_dark.png diff --git a/core/res/res/drawable-mdpi/rate_star_small_on_holo_light.png b/core/res/res/drawable-mdpi/rate_star_small_on_holo_light.png Binary files differindex 7dba529..ba95a01 100644 --- a/core/res/res/drawable-mdpi/rate_star_small_on_holo_light.png +++ b/core/res/res/drawable-mdpi/rate_star_small_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/recent_dialog_background.9.png b/core/res/res/drawable-mdpi/recent_dialog_background.9.png Binary files differindex 18ed3ff..c0879c8 100644 --- a/core/res/res/drawable-mdpi/recent_dialog_background.9.png +++ b/core/res/res/drawable-mdpi/recent_dialog_background.9.png diff --git a/core/res/res/drawable-mdpi/reticle.png b/core/res/res/drawable-mdpi/reticle.png Binary files differindex c6ccf8e..af8081e 100644 --- a/core/res/res/drawable-mdpi/reticle.png +++ b/core/res/res/drawable-mdpi/reticle.png diff --git a/core/res/res/drawable-mdpi/scrollbar_handle_accelerated_anim2.9.png b/core/res/res/drawable-mdpi/scrollbar_handle_accelerated_anim2.9.png Binary files differindex 6d83bb4..d188371 100644 --- a/core/res/res/drawable-mdpi/scrollbar_handle_accelerated_anim2.9.png +++ b/core/res/res/drawable-mdpi/scrollbar_handle_accelerated_anim2.9.png diff --git a/core/res/res/drawable-mdpi/scrollbar_handle_holo_dark.9.png b/core/res/res/drawable-mdpi/scrollbar_handle_holo_dark.9.png Binary files differindex 9407756..6296851 100644 --- a/core/res/res/drawable-mdpi/scrollbar_handle_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/scrollbar_handle_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/scrollbar_handle_holo_light.9.png b/core/res/res/drawable-mdpi/scrollbar_handle_holo_light.9.png Binary files differindex d2d0292..883a6c1 100644 --- a/core/res/res/drawable-mdpi/scrollbar_handle_holo_light.9.png +++ b/core/res/res/drawable-mdpi/scrollbar_handle_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/scrollbar_handle_horizontal.9.png b/core/res/res/drawable-mdpi/scrollbar_handle_horizontal.9.png Binary files differindex 8584d1f..05b7735 100644 --- a/core/res/res/drawable-mdpi/scrollbar_handle_horizontal.9.png +++ b/core/res/res/drawable-mdpi/scrollbar_handle_horizontal.9.png diff --git a/core/res/res/drawable-mdpi/scrollbar_handle_vertical.9.png b/core/res/res/drawable-mdpi/scrollbar_handle_vertical.9.png Binary files differindex 331a05d..628d07c 100644 --- a/core/res/res/drawable-mdpi/scrollbar_handle_vertical.9.png +++ b/core/res/res/drawable-mdpi/scrollbar_handle_vertical.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_disabled_holo.png b/core/res/res/drawable-mdpi/scrubber_control_disabled_holo.png Binary files differindex 630a450..5d837aa 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_disabled_holo.png +++ b/core/res/res/drawable-mdpi/scrubber_control_disabled_holo.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_focused_holo.png b/core/res/res/drawable-mdpi/scrubber_control_focused_holo.png Binary files differindex c9e4796..9ae706f 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_focused_holo.png +++ b/core/res/res/drawable-mdpi/scrubber_control_focused_holo.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_000.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_000.png Binary files differindex 377a6b4..7fd5fff 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_000.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_000.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_001.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_001.png Binary files differindex 0859f62..bbaf315 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_001.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_001.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_002.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_002.png Binary files differindex bf5cdcd..e2951f2 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_002.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_002.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_003.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_003.png Binary files differindex 4cd177d..109e1d9 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_003.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_003.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_004.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_004.png Binary files differindex dfe39ca..94779ba 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_004.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_004.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_005.png b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_005.png Binary files differindex 5d3ab99..f83b1ef 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_005.png +++ b/core/res/res/drawable-mdpi/scrubber_control_from_pressed_mtrl_005.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_normal_holo.png b/core/res/res/drawable-mdpi/scrubber_control_normal_holo.png Binary files differindex fb96f4b..48ee894 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_normal_holo.png +++ b/core/res/res/drawable-mdpi/scrubber_control_normal_holo.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_off_mtrl_alpha.png b/core/res/res/drawable-mdpi/scrubber_control_off_mtrl_alpha.png Binary files differindex e40cba8..10df639 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_off_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/scrubber_control_off_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_off_pressed_mtrl_alpha.png b/core/res/res/drawable-mdpi/scrubber_control_off_pressed_mtrl_alpha.png Binary files differindex 1f4b46a..0962494 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_off_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/scrubber_control_off_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_on_mtrl_alpha.png b/core/res/res/drawable-mdpi/scrubber_control_on_mtrl_alpha.png Binary files differindex 437a3e3..9e92bac 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_on_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/scrubber_control_on_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_on_pressed_mtrl_alpha.png b/core/res/res/drawable-mdpi/scrubber_control_on_pressed_mtrl_alpha.png Binary files differindex 3c304bf..48cb49a 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/scrubber_control_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_pressed_holo.png b/core/res/res/drawable-mdpi/scrubber_control_pressed_holo.png Binary files differindex 30e18cd..dd62cd2 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_pressed_holo.png +++ b/core/res/res/drawable-mdpi/scrubber_control_pressed_holo.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_000.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_000.png Binary files differindex 80922eb..f83b1ef 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_000.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_000.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_001.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_001.png Binary files differindex aa77044..09fe806 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_001.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_001.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_002.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_002.png Binary files differindex 7b099db..4127ab0 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_002.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_002.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_003.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_003.png Binary files differindex 088c86a..7f41971 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_003.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_003.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_004.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_004.png Binary files differindex 3c6b9bc..f1f0b11 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_004.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_004.png diff --git a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_005.png b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_005.png Binary files differindex adf5100..e9efb20 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_005.png +++ b/core/res/res/drawable-mdpi/scrubber_control_to_pressed_mtrl_005.png diff --git a/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png b/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png Binary files differindex a7910d6..c20c377 100644 --- a/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png +++ b/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_primary_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/scrubber_primary_mtrl_alpha.9.png Binary files differindex a4ab0a1..e28cf4a 100644 --- a/core/res/res/drawable-mdpi/scrubber_primary_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/scrubber_primary_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png b/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png Binary files differindex 985b62e..159017d 100644 --- a/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png +++ b/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png b/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png Binary files differindex b91a4ee..cdf06b4 100644 --- a/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png b/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png Binary files differindex 359ae4a..f1ee76f 100644 --- a/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png +++ b/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_track_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/scrubber_track_mtrl_alpha.9.png Binary files differindex db9e172..708a474 100644 --- a/core/res/res/drawable-mdpi/scrubber_track_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/scrubber_track_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/search_dropdown_background.9.png b/core/res/res/drawable-mdpi/search_dropdown_background.9.png Binary files differindex 804260a..81aedcc 100644 --- a/core/res/res/drawable-mdpi/search_dropdown_background.9.png +++ b/core/res/res/drawable-mdpi/search_dropdown_background.9.png diff --git a/core/res/res/drawable-mdpi/search_plate.9.png b/core/res/res/drawable-mdpi/search_plate.9.png Binary files differindex 8c42f10..f690136 100644 --- a/core/res/res/drawable-mdpi/search_plate.9.png +++ b/core/res/res/drawable-mdpi/search_plate.9.png diff --git a/core/res/res/drawable-mdpi/search_plate_global.9.png b/core/res/res/drawable-mdpi/search_plate_global.9.png Binary files differindex 1cad902..e3037de 100644 --- a/core/res/res/drawable-mdpi/search_plate_global.9.png +++ b/core/res/res/drawable-mdpi/search_plate_global.9.png diff --git a/core/res/res/drawable-mdpi/seek_thumb_normal.png b/core/res/res/drawable-mdpi/seek_thumb_normal.png Binary files differindex e9f2e23..1918970 100644 --- a/core/res/res/drawable-mdpi/seek_thumb_normal.png +++ b/core/res/res/drawable-mdpi/seek_thumb_normal.png diff --git a/core/res/res/drawable-mdpi/seek_thumb_pressed.png b/core/res/res/drawable-mdpi/seek_thumb_pressed.png Binary files differindex 3ea5051..0d846a8 100644 --- a/core/res/res/drawable-mdpi/seek_thumb_pressed.png +++ b/core/res/res/drawable-mdpi/seek_thumb_pressed.png diff --git a/core/res/res/drawable-mdpi/seek_thumb_selected.png b/core/res/res/drawable-mdpi/seek_thumb_selected.png Binary files differindex 98b7ba0..ecb6a24 100644 --- a/core/res/res/drawable-mdpi/seek_thumb_selected.png +++ b/core/res/res/drawable-mdpi/seek_thumb_selected.png diff --git a/core/res/res/drawable-mdpi/settings_header_raw.9.png b/core/res/res/drawable-mdpi/settings_header_raw.9.png Binary files differindex 6b8134d..3f6223d 100644 --- a/core/res/res/drawable-mdpi/settings_header_raw.9.png +++ b/core/res/res/drawable-mdpi/settings_header_raw.9.png diff --git a/core/res/res/drawable-mdpi/sim_dark_blue.9.png b/core/res/res/drawable-mdpi/sim_dark_blue.9.png Binary files differindex d646a7f..b2f4132 100755 --- a/core/res/res/drawable-mdpi/sim_dark_blue.9.png +++ b/core/res/res/drawable-mdpi/sim_dark_blue.9.png diff --git a/core/res/res/drawable-mdpi/sim_dark_green.9.png b/core/res/res/drawable-mdpi/sim_dark_green.9.png Binary files differindex ee4ea0d..385e42c 100755 --- a/core/res/res/drawable-mdpi/sim_dark_green.9.png +++ b/core/res/res/drawable-mdpi/sim_dark_green.9.png diff --git a/core/res/res/drawable-mdpi/sim_dark_orange.9.png b/core/res/res/drawable-mdpi/sim_dark_orange.9.png Binary files differindex b394999..88734c0 100755 --- a/core/res/res/drawable-mdpi/sim_dark_orange.9.png +++ b/core/res/res/drawable-mdpi/sim_dark_orange.9.png diff --git a/core/res/res/drawable-mdpi/sim_dark_purple.9.png b/core/res/res/drawable-mdpi/sim_dark_purple.9.png Binary files differindex 459b5d6..dfbb7f3 100755 --- a/core/res/res/drawable-mdpi/sim_dark_purple.9.png +++ b/core/res/res/drawable-mdpi/sim_dark_purple.9.png diff --git a/core/res/res/drawable-mdpi/sim_light_blue.9.png b/core/res/res/drawable-mdpi/sim_light_blue.9.png Binary files differindex 396ad70..9187d7d 100755 --- a/core/res/res/drawable-mdpi/sim_light_blue.9.png +++ b/core/res/res/drawable-mdpi/sim_light_blue.9.png diff --git a/core/res/res/drawable-mdpi/sim_light_green.9.png b/core/res/res/drawable-mdpi/sim_light_green.9.png Binary files differindex a063174..01d59e8 100755 --- a/core/res/res/drawable-mdpi/sim_light_green.9.png +++ b/core/res/res/drawable-mdpi/sim_light_green.9.png diff --git a/core/res/res/drawable-mdpi/sim_light_orange.9.png b/core/res/res/drawable-mdpi/sim_light_orange.9.png Binary files differindex 95ea88e..48fdea5 100755 --- a/core/res/res/drawable-mdpi/sim_light_orange.9.png +++ b/core/res/res/drawable-mdpi/sim_light_orange.9.png diff --git a/core/res/res/drawable-mdpi/sim_light_purple.9.png b/core/res/res/drawable-mdpi/sim_light_purple.9.png Binary files differindex b1bd35f..16a86a8 100755 --- a/core/res/res/drawable-mdpi/sim_light_purple.9.png +++ b/core/res/res/drawable-mdpi/sim_light_purple.9.png diff --git a/core/res/res/drawable-mdpi/spinner_16_inner_holo.png b/core/res/res/drawable-mdpi/spinner_16_inner_holo.png Binary files differindex eeef0c8..2b9385e 100644 --- a/core/res/res/drawable-mdpi/spinner_16_inner_holo.png +++ b/core/res/res/drawable-mdpi/spinner_16_inner_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_16_outer_holo.png b/core/res/res/drawable-mdpi/spinner_16_outer_holo.png Binary files differindex 7cc2b54..d80f62e 100644 --- a/core/res/res/drawable-mdpi/spinner_16_outer_holo.png +++ b/core/res/res/drawable-mdpi/spinner_16_outer_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_48_inner_holo.png b/core/res/res/drawable-mdpi/spinner_48_inner_holo.png Binary files differindex 9458668..a090498 100644 --- a/core/res/res/drawable-mdpi/spinner_48_inner_holo.png +++ b/core/res/res/drawable-mdpi/spinner_48_inner_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_48_outer_holo.png b/core/res/res/drawable-mdpi/spinner_48_outer_holo.png Binary files differindex 4ce73ed..eb9577e 100644 --- a/core/res/res/drawable-mdpi/spinner_48_outer_holo.png +++ b/core/res/res/drawable-mdpi/spinner_48_outer_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_76_inner_holo.png b/core/res/res/drawable-mdpi/spinner_76_inner_holo.png Binary files differindex cba1300d..2e3cc05 100644 --- a/core/res/res/drawable-mdpi/spinner_76_inner_holo.png +++ b/core/res/res/drawable-mdpi/spinner_76_inner_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_76_outer_holo.png b/core/res/res/drawable-mdpi/spinner_76_outer_holo.png Binary files differindex 99a5ebb..ca5ea5e 100644 --- a/core/res/res/drawable-mdpi/spinner_76_outer_holo.png +++ b/core/res/res/drawable-mdpi/spinner_76_outer_holo.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_default_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_default_holo_dark_am.9.png Binary files differindex 8d75946..db1505a 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_default_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_default_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_default_holo_light_am.9.png Binary files differindex 716560b..ea62934 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_default_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_default_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_dark_am.9.png Binary files differindex c3ba89c..de08ee6 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_light_am.9.png Binary files differindex 67c5358..81e0e46 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_focused_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_focused_holo_dark_am.9.png Binary files differindex c015f43..c17dcdb 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_focused_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_focused_holo_light_am.9.png Binary files differindex 487edc2..234ce2f 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_focused_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_dark_am.9.png Binary files differindex b21c73c..b99eccb 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_light_am.9.png Binary files differindex 58904e8..e2c2967 100644 --- a/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_ab_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_black_16.png b/core/res/res/drawable-mdpi/spinner_black_16.png Binary files differindex 4b7fdfe..f1995c1 100644 --- a/core/res/res/drawable-mdpi/spinner_black_16.png +++ b/core/res/res/drawable-mdpi/spinner_black_16.png diff --git a/core/res/res/drawable-mdpi/spinner_black_20.png b/core/res/res/drawable-mdpi/spinner_black_20.png Binary files differindex 86d7a20..bbff80e 100644 --- a/core/res/res/drawable-mdpi/spinner_black_20.png +++ b/core/res/res/drawable-mdpi/spinner_black_20.png diff --git a/core/res/res/drawable-mdpi/spinner_black_48.png b/core/res/res/drawable-mdpi/spinner_black_48.png Binary files differindex f1571f9..4b4d65a 100644 --- a/core/res/res/drawable-mdpi/spinner_black_48.png +++ b/core/res/res/drawable-mdpi/spinner_black_48.png diff --git a/core/res/res/drawable-mdpi/spinner_black_76.png b/core/res/res/drawable-mdpi/spinner_black_76.png Binary files differindex e9f6e8f..4ca045e 100644 --- a/core/res/res/drawable-mdpi/spinner_black_76.png +++ b/core/res/res/drawable-mdpi/spinner_black_76.png diff --git a/core/res/res/drawable-mdpi/spinner_default_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_default_holo_dark_am.9.png Binary files differindex 5ac84dd..33ddc33 100644 --- a/core/res/res/drawable-mdpi/spinner_default_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_default_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_default_holo_light_am.9.png Binary files differindex 3eeebc4..fd37717 100644 --- a/core/res/res/drawable-mdpi/spinner_default_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_default_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_disabled_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_disabled_holo_dark_am.9.png Binary files differindex 2734f20..57a6ab2 100644 --- a/core/res/res/drawable-mdpi/spinner_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_disabled_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_disabled_holo_light_am.9.png Binary files differindex a78d6c0..aa4ff76 100644 --- a/core/res/res/drawable-mdpi/spinner_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_dropdown_background_down.9.png b/core/res/res/drawable-mdpi/spinner_dropdown_background_down.9.png Binary files differindex 8fd22f4..93a3397 100644 --- a/core/res/res/drawable-mdpi/spinner_dropdown_background_down.9.png +++ b/core/res/res/drawable-mdpi/spinner_dropdown_background_down.9.png diff --git a/core/res/res/drawable-mdpi/spinner_dropdown_background_up.9.png b/core/res/res/drawable-mdpi/spinner_dropdown_background_up.9.png Binary files differindex 1354feb..8890b66 100644 --- a/core/res/res/drawable-mdpi/spinner_dropdown_background_up.9.png +++ b/core/res/res/drawable-mdpi/spinner_dropdown_background_up.9.png diff --git a/core/res/res/drawable-mdpi/spinner_focused_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_focused_holo_dark_am.9.png Binary files differindex 7d91915..25540fc 100644 --- a/core/res/res/drawable-mdpi/spinner_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_focused_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_focused_holo_light_am.9.png Binary files differindex d7c4b87..10e982a 100644 --- a/core/res/res/drawable-mdpi/spinner_focused_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_normal.9.png b/core/res/res/drawable-mdpi/spinner_normal.9.png Binary files differindex e0bab34..3736145 100644 --- a/core/res/res/drawable-mdpi/spinner_normal.9.png +++ b/core/res/res/drawable-mdpi/spinner_normal.9.png diff --git a/core/res/res/drawable-mdpi/spinner_press.9.png b/core/res/res/drawable-mdpi/spinner_press.9.png Binary files differindex a51c7ad..cf76683 100644 --- a/core/res/res/drawable-mdpi/spinner_press.9.png +++ b/core/res/res/drawable-mdpi/spinner_press.9.png diff --git a/core/res/res/drawable-mdpi/spinner_pressed_holo_dark_am.9.png b/core/res/res/drawable-mdpi/spinner_pressed_holo_dark_am.9.png Binary files differindex 75fb81e..6fd1061 100644 --- a/core/res/res/drawable-mdpi/spinner_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_pressed_holo_light_am.9.png b/core/res/res/drawable-mdpi/spinner_pressed_holo_light_am.9.png Binary files differindex fdd88b5..e698f4b 100644 --- a/core/res/res/drawable-mdpi/spinner_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-mdpi/spinner_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-mdpi/spinner_select.9.png b/core/res/res/drawable-mdpi/spinner_select.9.png Binary files differindex 1bb19be..785de62 100644 --- a/core/res/res/drawable-mdpi/spinner_select.9.png +++ b/core/res/res/drawable-mdpi/spinner_select.9.png diff --git a/core/res/res/drawable-mdpi/spinner_white_16.png b/core/res/res/drawable-mdpi/spinner_white_16.png Binary files differindex 650e315..da55a78 100644 --- a/core/res/res/drawable-mdpi/spinner_white_16.png +++ b/core/res/res/drawable-mdpi/spinner_white_16.png diff --git a/core/res/res/drawable-mdpi/spinner_white_48.png b/core/res/res/drawable-mdpi/spinner_white_48.png Binary files differindex 11eacf8..f6ca7f3 100644 --- a/core/res/res/drawable-mdpi/spinner_white_48.png +++ b/core/res/res/drawable-mdpi/spinner_white_48.png diff --git a/core/res/res/drawable-mdpi/spinner_white_76.png b/core/res/res/drawable-mdpi/spinner_white_76.png Binary files differindex 6c31bc3..6f9157a 100644 --- a/core/res/res/drawable-mdpi/spinner_white_76.png +++ b/core/res/res/drawable-mdpi/spinner_white_76.png diff --git a/core/res/res/drawable-mdpi/star_big_off.png b/core/res/res/drawable-mdpi/star_big_off.png Binary files differindex 34ab4ab..4d86521 100644 --- a/core/res/res/drawable-mdpi/star_big_off.png +++ b/core/res/res/drawable-mdpi/star_big_off.png diff --git a/core/res/res/drawable-mdpi/star_big_on.png b/core/res/res/drawable-mdpi/star_big_on.png Binary files differindex 7aaf2bc..edf2e1d 100644 --- a/core/res/res/drawable-mdpi/star_big_on.png +++ b/core/res/res/drawable-mdpi/star_big_on.png diff --git a/core/res/res/drawable-mdpi/star_off.png b/core/res/res/drawable-mdpi/star_off.png Binary files differindex ada53fc..0003edc 100644 --- a/core/res/res/drawable-mdpi/star_off.png +++ b/core/res/res/drawable-mdpi/star_off.png diff --git a/core/res/res/drawable-mdpi/star_on.png b/core/res/res/drawable-mdpi/star_on.png Binary files differindex 49a57b6..60f3a4e 100644 --- a/core/res/res/drawable-mdpi/star_on.png +++ b/core/res/res/drawable-mdpi/star_on.png diff --git a/core/res/res/drawable-mdpi/stat_ecb_mode.png b/core/res/res/drawable-mdpi/stat_ecb_mode.png Binary files differindex a948770..1d3d316 100644 --- a/core/res/res/drawable-mdpi/stat_ecb_mode.png +++ b/core/res/res/drawable-mdpi/stat_ecb_mode.png diff --git a/core/res/res/drawable-mdpi/stat_notify_car_mode.png b/core/res/res/drawable-mdpi/stat_notify_car_mode.png Binary files differindex d8015dc..f656eaa 100644 --- a/core/res/res/drawable-mdpi/stat_notify_car_mode.png +++ b/core/res/res/drawable-mdpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-mdpi/stat_notify_chat.png b/core/res/res/drawable-mdpi/stat_notify_chat.png Binary files differindex 4ff4667..df532b1 100644 --- a/core/res/res/drawable-mdpi/stat_notify_chat.png +++ b/core/res/res/drawable-mdpi/stat_notify_chat.png diff --git a/core/res/res/drawable-mdpi/stat_notify_disk_full.png b/core/res/res/drawable-mdpi/stat_notify_disk_full.png Binary files differindex 392e7bf..34bf994 100644 --- a/core/res/res/drawable-mdpi/stat_notify_disk_full.png +++ b/core/res/res/drawable-mdpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-mdpi/stat_notify_email_generic.png b/core/res/res/drawable-mdpi/stat_notify_email_generic.png Binary files differindex 7732c10..db0613a 100644 --- a/core/res/res/drawable-mdpi/stat_notify_email_generic.png +++ b/core/res/res/drawable-mdpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-mdpi/stat_notify_error.png b/core/res/res/drawable-mdpi/stat_notify_error.png Binary files differindex 78d59aa..3e79082 100644 --- a/core/res/res/drawable-mdpi/stat_notify_error.png +++ b/core/res/res/drawable-mdpi/stat_notify_error.png diff --git a/core/res/res/drawable-mdpi/stat_notify_gmail.png b/core/res/res/drawable-mdpi/stat_notify_gmail.png Binary files differindex 47ee782..26b2e18 100644 --- a/core/res/res/drawable-mdpi/stat_notify_gmail.png +++ b/core/res/res/drawable-mdpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-mdpi/stat_notify_missed_call.png b/core/res/res/drawable-mdpi/stat_notify_missed_call.png Binary files differindex f2ff56e..45c89a1 100644 --- a/core/res/res/drawable-mdpi/stat_notify_missed_call.png +++ b/core/res/res/drawable-mdpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-mdpi/stat_notify_more.png b/core/res/res/drawable-mdpi/stat_notify_more.png Binary files differindex 52b40f8..ff4fd04 100644 --- a/core/res/res/drawable-mdpi/stat_notify_more.png +++ b/core/res/res/drawable-mdpi/stat_notify_more.png diff --git a/core/res/res/drawable-mdpi/stat_notify_rssi_in_range.png b/core/res/res/drawable-mdpi/stat_notify_rssi_in_range.png Binary files differindex 62e4fe9..743fb30 100644 --- a/core/res/res/drawable-mdpi/stat_notify_rssi_in_range.png +++ b/core/res/res/drawable-mdpi/stat_notify_rssi_in_range.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sdcard.png b/core/res/res/drawable-mdpi/stat_notify_sdcard.png Binary files differindex 5eae7a2..68406ac 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sdcard.png +++ b/core/res/res/drawable-mdpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-mdpi/stat_notify_sdcard_prepare.png Binary files differindex a7a8b5c..6972575 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sdcard_prepare.png +++ b/core/res/res/drawable-mdpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-mdpi/stat_notify_sdcard_usb.png Binary files differindex 6f17feb..ea32d74 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sdcard_usb.png +++ b/core/res/res/drawable-mdpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-mdpi/stat_notify_sim_toolkit.png Binary files differindex 6a774cf..01871a7 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sim_toolkit.png +++ b/core/res/res/drawable-mdpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sync.png b/core/res/res/drawable-mdpi/stat_notify_sync.png Binary files differindex 1be8677..c763887 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sync.png +++ b/core/res/res/drawable-mdpi/stat_notify_sync.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sync_anim0.png b/core/res/res/drawable-mdpi/stat_notify_sync_anim0.png Binary files differindex 1be8677..c763887 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sync_anim0.png +++ b/core/res/res/drawable-mdpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-mdpi/stat_notify_sync_error.png b/core/res/res/drawable-mdpi/stat_notify_sync_error.png Binary files differindex 30658c5..755e493 100644 --- a/core/res/res/drawable-mdpi/stat_notify_sync_error.png +++ b/core/res/res/drawable-mdpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-mdpi/stat_notify_voicemail.png b/core/res/res/drawable-mdpi/stat_notify_voicemail.png Binary files differindex dd70146..d238c05 100644 --- a/core/res/res/drawable-mdpi/stat_notify_voicemail.png +++ b/core/res/res/drawable-mdpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_0.png b/core/res/res/drawable-mdpi/stat_sys_battery_0.png Binary files differindex e089120..c4c4a7e 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_0.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_0.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_100.png b/core/res/res/drawable-mdpi/stat_sys_battery_100.png Binary files differindex 70d7fa4..3e9e4c1 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_100.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_100.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_15.png b/core/res/res/drawable-mdpi/stat_sys_battery_15.png Binary files differindex be04321..6e00e61 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_15.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_15.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_28.png b/core/res/res/drawable-mdpi/stat_sys_battery_28.png Binary files differindex f634dde..62039b2 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_28.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_28.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_43.png b/core/res/res/drawable-mdpi/stat_sys_battery_43.png Binary files differindex f0376bd..a9c67a7 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_43.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_43.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_57.png b/core/res/res/drawable-mdpi/stat_sys_battery_57.png Binary files differindex 840af66..01f52c5 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_57.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_57.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_71.png b/core/res/res/drawable-mdpi/stat_sys_battery_71.png Binary files differindex 04c3569..9183bb4 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_71.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_71.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_85.png b/core/res/res/drawable-mdpi/stat_sys_battery_85.png Binary files differindex c742da7..51107c8 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_85.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_85.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim0.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim0.png Binary files differindex f8011c9..e223111 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim0.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim0.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim100.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim100.png Binary files differindex 499ced9..1c55fc9 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim100.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim100.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim15.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim15.png Binary files differindex c921d6a..d8b0457 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim15.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim15.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim28.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim28.png Binary files differindex f882002..63a30e2 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim28.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim28.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim43.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim43.png Binary files differindex e7d1069..524cdbe 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim43.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim43.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim57.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim57.png Binary files differindex 5e0af3d..1c3625c 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim57.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim57.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim71.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim71.png Binary files differindex fb99059..4d13f9a 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim71.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim71.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim85.png b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim85.png Binary files differindex 072f907..32b5273 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim85.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_charge_anim85.png diff --git a/core/res/res/drawable-mdpi/stat_sys_battery_unknown.png b/core/res/res/drawable-mdpi/stat_sys_battery_unknown.png Binary files differindex 3984c46..848a355 100644 --- a/core/res/res/drawable-mdpi/stat_sys_battery_unknown.png +++ b/core/res/res/drawable-mdpi/stat_sys_battery_unknown.png diff --git a/core/res/res/drawable-mdpi/stat_sys_certificate_info.png b/core/res/res/drawable-mdpi/stat_sys_certificate_info.png Binary files differindex e15cf38..208b316 100644 --- a/core/res/res/drawable-mdpi/stat_sys_certificate_info.png +++ b/core/res/res/drawable-mdpi/stat_sys_certificate_info.png diff --git a/core/res/res/drawable-mdpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-mdpi/stat_sys_data_bluetooth.png Binary files differindex 68fe66a..face885 100644 --- a/core/res/res/drawable-mdpi/stat_sys_data_bluetooth.png +++ b/core/res/res/drawable-mdpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-mdpi/stat_sys_data_usb.png b/core/res/res/drawable-mdpi/stat_sys_data_usb.png Binary files differindex 40d77f0..80af407 100644 --- a/core/res/res/drawable-mdpi/stat_sys_data_usb.png +++ b/core/res/res/drawable-mdpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_3_fully.png b/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_3_fully.png Binary files differindex d3ba98c..fd0e4f3 100644 --- a/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_3_fully.png +++ b/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_3_fully.png diff --git a/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_disconnected.png b/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_disconnected.png Binary files differindex 153c6ad..2417c7b 100644 --- a/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_disconnected.png +++ b/core/res/res/drawable-mdpi/stat_sys_data_wimax_signal_disconnected.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim0.png b/core/res/res/drawable-mdpi/stat_sys_download_anim0.png Binary files differindex 25324f6..220ebbf 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim0.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim1.png b/core/res/res/drawable-mdpi/stat_sys_download_anim1.png Binary files differindex 6d1fb4a..1d3cce2 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim1.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim2.png b/core/res/res/drawable-mdpi/stat_sys_download_anim2.png Binary files differindex 4c3e963..da8c96a 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim2.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim3.png b/core/res/res/drawable-mdpi/stat_sys_download_anim3.png Binary files differindex 2aae625..4690f27 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim3.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim4.png b/core/res/res/drawable-mdpi/stat_sys_download_anim4.png Binary files differindex 55dbe12..6c2aab9 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim4.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-mdpi/stat_sys_download_anim5.png b/core/res/res/drawable-mdpi/stat_sys_download_anim5.png Binary files differindex 53fda44..be9242f 100644 --- a/core/res/res/drawable-mdpi/stat_sys_download_anim5.png +++ b/core/res/res/drawable-mdpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-mdpi/stat_sys_gps_on.png b/core/res/res/drawable-mdpi/stat_sys_gps_on.png Binary files differindex 311a1de..0f986ed 100644 --- a/core/res/res/drawable-mdpi/stat_sys_gps_on.png +++ b/core/res/res/drawable-mdpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-mdpi/stat_sys_headset.png b/core/res/res/drawable-mdpi/stat_sys_headset.png Binary files differindex 45fbea2..d6c5901 100644 --- a/core/res/res/drawable-mdpi/stat_sys_headset.png +++ b/core/res/res/drawable-mdpi/stat_sys_headset.png diff --git a/core/res/res/drawable-mdpi/stat_sys_phone_call.png b/core/res/res/drawable-mdpi/stat_sys_phone_call.png Binary files differindex 71da6a2..fea9ce4 100644 --- a/core/res/res/drawable-mdpi/stat_sys_phone_call.png +++ b/core/res/res/drawable-mdpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-mdpi/stat_sys_phone_call_forward.png b/core/res/res/drawable-mdpi/stat_sys_phone_call_forward.png Binary files differindex b0dbe6d..b225274 100644 --- a/core/res/res/drawable-mdpi/stat_sys_phone_call_forward.png +++ b/core/res/res/drawable-mdpi/stat_sys_phone_call_forward.png diff --git a/core/res/res/drawable-mdpi/stat_sys_phone_call_on_hold.png b/core/res/res/drawable-mdpi/stat_sys_phone_call_on_hold.png Binary files differindex 22e9082..a0b4120 100644 --- a/core/res/res/drawable-mdpi/stat_sys_phone_call_on_hold.png +++ b/core/res/res/drawable-mdpi/stat_sys_phone_call_on_hold.png diff --git a/core/res/res/drawable-mdpi/stat_sys_r_signal_0_cdma.png b/core/res/res/drawable-mdpi/stat_sys_r_signal_0_cdma.png Binary files differindex f39f5ba..dadb67a 100644 --- a/core/res/res/drawable-mdpi/stat_sys_r_signal_0_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_r_signal_0_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_r_signal_1_cdma.png b/core/res/res/drawable-mdpi/stat_sys_r_signal_1_cdma.png Binary files differindex 86bb2de..7227b92 100644 --- a/core/res/res/drawable-mdpi/stat_sys_r_signal_1_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_r_signal_1_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_r_signal_2_cdma.png b/core/res/res/drawable-mdpi/stat_sys_r_signal_2_cdma.png Binary files differindex b6eda07..7255820 100644 --- a/core/res/res/drawable-mdpi/stat_sys_r_signal_2_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_r_signal_2_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_r_signal_3_cdma.png b/core/res/res/drawable-mdpi/stat_sys_r_signal_3_cdma.png Binary files differindex b7ca7f9..147fd29 100644 --- a/core/res/res/drawable-mdpi/stat_sys_r_signal_3_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_r_signal_3_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_r_signal_4_cdma.png b/core/res/res/drawable-mdpi/stat_sys_r_signal_4_cdma.png Binary files differindex 61a9575..5915f22 100644 --- a/core/res/res/drawable-mdpi/stat_sys_r_signal_4_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_r_signal_4_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_ra_signal_0_cdma.png b/core/res/res/drawable-mdpi/stat_sys_ra_signal_0_cdma.png Binary files differindex feb4f2c..0fa8c84 100644 --- a/core/res/res/drawable-mdpi/stat_sys_ra_signal_0_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_ra_signal_0_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_ra_signal_1_cdma.png b/core/res/res/drawable-mdpi/stat_sys_ra_signal_1_cdma.png Binary files differindex a42ff0c..20f9cf0 100644 --- a/core/res/res/drawable-mdpi/stat_sys_ra_signal_1_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_ra_signal_1_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_ra_signal_2_cdma.png b/core/res/res/drawable-mdpi/stat_sys_ra_signal_2_cdma.png Binary files differindex e991c76..86b5960 100644 --- a/core/res/res/drawable-mdpi/stat_sys_ra_signal_2_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_ra_signal_2_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_ra_signal_3_cdma.png b/core/res/res/drawable-mdpi/stat_sys_ra_signal_3_cdma.png Binary files differindex 4b743fb..a59d71f 100644 --- a/core/res/res/drawable-mdpi/stat_sys_ra_signal_3_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_ra_signal_3_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_ra_signal_4_cdma.png b/core/res/res/drawable-mdpi/stat_sys_ra_signal_4_cdma.png Binary files differindex 65172b7..300be2b 100644 --- a/core/res/res/drawable-mdpi/stat_sys_ra_signal_4_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_ra_signal_4_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_0_cdma.png b/core/res/res/drawable-mdpi/stat_sys_signal_0_cdma.png Binary files differindex 03c51ce..506e3a2 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_0_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_0_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_1_cdma.png b/core/res/res/drawable-mdpi/stat_sys_signal_1_cdma.png Binary files differindex dced6df..74b341d 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_1_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_1_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_2_cdma.png b/core/res/res/drawable-mdpi/stat_sys_signal_2_cdma.png Binary files differindex 9eac4c6..2eaa0a2 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_2_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_2_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_3_cdma.png b/core/res/res/drawable-mdpi/stat_sys_signal_3_cdma.png Binary files differindex 74d983c..c17b9d5 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_3_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_3_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_4_cdma.png b/core/res/res/drawable-mdpi/stat_sys_signal_4_cdma.png Binary files differindex 8cc40b5..e40fd77 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_4_cdma.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_4_cdma.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_0.png b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_0.png Binary files differindex 177e0e9..8fbbb58 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_0.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_0.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_1.png b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_1.png Binary files differindex 5f66319..4e6d89c 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_1.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_1.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_2.png b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_2.png Binary files differindex c365912..0a067e9 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_2.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_2.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_3.png b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_3.png Binary files differindex 58d631b..6a671d5 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_3.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_3.png diff --git a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_4.png b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_4.png Binary files differindex e63af68..9f5a362 100644 --- a/core/res/res/drawable-mdpi/stat_sys_signal_evdo_4.png +++ b/core/res/res/drawable-mdpi/stat_sys_signal_evdo_4.png diff --git a/core/res/res/drawable-mdpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-mdpi/stat_sys_tether_bluetooth.png Binary files differindex f42dae0..ba16205 100644 --- a/core/res/res/drawable-mdpi/stat_sys_tether_bluetooth.png +++ b/core/res/res/drawable-mdpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-mdpi/stat_sys_tether_general.png b/core/res/res/drawable-mdpi/stat_sys_tether_general.png Binary files differindex 0655161..9aa1350 100644 --- a/core/res/res/drawable-mdpi/stat_sys_tether_general.png +++ b/core/res/res/drawable-mdpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-mdpi/stat_sys_tether_usb.png b/core/res/res/drawable-mdpi/stat_sys_tether_usb.png Binary files differindex 2e2b8ca..5663bcb 100644 --- a/core/res/res/drawable-mdpi/stat_sys_tether_usb.png +++ b/core/res/res/drawable-mdpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-mdpi/stat_sys_throttled.png b/core/res/res/drawable-mdpi/stat_sys_throttled.png Binary files differindex ef6a7af..1e85b07 100644 --- a/core/res/res/drawable-mdpi/stat_sys_throttled.png +++ b/core/res/res/drawable-mdpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim0.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim0.png Binary files differindex 6402aa5..f97b322 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim0.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim1.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim1.png Binary files differindex b9c364c..5609f2d 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim1.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim2.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim2.png Binary files differindex 217ea4e..b1c8622 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim2.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim3.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim3.png Binary files differindex e22ec6d..ad168ad 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim3.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim4.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim4.png Binary files differindex a86d5cd..c47f396 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim4.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-mdpi/stat_sys_upload_anim5.png b/core/res/res/drawable-mdpi/stat_sys_upload_anim5.png Binary files differindex 3387dbb..ac7c5ef 100644 --- a/core/res/res/drawable-mdpi/stat_sys_upload_anim5.png +++ b/core/res/res/drawable-mdpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-mdpi/stat_sys_vp_phone_call.png b/core/res/res/drawable-mdpi/stat_sys_vp_phone_call.png Binary files differindex 32b23ed..7223791 100644 --- a/core/res/res/drawable-mdpi/stat_sys_vp_phone_call.png +++ b/core/res/res/drawable-mdpi/stat_sys_vp_phone_call.png diff --git a/core/res/res/drawable-mdpi/stat_sys_vp_phone_call_on_hold.png b/core/res/res/drawable-mdpi/stat_sys_vp_phone_call_on_hold.png Binary files differindex a4c1fc8..4527e8f 100644 --- a/core/res/res/drawable-mdpi/stat_sys_vp_phone_call_on_hold.png +++ b/core/res/res/drawable-mdpi/stat_sys_vp_phone_call_on_hold.png diff --git a/core/res/res/drawable-mdpi/stat_sys_warning.png b/core/res/res/drawable-mdpi/stat_sys_warning.png Binary files differindex 168f8f6..daf78f3 100644 --- a/core/res/res/drawable-mdpi/stat_sys_warning.png +++ b/core/res/res/drawable-mdpi/stat_sys_warning.png diff --git a/core/res/res/drawable-mdpi/status_bar_background.png b/core/res/res/drawable-mdpi/status_bar_background.png Binary files differindex cd11166..a466c88 100644 --- a/core/res/res/drawable-mdpi/status_bar_background.png +++ b/core/res/res/drawable-mdpi/status_bar_background.png diff --git a/core/res/res/drawable-mdpi/status_bar_header_background.9.png b/core/res/res/drawable-mdpi/status_bar_header_background.9.png Binary files differindex fa9a90c..2b120ee 100644 --- a/core/res/res/drawable-mdpi/status_bar_header_background.9.png +++ b/core/res/res/drawable-mdpi/status_bar_header_background.9.png diff --git a/core/res/res/drawable-mdpi/status_bar_item_app_background_normal.9.png b/core/res/res/drawable-mdpi/status_bar_item_app_background_normal.9.png Binary files differindex 873c556..11809ac 100644 --- a/core/res/res/drawable-mdpi/status_bar_item_app_background_normal.9.png +++ b/core/res/res/drawable-mdpi/status_bar_item_app_background_normal.9.png diff --git a/core/res/res/drawable-mdpi/status_bar_item_background_focus.9.png b/core/res/res/drawable-mdpi/status_bar_item_background_focus.9.png Binary files differindex c3e2415..8778f7f 100644 --- a/core/res/res/drawable-mdpi/status_bar_item_background_focus.9.png +++ b/core/res/res/drawable-mdpi/status_bar_item_background_focus.9.png diff --git a/core/res/res/drawable-mdpi/status_bar_item_background_normal.9.png b/core/res/res/drawable-mdpi/status_bar_item_background_normal.9.png Binary files differindex f0e4d06..b90941b 100644 --- a/core/res/res/drawable-mdpi/status_bar_item_background_normal.9.png +++ b/core/res/res/drawable-mdpi/status_bar_item_background_normal.9.png diff --git a/core/res/res/drawable-mdpi/status_bar_item_background_pressed.9.png b/core/res/res/drawable-mdpi/status_bar_item_background_pressed.9.png Binary files differindex 02b4e9a..7402a69 100644 --- a/core/res/res/drawable-mdpi/status_bar_item_background_pressed.9.png +++ b/core/res/res/drawable-mdpi/status_bar_item_background_pressed.9.png diff --git a/core/res/res/drawable-mdpi/statusbar_background.9.png b/core/res/res/drawable-mdpi/statusbar_background.9.png Binary files differindex eb7c1a4..c4352fc 100644 --- a/core/res/res/drawable-mdpi/statusbar_background.9.png +++ b/core/res/res/drawable-mdpi/statusbar_background.9.png diff --git a/core/res/res/drawable-mdpi/submenu_arrow_nofocus.png b/core/res/res/drawable-mdpi/submenu_arrow_nofocus.png Binary files differindex cead09e..2802105 100644 --- a/core/res/res/drawable-mdpi/submenu_arrow_nofocus.png +++ b/core/res/res/drawable-mdpi/submenu_arrow_nofocus.png diff --git a/core/res/res/drawable-mdpi/switch_bg_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_bg_disabled_holo_dark.9.png Binary files differindex 76ccb8e..a4746fe 100644 --- a/core/res/res/drawable-mdpi/switch_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_bg_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/switch_bg_disabled_holo_light.9.png Binary files differindex 1e56c32..98513e5 100644 --- a/core/res/res/drawable-mdpi/switch_bg_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_bg_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_bg_focused_holo_dark.9.png Binary files differindex 914e433..d2222c1 100644 --- a/core/res/res/drawable-mdpi/switch_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_bg_focused_holo_light.9.png b/core/res/res/drawable-mdpi/switch_bg_focused_holo_light.9.png Binary files differindex 89b0273..67477b0 100644 --- a/core/res/res/drawable-mdpi/switch_bg_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_bg_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_bg_holo_dark.9.png Binary files differindex b5582b5..13e9a16 100644 --- a/core/res/res/drawable-mdpi/switch_bg_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_bg_holo_light.9.png b/core/res/res/drawable-mdpi/switch_bg_holo_light.9.png Binary files differindex a2af2b5..0970b91 100644 --- a/core/res/res/drawable-mdpi/switch_bg_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_bg_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_activated_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_thumb_activated_holo_dark.9.png Binary files differindex 3d7c236..fd66d7c 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_activated_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_activated_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_activated_holo_light.9.png b/core/res/res/drawable-mdpi/switch_thumb_activated_holo_light.9.png Binary files differindex 3d7c236..fd66d7c 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_activated_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_activated_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_dark.9.png Binary files differindex 82f05d6..6e341e5 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png Binary files differindex 82f05d6..6e341e5 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_thumb_holo_dark.9.png Binary files differindex 9bc7a68..f8936c5 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_holo_light.9.png b/core/res/res/drawable-mdpi/switch_thumb_holo_light.9.png Binary files differindex 9bc7a68..f8936c5 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_dark.9.png Binary files differindex f9f2fc6..14cc609 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png Binary files differindex 28a57a2..366dc1d 100644 --- a/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/sym_action_add.png b/core/res/res/drawable-mdpi/sym_action_add.png Binary files differindex af637b3..357cdcd 100644 --- a/core/res/res/drawable-mdpi/sym_action_add.png +++ b/core/res/res/drawable-mdpi/sym_action_add.png diff --git a/core/res/res/drawable-mdpi/sym_action_call.png b/core/res/res/drawable-mdpi/sym_action_call.png Binary files differindex a442758..14832c50 100644 --- a/core/res/res/drawable-mdpi/sym_action_call.png +++ b/core/res/res/drawable-mdpi/sym_action_call.png diff --git a/core/res/res/drawable-mdpi/sym_action_chat.png b/core/res/res/drawable-mdpi/sym_action_chat.png Binary files differindex 0e28a7d..a74443d 100644 --- a/core/res/res/drawable-mdpi/sym_action_chat.png +++ b/core/res/res/drawable-mdpi/sym_action_chat.png diff --git a/core/res/res/drawable-mdpi/sym_action_email.png b/core/res/res/drawable-mdpi/sym_action_email.png Binary files differindex 5fea417..031c47b 100644 --- a/core/res/res/drawable-mdpi/sym_action_email.png +++ b/core/res/res/drawable-mdpi/sym_action_email.png diff --git a/core/res/res/drawable-mdpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/drawable-mdpi/sym_app_on_sd_unavailable_icon.png Binary files differindex 4730668..632bd2e 100644 --- a/core/res/res/drawable-mdpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/drawable-mdpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/drawable-mdpi/sym_call_incoming.png b/core/res/res/drawable-mdpi/sym_call_incoming.png Binary files differindex 652b882..d00dc3d 100644 --- a/core/res/res/drawable-mdpi/sym_call_incoming.png +++ b/core/res/res/drawable-mdpi/sym_call_incoming.png diff --git a/core/res/res/drawable-mdpi/sym_call_missed.png b/core/res/res/drawable-mdpi/sym_call_missed.png Binary files differindex ed859d0..88c043a 100644 --- a/core/res/res/drawable-mdpi/sym_call_missed.png +++ b/core/res/res/drawable-mdpi/sym_call_missed.png diff --git a/core/res/res/drawable-mdpi/sym_call_outgoing.png b/core/res/res/drawable-mdpi/sym_call_outgoing.png Binary files differindex bdf675d..fb093d1 100644 --- a/core/res/res/drawable-mdpi/sym_call_outgoing.png +++ b/core/res/res/drawable-mdpi/sym_call_outgoing.png diff --git a/core/res/res/drawable-mdpi/sym_contact_card.png b/core/res/res/drawable-mdpi/sym_contact_card.png Binary files differindex 023ea6f..c981efd 100644 --- a/core/res/res/drawable-mdpi/sym_contact_card.png +++ b/core/res/res/drawable-mdpi/sym_contact_card.png diff --git a/core/res/res/drawable-mdpi/sym_def_app_icon.png b/core/res/res/drawable-mdpi/sym_def_app_icon.png Binary files differindex c133a0c..d55645c 100644 --- a/core/res/res/drawable-mdpi/sym_def_app_icon.png +++ b/core/res/res/drawable-mdpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_delete.png b/core/res/res/drawable-mdpi/sym_keyboard_delete.png Binary files differindex 74b836a..8fe7a0e 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_delete_dim.png b/core/res/res/drawable-mdpi/sym_keyboard_delete_dim.png Binary files differindex 25460d8..651ca44 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_delete_dim.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_delete_dim.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_delete_holo.png b/core/res/res/drawable-mdpi/sym_keyboard_delete_holo.png Binary files differindex 1555791..6e0797f 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_delete_holo.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_delete_holo.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_enter.png b/core/res/res/drawable-mdpi/sym_keyboard_enter.png Binary files differindex 0fa53ac..ff3b568 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_enter.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_enter.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_delete.png Binary files differindex 1edb10b..ab2f666 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_ok.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_ok.png Binary files differindex 3148836..03af871 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_ok.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_ok.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_return.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_return.png Binary files differindex 03d9c9b..6246bae 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_return.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_return.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift.png Binary files differindex 97f4661..4ea0ebe 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift_locked.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift_locked.png Binary files differindex 7194b30..c91db36 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift_locked.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_shift_locked.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_feedback_space.png b/core/res/res/drawable-mdpi/sym_keyboard_feedback_space.png Binary files differindex 739db68..2e363a8 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_feedback_space.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_feedback_space.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-mdpi/sym_keyboard_num0_no_plus.png Binary files differindex 9fefaea..ff89c9d 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num0_no_plus.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num1.png b/core/res/res/drawable-mdpi/sym_keyboard_num1.png Binary files differindex 1f37e32..a17f3de 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num1.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num2.png b/core/res/res/drawable-mdpi/sym_keyboard_num2.png Binary files differindex f899f78..82221f8 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num2.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num3.png b/core/res/res/drawable-mdpi/sym_keyboard_num3.png Binary files differindex 6a0f5ef..1d17745 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num3.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num4.png b/core/res/res/drawable-mdpi/sym_keyboard_num4.png Binary files differindex 3a25bcd..11b591f 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num4.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num5.png b/core/res/res/drawable-mdpi/sym_keyboard_num5.png Binary files differindex 064d4bf..9b95cfe 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num5.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num6.png b/core/res/res/drawable-mdpi/sym_keyboard_num6.png Binary files differindex 61ee0a6..b51b6192 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num6.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num7.png b/core/res/res/drawable-mdpi/sym_keyboard_num7.png Binary files differindex b931d7b..5e634c4 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num7.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num8.png b/core/res/res/drawable-mdpi/sym_keyboard_num8.png Binary files differindex f8d2891..2bcbcab 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num8.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_num9.png b/core/res/res/drawable-mdpi/sym_keyboard_num9.png Binary files differindex 056d067..4f8416a 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_num9.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_ok.png b/core/res/res/drawable-mdpi/sym_keyboard_ok.png Binary files differindex b8b5292..96f6c89 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_ok.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_ok.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_ok_dim.png b/core/res/res/drawable-mdpi/sym_keyboard_ok_dim.png Binary files differindex 33ecff5..d0a2ea3 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_ok_dim.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_ok_dim.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_return.png b/core/res/res/drawable-mdpi/sym_keyboard_return.png Binary files differindex 17f2574..ba2db44 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_return.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_return.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_shift.png b/core/res/res/drawable-mdpi/sym_keyboard_shift.png Binary files differindex 572c1c1..b41d2d8 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_shift.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_shift.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_shift_locked.png b/core/res/res/drawable-mdpi/sym_keyboard_shift_locked.png Binary files differindex 175ed6d..9301146 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_shift_locked.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_shift_locked.png diff --git a/core/res/res/drawable-mdpi/sym_keyboard_space.png b/core/res/res/drawable-mdpi/sym_keyboard_space.png Binary files differindex 4e6273b..846a401 100644 --- a/core/res/res/drawable-mdpi/sym_keyboard_space.png +++ b/core/res/res/drawable-mdpi/sym_keyboard_space.png diff --git a/core/res/res/drawable-mdpi/tab_bottom_holo.9.png b/core/res/res/drawable-mdpi/tab_bottom_holo.9.png Binary files differindex 1e40b9c..a9360cb 100644 --- a/core/res/res/drawable-mdpi/tab_bottom_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_bottom_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_focus.9.png b/core/res/res/drawable-mdpi/tab_focus.9.png Binary files differindex d9bcc57..0987595 100644 --- a/core/res/res/drawable-mdpi/tab_focus.9.png +++ b/core/res/res/drawable-mdpi/tab_focus.9.png diff --git a/core/res/res/drawable-mdpi/tab_focus_bar_left.9.png b/core/res/res/drawable-mdpi/tab_focus_bar_left.9.png Binary files differindex 2536d94..ce73a1d 100644 --- a/core/res/res/drawable-mdpi/tab_focus_bar_left.9.png +++ b/core/res/res/drawable-mdpi/tab_focus_bar_left.9.png diff --git a/core/res/res/drawable-mdpi/tab_focus_bar_right.9.png b/core/res/res/drawable-mdpi/tab_focus_bar_right.9.png Binary files differindex 2536d94..ce73a1d 100644 --- a/core/res/res/drawable-mdpi/tab_focus_bar_right.9.png +++ b/core/res/res/drawable-mdpi/tab_focus_bar_right.9.png diff --git a/core/res/res/drawable-mdpi/tab_indicator_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/tab_indicator_mtrl_alpha.9.png Binary files differindex b69529c..dfc921f 100644 --- a/core/res/res/drawable-mdpi/tab_indicator_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/tab_indicator_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/tab_press.9.png b/core/res/res/drawable-mdpi/tab_press.9.png Binary files differindex 3332660..02bd9dc 100644 --- a/core/res/res/drawable-mdpi/tab_press.9.png +++ b/core/res/res/drawable-mdpi/tab_press.9.png diff --git a/core/res/res/drawable-mdpi/tab_press_bar_left.9.png b/core/res/res/drawable-mdpi/tab_press_bar_left.9.png Binary files differindex d2c75e3..0dab32a 100644 --- a/core/res/res/drawable-mdpi/tab_press_bar_left.9.png +++ b/core/res/res/drawable-mdpi/tab_press_bar_left.9.png diff --git a/core/res/res/drawable-mdpi/tab_press_bar_right.9.png b/core/res/res/drawable-mdpi/tab_press_bar_right.9.png Binary files differindex d2c75e3..0dab32a 100644 --- a/core/res/res/drawable-mdpi/tab_press_bar_right.9.png +++ b/core/res/res/drawable-mdpi/tab_press_bar_right.9.png diff --git a/core/res/res/drawable-mdpi/tab_pressed_holo.9.png b/core/res/res/drawable-mdpi/tab_pressed_holo.9.png Binary files differindex a76fbae..990fa63 100644 --- a/core/res/res/drawable-mdpi/tab_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected.9.png b/core/res/res/drawable-mdpi/tab_selected.9.png Binary files differindex 54190ea..823cea6 100644 --- a/core/res/res/drawable-mdpi/tab_selected.9.png +++ b/core/res/res/drawable-mdpi/tab_selected.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_bar_left.9.png b/core/res/res/drawable-mdpi/tab_selected_bar_left.9.png Binary files differindex d20f3a2..f28ef02 100644 --- a/core/res/res/drawable-mdpi/tab_selected_bar_left.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_bar_left.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_bar_left_v4.9.png b/core/res/res/drawable-mdpi/tab_selected_bar_left_v4.9.png Binary files differindex 6710945..8ab57c9c 100644 --- a/core/res/res/drawable-mdpi/tab_selected_bar_left_v4.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_bar_left_v4.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_bar_right.9.png b/core/res/res/drawable-mdpi/tab_selected_bar_right.9.png Binary files differindex d20f3a2..f28ef02 100644 --- a/core/res/res/drawable-mdpi/tab_selected_bar_right.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_bar_right.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_bar_right_v4.9.png b/core/res/res/drawable-mdpi/tab_selected_bar_right_v4.9.png Binary files differindex 6710945..8ab57c9c 100644 --- a/core/res/res/drawable-mdpi/tab_selected_bar_right_v4.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_bar_right_v4.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_focused_holo.9.png b/core/res/res/drawable-mdpi/tab_selected_focused_holo.9.png Binary files differindex c9972e7..6eb7f24 100644 --- a/core/res/res/drawable-mdpi/tab_selected_focused_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_focused_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_holo.9.png b/core/res/res/drawable-mdpi/tab_selected_holo.9.png Binary files differindex 587337c..1b1f334 100644 --- a/core/res/res/drawable-mdpi/tab_selected_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_pressed_holo.9.png b/core/res/res/drawable-mdpi/tab_selected_pressed_holo.9.png Binary files differindex c98f046..64d333d 100644 --- a/core/res/res/drawable-mdpi/tab_selected_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_selected_v4.9.png b/core/res/res/drawable-mdpi/tab_selected_v4.9.png Binary files differindex e8e112a..50d33c7 100644 --- a/core/res/res/drawable-mdpi/tab_selected_v4.9.png +++ b/core/res/res/drawable-mdpi/tab_selected_v4.9.png diff --git a/core/res/res/drawable-mdpi/tab_unselected.9.png b/core/res/res/drawable-mdpi/tab_unselected.9.png Binary files differindex 1b8a69c..3708676 100644 --- a/core/res/res/drawable-mdpi/tab_unselected.9.png +++ b/core/res/res/drawable-mdpi/tab_unselected.9.png diff --git a/core/res/res/drawable-mdpi/tab_unselected_focused_holo.9.png b/core/res/res/drawable-mdpi/tab_unselected_focused_holo.9.png Binary files differindex f0cecd1..1da1a2d 100644 --- a/core/res/res/drawable-mdpi/tab_unselected_focused_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_unselected_focused_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_unselected_holo.9.png b/core/res/res/drawable-mdpi/tab_unselected_holo.9.png Binary files differindex a2dbf42..0670c5e 100644 --- a/core/res/res/drawable-mdpi/tab_unselected_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_unselected_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_unselected_pressed_holo.9.png b/core/res/res/drawable-mdpi/tab_unselected_pressed_holo.9.png Binary files differindex 8753459..9a30dc7 100644 --- a/core/res/res/drawable-mdpi/tab_unselected_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/tab_unselected_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/tab_unselected_v4.9.png b/core/res/res/drawable-mdpi/tab_unselected_v4.9.png Binary files differindex 229f503..bb29f07 100644 --- a/core/res/res/drawable-mdpi/tab_unselected_v4.9.png +++ b/core/res/res/drawable-mdpi/tab_unselected_v4.9.png diff --git a/core/res/res/drawable-mdpi/text_edit_paste_window.9.png b/core/res/res/drawable-mdpi/text_edit_paste_window.9.png Binary files differindex caacb5a..4334b94 100644 --- a/core/res/res/drawable-mdpi/text_edit_paste_window.9.png +++ b/core/res/res/drawable-mdpi/text_edit_paste_window.9.png diff --git a/core/res/res/drawable-mdpi/text_edit_side_paste_window.9.png b/core/res/res/drawable-mdpi/text_edit_side_paste_window.9.png Binary files differindex 04300d4..5918fb0 100644 --- a/core/res/res/drawable-mdpi/text_edit_side_paste_window.9.png +++ b/core/res/res/drawable-mdpi/text_edit_side_paste_window.9.png diff --git a/core/res/res/drawable-mdpi/text_edit_suggestions_window.9.png b/core/res/res/drawable-mdpi/text_edit_suggestions_window.9.png Binary files differindex caacb5a..4334b94 100644 --- a/core/res/res/drawable-mdpi/text_edit_suggestions_window.9.png +++ b/core/res/res/drawable-mdpi/text_edit_suggestions_window.9.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_left.png b/core/res/res/drawable-mdpi/text_select_handle_left.png Binary files differindex 750cdea..868c5013 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_left.png +++ b/core/res/res/drawable-mdpi/text_select_handle_left.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_left_mtrl_alpha.png b/core/res/res/drawable-mdpi/text_select_handle_left_mtrl_alpha.png Binary files differindex b36a413..eaacc7d 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_left_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/text_select_handle_left_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_middle.png b/core/res/res/drawable-mdpi/text_select_handle_middle.png Binary files differindex 3cdca90..16d0935 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_middle.png +++ b/core/res/res/drawable-mdpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_middle_mtrl_alpha.png b/core/res/res/drawable-mdpi/text_select_handle_middle_mtrl_alpha.png Binary files differindex e54d32e..eaa97d4 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_middle_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/text_select_handle_middle_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_right.png b/core/res/res/drawable-mdpi/text_select_handle_right.png Binary files differindex fc3d144..4d14620 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_right.png +++ b/core/res/res/drawable-mdpi/text_select_handle_right.png diff --git a/core/res/res/drawable-mdpi/text_select_handle_right_mtrl_alpha.png b/core/res/res/drawable-mdpi/text_select_handle_right_mtrl_alpha.png Binary files differindex afd0bd2..d045024 100644 --- a/core/res/res/drawable-mdpi/text_select_handle_right_mtrl_alpha.png +++ b/core/res/res/drawable-mdpi/text_select_handle_right_mtrl_alpha.png diff --git a/core/res/res/drawable-mdpi/textfield_activated_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_activated_holo_dark.9.png Binary files differindex 33f798d..4f92268 100644 --- a/core/res/res/drawable-mdpi/textfield_activated_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_activated_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_activated_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_activated_holo_light.9.png Binary files differindex 622c684..4f92268 100644 --- a/core/res/res/drawable-mdpi/textfield_activated_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_activated_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_activated_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/textfield_activated_mtrl_alpha.9.png Binary files differindex 45db6f7..7f69672 100644 --- a/core/res/res/drawable-mdpi/textfield_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/textfield_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/textfield_bg_activated_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_bg_activated_holo_dark.9.png Binary files differindex a233b0d..65697ea 100644 --- a/core/res/res/drawable-mdpi/textfield_bg_activated_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_bg_activated_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_bg_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_bg_default_holo_dark.9.png Binary files differindex 403f502..43dc04b 100644 --- a/core/res/res/drawable-mdpi/textfield_bg_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_bg_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_bg_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_bg_disabled_focused_holo_dark.9.png Binary files differindex 0ded801..25735c7 100644 --- a/core/res/res/drawable-mdpi/textfield_bg_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_bg_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_bg_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_bg_disabled_holo_dark.9.png Binary files differindex 27237b8..6d527ff 100644 --- a/core/res/res/drawable-mdpi/textfield_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_bg_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_bg_focused_holo_dark.9.png Binary files differindex 0e451f1..9828a97 100644 --- a/core/res/res/drawable-mdpi/textfield_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_default.9.png b/core/res/res/drawable-mdpi/textfield_default.9.png Binary files differindex 1a59bb2..c61c227 100644 --- a/core/res/res/drawable-mdpi/textfield_default.9.png +++ b/core/res/res/drawable-mdpi/textfield_default.9.png diff --git a/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png Binary files differindex 82fea5e..ef06146 100644 --- a/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png Binary files differindex c780d7d..303c0b5 100644 --- a/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_default_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/textfield_default_mtrl_alpha.9.png Binary files differindex 8111fcb..9d3c2f5 100644 --- a/core/res/res/drawable-mdpi/textfield_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/textfield_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled.9.png b/core/res/res/drawable-mdpi/textfield_disabled.9.png Binary files differindex 800205a..efe1c86 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_dark.9.png Binary files differindex 24bdf71..4fc03c4 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png Binary files differindex 0d5ea83..15355ba 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png Binary files differindex 709f5ef..019bbf3 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png Binary files differindex ea6d2f7..8ea140d 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_disabled_selected.9.png b/core/res/res/drawable-mdpi/textfield_disabled_selected.9.png Binary files differindex 59e1536..ff7fcb3 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_selected.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_selected.9.png diff --git a/core/res/res/drawable-mdpi/textfield_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_focused_holo_dark.9.png Binary files differindex 2d8dd23..6e820f6 100644 --- a/core/res/res/drawable-mdpi/textfield_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_focused_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_focused_holo_light.9.png Binary files differindex 2d8dd23..6e820f6 100644 --- a/core/res/res/drawable-mdpi/textfield_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_longpress_holo.9.png b/core/res/res/drawable-mdpi/textfield_longpress_holo.9.png Binary files differindex 2993b44..4ae0fd6 100644 --- a/core/res/res/drawable-mdpi/textfield_longpress_holo.9.png +++ b/core/res/res/drawable-mdpi/textfield_longpress_holo.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_dark.9.png Binary files differindex 371d6e9..4f92268 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_light.9.png Binary files differindex 225317f..4f92268 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_activated_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_multiline_default_holo_dark.9.png Binary files differindex 4bd6f9f..ef06146 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_multiline_default_holo_light.9.png Binary files differindex 4b837b0..303c0b5 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_dark.9.png Binary files differindex 51cf919..4fc03c4 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_light.9.png Binary files differindex af8d7e1..15355ba 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_dark.9.png Binary files differindex d0fb869..019bbf3 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_light.9.png Binary files differindex a0e233e..8ea140d 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_disabled_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_dark.9.png Binary files differindex 2ed4985..3d5fa31 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_light.9.png Binary files differindex 0603348..6de876e 100644 --- a/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_multiline_focused_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_pressed_holo.9.png b/core/res/res/drawable-mdpi/textfield_pressed_holo.9.png Binary files differindex 4aad237..7afa451 100644 --- a/core/res/res/drawable-mdpi/textfield_pressed_holo.9.png +++ b/core/res/res/drawable-mdpi/textfield_pressed_holo.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_activated_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/textfield_search_activated_mtrl_alpha.9.png Binary files differindex d7faacf..5722450 100644 --- a/core/res/res/drawable-mdpi/textfield_search_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_default.9.png b/core/res/res/drawable-mdpi/textfield_search_default.9.png Binary files differindex 7dc5b27..07c3012 100644 --- a/core/res/res/drawable-mdpi/textfield_search_default.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_default.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png Binary files differindex 081657e..49e9a22 100644 --- a/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png Binary files differindex 3f312b4..937c2c6 100644 --- a/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_default_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/textfield_search_default_mtrl_alpha.9.png Binary files differindex 0a36039..32c4fc1 100644 --- a/core/res/res/drawable-mdpi/textfield_search_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_empty_default.9.png b/core/res/res/drawable-mdpi/textfield_search_empty_default.9.png Binary files differindex 515117f..e97fb90 100644 --- a/core/res/res/drawable-mdpi/textfield_search_empty_default.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_empty_default.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_empty_pressed.9.png b/core/res/res/drawable-mdpi/textfield_search_empty_pressed.9.png Binary files differindex a01f763..11c333b 100644 --- a/core/res/res/drawable-mdpi/textfield_search_empty_pressed.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_empty_pressed.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_empty_selected.9.png b/core/res/res/drawable-mdpi/textfield_search_empty_selected.9.png Binary files differindex 611276f..2fc87f9 100644 --- a/core/res/res/drawable-mdpi/textfield_search_empty_selected.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_empty_selected.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_pressed.9.png b/core/res/res/drawable-mdpi/textfield_search_pressed.9.png Binary files differindex da00c25..41fd89c 100644 --- a/core/res/res/drawable-mdpi/textfield_search_pressed.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_pressed.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_right_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_right_default_holo_dark.9.png Binary files differindex b086fae..131c746 100644 --- a/core/res/res/drawable-mdpi/textfield_search_right_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_right_default_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_right_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_right_default_holo_light.9.png Binary files differindex 73c336a..1b918f2 100644 --- a/core/res/res/drawable-mdpi/textfield_search_right_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_right_default_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_dark.9.png Binary files differindex 726e0ff..ddade3b 100644 --- a/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_light.9.png Binary files differindex 726e0ff..ddade3b 100644 --- a/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_right_selected_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_selected.9.png b/core/res/res/drawable-mdpi/textfield_search_selected.9.png Binary files differindex a9fd3b2..03228b4 100644 --- a/core/res/res/drawable-mdpi/textfield_search_selected.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_selected.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png Binary files differindex 1767c16..ec3d5622 100644 --- a/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png Binary files differindex 1767c16..ec3d5622 100644 --- a/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/textfield_selected.9.png b/core/res/res/drawable-mdpi/textfield_selected.9.png Binary files differindex faadace..127dc0b 100644 --- a/core/res/res/drawable-mdpi/textfield_selected.9.png +++ b/core/res/res/drawable-mdpi/textfield_selected.9.png diff --git a/core/res/res/drawable-mdpi/title_bar_medium.9.png b/core/res/res/drawable-mdpi/title_bar_medium.9.png Binary files differindex 2d41d02..27eee53 100644 --- a/core/res/res/drawable-mdpi/title_bar_medium.9.png +++ b/core/res/res/drawable-mdpi/title_bar_medium.9.png diff --git a/core/res/res/drawable-mdpi/title_bar_portrait.9.png b/core/res/res/drawable-mdpi/title_bar_portrait.9.png Binary files differindex 13b18d8..132bb0c 100644 --- a/core/res/res/drawable-mdpi/title_bar_portrait.9.png +++ b/core/res/res/drawable-mdpi/title_bar_portrait.9.png diff --git a/core/res/res/drawable-mdpi/title_bar_tall.9.png b/core/res/res/drawable-mdpi/title_bar_tall.9.png Binary files differindex 5a050c4..ef9134f 100644 --- a/core/res/res/drawable-mdpi/title_bar_tall.9.png +++ b/core/res/res/drawable-mdpi/title_bar_tall.9.png diff --git a/core/res/res/drawable-mdpi/toast_frame.9.png b/core/res/res/drawable-mdpi/toast_frame.9.png Binary files differindex 778e4e6..fb30599 100644 --- a/core/res/res/drawable-mdpi/toast_frame.9.png +++ b/core/res/res/drawable-mdpi/toast_frame.9.png diff --git a/core/res/res/drawable-mdpi/transportcontrol_bg.9.png b/core/res/res/drawable-mdpi/transportcontrol_bg.9.png Binary files differindex d5a339f..cdc9962 100644 --- a/core/res/res/drawable-mdpi/transportcontrol_bg.9.png +++ b/core/res/res/drawable-mdpi/transportcontrol_bg.9.png diff --git a/core/res/res/drawable-mdpi/unknown_image.png b/core/res/res/drawable-mdpi/unknown_image.png Binary files differindex b1c3e92..e9b648f 100644 --- a/core/res/res/drawable-mdpi/unknown_image.png +++ b/core/res/res/drawable-mdpi/unknown_image.png diff --git a/core/res/res/drawable-mdpi/usb_android.png b/core/res/res/drawable-mdpi/usb_android.png Binary files differindex 492b6e1..fc97e79 100644 --- a/core/res/res/drawable-mdpi/usb_android.png +++ b/core/res/res/drawable-mdpi/usb_android.png diff --git a/core/res/res/drawable-mdpi/usb_android_connected.png b/core/res/res/drawable-mdpi/usb_android_connected.png Binary files differindex 3dd2950..319a55b 100644 --- a/core/res/res/drawable-mdpi/usb_android_connected.png +++ b/core/res/res/drawable-mdpi/usb_android_connected.png diff --git a/core/res/res/drawable-mdpi/vpn_connected.png b/core/res/res/drawable-mdpi/vpn_connected.png Binary files differindex 7e167f8..c6ec190 100644 --- a/core/res/res/drawable-mdpi/vpn_connected.png +++ b/core/res/res/drawable-mdpi/vpn_connected.png diff --git a/core/res/res/drawable-mdpi/vpn_disconnected.png b/core/res/res/drawable-mdpi/vpn_disconnected.png Binary files differindex a08c42a..fae20bc 100644 --- a/core/res/res/drawable-mdpi/vpn_disconnected.png +++ b/core/res/res/drawable-mdpi/vpn_disconnected.png diff --git a/core/res/res/drawable-mdpi/zoom_plate.9.png b/core/res/res/drawable-mdpi/zoom_plate.9.png Binary files differindex c8c1a08..851144a 100644 --- a/core/res/res/drawable-mdpi/zoom_plate.9.png +++ b/core/res/res/drawable-mdpi/zoom_plate.9.png diff --git a/core/res/res/drawable-nodpi/blank_tile.png b/core/res/res/drawable-nodpi/blank_tile.png Binary files differindex 63b9296..ec48d8d 100644 --- a/core/res/res/drawable-nodpi/blank_tile.png +++ b/core/res/res/drawable-nodpi/blank_tile.png diff --git a/core/res/res/drawable-nodpi/loading_tile.png b/core/res/res/drawable-nodpi/loading_tile.png Binary files differindex f5a80c9..a8ea879 100644 --- a/core/res/res/drawable-nodpi/loading_tile.png +++ b/core/res/res/drawable-nodpi/loading_tile.png diff --git a/core/res/res/drawable-nodpi/loading_tile_android.png b/core/res/res/drawable-nodpi/loading_tile_android.png Binary files differindex 8fde46f..9fcea0a 100644 --- a/core/res/res/drawable-nodpi/loading_tile_android.png +++ b/core/res/res/drawable-nodpi/loading_tile_android.png diff --git a/core/res/res/drawable-nodpi/no_tile_128.png b/core/res/res/drawable-nodpi/no_tile_128.png Binary files differindex a9b007d..ac70c59 100644 --- a/core/res/res/drawable-nodpi/no_tile_128.png +++ b/core/res/res/drawable-nodpi/no_tile_128.png diff --git a/core/res/res/drawable-nodpi/no_tile_256.png b/core/res/res/drawable-nodpi/no_tile_256.png Binary files differindex 388234e..3036626 100644 --- a/core/res/res/drawable-nodpi/no_tile_256.png +++ b/core/res/res/drawable-nodpi/no_tile_256.png diff --git a/core/res/res/drawable-nodpi/text_cursor_holo_dark.9.png b/core/res/res/drawable-nodpi/text_cursor_holo_dark.9.png Binary files differindex a1bddc3..3653d19 100644 --- a/core/res/res/drawable-nodpi/text_cursor_holo_dark.9.png +++ b/core/res/res/drawable-nodpi/text_cursor_holo_dark.9.png diff --git a/core/res/res/drawable-nodpi/text_cursor_holo_light.9.png b/core/res/res/drawable-nodpi/text_cursor_holo_light.9.png Binary files differindex cfdb849..9768298 100644 --- a/core/res/res/drawable-nodpi/text_cursor_holo_light.9.png +++ b/core/res/res/drawable-nodpi/text_cursor_holo_light.9.png diff --git a/core/res/res/drawable-sw600dp-hdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-sw600dp-hdpi/ic_lockscreen_handle_pressed.png Binary files differindex 728fc67..8a5ff81 100644 --- a/core/res/res/drawable-sw600dp-hdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-sw600dp-hdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-sw600dp-hdpi/sym_keyboard_return_holo.png b/core/res/res/drawable-sw600dp-hdpi/sym_keyboard_return_holo.png Binary files differindex f1bcf48..1f9420e 100644 --- a/core/res/res/drawable-sw600dp-hdpi/sym_keyboard_return_holo.png +++ b/core/res/res/drawable-sw600dp-hdpi/sym_keyboard_return_holo.png diff --git a/core/res/res/drawable-sw600dp-hdpi/unlock_default.png b/core/res/res/drawable-sw600dp-hdpi/unlock_default.png Binary files differindex 4adf674..0991629 100644 --- a/core/res/res/drawable-sw600dp-hdpi/unlock_default.png +++ b/core/res/res/drawable-sw600dp-hdpi/unlock_default.png diff --git a/core/res/res/drawable-sw600dp-hdpi/unlock_halo.png b/core/res/res/drawable-sw600dp-hdpi/unlock_halo.png Binary files differindex 2a3f9df..21866fd 100644 --- a/core/res/res/drawable-sw600dp-hdpi/unlock_halo.png +++ b/core/res/res/drawable-sw600dp-hdpi/unlock_halo.png diff --git a/core/res/res/drawable-sw600dp-hdpi/unlock_ring.png b/core/res/res/drawable-sw600dp-hdpi/unlock_ring.png Binary files differindex 7d8a413..c78e368 100644 --- a/core/res/res/drawable-sw600dp-hdpi/unlock_ring.png +++ b/core/res/res/drawable-sw600dp-hdpi/unlock_ring.png diff --git a/core/res/res/drawable-sw600dp-hdpi/unlock_wave.png b/core/res/res/drawable-sw600dp-hdpi/unlock_wave.png Binary files differindex d259499..051c227 100644 --- a/core/res/res/drawable-sw600dp-hdpi/unlock_wave.png +++ b/core/res/res/drawable-sw600dp-hdpi/unlock_wave.png diff --git a/core/res/res/drawable-sw600dp-mdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-sw600dp-mdpi/ic_lockscreen_handle_pressed.png Binary files differindex c7da024..64a1f04 100644 --- a/core/res/res/drawable-sw600dp-mdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-sw600dp-mdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-sw600dp-mdpi/sym_keyboard_return_holo.png b/core/res/res/drawable-sw600dp-mdpi/sym_keyboard_return_holo.png Binary files differindex d5a7708..5a989a6 100644 --- a/core/res/res/drawable-sw600dp-mdpi/sym_keyboard_return_holo.png +++ b/core/res/res/drawable-sw600dp-mdpi/sym_keyboard_return_holo.png diff --git a/core/res/res/drawable-sw600dp-mdpi/unlock_default.png b/core/res/res/drawable-sw600dp-mdpi/unlock_default.png Binary files differindex 9247467..325e9d1 100644 --- a/core/res/res/drawable-sw600dp-mdpi/unlock_default.png +++ b/core/res/res/drawable-sw600dp-mdpi/unlock_default.png diff --git a/core/res/res/drawable-sw600dp-mdpi/unlock_halo.png b/core/res/res/drawable-sw600dp-mdpi/unlock_halo.png Binary files differindex df7826d..c46c7b9 100644 --- a/core/res/res/drawable-sw600dp-mdpi/unlock_halo.png +++ b/core/res/res/drawable-sw600dp-mdpi/unlock_halo.png diff --git a/core/res/res/drawable-sw600dp-mdpi/unlock_ring.png b/core/res/res/drawable-sw600dp-mdpi/unlock_ring.png Binary files differindex 3a2e6c6..8a0d973 100644 --- a/core/res/res/drawable-sw600dp-mdpi/unlock_ring.png +++ b/core/res/res/drawable-sw600dp-mdpi/unlock_ring.png diff --git a/core/res/res/drawable-sw600dp-mdpi/unlock_wave.png b/core/res/res/drawable-sw600dp-mdpi/unlock_wave.png Binary files differindex 9e38499..88236bb 100644 --- a/core/res/res/drawable-sw600dp-mdpi/unlock_wave.png +++ b/core/res/res/drawable-sw600dp-mdpi/unlock_wave.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-sw600dp-xhdpi/ic_lockscreen_handle_pressed.png Binary files differindex 534c10b..033212e 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-sw600dp-xhdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/sym_keyboard_return_holo.png b/core/res/res/drawable-sw600dp-xhdpi/sym_keyboard_return_holo.png Binary files differindex 55174e0..25efc72 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/sym_keyboard_return_holo.png +++ b/core/res/res/drawable-sw600dp-xhdpi/sym_keyboard_return_holo.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/unlock_default.png b/core/res/res/drawable-sw600dp-xhdpi/unlock_default.png Binary files differindex 4b837ef..001c27f 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/unlock_default.png +++ b/core/res/res/drawable-sw600dp-xhdpi/unlock_default.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/unlock_halo.png b/core/res/res/drawable-sw600dp-xhdpi/unlock_halo.png Binary files differindex 187c6aa..a9367bd 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/unlock_halo.png +++ b/core/res/res/drawable-sw600dp-xhdpi/unlock_halo.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/unlock_ring.png b/core/res/res/drawable-sw600dp-xhdpi/unlock_ring.png Binary files differindex bdae414..585aecc 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/unlock_ring.png +++ b/core/res/res/drawable-sw600dp-xhdpi/unlock_ring.png diff --git a/core/res/res/drawable-sw600dp-xhdpi/unlock_wave.png b/core/res/res/drawable-sw600dp-xhdpi/unlock_wave.png Binary files differindex 035bd92..f750750 100644 --- a/core/res/res/drawable-sw600dp-xhdpi/unlock_wave.png +++ b/core/res/res/drawable-sw600dp-xhdpi/unlock_wave.png diff --git a/core/res/res/drawable-xhdpi/ab_bottom_solid_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_bottom_solid_dark_holo.9.png Binary files differindex 5753346..001854d 100644 --- a/core/res/res/drawable-xhdpi/ab_bottom_solid_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_bottom_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_bottom_solid_inverse_holo.9.png b/core/res/res/drawable-xhdpi/ab_bottom_solid_inverse_holo.9.png Binary files differindex 7e6c047..a7ff204 100644 --- a/core/res/res/drawable-xhdpi/ab_bottom_solid_inverse_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_bottom_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_bottom_solid_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_bottom_solid_light_holo.9.png Binary files differindex 8155fe8..d9b62a7 100644 --- a/core/res/res/drawable-xhdpi/ab_bottom_solid_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_bottom_solid_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_bottom_transparent_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_bottom_transparent_dark_holo.9.png Binary files differindex 6cee9a1..d4be0ef 100644 --- a/core/res/res/drawable-xhdpi/ab_bottom_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_bottom_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_bottom_transparent_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_bottom_transparent_light_holo.9.png Binary files differindex fa4d76a..dec7c36 100644 --- a/core/res/res/drawable-xhdpi/ab_bottom_transparent_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_bottom_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_share_pack_holo_dark.9.png b/core/res/res/drawable-xhdpi/ab_share_pack_holo_dark.9.png Binary files differindex 55099d4..1b30f5b 100644 --- a/core/res/res/drawable-xhdpi/ab_share_pack_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/ab_share_pack_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/ab_share_pack_holo_light.9.png b/core/res/res/drawable-xhdpi/ab_share_pack_holo_light.9.png Binary files differindex 3c4701f..621c0da 100644 --- a/core/res/res/drawable-xhdpi/ab_share_pack_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/ab_share_pack_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/ab_share_pack_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/ab_share_pack_mtrl_alpha.9.png Binary files differindex 8337ffe..af5588c 100644 --- a/core/res/res/drawable-xhdpi/ab_share_pack_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/ab_share_pack_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/ab_solid_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_solid_dark_holo.9.png Binary files differindex 6622cba..ee506cd 100644 --- a/core/res/res/drawable-xhdpi/ab_solid_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_solid_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_solid_light_holo.9.png Binary files differindex c427297..ff93151 100644 --- a/core/res/res/drawable-xhdpi/ab_solid_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_solid_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_solid_shadow_holo.9.png b/core/res/res/drawable-xhdpi/ab_solid_shadow_holo.9.png Binary files differindex d0df29d..c37385c8 100644 --- a/core/res/res/drawable-xhdpi/ab_solid_shadow_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_solid_shadow_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_solid_shadow_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/ab_solid_shadow_mtrl_alpha.9.png Binary files differindex f51af63..522bc73 100644 --- a/core/res/res/drawable-xhdpi/ab_solid_shadow_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/ab_solid_shadow_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/ab_stacked_solid_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_stacked_solid_dark_holo.9.png Binary files differindex a0d9c1b..40a3af5 100644 --- a/core/res/res/drawable-xhdpi/ab_stacked_solid_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_stacked_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_stacked_solid_inverse_holo.9.png b/core/res/res/drawable-xhdpi/ab_stacked_solid_inverse_holo.9.png Binary files differindex 16b9bef..75b8f86 100644 --- a/core/res/res/drawable-xhdpi/ab_stacked_solid_inverse_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_stacked_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_stacked_solid_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_stacked_solid_light_holo.9.png Binary files differindex d36f99f..8514d41 100644 --- a/core/res/res/drawable-xhdpi/ab_stacked_solid_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_stacked_solid_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_stacked_transparent_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_stacked_transparent_dark_holo.9.png Binary files differindex 5ad475d..ca174d6 100644 --- a/core/res/res/drawable-xhdpi/ab_stacked_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_stacked_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_stacked_transparent_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_stacked_transparent_light_holo.9.png Binary files differindex 6ade5ee..aa729b2 100644 --- a/core/res/res/drawable-xhdpi/ab_stacked_transparent_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_stacked_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_transparent_dark_holo.9.png b/core/res/res/drawable-xhdpi/ab_transparent_dark_holo.9.png Binary files differindex 719b923..6f2f3ba 100644 --- a/core/res/res/drawable-xhdpi/ab_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xhdpi/ab_transparent_light_holo.9.png b/core/res/res/drawable-xhdpi/ab_transparent_light_holo.9.png Binary files differindex 6da264d..0783c61 100644 --- a/core/res/res/drawable-xhdpi/ab_transparent_light_holo.9.png +++ b/core/res/res/drawable-xhdpi/ab_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xhdpi/activity_title_bar.9.png b/core/res/res/drawable-xhdpi/activity_title_bar.9.png Binary files differindex 949f31e..f510467 100644 --- a/core/res/res/drawable-xhdpi/activity_title_bar.9.png +++ b/core/res/res/drawable-xhdpi/activity_title_bar.9.png diff --git a/core/res/res/drawable-xhdpi/arrow_down_float.png b/core/res/res/drawable-xhdpi/arrow_down_float.png Binary files differindex b165ee3..9db5560 100644 --- a/core/res/res/drawable-xhdpi/arrow_down_float.png +++ b/core/res/res/drawable-xhdpi/arrow_down_float.png diff --git a/core/res/res/drawable-xhdpi/arrow_up_float.png b/core/res/res/drawable-xhdpi/arrow_up_float.png Binary files differindex 793ec42..2db32ab 100644 --- a/core/res/res/drawable-xhdpi/arrow_up_float.png +++ b/core/res/res/drawable-xhdpi/arrow_up_float.png diff --git a/core/res/res/drawable-xhdpi/battery_charge_background.png b/core/res/res/drawable-xhdpi/battery_charge_background.png Binary files differindex 84b168c..e58c05d 100644 --- a/core/res/res/drawable-xhdpi/battery_charge_background.png +++ b/core/res/res/drawable-xhdpi/battery_charge_background.png diff --git a/core/res/res/drawable-xhdpi/bottom_bar.png b/core/res/res/drawable-xhdpi/bottom_bar.png Binary files differindex 67b1e47..4831b92 100644 --- a/core/res/res/drawable-xhdpi/bottom_bar.png +++ b/core/res/res/drawable-xhdpi/bottom_bar.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_dark.9.png Binary files differindex 7ef2db7..4d316d0 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_light.9.png Binary files differindex 2283b4c..0c68b44 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_dark.9.png Binary files differindex 6d2039e..d99a194 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_light.9.png Binary files differindex 3c909b5..a95beec 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_dark.9.png Binary files differindex d89d5c7..83dce17 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_light.9.png Binary files differindex 0146156..95853cf 100644 --- a/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_cab_done_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_check_buttonless_off.png b/core/res/res/drawable-xhdpi/btn_check_buttonless_off.png Binary files differindex 243a976..3ebdb68 100644 --- a/core/res/res/drawable-xhdpi/btn_check_buttonless_off.png +++ b/core/res/res/drawable-xhdpi/btn_check_buttonless_off.png diff --git a/core/res/res/drawable-xhdpi/btn_check_buttonless_on.png b/core/res/res/drawable-xhdpi/btn_check_buttonless_on.png Binary files differindex 348a264..74890c9 100644 --- a/core/res/res/drawable-xhdpi/btn_check_buttonless_on.png +++ b/core/res/res/drawable-xhdpi/btn_check_buttonless_on.png diff --git a/core/res/res/drawable-xhdpi/btn_check_label_background.9.png b/core/res/res/drawable-xhdpi/btn_check_label_background.9.png Binary files differindex 9257ca9..2dd227b 100644 --- a/core/res/res/drawable-xhdpi/btn_check_label_background.9.png +++ b/core/res/res/drawable-xhdpi/btn_check_label_background.9.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off.png b/core/res/res/drawable-xhdpi/btn_check_off.png Binary files differindex 933864b..1121eb6 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off.png +++ b/core/res/res/drawable-xhdpi/btn_check_off.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable.png b/core/res/res/drawable-xhdpi/btn_check_off_disable.png Binary files differindex 926c694..42cd17d 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused.png b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused.png Binary files differindex 9e99fbd..13b6eb9 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_dark.png Binary files differindex 8417bfe..fb6598e 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_light.png Binary files differindex 903bf20..c2a9ef6 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_dark.png Binary files differindex 8417bfe..fb6598e 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_light.png Binary files differindex 903bf20..c2a9ef6 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disable_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_dark.png Binary files differindex 1dd1eec..97b6638 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_light.png Binary files differindex 481eb77..22a7036 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_dark.png Binary files differindex 85ab478..6fa130e 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_light.png Binary files differindex 6a364bb..7339630 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_dark.png Binary files differindex 828e4bc..11f92de 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_light.png Binary files differindex 1c5e503..f8c4e3d 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_holo.png b/core/res/res/drawable-xhdpi/btn_check_off_holo.png Binary files differindex bcedcea..fc0c863 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_holo.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_holo.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_holo_dark.png Binary files differindex f696db0..ec46d1b 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_holo_light.png Binary files differindex 4518328..b3c207f 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_dark.png Binary files differindex d3d2fa4..d141d9c 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_light.png Binary files differindex b7f226a..c45036c 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_pressed.png b/core/res/res/drawable-xhdpi/btn_check_off_pressed.png Binary files differindex 3a79e75..d19170b 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_dark.png Binary files differindex ffb13b1..5e7015e 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_light.png Binary files differindex 86eb889..9ff717f 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_off_selected.png b/core/res/res/drawable-xhdpi/btn_check_off_selected.png Binary files differindex 8004974..c876a20 100644 --- a/core/res/res/drawable-xhdpi/btn_check_off_selected.png +++ b/core/res/res/drawable-xhdpi/btn_check_off_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on.png b/core/res/res/drawable-xhdpi/btn_check_on.png Binary files differindex 3c98740..688ab9b 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on.png +++ b/core/res/res/drawable-xhdpi/btn_check_on.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_disable.png b/core/res/res/drawable-xhdpi/btn_check_on_disable.png Binary files differindex 11917b5..086ae54 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_disable.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_dark.png Binary files differindex a42c7ff..8a54e0f 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_light.png Binary files differindex 74fa0ff..67f5235 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_dark.png Binary files differindex 499147e..e4dfdb8 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_light.png Binary files differindex d705b42..2ad3b0c 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_dark.png Binary files differindex e64a188..fb56888 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_light.png Binary files differindex 697a18a..a94b36e 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_holo.png b/core/res/res/drawable-xhdpi/btn_check_on_holo.png Binary files differindex 65dd58d..1cf9cc6 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_holo.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_holo.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_on_holo_dark.png Binary files differindex 2fe7b01..7ab5aba 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_on_holo_light.png Binary files differindex a2612d7..9fe69a4 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_pressed.png b/core/res/res/drawable-xhdpi/btn_check_on_pressed.png Binary files differindex 995775e..85ee706 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_dark.png Binary files differindex 028eed6..8b523f0 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_light.png Binary files differindex 61efd3a..219bd32 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_check_on_selected.png b/core/res/res/drawable-xhdpi/btn_check_on_selected.png Binary files differindex a46f2f4..3884df7 100644 --- a/core/res/res/drawable-xhdpi/btn_check_on_selected.png +++ b/core/res/res/drawable-xhdpi/btn_check_on_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_circle_disable.png b/core/res/res/drawable-xhdpi/btn_circle_disable.png Binary files differindex 420e01a..b4ad5d4 100644 --- a/core/res/res/drawable-xhdpi/btn_circle_disable.png +++ b/core/res/res/drawable-xhdpi/btn_circle_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_circle_disable_focused.png b/core/res/res/drawable-xhdpi/btn_circle_disable_focused.png Binary files differindex 6876916..bbd1827 100644 --- a/core/res/res/drawable-xhdpi/btn_circle_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_circle_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_circle_normal.png b/core/res/res/drawable-xhdpi/btn_circle_normal.png Binary files differindex de7e71e..6035683 100644 --- a/core/res/res/drawable-xhdpi/btn_circle_normal.png +++ b/core/res/res/drawable-xhdpi/btn_circle_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_circle_pressed.png b/core/res/res/drawable-xhdpi/btn_circle_pressed.png Binary files differindex 17776e4..6c80135 100644 --- a/core/res/res/drawable-xhdpi/btn_circle_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_circle_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_circle_selected.png b/core/res/res/drawable-xhdpi/btn_circle_selected.png Binary files differindex 98aeff5..e60472b 100644 --- a/core/res/res/drawable-xhdpi/btn_circle_selected.png +++ b/core/res/res/drawable-xhdpi/btn_circle_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_close_normal.png b/core/res/res/drawable-xhdpi/btn_close_normal.png Binary files differindex 2d0b0ea..a25c7b4 100644 --- a/core/res/res/drawable-xhdpi/btn_close_normal.png +++ b/core/res/res/drawable-xhdpi/btn_close_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_close_pressed.png b/core/res/res/drawable-xhdpi/btn_close_pressed.png Binary files differindex 5d9b5ee..8da75f9 100644 --- a/core/res/res/drawable-xhdpi/btn_close_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_close_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_close_selected.png b/core/res/res/drawable-xhdpi/btn_close_selected.png Binary files differindex 1bf1740..daff388 100644 --- a/core/res/res/drawable-xhdpi/btn_close_selected.png +++ b/core/res/res/drawable-xhdpi/btn_close_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_dark.9.png Binary files differindex 41230fe..6f8f0df 100644 --- a/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png Binary files differindex 41230fe..6f8f0df 100644 --- a/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_disabled_holo.9.png b/core/res/res/drawable-xhdpi/btn_default_disabled_holo.9.png Binary files differindex df2a621..cec9b8a 100644 --- a/core/res/res/drawable-xhdpi/btn_default_disabled_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_disabled_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_default_disabled_holo_dark.9.png Binary files differindex 9fa8682..40ea1ea 100644 --- a/core/res/res/drawable-xhdpi/btn_default_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png Binary files differindex 9fa8682..40ea1ea 100644 --- a/core/res/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_focused_holo.9.png b/core/res/res/drawable-xhdpi/btn_default_focused_holo.9.png Binary files differindex 392cee4..4446c55 100644 --- a/core/res/res/drawable-xhdpi/btn_default_focused_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_focused_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_default_focused_holo_dark.9.png Binary files differindex 73488f3..0ff6d4f 100644 --- a/core/res/res/drawable-xhdpi/btn_default_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_default_focused_holo_light.9.png Binary files differindex 73488f3..0ff6d4f 100644 --- a/core/res/res/drawable-xhdpi/btn_default_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal.9.png b/core/res/res/drawable-xhdpi/btn_default_normal.9.png Binary files differindex 7080905..8eceeed 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal_disable.9.png b/core/res/res/drawable-xhdpi/btn_default_normal_disable.9.png Binary files differindex 704bb55..ee535c1 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal_disable.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal_disable.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal_disable_focused.9.png b/core/res/res/drawable-xhdpi/btn_default_normal_disable_focused.9.png Binary files differindex 7f64c75..f66ec30 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal_disable_focused.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal_disable_focused.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal_holo.9.png b/core/res/res/drawable-xhdpi/btn_default_normal_holo.9.png Binary files differindex 92a49db..377ae2c 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_default_normal_holo_dark.9.png Binary files differindex 28edccd..7135281 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_default_normal_holo_light.9.png Binary files differindex 38f8c01..f6f3226 100644 --- a/core/res/res/drawable-xhdpi/btn_default_normal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_normal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_pressed.9.png b/core/res/res/drawable-xhdpi/btn_default_pressed.9.png Binary files differindex 849cd48..6c8c60f 100644 --- a/core/res/res/drawable-xhdpi/btn_default_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_pressed_holo.9.png b/core/res/res/drawable-xhdpi/btn_default_pressed_holo.9.png Binary files differindex 0544d32..67da240 100644 --- a/core/res/res/drawable-xhdpi/btn_default_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_default_pressed_holo_dark.9.png Binary files differindex 37f30eb..f03633c 100644 --- a/core/res/res/drawable-xhdpi/btn_default_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png Binary files differindex a4ac0c7..f18da58 100644 --- a/core/res/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_selected.9.png b/core/res/res/drawable-xhdpi/btn_default_selected.9.png Binary files differindex 2be8da6..c91abd4 100644 --- a/core/res/res/drawable-xhdpi/btn_default_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_small_normal.9.png b/core/res/res/drawable-xhdpi/btn_default_small_normal.9.png Binary files differindex 5b7a3bd..e6105f6 100644 --- a/core/res/res/drawable-xhdpi/btn_default_small_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_small_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_small_normal_disable.9.png b/core/res/res/drawable-xhdpi/btn_default_small_normal_disable.9.png Binary files differindex 36cbd3e..b8b42d9 100644 --- a/core/res/res/drawable-xhdpi/btn_default_small_normal_disable.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_small_normal_disable.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_small_normal_disable_focused.9.png b/core/res/res/drawable-xhdpi/btn_default_small_normal_disable_focused.9.png Binary files differindex 3ce0038..7f059cf 100644 --- a/core/res/res/drawable-xhdpi/btn_default_small_normal_disable_focused.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_small_normal_disable_focused.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_small_pressed.9.png b/core/res/res/drawable-xhdpi/btn_default_small_pressed.9.png Binary files differindex 787ba9e..a4aaf54 100644 --- a/core/res/res/drawable-xhdpi/btn_default_small_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_small_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_small_selected.9.png b/core/res/res/drawable-xhdpi/btn_default_small_selected.9.png Binary files differindex 5874b8c..7dd3061 100644 --- a/core/res/res/drawable-xhdpi/btn_default_small_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_small_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_default_transparent_normal.9.png b/core/res/res/drawable-xhdpi/btn_default_transparent_normal.9.png Binary files differindex fb2fbf5..8490e0d 100644 --- a/core/res/res/drawable-xhdpi/btn_default_transparent_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_default_transparent_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_dialog_disable.png b/core/res/res/drawable-xhdpi/btn_dialog_disable.png Binary files differindex 571e40a..a8ae1b6 100644 --- a/core/res/res/drawable-xhdpi/btn_dialog_disable.png +++ b/core/res/res/drawable-xhdpi/btn_dialog_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_dialog_normal.png b/core/res/res/drawable-xhdpi/btn_dialog_normal.png Binary files differindex 2d0b0ea..a25c7b4 100644 --- a/core/res/res/drawable-xhdpi/btn_dialog_normal.png +++ b/core/res/res/drawable-xhdpi/btn_dialog_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_dialog_pressed.png b/core/res/res/drawable-xhdpi/btn_dialog_pressed.png Binary files differindex 56195d2..0f6b31a 100644 --- a/core/res/res/drawable-xhdpi/btn_dialog_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_dialog_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_dialog_selected.png b/core/res/res/drawable-xhdpi/btn_dialog_selected.png Binary files differindex c33da56..6a21263 100644 --- a/core/res/res/drawable-xhdpi/btn_dialog_selected.png +++ b/core/res/res/drawable-xhdpi/btn_dialog_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_dropdown_disabled.9.png b/core/res/res/drawable-xhdpi/btn_dropdown_disabled.9.png Binary files differindex e45c731..eeff040 100644 --- a/core/res/res/drawable-xhdpi/btn_dropdown_disabled.9.png +++ b/core/res/res/drawable-xhdpi/btn_dropdown_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/btn_dropdown_disabled_focused.9.png b/core/res/res/drawable-xhdpi/btn_dropdown_disabled_focused.9.png Binary files differindex 1e4cec3..930d352 100644 --- a/core/res/res/drawable-xhdpi/btn_dropdown_disabled_focused.9.png +++ b/core/res/res/drawable-xhdpi/btn_dropdown_disabled_focused.9.png diff --git a/core/res/res/drawable-xhdpi/btn_dropdown_normal.9.png b/core/res/res/drawable-xhdpi/btn_dropdown_normal.9.png Binary files differindex aab7658..0475336 100644 --- a/core/res/res/drawable-xhdpi/btn_dropdown_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_dropdown_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_dropdown_pressed.9.png b/core/res/res/drawable-xhdpi/btn_dropdown_pressed.9.png Binary files differindex 4a1ddf3..0c0ef9b 100644 --- a/core/res/res/drawable-xhdpi/btn_dropdown_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_dropdown_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_dropdown_selected.9.png b/core/res/res/drawable-xhdpi/btn_dropdown_selected.9.png Binary files differindex cdae834..acd7bf3 100644 --- a/core/res/res/drawable-xhdpi/btn_dropdown_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_dropdown_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_erase_default.9.png b/core/res/res/drawable-xhdpi/btn_erase_default.9.png Binary files differindex f189e9c..953f716 100644 --- a/core/res/res/drawable-xhdpi/btn_erase_default.9.png +++ b/core/res/res/drawable-xhdpi/btn_erase_default.9.png diff --git a/core/res/res/drawable-xhdpi/btn_erase_pressed.9.png b/core/res/res/drawable-xhdpi/btn_erase_pressed.9.png Binary files differindex 99cd6fd..ef1a4dd 100644 --- a/core/res/res/drawable-xhdpi/btn_erase_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_erase_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_erase_selected.9.png b/core/res/res/drawable-xhdpi/btn_erase_selected.9.png Binary files differindex b6de266..18cb3cc 100644 --- a/core/res/res/drawable-xhdpi/btn_erase_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_erase_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_global_search_normal.9.png b/core/res/res/drawable-xhdpi/btn_global_search_normal.9.png Binary files differindex cc11942..7ac314f 100644 --- a/core/res/res/drawable-xhdpi/btn_global_search_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_global_search_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_group_disabled_holo_dark.9.png Binary files differindex 6bf2fb4..098d03e 100644 --- a/core/res/res/drawable-xhdpi/btn_group_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_group_disabled_holo_light.9.png Binary files differindex 979eccd..9bb9d25 100644 --- a/core/res/res/drawable-xhdpi/btn_group_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_group_focused_holo_dark.9.png Binary files differindex 7252482..cfb1e93 100644 --- a/core/res/res/drawable-xhdpi/btn_group_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_group_focused_holo_light.9.png Binary files differindex 7252482..cfb1e93 100644 --- a/core/res/res/drawable-xhdpi/btn_group_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_normal_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_group_normal_holo_dark.9.png Binary files differindex 3065564..6f879cf 100644 --- a/core/res/res/drawable-xhdpi/btn_group_normal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_normal_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_group_normal_holo_light.9.png Binary files differindex a444e63..1f03dbc 100644 --- a/core/res/res/drawable-xhdpi/btn_group_normal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_normal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_group_pressed_holo_dark.9.png Binary files differindex 60d6675..17338ac 100644 --- a/core/res/res/drawable-xhdpi/btn_group_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_group_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_group_pressed_holo_light.9.png Binary files differindex 142a1c9..d68b8ff 100644 --- a/core/res/res/drawable-xhdpi/btn_group_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_group_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png Binary files differindex d2cd029..fbb4a33 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_off_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_off_holo.9.png Binary files differindex 0f709eb..54033df 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_off_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_off_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_on_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_on_holo.9.png Binary files differindex 2f4de8e..cfeeeec 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_on_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_normal_on_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png Binary files differindex 3871689..79bc2a5 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_off_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_off_holo.9.png Binary files differindex 836ea6e..766f1fb 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_off_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_off_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_on_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_on_holo.9.png Binary files differindex 279db1f..274ee0e 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_on_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_dark_pressed_on_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal.9.png Binary files differindex 981cad9..91de201 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_off.9.png Binary files differindex 2252293..fdb6416 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_on.9.png Binary files differindex 4db7078..e229177 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_normal_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed.9.png Binary files differindex 04e7ea1..3b594a5 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_off.9.png Binary files differindex 95e91e8..dadbadf 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_on.9.png Binary files differindex cdd47d5..9511e05 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_fulltrans_pressed_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png Binary files differindex b26f1d2..d4492f7 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_light_normal_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png Binary files differindex c23a4b2..6e46485 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_light_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal.9.png Binary files differindex 1f3a6b3..6393c27 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_off.9.png Binary files differindex 2a9b6f4..d1a984e 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_on.9.png Binary files differindex 096d6e9..849136e 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_normal_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed.9.png Binary files differindex 20852d6..d7862b6 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_off.9.png Binary files differindex 271c6b4..0e37819 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_on.9.png Binary files differindex e72ec79..3aa8438 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_pressed_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal.9.png Binary files differindex 200d934..0cbebfc 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_off.9.png Binary files differindex e08dcc5..2b2a348 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_on.9.png Binary files differindex fd512d9c..1fc11f8 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_normal_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed.9.png Binary files differindex f3626b6..dcf90aa 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_off.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_off.9.png Binary files differindex b18642d..5fdf61b 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_on.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_on.9.png Binary files differindex 134c4a9..926111a 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_pressed_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_selected.9.png b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_selected.9.png Binary files differindex 8dd3070..2e29ebc 100644 --- a/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_keyboard_key_trans_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_media_player.9.png b/core/res/res/drawable-xhdpi/btn_media_player.9.png Binary files differindex 06e523d..f595461 100644 --- a/core/res/res/drawable-xhdpi/btn_media_player.9.png +++ b/core/res/res/drawable-xhdpi/btn_media_player.9.png diff --git a/core/res/res/drawable-xhdpi/btn_media_player_disabled.9.png b/core/res/res/drawable-xhdpi/btn_media_player_disabled.9.png Binary files differindex 9b3350f..98437fd 100644 --- a/core/res/res/drawable-xhdpi/btn_media_player_disabled.9.png +++ b/core/res/res/drawable-xhdpi/btn_media_player_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/btn_media_player_disabled_selected.9.png b/core/res/res/drawable-xhdpi/btn_media_player_disabled_selected.9.png Binary files differindex 1872a0b..4a315e0 100644 --- a/core/res/res/drawable-xhdpi/btn_media_player_disabled_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_media_player_disabled_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_media_player_pressed.9.png b/core/res/res/drawable-xhdpi/btn_media_player_pressed.9.png Binary files differindex e8810b0..622de69 100644 --- a/core/res/res/drawable-xhdpi/btn_media_player_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_media_player_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_media_player_selected.9.png b/core/res/res/drawable-xhdpi/btn_media_player_selected.9.png Binary files differindex b9287d6..cc34f94 100644 --- a/core/res/res/drawable-xhdpi/btn_media_player_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_media_player_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_minus_default.png b/core/res/res/drawable-xhdpi/btn_minus_default.png Binary files differindex 7e952f1..142b58a 100644 --- a/core/res/res/drawable-xhdpi/btn_minus_default.png +++ b/core/res/res/drawable-xhdpi/btn_minus_default.png diff --git a/core/res/res/drawable-xhdpi/btn_minus_disable.png b/core/res/res/drawable-xhdpi/btn_minus_disable.png Binary files differindex 63901e3..3197eab 100644 --- a/core/res/res/drawable-xhdpi/btn_minus_disable.png +++ b/core/res/res/drawable-xhdpi/btn_minus_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_minus_disable_focused.png b/core/res/res/drawable-xhdpi/btn_minus_disable_focused.png Binary files differindex 9073d49..d9913cd 100644 --- a/core/res/res/drawable-xhdpi/btn_minus_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_minus_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_minus_pressed.png b/core/res/res/drawable-xhdpi/btn_minus_pressed.png Binary files differindex 49dfc3f..36505dc 100644 --- a/core/res/res/drawable-xhdpi/btn_minus_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_minus_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_minus_selected.png b/core/res/res/drawable-xhdpi/btn_minus_selected.png Binary files differindex d1d2101..653abb9 100644 --- a/core/res/res/drawable-xhdpi/btn_minus_selected.png +++ b/core/res/res/drawable-xhdpi/btn_minus_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_plus_default.png b/core/res/res/drawable-xhdpi/btn_plus_default.png Binary files differindex d47113a..4676835 100644 --- a/core/res/res/drawable-xhdpi/btn_plus_default.png +++ b/core/res/res/drawable-xhdpi/btn_plus_default.png diff --git a/core/res/res/drawable-xhdpi/btn_plus_disable.png b/core/res/res/drawable-xhdpi/btn_plus_disable.png Binary files differindex 6432c81..37fdab2 100644 --- a/core/res/res/drawable-xhdpi/btn_plus_disable.png +++ b/core/res/res/drawable-xhdpi/btn_plus_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_plus_disable_focused.png b/core/res/res/drawable-xhdpi/btn_plus_disable_focused.png Binary files differindex 666bf9d..8dadcfa 100644 --- a/core/res/res/drawable-xhdpi/btn_plus_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_plus_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_plus_pressed.png b/core/res/res/drawable-xhdpi/btn_plus_pressed.png Binary files differindex 2fdb1d2..600a207 100644 --- a/core/res/res/drawable-xhdpi/btn_plus_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_plus_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_plus_selected.png b/core/res/res/drawable-xhdpi/btn_plus_selected.png Binary files differindex 0f9157d..5833ffb 100644 --- a/core/res/res/drawable-xhdpi/btn_plus_selected.png +++ b/core/res/res/drawable-xhdpi/btn_plus_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_label_background.9.png b/core/res/res/drawable-xhdpi/btn_radio_label_background.9.png Binary files differindex e5dee60..d3fc9e8 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_label_background.9.png +++ b/core/res/res/drawable-xhdpi/btn_radio_label_background.9.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off.png b/core/res/res/drawable-xhdpi/btn_radio_off.png Binary files differindex b25fd98..377df69 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_dark.png Binary files differindex b93bb66..7db0b15 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_light.png Binary files differindex 2625e8b..fe3d1fd 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_dark.png Binary files differindex aa5f830..4e421af 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_light.png Binary files differindex 1030a80..6c758bd 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_dark.png Binary files differindex 5a12961..96be1b1 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_light.png Binary files differindex 1e2108c..894849f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_holo.png b/core/res/res/drawable-xhdpi/btn_radio_off_holo.png Binary files differindex 1866d07..1236c76 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_holo.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_holo.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_off_holo_dark.png Binary files differindex d04d6e5..131f764 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_off_holo_light.png Binary files differindex 36e82bb..fa35124 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_pressed.png b/core/res/res/drawable-xhdpi/btn_radio_off_pressed.png Binary files differindex 1ee1d4c..ccd424e 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_dark.png Binary files differindex 0f5f32f..8db7ddf 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_light.png Binary files differindex 4097ef2..0f1bca8 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_off_selected.png b/core/res/res/drawable-xhdpi/btn_radio_off_selected.png Binary files differindex 2ef78f0..f5622ec 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_off_selected.png +++ b/core/res/res/drawable-xhdpi/btn_radio_off_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on.png b/core/res/res/drawable-xhdpi/btn_radio_on.png Binary files differindex c3b757e..c0bc59f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_dark.png Binary files differindex 97994e8..63c2ccd 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_light.png Binary files differindex 67e9bd1..806477c 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_dark.png Binary files differindex 346909d..d81c304 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_light.png Binary files differindex 5741490..75863b7 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_dark.png Binary files differindex 587f0ce..5a14d87 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_light.png Binary files differindex 6d78b97..a6c656f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_holo.png b/core/res/res/drawable-xhdpi/btn_radio_on_holo.png Binary files differindex e14392f..f33793f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_holo.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_holo.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_on_holo_dark.png Binary files differindex e565dfe..e0e5774 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_on_holo_light.png Binary files differindex 5a7a5f7..415cf29 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_mtrl_alpha.png b/core/res/res/drawable-xhdpi/btn_radio_on_mtrl_alpha.png Binary files differindex be4aaf3..b5b4b71 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_pressed.png b/core/res/res/drawable-xhdpi/btn_radio_on_pressed.png Binary files differindex a986746..12e751d 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_dark.png Binary files differindex a3795a0..8a54bc0 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_light.png Binary files differindex f8e3bd4..6f13d6d 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_mtrl_alpha.png b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_mtrl_alpha.png Binary files differindex a7ed0f8..73023ba 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_on_selected.png b/core/res/res/drawable-xhdpi/btn_radio_on_selected.png Binary files differindex b3d4234..0faefac 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_on_selected.png +++ b/core/res/res/drawable-xhdpi/btn_radio_on_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_000.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_000.png Binary files differindex b54c6ff..c54911f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_000.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_000.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_001.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_001.png Binary files differindex fff7056..9cfc3cc 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_001.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_001.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_002.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_002.png Binary files differindex 026462d..44df756 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_002.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_002.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_003.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_003.png Binary files differindex 26cc8de..55a3bde 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_003.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_003.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_004.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_004.png Binary files differindex c055fff..4b448bf 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_004.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_004.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_005.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_005.png Binary files differindex a22e780..1485d77 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_005.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_005.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_006.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_006.png Binary files differindex 357374c..7621ba1 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_006.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_006.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_007.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_007.png Binary files differindex 71d4667..eaa1dcf 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_007.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_007.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_008.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_008.png Binary files differindex 2ed175e..7ddbe77 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_008.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_008.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_009.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_009.png Binary files differindex e0f7d8e..e30e48f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_009.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_009.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_010.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_010.png Binary files differindex 62b0578..b3758d6 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_010.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_010.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_011.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_011.png Binary files differindex 4d6ef4a..954fb09 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_011.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_011.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_012.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_012.png Binary files differindex 37cee2d..c07be1f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_012.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_012.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_013.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_013.png Binary files differindex a8bc25f..5501be3 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_013.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_013.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_014.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_014.png Binary files differindex cf68d93..fa7d258 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_014.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_014.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_015.png b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_015.png Binary files differindex 96834bc..0e4cfce 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_015.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_off_mtrl_015.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_000.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_000.png Binary files differindex d068dbe..0e4cfce 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_000.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_000.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_001.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_001.png Binary files differindex 4aabb1e..37e400d 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_001.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_001.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_002.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_002.png Binary files differindex bbac8e4..8c44d76 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_002.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_002.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_003.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_003.png Binary files differindex 2fc7459..59c4735 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_003.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_003.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_004.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_004.png Binary files differindex 83c6d0e..ac06737 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_004.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_004.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_005.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_005.png Binary files differindex 45c08d7..da6d614 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_005.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_005.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_006.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_006.png Binary files differindex 05b7dfb..d9ce1db 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_006.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_006.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_007.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_007.png Binary files differindex baf9964..88aad6d 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_007.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_007.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_008.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_008.png Binary files differindex d6e0369..4ad7610 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_008.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_008.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_009.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_009.png Binary files differindex 3f35270..4fa7eec 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_009.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_009.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_010.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_010.png Binary files differindex a5b34dc..7edf7e7 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_010.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_010.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_011.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_011.png Binary files differindex 361967b..27274ce 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_011.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_011.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_012.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_012.png Binary files differindex c478bb7..600829c 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_012.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_012.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_013.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_013.png Binary files differindex 075fa0c..468a1e0 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_013.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_013.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_014.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_014.png Binary files differindex d9e364b..eb106ae 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_014.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_014.png diff --git a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_015.png b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_015.png Binary files differindex 9924496..c54911f 100644 --- a/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_015.png +++ b/core/res/res/drawable-xhdpi/btn_radio_to_on_mtrl_015.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_dark.png Binary files differindex 94d6b6e..0d96287 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_light.png Binary files differindex 68b8e53..edda9c5 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_dark.png Binary files differindex 0968ae1..dd65176 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_light.png Binary files differindex a444bf3..c7f6e60 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_dark.png Binary files differindex 95eee6a..e15942e 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_light.png Binary files differindex 4489c67..e3fa7a1 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_mtrl_alpha.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_mtrl_alpha.png Binary files differindex 33ec44c..e84e849 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal.png Binary files differindex 67cbc1a..c6660c2 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_dark.png Binary files differindex 0f46649..a8a61f1 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_light.png Binary files differindex e3c0761..c348a5c 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed.png Binary files differindex aaa1c5b..ca6cb85 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_dark.png Binary files differindex dad564d..374739b 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_light.png Binary files differindex c891ae3..1e8e4b0 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_off_selected.png b/core/res/res/drawable-xhdpi/btn_rating_star_off_selected.png Binary files differindex 7eed14c..6a03f99 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_off_selected.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_off_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_dark.png Binary files differindex a8a7bf8..dd9e246 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_light.png Binary files differindex e898819..f386726 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_dark.png Binary files differindex f3a9d3d..ee334b2 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_light.png Binary files differindex 92dfd1a..5720fc5 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_dark.png Binary files differindex 0c9d726..a94936e 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_light.png Binary files differindex 3b2055c..4e00841 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_mtrl_alpha.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_mtrl_alpha.png Binary files differindex 0166d70..282bfe9 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal.png Binary files differindex 1db48b3..1f233c5 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_dark.png Binary files differindex 2b9b617..38ffdaa 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_light.png Binary files differindex 386b90a..48d6e94 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed.png Binary files differindex a8e5d00..b490b8e 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_dark.png Binary files differindex 530eed2..fbdc2b3 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_light.png Binary files differindex 33ee629..12c5ade 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_rating_star_on_selected.png b/core/res/res/drawable-xhdpi/btn_rating_star_on_selected.png Binary files differindex 8ec2103..f5452af 100644 --- a/core/res/res/drawable-xhdpi/btn_rating_star_on_selected.png +++ b/core/res/res/drawable-xhdpi/btn_rating_star_on_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_default.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_default.9.png Binary files differindex 0a12dc9..e852ef7 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_default.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_default.9.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_pressed.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_pressed.9.png Binary files differindex 35ad67c..0ba7898 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_selected.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_selected.9.png Binary files differindex 2f9af47..f40521d 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_default.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_default.9.png Binary files differindex d3c7709..a579e24 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_default.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_default.9.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_pressed.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_pressed.9.png Binary files differindex 0c4f0da..226e983 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_selected.9.png b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_selected.9.png Binary files differindex 2e2f587..6b21db1 100644 --- a/core/res/res/drawable-xhdpi/btn_search_dialog_voice_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_search_dialog_voice_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_square_overlay_disabled.png b/core/res/res/drawable-xhdpi/btn_square_overlay_disabled.png Binary files differindex 3cad470..d5b3bce 100644 --- a/core/res/res/drawable-xhdpi/btn_square_overlay_disabled.png +++ b/core/res/res/drawable-xhdpi/btn_square_overlay_disabled.png diff --git a/core/res/res/drawable-xhdpi/btn_square_overlay_disabled_focused.png b/core/res/res/drawable-xhdpi/btn_square_overlay_disabled_focused.png Binary files differindex fff0d50..88de5f8 100644 --- a/core/res/res/drawable-xhdpi/btn_square_overlay_disabled_focused.png +++ b/core/res/res/drawable-xhdpi/btn_square_overlay_disabled_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_square_overlay_normal.png b/core/res/res/drawable-xhdpi/btn_square_overlay_normal.png Binary files differindex d2bd151..739dac0 100644 --- a/core/res/res/drawable-xhdpi/btn_square_overlay_normal.png +++ b/core/res/res/drawable-xhdpi/btn_square_overlay_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_square_overlay_pressed.png b/core/res/res/drawable-xhdpi/btn_square_overlay_pressed.png Binary files differindex b1bf326..a96f638 100644 --- a/core/res/res/drawable-xhdpi/btn_square_overlay_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_square_overlay_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_square_overlay_selected.png b/core/res/res/drawable-xhdpi/btn_square_overlay_selected.png Binary files differindex c48a996..bbbf4e5 100644 --- a/core/res/res/drawable-xhdpi/btn_square_overlay_selected.png +++ b/core/res/res/drawable-xhdpi/btn_square_overlay_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_off.png b/core/res/res/drawable-xhdpi/btn_star_big_off.png Binary files differindex 4b2abf1..3ae4ae7 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_off.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_off.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_off_disable.png b/core/res/res/drawable-xhdpi/btn_star_big_off_disable.png Binary files differindex c2f8598..8a31aca 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_off_disable.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_off_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_off_disable_focused.png b/core/res/res/drawable-xhdpi/btn_star_big_off_disable_focused.png Binary files differindex 1d1a1de..e07c025 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_off_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_off_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_off_pressed.png b/core/res/res/drawable-xhdpi/btn_star_big_off_pressed.png Binary files differindex c6bb731..c36f8b1 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_off_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_off_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_off_selected.png b/core/res/res/drawable-xhdpi/btn_star_big_off_selected.png Binary files differindex c25f82e..e3b5ecf 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_off_selected.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_off_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_on.png b/core/res/res/drawable-xhdpi/btn_star_big_on.png Binary files differindex 93606c5..fc44f33 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_on.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_on.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_on_disable.png b/core/res/res/drawable-xhdpi/btn_star_big_on_disable.png Binary files differindex c78e42c..1b6a125 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_on_disable.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_on_disable.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_on_disable_focused.png b/core/res/res/drawable-xhdpi/btn_star_big_on_disable_focused.png Binary files differindex 6b2a537..165c261 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_on_disable_focused.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_on_disable_focused.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_on_pressed.png b/core/res/res/drawable-xhdpi/btn_star_big_on_pressed.png Binary files differindex a25d0de..5060ecb 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_on_pressed.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_on_pressed.png diff --git a/core/res/res/drawable-xhdpi/btn_star_big_on_selected.png b/core/res/res/drawable-xhdpi/btn_star_big_on_selected.png Binary files differindex 4d84628..493ffb5 100644 --- a/core/res/res/drawable-xhdpi/btn_star_big_on_selected.png +++ b/core/res/res/drawable-xhdpi/btn_star_big_on_selected.png diff --git a/core/res/res/drawable-xhdpi/btn_star_label_background.9.png b/core/res/res/drawable-xhdpi/btn_star_label_background.9.png Binary files differindex a8b0568..37cb9ec 100644 --- a/core/res/res/drawable-xhdpi/btn_star_label_background.9.png +++ b/core/res/res/drawable-xhdpi/btn_star_label_background.9.png diff --git a/core/res/res/drawable-xhdpi/btn_star_mtrl_alpha.png b/core/res/res/drawable-xhdpi/btn_star_mtrl_alpha.png Binary files differindex a85bc06..1bb6bd1 100644 --- a/core/res/res/drawable-xhdpi/btn_star_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/btn_star_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_dark.png Binary files differindex 13a190d..0e115ce 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png Binary files differindex e9953d9..e2541ae 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_dark.png Binary files differindex 0f05262..28cb625 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png Binary files differindex 90243a0..23dbdf0 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_dark.png Binary files differindex ce667b6..c18786c 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_light.png Binary files differindex fe9cdee..c1d8186 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_dark.png Binary files differindex 392c1be..039b48f 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_light.png Binary files differindex 28869df..b381bf0 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_dark.png Binary files differindex 07c20fd..4399424 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png Binary files differindex aabcec2..9a0cd41 100644 --- a/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_dark.png Binary files differindex 5ffb71b..2ee3757 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png Binary files differindex 22d0cfb..0b57889 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_dark.png Binary files differindex fdee7fa..b8dfdd6 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png Binary files differindex 7b6534b..666a766 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_dark.png Binary files differindex b4e438a..eef73aa 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_light.png Binary files differindex 8d19fc9..b023363 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_dark.png Binary files differindex 046df69..52d97fd 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_light.png Binary files differindex f17d60b..5c2fd1c 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_dark.png Binary files differindex 474a25a..c0db429 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png b/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png Binary files differindex f66c059..e76019b 100644 --- a/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00001.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00001.9.png Binary files differindex df73ef7..c1e342d 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00001.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00001.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00002.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00002.9.png Binary files differindex baf52ed..908ec4d 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00002.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00002.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00003.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00003.9.png Binary files differindex c8f3b1c..58bbe72 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00003.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00003.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00004.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00004.9.png Binary files differindex fe715cf..79b3315 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00004.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00004.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00005.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00005.9.png Binary files differindex 8e66e11..8d64c66 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00005.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00005.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00006.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00006.9.png Binary files differindex 537496e..13bc25e 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00006.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00006.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00007.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00007.9.png Binary files differindex 2722a98..de2e43d 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00007.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00007.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00008.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00008.9.png Binary files differindex 81fad09..6639a74 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00008.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00008.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00009.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00009.9.png Binary files differindex cda20c8..5019158 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00009.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00009.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00010.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00010.9.png Binary files differindex a61ad4b..8247386 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00010.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00010.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00011.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00011.9.png Binary files differindex d6e8e4c..19063c8 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00011.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00011.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00012.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00012.9.png Binary files differindex 785168e..eae4cdf 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00012.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_off_mtrl_00012.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00001.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00001.9.png Binary files differindex 8a648b8..d50db9c 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00001.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00001.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00002.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00002.9.png Binary files differindex 03063d4..9519a6b 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00002.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00002.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00003.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00003.9.png Binary files differindex 6159dec..c4286af 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00003.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00003.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00004.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00004.9.png Binary files differindex 6f1c96c..0f44636 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00004.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00004.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00005.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00005.9.png Binary files differindex 2eaff46..1bfeaec 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00005.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00005.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00006.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00006.9.png Binary files differindex c4d9db8..bbf9205 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00006.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00006.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00007.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00007.9.png Binary files differindex f276f16..de2e43d 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00007.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00007.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00008.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00008.9.png Binary files differindex cf9133e..a7356b2 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00008.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00008.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00009.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00009.9.png Binary files differindex 8f1a6a8..17c7318 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00009.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00009.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00010.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00010.9.png Binary files differindex 5080c46..141e41e 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00010.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00010.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00011.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00011.9.png Binary files differindex 5e39408..039a6f9 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00011.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00011.9.png diff --git a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00012.9.png b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00012.9.png Binary files differindex 435ce21..2a3313b 100644 --- a/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00012.9.png +++ b/core/res/res/drawable-xhdpi/btn_switch_to_on_mtrl_00012.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off.9.png Binary files differindex 1406188..d3b1275 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png Binary files differindex 1e45530..d77de97 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_light.9.png Binary files differindex 1e45530..d77de97 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_dark.9.png Binary files differindex 2c63c5d..024c452 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_light.9.png Binary files differindex 2c63c5d..024c452 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_dark.9.png Binary files differindex dd5e26e..b0c7666 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_light.9.png Binary files differindex dd5e26e..b0c7666 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_dark.9.png Binary files differindex aa9b3c5..7d3208c 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_light.9.png Binary files differindex 367c25a..3325cd9 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_normal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_dark.9.png Binary files differindex ce3d0d9..9d6d7c7 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_light.9.png Binary files differindex 9d07941..353de3b 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_off_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on.9.png Binary files differindex 90f1e7b..cb66195 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png Binary files differindex df28ad0..a72c5d0 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_light.9.png Binary files differindex df28ad0..a72c5d0 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_dark.9.png Binary files differindex 3a27831..e01a9d8 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_light.9.png Binary files differindex 3a27831..e01a9d8 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_dark.9.png Binary files differindex d68bdf4..0979f95 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_light.9.png Binary files differindex d68bdf4..0979f95 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_dark.9.png Binary files differindex da03ec9..34167ed 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_light.9.png Binary files differindex 482b249..5f242e7 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_normal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_dark.9.png Binary files differindex ab794db..134eecf 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_light.9.png Binary files differindex 2ea1047..164eb04 100644 --- a/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_down_disabled.9.png b/core/res/res/drawable-xhdpi/btn_zoom_down_disabled.9.png Binary files differindex 7e4297b..1ee75e3 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_down_disabled.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_down_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_down_disabled_focused.9.png b/core/res/res/drawable-xhdpi/btn_zoom_down_disabled_focused.9.png Binary files differindex f23f23c..07667aa 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_down_disabled_focused.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_down_disabled_focused.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_down_normal.9.png b/core/res/res/drawable-xhdpi/btn_zoom_down_normal.9.png Binary files differindex 59ae103..e706a81 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_down_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_down_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_down_pressed.9.png b/core/res/res/drawable-xhdpi/btn_zoom_down_pressed.9.png Binary files differindex 23c19c1..6abe635 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_down_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_down_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_down_selected.9.png b/core/res/res/drawable-xhdpi/btn_zoom_down_selected.9.png Binary files differindex 9066821..487901b 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_down_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_down_selected.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_page_normal.png b/core/res/res/drawable-xhdpi/btn_zoom_page_normal.png Binary files differindex 9ae3f50..eb4131e 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_page_normal.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_page_normal.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_page_press.png b/core/res/res/drawable-xhdpi/btn_zoom_page_press.png Binary files differindex 3549bdf..1910adb 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_page_press.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_page_press.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_up_disabled.9.png b/core/res/res/drawable-xhdpi/btn_zoom_up_disabled.9.png Binary files differindex 6bc9e2e..a08ed84 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_up_disabled.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_up_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_up_disabled_focused.9.png b/core/res/res/drawable-xhdpi/btn_zoom_up_disabled_focused.9.png Binary files differindex 8dc0568..5b70dba 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_up_disabled_focused.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_up_disabled_focused.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_up_normal.9.png b/core/res/res/drawable-xhdpi/btn_zoom_up_normal.9.png Binary files differindex 7776d28..be0c03f 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_up_normal.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_up_normal.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_up_pressed.9.png b/core/res/res/drawable-xhdpi/btn_zoom_up_pressed.9.png Binary files differindex 2a5b1f4..653c317 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_up_pressed.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_up_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/btn_zoom_up_selected.9.png b/core/res/res/drawable-xhdpi/btn_zoom_up_selected.9.png Binary files differindex f88c377..1050a97 100644 --- a/core/res/res/drawable-xhdpi/btn_zoom_up_selected.9.png +++ b/core/res/res/drawable-xhdpi/btn_zoom_up_selected.9.png diff --git a/core/res/res/drawable-xhdpi/button_onoff_indicator_off.png b/core/res/res/drawable-xhdpi/button_onoff_indicator_off.png Binary files differindex f70fd68..6722f2d 100644 --- a/core/res/res/drawable-xhdpi/button_onoff_indicator_off.png +++ b/core/res/res/drawable-xhdpi/button_onoff_indicator_off.png diff --git a/core/res/res/drawable-xhdpi/button_onoff_indicator_on.png b/core/res/res/drawable-xhdpi/button_onoff_indicator_on.png Binary files differindex 9163be4..e2f4ddf 100644 --- a/core/res/res/drawable-xhdpi/button_onoff_indicator_on.png +++ b/core/res/res/drawable-xhdpi/button_onoff_indicator_on.png diff --git a/core/res/res/drawable-xhdpi/cab_background_bottom_holo_dark.9.png b/core/res/res/drawable-xhdpi/cab_background_bottom_holo_dark.9.png Binary files differindex 0bd0980..2c6255a 100644 --- a/core/res/res/drawable-xhdpi/cab_background_bottom_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/cab_background_bottom_holo_light.9.png b/core/res/res/drawable-xhdpi/cab_background_bottom_holo_light.9.png Binary files differindex 43ed26d..2ec972b 100644 --- a/core/res/res/drawable-xhdpi/cab_background_bottom_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_bottom_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/cab_background_bottom_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/cab_background_bottom_mtrl_alpha.9.png Binary files differindex 9a4abd0..4397b1c 100644 --- a/core/res/res/drawable-xhdpi/cab_background_bottom_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_bottom_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/cab_background_top_holo_dark.9.png b/core/res/res/drawable-xhdpi/cab_background_top_holo_dark.9.png Binary files differindex 7b6d48b..72c12c2 100644 --- a/core/res/res/drawable-xhdpi/cab_background_top_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_top_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/cab_background_top_holo_light.9.png b/core/res/res/drawable-xhdpi/cab_background_top_holo_light.9.png Binary files differindex bafe878..f607354 100644 --- a/core/res/res/drawable-xhdpi/cab_background_top_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_top_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/cab_background_top_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/cab_background_top_mtrl_alpha.9.png Binary files differindex ed8d341..bf472c0 100644 --- a/core/res/res/drawable-xhdpi/cab_background_top_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/cab_background_top_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/call_contact.png b/core/res/res/drawable-xhdpi/call_contact.png Binary files differindex 343e2db..2ae0242 100644 --- a/core/res/res/drawable-xhdpi/call_contact.png +++ b/core/res/res/drawable-xhdpi/call_contact.png diff --git a/core/res/res/drawable-xhdpi/checkbox_off_background.png b/core/res/res/drawable-xhdpi/checkbox_off_background.png Binary files differindex ade4c0a..925239f 100644 --- a/core/res/res/drawable-xhdpi/checkbox_off_background.png +++ b/core/res/res/drawable-xhdpi/checkbox_off_background.png diff --git a/core/res/res/drawable-xhdpi/checkbox_on_background.png b/core/res/res/drawable-xhdpi/checkbox_on_background.png Binary files differindex 5f6803a..e00dc67 100644 --- a/core/res/res/drawable-xhdpi/checkbox_on_background.png +++ b/core/res/res/drawable-xhdpi/checkbox_on_background.png diff --git a/core/res/res/drawable-xhdpi/cling_arrow_up.png b/core/res/res/drawable-xhdpi/cling_arrow_up.png Binary files differindex 2803155..c000a5a 100644 --- a/core/res/res/drawable-xhdpi/cling_arrow_up.png +++ b/core/res/res/drawable-xhdpi/cling_arrow_up.png diff --git a/core/res/res/drawable-xhdpi/cling_bg.9.png b/core/res/res/drawable-xhdpi/cling_bg.9.png Binary files differindex 1cb4681..583fd46 100644 --- a/core/res/res/drawable-xhdpi/cling_bg.9.png +++ b/core/res/res/drawable-xhdpi/cling_bg.9.png diff --git a/core/res/res/drawable-xhdpi/cling_button_normal.9.png b/core/res/res/drawable-xhdpi/cling_button_normal.9.png Binary files differindex 4192563..c45e7af 100644 --- a/core/res/res/drawable-xhdpi/cling_button_normal.9.png +++ b/core/res/res/drawable-xhdpi/cling_button_normal.9.png diff --git a/core/res/res/drawable-xhdpi/cling_button_pressed.9.png b/core/res/res/drawable-xhdpi/cling_button_pressed.9.png Binary files differindex d3ce469..3ea090a 100644 --- a/core/res/res/drawable-xhdpi/cling_button_pressed.9.png +++ b/core/res/res/drawable-xhdpi/cling_button_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/clock_dial.png b/core/res/res/drawable-xhdpi/clock_dial.png Binary files differindex 6cb60a2..df067f5 100644 --- a/core/res/res/drawable-xhdpi/clock_dial.png +++ b/core/res/res/drawable-xhdpi/clock_dial.png diff --git a/core/res/res/drawable-xhdpi/clock_hand_hour.png b/core/res/res/drawable-xhdpi/clock_hand_hour.png Binary files differindex bc0c5bd..ecc01b7 100644 --- a/core/res/res/drawable-xhdpi/clock_hand_hour.png +++ b/core/res/res/drawable-xhdpi/clock_hand_hour.png diff --git a/core/res/res/drawable-xhdpi/clock_hand_minute.png b/core/res/res/drawable-xhdpi/clock_hand_minute.png Binary files differindex 01d611f..d95d28d 100644 --- a/core/res/res/drawable-xhdpi/clock_hand_minute.png +++ b/core/res/res/drawable-xhdpi/clock_hand_minute.png diff --git a/core/res/res/drawable-xhdpi/code_lock_bottom.9.png b/core/res/res/drawable-xhdpi/code_lock_bottom.9.png Binary files differindex 1dbab24..b98011a 100644 --- a/core/res/res/drawable-xhdpi/code_lock_bottom.9.png +++ b/core/res/res/drawable-xhdpi/code_lock_bottom.9.png diff --git a/core/res/res/drawable-xhdpi/code_lock_left.9.png b/core/res/res/drawable-xhdpi/code_lock_left.9.png Binary files differindex ae65521..70f6dcb 100644 --- a/core/res/res/drawable-xhdpi/code_lock_left.9.png +++ b/core/res/res/drawable-xhdpi/code_lock_left.9.png diff --git a/core/res/res/drawable-xhdpi/code_lock_top.9.png b/core/res/res/drawable-xhdpi/code_lock_top.9.png Binary files differindex 31517e4..1e3945d 100644 --- a/core/res/res/drawable-xhdpi/code_lock_top.9.png +++ b/core/res/res/drawable-xhdpi/code_lock_top.9.png diff --git a/core/res/res/drawable-xhdpi/combobox_disabled.png b/core/res/res/drawable-xhdpi/combobox_disabled.png Binary files differindex e8ca0b0..00568e9 100644 --- a/core/res/res/drawable-xhdpi/combobox_disabled.png +++ b/core/res/res/drawable-xhdpi/combobox_disabled.png diff --git a/core/res/res/drawable-xhdpi/combobox_nohighlight.png b/core/res/res/drawable-xhdpi/combobox_nohighlight.png Binary files differindex d75bb06..2980607 100644 --- a/core/res/res/drawable-xhdpi/combobox_nohighlight.png +++ b/core/res/res/drawable-xhdpi/combobox_nohighlight.png diff --git a/core/res/res/drawable-xhdpi/compass_arrow.png b/core/res/res/drawable-xhdpi/compass_arrow.png Binary files differindex 1d0f360..906c2ca 100644 --- a/core/res/res/drawable-xhdpi/compass_arrow.png +++ b/core/res/res/drawable-xhdpi/compass_arrow.png diff --git a/core/res/res/drawable-xhdpi/compass_base.png b/core/res/res/drawable-xhdpi/compass_base.png Binary files differindex a66eb4a..45e1dfc 100644 --- a/core/res/res/drawable-xhdpi/compass_base.png +++ b/core/res/res/drawable-xhdpi/compass_base.png diff --git a/core/res/res/drawable-xhdpi/contact_header_bg.9.png b/core/res/res/drawable-xhdpi/contact_header_bg.9.png Binary files differindex bde1d56..7e689bd 100644 --- a/core/res/res/drawable-xhdpi/contact_header_bg.9.png +++ b/core/res/res/drawable-xhdpi/contact_header_bg.9.png diff --git a/core/res/res/drawable-xhdpi/create_contact.png b/core/res/res/drawable-xhdpi/create_contact.png Binary files differindex c6d5622..295a120 100644 --- a/core/res/res/drawable-xhdpi/create_contact.png +++ b/core/res/res/drawable-xhdpi/create_contact.png diff --git a/core/res/res/drawable-xhdpi/dark_header.9.png b/core/res/res/drawable-xhdpi/dark_header.9.png Binary files differindex 5a0adc8..28d9041 100644 --- a/core/res/res/drawable-xhdpi/dark_header.9.png +++ b/core/res/res/drawable-xhdpi/dark_header.9.png diff --git a/core/res/res/drawable-xhdpi/day_picker_week_view_dayline_holo.9.png b/core/res/res/drawable-xhdpi/day_picker_week_view_dayline_holo.9.png Binary files differindex 701a1b2..498bd92 100644 --- a/core/res/res/drawable-xhdpi/day_picker_week_view_dayline_holo.9.png +++ b/core/res/res/drawable-xhdpi/day_picker_week_view_dayline_holo.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_background_mtrl_mult.9.png b/core/res/res/drawable-xhdpi/dialog_background_mtrl_mult.9.png Binary files differindex e6c0047..f003a77 100644 --- a/core/res/res/drawable-xhdpi/dialog_background_mtrl_mult.9.png +++ b/core/res/res/drawable-xhdpi/dialog_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_bottom_holo_dark.9.png b/core/res/res/drawable-xhdpi/dialog_bottom_holo_dark.9.png Binary files differindex 3c26c6b..add7b18 100644 --- a/core/res/res/drawable-xhdpi/dialog_bottom_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dialog_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_bottom_holo_light.9.png b/core/res/res/drawable-xhdpi/dialog_bottom_holo_light.9.png Binary files differindex f7423f3..79e12a8 100644 --- a/core/res/res/drawable-xhdpi/dialog_bottom_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_bottom_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_dark.9.png Binary files differindex e966846..465edd2 100644 --- a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_light.9.png b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_light.9.png Binary files differindex 093802b..0d470d3 100644 --- a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_light.9.png b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_light.9.png Binary files differindex 02aa017..b0b4334 100644 --- a/core/res/res/drawable-xhdpi/dialog_divider_horizontal_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_divider_horizontal_light.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_full_holo_dark.9.png b/core/res/res/drawable-xhdpi/dialog_full_holo_dark.9.png Binary files differindex 75d36be..2ffe88d 100644 --- a/core/res/res/drawable-xhdpi/dialog_full_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dialog_full_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_full_holo_light.9.png b/core/res/res/drawable-xhdpi/dialog_full_holo_light.9.png Binary files differindex d9bd337..4f91181 100644 --- a/core/res/res/drawable-xhdpi/dialog_full_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_full_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_dark.png b/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_dark.png Binary files differindex aa473ab..4c977e2 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_light.png b/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_light.png Binary files differindex ab21bbe..f2d1b72 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_dark.png b/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_dark.png Binary files differindex 338e1b7..b762bf3 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_light.png b/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_light.png Binary files differindex e11f2e3..4422e85 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_dark.png b/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_dark.png Binary files differindex 0401bcd..e8ac131 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_light.png b/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_light.png Binary files differindex 7040392..0a74d85 100644 --- a/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/dialog_ic_close_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dialog_middle_holo_dark.9.png b/core/res/res/drawable-xhdpi/dialog_middle_holo_dark.9.png Binary files differindex e9467b4..29ca5b4 100644 --- a/core/res/res/drawable-xhdpi/dialog_middle_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dialog_middle_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_middle_holo_light.9.png b/core/res/res/drawable-xhdpi/dialog_middle_holo_light.9.png Binary files differindex ce3a880..d108462 100644 --- a/core/res/res/drawable-xhdpi/dialog_middle_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_middle_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_top_holo_dark.9.png b/core/res/res/drawable-xhdpi/dialog_top_holo_dark.9.png Binary files differindex fa95667..6c4f66c 100644 --- a/core/res/res/drawable-xhdpi/dialog_top_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dialog_top_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dialog_top_holo_light.9.png b/core/res/res/drawable-xhdpi/dialog_top_holo_light.9.png Binary files differindex 555fb81..d8bf3b0 100644 --- a/core/res/res/drawable-xhdpi/dialog_top_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dialog_top_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_bright.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_bright.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_bright.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_bright_opaque.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_bright_opaque.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_bright_opaque.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_dark.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_dark.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_dark.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_dark_opaque.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_dark_opaque.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_dark_opaque.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_dim_dark.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_dim_dark.9.png Binary files differindex cf34613..60b021e 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_dim_dark.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_dim_dark.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_holo_dark.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_holo_dark.9.png Binary files differindex 48a88b8..9995077 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_holo_light.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_holo_light.9.png Binary files differindex 712aef2..d11c37b 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/divider_horizontal_textfield.9.png b/core/res/res/drawable-xhdpi/divider_horizontal_textfield.9.png Binary files differindex c9fa0fd..8f56bad 100644 --- a/core/res/res/drawable-xhdpi/divider_horizontal_textfield.9.png +++ b/core/res/res/drawable-xhdpi/divider_horizontal_textfield.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_bright.9.png b/core/res/res/drawable-xhdpi/divider_vertical_bright.9.png Binary files differindex 41b776b..1ece03d 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_bright.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_bright.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_bright_opaque.9.png b/core/res/res/drawable-xhdpi/divider_vertical_bright_opaque.9.png Binary files differindex eb75a22..2f0a033 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_bright_opaque.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_bright_opaque.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_dark.9.png b/core/res/res/drawable-xhdpi/divider_vertical_dark.9.png Binary files differindex 55a5e53..c09d8fb 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_dark.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_dark.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_dark_opaque.9.png b/core/res/res/drawable-xhdpi/divider_vertical_dark_opaque.9.png Binary files differindex 60e2cb2..a75bcf2 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_dark_opaque.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_dark_opaque.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_holo_dark.9.png b/core/res/res/drawable-xhdpi/divider_vertical_holo_dark.9.png Binary files differindex 9666f73..fa82e16 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/divider_vertical_holo_light.9.png b/core/res/res/drawable-xhdpi/divider_vertical_holo_light.9.png Binary files differindex 026017b..687896a 100644 --- a/core/res/res/drawable-xhdpi/divider_vertical_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/divider_vertical_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_dark.9.png Binary files differindex b5d226a..6a3d365 100644 --- a/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_light.9.png Binary files differindex af85561..f54b825 100644 --- a/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/dropdown_disabled_holo_dark.9.png Binary files differindex bf01b0a..e864102 100644 --- a/core/res/res/drawable-xhdpi/dropdown_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/dropdown_disabled_holo_light.9.png Binary files differindex f4effa1..c676669 100644 --- a/core/res/res/drawable-xhdpi/dropdown_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/dropdown_focused_holo_dark.9.png Binary files differindex ce31d0f..2e3d3db 100644 --- a/core/res/res/drawable-xhdpi/dropdown_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/dropdown_focused_holo_light.9.png Binary files differindex 4596171..5acd801 100644 --- a/core/res/res/drawable-xhdpi/dropdown_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png Binary files differindex adb6c36..f839ef3 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_light.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_light.png Binary files differindex a1075d5..f0e4dfe 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_dark.png Binary files differindex 782325f..74f8d9b 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_light.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_light.png Binary files differindex 195ecbb..8311365 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_focused_holo_light.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_focused_holo_light.png Binary files differindex 988e3f4..26c1ef5 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_dark.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_dark.png Binary files differindex 36d8cf4..92fdc1f 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_light.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_light.png Binary files differindex a931132..9d1b021 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_pressed_holo_light.png b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_pressed_holo_light.png Binary files differindex 833bc13..dafed4a 100644 --- a/core/res/res/drawable-xhdpi/dropdown_ic_arrow_pressed_holo_light.png +++ b/core/res/res/drawable-xhdpi/dropdown_ic_arrow_pressed_holo_light.png diff --git a/core/res/res/drawable-xhdpi/dropdown_normal_holo_dark.9.png b/core/res/res/drawable-xhdpi/dropdown_normal_holo_dark.9.png Binary files differindex ca18b0d..cbdca1c 100644 --- a/core/res/res/drawable-xhdpi/dropdown_normal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_normal_holo_light.9.png b/core/res/res/drawable-xhdpi/dropdown_normal_holo_light.9.png Binary files differindex 37ad0e0..00cdb1e 100644 --- a/core/res/res/drawable-xhdpi/dropdown_normal_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_normal_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/dropdown_pressed_holo_dark.9.png Binary files differindex bdee422..c59dea8 100644 --- a/core/res/res/drawable-xhdpi/dropdown_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/dropdown_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/dropdown_pressed_holo_light.9.png Binary files differindex 12ea054..fa89373 100644 --- a/core/res/res/drawable-xhdpi/dropdown_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/dropdown_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/edit_query.png b/core/res/res/drawable-xhdpi/edit_query.png Binary files differindex dea9701..0f4cad5 100644 --- a/core/res/res/drawable-xhdpi/edit_query.png +++ b/core/res/res/drawable-xhdpi/edit_query.png diff --git a/core/res/res/drawable-xhdpi/edit_query_background_normal.9.png b/core/res/res/drawable-xhdpi/edit_query_background_normal.9.png Binary files differindex 7787df3..f4254a3 100644 --- a/core/res/res/drawable-xhdpi/edit_query_background_normal.9.png +++ b/core/res/res/drawable-xhdpi/edit_query_background_normal.9.png diff --git a/core/res/res/drawable-xhdpi/edit_query_background_pressed.9.png b/core/res/res/drawable-xhdpi/edit_query_background_pressed.9.png Binary files differindex af81b2f..cdca910 100644 --- a/core/res/res/drawable-xhdpi/edit_query_background_pressed.9.png +++ b/core/res/res/drawable-xhdpi/edit_query_background_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/edit_query_background_selected.9.png b/core/res/res/drawable-xhdpi/edit_query_background_selected.9.png Binary files differindex b4f0f59..3408580 100644 --- a/core/res/res/drawable-xhdpi/edit_query_background_selected.9.png +++ b/core/res/res/drawable-xhdpi/edit_query_background_selected.9.png diff --git a/core/res/res/drawable-xhdpi/editbox_background_focus_yellow.9.png b/core/res/res/drawable-xhdpi/editbox_background_focus_yellow.9.png Binary files differindex c4fdda1..12cbb37 100644 --- a/core/res/res/drawable-xhdpi/editbox_background_focus_yellow.9.png +++ b/core/res/res/drawable-xhdpi/editbox_background_focus_yellow.9.png diff --git a/core/res/res/drawable-xhdpi/editbox_background_normal.9.png b/core/res/res/drawable-xhdpi/editbox_background_normal.9.png Binary files differindex e1ee276..64603a3 100644 --- a/core/res/res/drawable-xhdpi/editbox_background_normal.9.png +++ b/core/res/res/drawable-xhdpi/editbox_background_normal.9.png diff --git a/core/res/res/drawable-xhdpi/editbox_dropdown_background.9.png b/core/res/res/drawable-xhdpi/editbox_dropdown_background.9.png Binary files differindex ac9de9a..cf78a1a 100644 --- a/core/res/res/drawable-xhdpi/editbox_dropdown_background.9.png +++ b/core/res/res/drawable-xhdpi/editbox_dropdown_background.9.png diff --git a/core/res/res/drawable-xhdpi/editbox_dropdown_background_dark.9.png b/core/res/res/drawable-xhdpi/editbox_dropdown_background_dark.9.png Binary files differindex 439a856..6d9e174 100644 --- a/core/res/res/drawable-xhdpi/editbox_dropdown_background_dark.9.png +++ b/core/res/res/drawable-xhdpi/editbox_dropdown_background_dark.9.png diff --git a/core/res/res/drawable-xhdpi/emo_im_angel.png b/core/res/res/drawable-xhdpi/emo_im_angel.png Binary files differindex 8853cbe..bc60eb1 100644 --- a/core/res/res/drawable-xhdpi/emo_im_angel.png +++ b/core/res/res/drawable-xhdpi/emo_im_angel.png diff --git a/core/res/res/drawable-xhdpi/emo_im_cool.png b/core/res/res/drawable-xhdpi/emo_im_cool.png Binary files differindex 82cbd55d..05b2f96 100644 --- a/core/res/res/drawable-xhdpi/emo_im_cool.png +++ b/core/res/res/drawable-xhdpi/emo_im_cool.png diff --git a/core/res/res/drawable-xhdpi/emo_im_crying.png b/core/res/res/drawable-xhdpi/emo_im_crying.png Binary files differindex 3151125..e98885f 100644 --- a/core/res/res/drawable-xhdpi/emo_im_crying.png +++ b/core/res/res/drawable-xhdpi/emo_im_crying.png diff --git a/core/res/res/drawable-xhdpi/emo_im_embarrassed.png b/core/res/res/drawable-xhdpi/emo_im_embarrassed.png Binary files differindex ef2fded..a46f28b 100644 --- a/core/res/res/drawable-xhdpi/emo_im_embarrassed.png +++ b/core/res/res/drawable-xhdpi/emo_im_embarrassed.png diff --git a/core/res/res/drawable-xhdpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-xhdpi/emo_im_foot_in_mouth.png Binary files differindex c41b19d..2371b1c 100644 --- a/core/res/res/drawable-xhdpi/emo_im_foot_in_mouth.png +++ b/core/res/res/drawable-xhdpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-xhdpi/emo_im_happy.png b/core/res/res/drawable-xhdpi/emo_im_happy.png Binary files differindex a2702b2..085b125 100644 --- a/core/res/res/drawable-xhdpi/emo_im_happy.png +++ b/core/res/res/drawable-xhdpi/emo_im_happy.png diff --git a/core/res/res/drawable-xhdpi/emo_im_kissing.png b/core/res/res/drawable-xhdpi/emo_im_kissing.png Binary files differindex 7afd2f6..007d02c 100644 --- a/core/res/res/drawable-xhdpi/emo_im_kissing.png +++ b/core/res/res/drawable-xhdpi/emo_im_kissing.png diff --git a/core/res/res/drawable-xhdpi/emo_im_laughing.png b/core/res/res/drawable-xhdpi/emo_im_laughing.png Binary files differindex abc3700..3f7f10f 100644 --- a/core/res/res/drawable-xhdpi/emo_im_laughing.png +++ b/core/res/res/drawable-xhdpi/emo_im_laughing.png diff --git a/core/res/res/drawable-xhdpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-xhdpi/emo_im_lips_are_sealed.png Binary files differindex 60592fb..575af76 100644 --- a/core/res/res/drawable-xhdpi/emo_im_lips_are_sealed.png +++ b/core/res/res/drawable-xhdpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-xhdpi/emo_im_money_mouth.png b/core/res/res/drawable-xhdpi/emo_im_money_mouth.png Binary files differindex 8efcf0b..07b7118 100644 --- a/core/res/res/drawable-xhdpi/emo_im_money_mouth.png +++ b/core/res/res/drawable-xhdpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-xhdpi/emo_im_sad.png b/core/res/res/drawable-xhdpi/emo_im_sad.png Binary files differindex 81e94b1..780082a 100644 --- a/core/res/res/drawable-xhdpi/emo_im_sad.png +++ b/core/res/res/drawable-xhdpi/emo_im_sad.png diff --git a/core/res/res/drawable-xhdpi/emo_im_surprised.png b/core/res/res/drawable-xhdpi/emo_im_surprised.png Binary files differindex 7b7aabf..d01620d 100644 --- a/core/res/res/drawable-xhdpi/emo_im_surprised.png +++ b/core/res/res/drawable-xhdpi/emo_im_surprised.png diff --git a/core/res/res/drawable-xhdpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-xhdpi/emo_im_tongue_sticking_out.png Binary files differindex 1b6a985..4e79888 100644 --- a/core/res/res/drawable-xhdpi/emo_im_tongue_sticking_out.png +++ b/core/res/res/drawable-xhdpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-xhdpi/emo_im_undecided.png b/core/res/res/drawable-xhdpi/emo_im_undecided.png Binary files differindex 2c2cfa6..44aa9c2 100644 --- a/core/res/res/drawable-xhdpi/emo_im_undecided.png +++ b/core/res/res/drawable-xhdpi/emo_im_undecided.png diff --git a/core/res/res/drawable-xhdpi/emo_im_winking.png b/core/res/res/drawable-xhdpi/emo_im_winking.png Binary files differindex 6c9cb0e..b2888e1 100644 --- a/core/res/res/drawable-xhdpi/emo_im_winking.png +++ b/core/res/res/drawable-xhdpi/emo_im_winking.png diff --git a/core/res/res/drawable-xhdpi/emo_im_wtf.png b/core/res/res/drawable-xhdpi/emo_im_wtf.png Binary files differindex 34861e4..622fa74 100644 --- a/core/res/res/drawable-xhdpi/emo_im_wtf.png +++ b/core/res/res/drawable-xhdpi/emo_im_wtf.png diff --git a/core/res/res/drawable-xhdpi/emo_im_yelling.png b/core/res/res/drawable-xhdpi/emo_im_yelling.png Binary files differindex 0583178..c441834 100644 --- a/core/res/res/drawable-xhdpi/emo_im_yelling.png +++ b/core/res/res/drawable-xhdpi/emo_im_yelling.png diff --git a/core/res/res/drawable-xhdpi/expander_close_holo_dark.9.png b/core/res/res/drawable-xhdpi/expander_close_holo_dark.9.png Binary files differindex f56ef31..eea8ac8 100644 --- a/core/res/res/drawable-xhdpi/expander_close_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/expander_close_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/expander_close_holo_light.9.png b/core/res/res/drawable-xhdpi/expander_close_holo_light.9.png Binary files differindex e157024..d5d802d 100644 --- a/core/res/res/drawable-xhdpi/expander_close_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/expander_close_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/expander_close_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/expander_close_mtrl_alpha.9.png Binary files differindex 43dccf3..0337b9d 100644 --- a/core/res/res/drawable-xhdpi/expander_close_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/expander_close_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/expander_ic_maximized.9.png b/core/res/res/drawable-xhdpi/expander_ic_maximized.9.png Binary files differindex 598b75b..ecaa927 100644 --- a/core/res/res/drawable-xhdpi/expander_ic_maximized.9.png +++ b/core/res/res/drawable-xhdpi/expander_ic_maximized.9.png diff --git a/core/res/res/drawable-xhdpi/expander_ic_minimized.9.png b/core/res/res/drawable-xhdpi/expander_ic_minimized.9.png Binary files differindex 396f4138..a31f799 100644 --- a/core/res/res/drawable-xhdpi/expander_ic_minimized.9.png +++ b/core/res/res/drawable-xhdpi/expander_ic_minimized.9.png diff --git a/core/res/res/drawable-xhdpi/expander_open_holo_dark.9.png b/core/res/res/drawable-xhdpi/expander_open_holo_dark.9.png Binary files differindex d2e8ae8..74902a7 100644 --- a/core/res/res/drawable-xhdpi/expander_open_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/expander_open_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/expander_open_holo_light.9.png b/core/res/res/drawable-xhdpi/expander_open_holo_light.9.png Binary files differindex 35fb75a..8b76e49 100644 --- a/core/res/res/drawable-xhdpi/expander_open_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/expander_open_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/expander_open_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/expander_open_mtrl_alpha.9.png Binary files differindex 181be1a..86862ff 100644 --- a/core/res/res/drawable-xhdpi/expander_open_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/expander_open_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_dark.9.png b/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_dark.9.png Binary files differindex 6e0244f..6bfad12 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_light.9.png b/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_light.9.png Binary files differindex 6478a11..f899266 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_label_left_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_dark.9.png b/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_dark.9.png Binary files differindex 0330b17..ab6e2cf 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_light.9.png b/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_light.9.png Binary files differindex 57539e4..a99855d 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_label_right_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_thumb_default_holo.png b/core/res/res/drawable-xhdpi/fastscroll_thumb_default_holo.png Binary files differindex 98404d4..8beec53 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_thumb_default_holo.png +++ b/core/res/res/drawable-xhdpi/fastscroll_thumb_default_holo.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_thumb_pressed_holo.png b/core/res/res/drawable-xhdpi/fastscroll_thumb_pressed_holo.png Binary files differindex 6824947..ced3838 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_thumb_pressed_holo.png +++ b/core/res/res/drawable-xhdpi/fastscroll_thumb_pressed_holo.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_dark.9.png Binary files differindex 751e0d5..c612f5f 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_light.9.png b/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_light.9.png Binary files differindex 751e0d5..c612f5f 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_track_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_dark.9.png Binary files differindex c9427a9..da8141f 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_light.9.png Binary files differindex b495fbd..6f9b393 100644 --- a/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/fastscroll_track_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/focused_application_background_static.png b/core/res/res/drawable-xhdpi/focused_application_background_static.png Binary files differindex 8231e4f..397d015 100644 --- a/core/res/res/drawable-xhdpi/focused_application_background_static.png +++ b/core/res/res/drawable-xhdpi/focused_application_background_static.png diff --git a/core/res/res/drawable-xhdpi/frame_gallery_thumb.9.png b/core/res/res/drawable-xhdpi/frame_gallery_thumb.9.png Binary files differindex a6bb25a..817a844 100644 --- a/core/res/res/drawable-xhdpi/frame_gallery_thumb.9.png +++ b/core/res/res/drawable-xhdpi/frame_gallery_thumb.9.png diff --git a/core/res/res/drawable-xhdpi/frame_gallery_thumb_pressed.9.png b/core/res/res/drawable-xhdpi/frame_gallery_thumb_pressed.9.png Binary files differindex 85d65faa71..0b71e52 100644 --- a/core/res/res/drawable-xhdpi/frame_gallery_thumb_pressed.9.png +++ b/core/res/res/drawable-xhdpi/frame_gallery_thumb_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/frame_gallery_thumb_selected.9.png b/core/res/res/drawable-xhdpi/frame_gallery_thumb_selected.9.png Binary files differindex 1dadee6..8dc955d 100644 --- a/core/res/res/drawable-xhdpi/frame_gallery_thumb_selected.9.png +++ b/core/res/res/drawable-xhdpi/frame_gallery_thumb_selected.9.png diff --git a/core/res/res/drawable-xhdpi/gallery_selected_default.9.png b/core/res/res/drawable-xhdpi/gallery_selected_default.9.png Binary files differindex 742492a..eb6d822 100644 --- a/core/res/res/drawable-xhdpi/gallery_selected_default.9.png +++ b/core/res/res/drawable-xhdpi/gallery_selected_default.9.png diff --git a/core/res/res/drawable-xhdpi/gallery_selected_focused.9.png b/core/res/res/drawable-xhdpi/gallery_selected_focused.9.png Binary files differindex 4f5700f..c34eb72 100644 --- a/core/res/res/drawable-xhdpi/gallery_selected_focused.9.png +++ b/core/res/res/drawable-xhdpi/gallery_selected_focused.9.png diff --git a/core/res/res/drawable-xhdpi/gallery_selected_pressed.9.png b/core/res/res/drawable-xhdpi/gallery_selected_pressed.9.png Binary files differindex 00b36b8..55159da 100644 --- a/core/res/res/drawable-xhdpi/gallery_selected_pressed.9.png +++ b/core/res/res/drawable-xhdpi/gallery_selected_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/gallery_unselected_default.9.png b/core/res/res/drawable-xhdpi/gallery_unselected_default.9.png Binary files differindex 9bc0cdb..2bf9766 100644 --- a/core/res/res/drawable-xhdpi/gallery_unselected_default.9.png +++ b/core/res/res/drawable-xhdpi/gallery_unselected_default.9.png diff --git a/core/res/res/drawable-xhdpi/gallery_unselected_pressed.9.png b/core/res/res/drawable-xhdpi/gallery_unselected_pressed.9.png Binary files differindex c10554a..7ca482f 100644 --- a/core/res/res/drawable-xhdpi/gallery_unselected_pressed.9.png +++ b/core/res/res/drawable-xhdpi/gallery_unselected_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/grid_selector_background_focus.9.png b/core/res/res/drawable-xhdpi/grid_selector_background_focus.9.png Binary files differindex bafc62a..c8f0afd 100644 --- a/core/res/res/drawable-xhdpi/grid_selector_background_focus.9.png +++ b/core/res/res/drawable-xhdpi/grid_selector_background_focus.9.png diff --git a/core/res/res/drawable-xhdpi/grid_selector_background_pressed.9.png b/core/res/res/drawable-xhdpi/grid_selector_background_pressed.9.png Binary files differindex 40e8a0e..e04f09e 100644 --- a/core/res/res/drawable-xhdpi/grid_selector_background_pressed.9.png +++ b/core/res/res/drawable-xhdpi/grid_selector_background_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/highlight_disabled.9.png b/core/res/res/drawable-xhdpi/highlight_disabled.9.png Binary files differindex a65fe8f..3e22f7e 100644 --- a/core/res/res/drawable-xhdpi/highlight_disabled.9.png +++ b/core/res/res/drawable-xhdpi/highlight_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/highlight_pressed.9.png b/core/res/res/drawable-xhdpi/highlight_pressed.9.png Binary files differindex d0e1564..9c7b053 100644 --- a/core/res/res/drawable-xhdpi/highlight_pressed.9.png +++ b/core/res/res/drawable-xhdpi/highlight_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/highlight_selected.9.png b/core/res/res/drawable-xhdpi/highlight_selected.9.png Binary files differindex d332ee6..ebafb6f 100644 --- a/core/res/res/drawable-xhdpi/highlight_selected.9.png +++ b/core/res/res/drawable-xhdpi/highlight_selected.9.png diff --git a/core/res/res/drawable-xhdpi/ic_ab_back_holo_dark_am.png b/core/res/res/drawable-xhdpi/ic_ab_back_holo_dark_am.png Binary files differindex 8ded62f..3351a6a 100644 --- a/core/res/res/drawable-xhdpi/ic_ab_back_holo_dark_am.png +++ b/core/res/res/drawable-xhdpi/ic_ab_back_holo_dark_am.png diff --git a/core/res/res/drawable-xhdpi/ic_ab_back_holo_light_am.png b/core/res/res/drawable-xhdpi/ic_ab_back_holo_light_am.png Binary files differindex 517e9f7..f80d1ca 100644 --- a/core/res/res/drawable-xhdpi/ic_ab_back_holo_light_am.png +++ b/core/res/res/drawable-xhdpi/ic_ab_back_holo_light_am.png diff --git a/core/res/res/drawable-xhdpi/ic_aggregated.png b/core/res/res/drawable-xhdpi/ic_aggregated.png Binary files differindex 818a1b1..16fd38d 100644 --- a/core/res/res/drawable-xhdpi/ic_aggregated.png +++ b/core/res/res/drawable-xhdpi/ic_aggregated.png diff --git a/core/res/res/drawable-xhdpi/ic_audio_notification_am_alpha.png b/core/res/res/drawable-xhdpi/ic_audio_notification_am_alpha.png Binary files differindex 15182b9..a00d49b 100644 --- a/core/res/res/drawable-xhdpi/ic_audio_notification_am_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_audio_notification_am_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_audio_notification_mute_am_alpha.png b/core/res/res/drawable-xhdpi/ic_audio_notification_mute_am_alpha.png Binary files differindex c26b839..1ecd28c 100644 --- a/core/res/res/drawable-xhdpi/ic_audio_notification_mute_am_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_audio_notification_mute_am_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_round_more_disabled.png b/core/res/res/drawable-xhdpi/ic_btn_round_more_disabled.png Binary files differindex 99f37c5..89610f1 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_round_more_disabled.png +++ b/core/res/res/drawable-xhdpi/ic_btn_round_more_disabled.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_round_more_normal.png b/core/res/res/drawable-xhdpi/ic_btn_round_more_normal.png Binary files differindex 7a8221f..4302503 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_round_more_normal.png +++ b/core/res/res/drawable-xhdpi/ic_btn_round_more_normal.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_search_go.png b/core/res/res/drawable-xhdpi/ic_btn_search_go.png Binary files differindex 896dddd..6b830b3 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_search_go.png +++ b/core/res/res/drawable-xhdpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_speak_now.png b/core/res/res/drawable-xhdpi/ic_btn_speak_now.png Binary files differindex f7f4922..8bd5eac 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_speak_now.png +++ b/core/res/res/drawable-xhdpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_disabled.png b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_disabled.png Binary files differindex 299a7bf..3c685de 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_disabled.png +++ b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_disabled.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_normal.png b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_normal.png Binary files differindex c43c68c..be1beb4 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_normal.png +++ b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_fit_page_normal.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_disabled.png b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_disabled.png Binary files differindex fa94bff..c620f8d 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_disabled.png +++ b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_disabled.png diff --git a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_normal.png b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_normal.png Binary files differindex 1629d64..1d1763b 100644 --- a/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_normal.png +++ b/core/res/res/drawable-xhdpi/ic_btn_square_browser_zoom_page_overview_normal.png diff --git a/core/res/res/drawable-xhdpi/ic_bullet_key_permission.png b/core/res/res/drawable-xhdpi/ic_bullet_key_permission.png Binary files differindex 6a0bdfc..cbe73e4 100644 --- a/core/res/res/drawable-xhdpi/ic_bullet_key_permission.png +++ b/core/res/res/drawable-xhdpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-xhdpi/ic_cab_done_holo.png b/core/res/res/drawable-xhdpi/ic_cab_done_holo.png Binary files differindex 4eeee43..f6edb81 100644 --- a/core/res/res/drawable-xhdpi/ic_cab_done_holo.png +++ b/core/res/res/drawable-xhdpi/ic_cab_done_holo.png diff --git a/core/res/res/drawable-xhdpi/ic_cab_done_holo_dark.png b/core/res/res/drawable-xhdpi/ic_cab_done_holo_dark.png Binary files differindex 2e06dd0..fdd659d 100644 --- a/core/res/res/drawable-xhdpi/ic_cab_done_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_cab_done_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_cab_done_holo_light.png b/core/res/res/drawable-xhdpi/ic_cab_done_holo_light.png Binary files differindex bb19810..d4869c2 100644 --- a/core/res/res/drawable-xhdpi/ic_cab_done_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_cab_done_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_cab_done_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_cab_done_mtrl_alpha.png Binary files differindex 3d6d734..adbcc97 100644 --- a/core/res/res/drawable-xhdpi/ic_cab_done_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_cab_done_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_checkmark_holo_light.png b/core/res/res/drawable-xhdpi/ic_checkmark_holo_light.png Binary files differindex 1607f35..f452e89 100644 --- a/core/res/res/drawable-xhdpi/ic_checkmark_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_checkmark_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_clear_disabled.png b/core/res/res/drawable-xhdpi/ic_clear_disabled.png Binary files differindex e35c5f0..1acf8cc 100644 --- a/core/res/res/drawable-xhdpi/ic_clear_disabled.png +++ b/core/res/res/drawable-xhdpi/ic_clear_disabled.png diff --git a/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_dark.png Binary files differindex 272e34a..5ea7e55 100644 --- a/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_light.png b/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_light.png Binary files differindex 7fd7aeb..9de4476 100644 --- a/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_clear_search_api_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_dark.png b/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_dark.png Binary files differindex 81da970..c31887c 100644 --- a/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_light.png b/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_light.png Binary files differindex 53cfbd3..b6a477a 100644 --- a/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_clear_search_api_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_coins_l.png b/core/res/res/drawable-xhdpi/ic_coins_l.png Binary files differindex 84e7e72..8922dde 100644 --- a/core/res/res/drawable-xhdpi/ic_coins_l.png +++ b/core/res/res/drawable-xhdpi/ic_coins_l.png diff --git a/core/res/res/drawable-xhdpi/ic_coins_s.png b/core/res/res/drawable-xhdpi/ic_coins_s.png Binary files differindex 13d134e..dcf12c9 100644 --- a/core/res/res/drawable-xhdpi/ic_coins_s.png +++ b/core/res/res/drawable-xhdpi/ic_coins_s.png diff --git a/core/res/res/drawable-xhdpi/ic_commit.png b/core/res/res/drawable-xhdpi/ic_commit.png Binary files differindex b871f7e..7ff3510 100644 --- a/core/res/res/drawable-xhdpi/ic_commit.png +++ b/core/res/res/drawable-xhdpi/ic_commit.png diff --git a/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_dark.png b/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_dark.png Binary files differindex d8faf90..c519d77 100644 --- a/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_light.png b/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_light.png Binary files differindex e7c7280..6d7efbc 100644 --- a/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_commit_search_api_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_commit_search_api_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_commit_search_api_mtrl_alpha.png Binary files differindex c10a1b7..e2042a9 100644 --- a/core/res/res/drawable-xhdpi/ic_commit_search_api_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_commit_search_api_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_contact_picture.png b/core/res/res/drawable-xhdpi/ic_contact_picture.png Binary files differindex bdba57b..41193e6 100644 --- a/core/res/res/drawable-xhdpi/ic_contact_picture.png +++ b/core/res/res/drawable-xhdpi/ic_contact_picture.png diff --git a/core/res/res/drawable-xhdpi/ic_contact_picture_2.png b/core/res/res/drawable-xhdpi/ic_contact_picture_2.png Binary files differindex ecb7b67..dc7f233 100644 --- a/core/res/res/drawable-xhdpi/ic_contact_picture_2.png +++ b/core/res/res/drawable-xhdpi/ic_contact_picture_2.png diff --git a/core/res/res/drawable-xhdpi/ic_contact_picture_3.png b/core/res/res/drawable-xhdpi/ic_contact_picture_3.png Binary files differindex 326f2f8..359cadf 100644 --- a/core/res/res/drawable-xhdpi/ic_contact_picture_3.png +++ b/core/res/res/drawable-xhdpi/ic_contact_picture_3.png diff --git a/core/res/res/drawable-xhdpi/ic_corp_icon.png b/core/res/res/drawable-xhdpi/ic_corp_icon.png Binary files differindex 3626c7d..49fec1b 100644 --- a/core/res/res/drawable-xhdpi/ic_corp_icon.png +++ b/core/res/res/drawable-xhdpi/ic_corp_icon.png diff --git a/core/res/res/drawable-xhdpi/ic_delete.png b/core/res/res/drawable-xhdpi/ic_delete.png Binary files differindex 9abc51a..dcd678a 100644 --- a/core/res/res/drawable-xhdpi/ic_delete.png +++ b/core/res/res/drawable-xhdpi/ic_delete.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_alert.png b/core/res/res/drawable-xhdpi/ic_dialog_alert.png Binary files differindex 2834f35..25f7ba9 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_alert.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_alert.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_dark.png b/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_dark.png Binary files differindex f906e2a..aa8789b 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_light.png b/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_light.png Binary files differindex a99f062..1985b5f 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_alert_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_close_normal_holo.png b/core/res/res/drawable-xhdpi/ic_dialog_close_normal_holo.png Binary files differindex ea3bb48..af2ec75 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_close_normal_holo.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_close_normal_holo.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_close_pressed_holo.png b/core/res/res/drawable-xhdpi/ic_dialog_close_pressed_holo.png Binary files differindex 5475ef9..1524c72 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_close_pressed_holo.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_close_pressed_holo.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_dialer.png b/core/res/res/drawable-xhdpi/ic_dialog_dialer.png Binary files differindex 18f6880..2bd4fba 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_dialer.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_dialer.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_email.png b/core/res/res/drawable-xhdpi/ic_dialog_email.png Binary files differindex 1c1eae6..0205bcb 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_email.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_email.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-xhdpi/ic_dialog_focused_holo.png Binary files differindex 000d885..2194949 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_focused_holo.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_focused_holo.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_info.png b/core/res/res/drawable-xhdpi/ic_dialog_info.png Binary files differindex 478dcc1..2d0b4c9 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_info.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_info.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_map.png b/core/res/res/drawable-xhdpi/ic_dialog_map.png Binary files differindex e25b819..0f391b6 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_map.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_map.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_time.png b/core/res/res/drawable-xhdpi/ic_dialog_time.png Binary files differindex 10c9d72..75e93b1 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_time.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_time.png diff --git a/core/res/res/drawable-xhdpi/ic_dialog_usb.png b/core/res/res/drawable-xhdpi/ic_dialog_usb.png Binary files differindex 5893bff..3d6dd7d 100644 --- a/core/res/res/drawable-xhdpi/ic_dialog_usb.png +++ b/core/res/res/drawable-xhdpi/ic_dialog_usb.png diff --git a/core/res/res/drawable-xhdpi/ic_emergency.png b/core/res/res/drawable-xhdpi/ic_emergency.png Binary files differindex 0e97549..70c2c90 100644 --- a/core/res/res/drawable-xhdpi/ic_emergency.png +++ b/core/res/res/drawable-xhdpi/ic_emergency.png diff --git a/core/res/res/drawable-xhdpi/ic_find_next_holo_dark.png b/core/res/res/drawable-xhdpi/ic_find_next_holo_dark.png Binary files differindex e822605..130f524 100644 --- a/core/res/res/drawable-xhdpi/ic_find_next_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_find_next_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_find_next_holo_light.png b/core/res/res/drawable-xhdpi/ic_find_next_holo_light.png Binary files differindex 5b6890d..7e3dde3 100644 --- a/core/res/res/drawable-xhdpi/ic_find_next_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_find_next_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_find_next_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_find_next_mtrl_alpha.png Binary files differindex 9038282..a851467 100644 --- a/core/res/res/drawable-xhdpi/ic_find_next_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_find_next_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_find_previous_holo_dark.png b/core/res/res/drawable-xhdpi/ic_find_previous_holo_dark.png Binary files differindex 0ba4587..a4c909e 100644 --- a/core/res/res/drawable-xhdpi/ic_find_previous_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_find_previous_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_find_previous_holo_light.png b/core/res/res/drawable-xhdpi/ic_find_previous_holo_light.png Binary files differindex 73976c7..38ea248 100644 --- a/core/res/res/drawable-xhdpi/ic_find_previous_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_find_previous_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_find_previous_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_find_previous_mtrl_alpha.png Binary files differindex 579347f..fb140ec 100644 --- a/core/res/res/drawable-xhdpi/ic_find_previous_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_find_previous_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_go.png b/core/res/res/drawable-xhdpi/ic_go.png Binary files differindex 1e2dcfa..02e44be 100644 --- a/core/res/res/drawable-xhdpi/ic_go.png +++ b/core/res/res/drawable-xhdpi/ic_go.png diff --git a/core/res/res/drawable-xhdpi/ic_go_search_api_holo_dark.png b/core/res/res/drawable-xhdpi/ic_go_search_api_holo_dark.png Binary files differindex 0d0758c..10ebd45 100644 --- a/core/res/res/drawable-xhdpi/ic_go_search_api_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_go_search_api_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_go_search_api_holo_light.png b/core/res/res/drawable-xhdpi/ic_go_search_api_holo_light.png Binary files differindex f12eafc..b1e0b5e 100644 --- a/core/res/res/drawable-xhdpi/ic_go_search_api_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_go_search_api_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_grayedout_printer.png b/core/res/res/drawable-xhdpi/ic_grayedout_printer.png Binary files differindex 5e54970..627ebae 100644 --- a/core/res/res/drawable-xhdpi/ic_grayedout_printer.png +++ b/core/res/res/drawable-xhdpi/ic_grayedout_printer.png diff --git a/core/res/res/drawable-xhdpi/ic_input_add.png b/core/res/res/drawable-xhdpi/ic_input_add.png Binary files differindex f1242f5..d497d30 100644 --- a/core/res/res/drawable-xhdpi/ic_input_add.png +++ b/core/res/res/drawable-xhdpi/ic_input_add.png diff --git a/core/res/res/drawable-xhdpi/ic_input_delete.png b/core/res/res/drawable-xhdpi/ic_input_delete.png Binary files differindex 8b822d9..e272ffd 100644 --- a/core/res/res/drawable-xhdpi/ic_input_delete.png +++ b/core/res/res/drawable-xhdpi/ic_input_delete.png diff --git a/core/res/res/drawable-xhdpi/ic_input_get.png b/core/res/res/drawable-xhdpi/ic_input_get.png Binary files differindex 7f9e9bf..96efb60 100644 --- a/core/res/res/drawable-xhdpi/ic_input_get.png +++ b/core/res/res/drawable-xhdpi/ic_input_get.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_answer.png b/core/res/res/drawable-xhdpi/ic_jog_dial_answer.png Binary files differindex eedb7fd..c71521b 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_answer.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_answer.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_end.png b/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_end.png Binary files differindex 829973e..e7a1281 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_end.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_end.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_hold.png b/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_hold.png Binary files differindex e8336d0..f001c13 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_hold.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_answer_and_hold.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_decline.png b/core/res/res/drawable-xhdpi/ic_jog_dial_decline.png Binary files differindex 7cab5f5..4d791d2 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_decline.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_decline.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-xhdpi/ic_jog_dial_sound_off.png Binary files differindex 65aa39b..2c58ace 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_sound_off.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-xhdpi/ic_jog_dial_sound_on.png Binary files differindex ce8f3a7..0aaf77c 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_sound_on.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_unlock.png b/core/res/res/drawable-xhdpi/ic_jog_dial_unlock.png Binary files differindex 5d6fb7b..04ff1a9 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_unlock.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-xhdpi/ic_jog_dial_vibrate_on.png b/core/res/res/drawable-xhdpi/ic_jog_dial_vibrate_on.png Binary files differindex 6fe8b77..26baa8c 100644 --- a/core/res/res/drawable-xhdpi/ic_jog_dial_vibrate_on.png +++ b/core/res/res/drawable-xhdpi/ic_jog_dial_vibrate_on.png diff --git a/core/res/res/drawable-xhdpi/ic_launcher_android.png b/core/res/res/drawable-xhdpi/ic_launcher_android.png Binary files differindex b1097d6..0e2b26e 100644 --- a/core/res/res/drawable-xhdpi/ic_launcher_android.png +++ b/core/res/res/drawable-xhdpi/ic_launcher_android.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_alpha.png Binary files differindex dc7a917..c772fdc 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_off_am_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_off_am_alpha.png Binary files differindex 497ca2b..a203f4f 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_off_am_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_airplane_mode_off_am_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_idle_alarm_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_idle_alarm_alpha.png Binary files differindex 2822a92..71492eb 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_idle_alarm_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_idle_alarm_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_idle_charging.png b/core/res/res/drawable-xhdpi/ic_lock_idle_charging.png Binary files differindex 14c8da4..ec5f848 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_idle_charging.png +++ b/core/res/res/drawable-xhdpi/ic_lock_idle_charging.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_idle_lock.png b/core/res/res/drawable-xhdpi/ic_lock_idle_lock.png Binary files differindex 38b6786..0aafd9c 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_idle_lock.png +++ b/core/res/res/drawable-xhdpi/ic_lock_idle_lock.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_idle_low_battery.png b/core/res/res/drawable-xhdpi/ic_lock_idle_low_battery.png Binary files differindex 19af7e9..3272af3 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_idle_low_battery.png +++ b/core/res/res/drawable-xhdpi/ic_lock_idle_low_battery.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_lock_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_lock_alpha.png Binary files differindex 086a0ca..1461ce7 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_lock_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_lock_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_open_wht_24dp.png b/core/res/res/drawable-xhdpi/ic_lock_open_wht_24dp.png Binary files differindex 21d4d53..a38f743 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_open_wht_24dp.png +++ b/core/res/res/drawable-xhdpi/ic_lock_open_wht_24dp.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_outline_wht_24dp.png b/core/res/res/drawable-xhdpi/ic_lock_outline_wht_24dp.png Binary files differindex 2aeb9a2..e875084 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_outline_wht_24dp.png +++ b/core/res/res/drawable-xhdpi/ic_lock_outline_wht_24dp.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_power_off_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_power_off_alpha.png Binary files differindex 530236c..578dacb 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_power_off_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_power_off_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_ringer_off_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_ringer_off_alpha.png Binary files differindex dff2c89..be71f46 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_ringer_off_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_ringer_off_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_ringer_on_alpha.png b/core/res/res/drawable-xhdpi/ic_lock_ringer_on_alpha.png Binary files differindex 98341b0..d11207a 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_ringer_on_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_lock_ringer_on_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_silent_mode.png b/core/res/res/drawable-xhdpi/ic_lock_silent_mode.png Binary files differindex 1ef944f..663078c 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_silent_mode.png +++ b/core/res/res/drawable-xhdpi/ic_lock_silent_mode.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-xhdpi/ic_lock_silent_mode_off.png Binary files differindex 8fd4a57..adb0454 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_silent_mode_off.png +++ b/core/res/res/drawable-xhdpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-xhdpi/ic_lock_silent_mode_vibrate.png b/core/res/res/drawable-xhdpi/ic_lock_silent_mode_vibrate.png Binary files differindex 921f74e..7b3f1b8 100644 --- a/core/res/res/drawable-xhdpi/ic_lock_silent_mode_vibrate.png +++ b/core/res/res/drawable-xhdpi/ic_lock_silent_mode_vibrate.png diff --git a/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png Binary files differindex 2d28009..bb6d8ff 100644 --- a/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position.png b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position.png Binary files differindex 6e2e6cb..4846725 100644 --- a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position.png +++ b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position.png diff --git a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim1.png b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim1.png Binary files differindex 238a8d9..83c4c42 100644 --- a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim1.png +++ b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim1.png diff --git a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim2.png b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim2.png Binary files differindex e69d878..6622036 100644 --- a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim2.png +++ b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim2.png diff --git a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim3.png b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim3.png Binary files differindex 2c362f0..8b017b9 100644 --- a/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim3.png +++ b/core/res/res/drawable-xhdpi/ic_maps_indicator_current_position_anim3.png diff --git a/core/res/res/drawable-xhdpi/ic_media_embed_play.png b/core/res/res/drawable-xhdpi/ic_media_embed_play.png Binary files differindex b26f565..1ce2012 100644 --- a/core/res/res/drawable-xhdpi/ic_media_embed_play.png +++ b/core/res/res/drawable-xhdpi/ic_media_embed_play.png diff --git a/core/res/res/drawable-xhdpi/ic_media_ff.png b/core/res/res/drawable-xhdpi/ic_media_ff.png Binary files differindex 60f7e92..2428121 100644 --- a/core/res/res/drawable-xhdpi/ic_media_ff.png +++ b/core/res/res/drawable-xhdpi/ic_media_ff.png diff --git a/core/res/res/drawable-xhdpi/ic_media_fullscreen.png b/core/res/res/drawable-xhdpi/ic_media_fullscreen.png Binary files differindex 9526218..f5e6a99 100644 --- a/core/res/res/drawable-xhdpi/ic_media_fullscreen.png +++ b/core/res/res/drawable-xhdpi/ic_media_fullscreen.png diff --git a/core/res/res/drawable-xhdpi/ic_media_next.png b/core/res/res/drawable-xhdpi/ic_media_next.png Binary files differindex 4def965..91c06be 100644 --- a/core/res/res/drawable-xhdpi/ic_media_next.png +++ b/core/res/res/drawable-xhdpi/ic_media_next.png diff --git a/core/res/res/drawable-xhdpi/ic_media_pause.png b/core/res/res/drawable-xhdpi/ic_media_pause.png Binary files differindex 6bd3d48..55aa6f3 100644 --- a/core/res/res/drawable-xhdpi/ic_media_pause.png +++ b/core/res/res/drawable-xhdpi/ic_media_pause.png diff --git a/core/res/res/drawable-xhdpi/ic_media_play.png b/core/res/res/drawable-xhdpi/ic_media_play.png Binary files differindex ccfef18..ca5a86d 100644 --- a/core/res/res/drawable-xhdpi/ic_media_play.png +++ b/core/res/res/drawable-xhdpi/ic_media_play.png diff --git a/core/res/res/drawable-xhdpi/ic_media_previous.png b/core/res/res/drawable-xhdpi/ic_media_previous.png Binary files differindex c4472ae..1f02050 100644 --- a/core/res/res/drawable-xhdpi/ic_media_previous.png +++ b/core/res/res/drawable-xhdpi/ic_media_previous.png diff --git a/core/res/res/drawable-xhdpi/ic_media_rew.png b/core/res/res/drawable-xhdpi/ic_media_rew.png Binary files differindex 167d10e..f17aa38 100644 --- a/core/res/res/drawable-xhdpi/ic_media_rew.png +++ b/core/res/res/drawable-xhdpi/ic_media_rew.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_dark.png Binary files differindex 4119cff..1e080c0 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_light.png Binary files differindex b629a57..411e3b5 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_disabled_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_disabled_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_disabled_mtrl_alpha.png Binary files differindex a020d64..32e2924 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_disabled_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_disabled_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_off_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_off_holo_dark.png Binary files differindex fe81128..23aa9b1 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_off_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_off_holo_light.png Binary files differindex 9b59eaf..ac16e24 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_off_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_off_mtrl_alpha.png Binary files differindex e75ffb8..5ec548b 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_off_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_dark.png Binary files differindex 1a513c1..0ad366e 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_light.png Binary files differindex ff78803..ee9e40a 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_0_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_0_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_on_0_mtrl_alpha.png Binary files differindex 1b9fc12..15e04be 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_0_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_0_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_dark.png Binary files differindex 4c4b624..89d8d9b 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_light.png Binary files differindex 60f8c4d..aa792d1 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_1_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_1_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_on_1_mtrl_alpha.png Binary files differindex f63d47e..e529f13 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_1_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_1_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_dark.png Binary files differindex cdb2f30..3b6a703 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_light.png Binary files differindex 97a10a3..3dd7da3 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_2_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_2_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_on_2_mtrl_alpha.png Binary files differindex fe005d9..5ca59dc 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_2_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_2_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_holo_dark.png b/core/res/res/drawable-xhdpi/ic_media_route_on_holo_dark.png Binary files differindex a19a083..1ef77a6 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_holo_light.png b/core/res/res/drawable-xhdpi/ic_media_route_on_holo_light.png Binary files differindex db30613..ec9bb65 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_media_route_on_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_media_route_on_mtrl_alpha.png Binary files differindex ea86408..11d12a7 100644 --- a/core/res/res/drawable-xhdpi/ic_media_route_on_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_media_route_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_media_stop.png b/core/res/res/drawable-xhdpi/ic_media_stop.png Binary files differindex 89f3695..524a5f2 100644 --- a/core/res/res/drawable-xhdpi/ic_media_stop.png +++ b/core/res/res/drawable-xhdpi/ic_media_stop.png diff --git a/core/res/res/drawable-xhdpi/ic_media_video_poster.png b/core/res/res/drawable-xhdpi/ic_media_video_poster.png Binary files differindex 4aa4904..929c1fe 100644 --- a/core/res/res/drawable-xhdpi/ic_media_video_poster.png +++ b/core/res/res/drawable-xhdpi/ic_media_video_poster.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_account_list.png b/core/res/res/drawable-xhdpi/ic_menu_account_list.png Binary files differindex ebe29b9..5188992 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_account_list.png +++ b/core/res/res/drawable-xhdpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_add.png b/core/res/res/drawable-xhdpi/ic_menu_add.png Binary files differindex 7d498a9..bf33115 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_add.png +++ b/core/res/res/drawable-xhdpi/ic_menu_add.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_agenda.png b/core/res/res/drawable-xhdpi/ic_menu_agenda.png Binary files differindex 25e9f11..be50492 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_agenda.png +++ b/core/res/res/drawable-xhdpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_allfriends.png b/core/res/res/drawable-xhdpi/ic_menu_allfriends.png Binary files differindex 20994ed..cac84a8 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_allfriends.png +++ b/core/res/res/drawable-xhdpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-xhdpi/ic_menu_always_landscape_portrait.png Binary files differindex 96606de..959aa75 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_always_landscape_portrait.png +++ b/core/res/res/drawable-xhdpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_archive.png b/core/res/res/drawable-xhdpi/ic_menu_archive.png Binary files differindex b1be9d5..a2b2dde 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_archive.png +++ b/core/res/res/drawable-xhdpi/ic_menu_archive.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_attachment.png b/core/res/res/drawable-xhdpi/ic_menu_attachment.png Binary files differindex aa41bd6..1aca87c 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_attachment.png +++ b/core/res/res/drawable-xhdpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_back.png b/core/res/res/drawable-xhdpi/ic_menu_back.png Binary files differindex 8ac4f64..c774f74 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_back.png +++ b/core/res/res/drawable-xhdpi/ic_menu_back.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_block.png b/core/res/res/drawable-xhdpi/ic_menu_block.png Binary files differindex e672395..3edb3e2 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_block.png +++ b/core/res/res/drawable-xhdpi/ic_menu_block.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_blocked_user.png b/core/res/res/drawable-xhdpi/ic_menu_blocked_user.png Binary files differindex 53a279e..1325461 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_blocked_user.png +++ b/core/res/res/drawable-xhdpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_btn_add.png b/core/res/res/drawable-xhdpi/ic_menu_btn_add.png Binary files differindex 7d498a9..bf33115 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_btn_add.png +++ b/core/res/res/drawable-xhdpi/ic_menu_btn_add.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_call.png b/core/res/res/drawable-xhdpi/ic_menu_call.png Binary files differindex 703a76b..812abfb 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_call.png +++ b/core/res/res/drawable-xhdpi/ic_menu_call.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_camera.png b/core/res/res/drawable-xhdpi/ic_menu_camera.png Binary files differindex 7875aa3..96965e4 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_camera.png +++ b/core/res/res/drawable-xhdpi/ic_menu_camera.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_cc_am.png b/core/res/res/drawable-xhdpi/ic_menu_cc_am.png Binary files differindex 50d686a..24d02e6 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_cc_am.png +++ b/core/res/res/drawable-xhdpi/ic_menu_cc_am.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-xhdpi/ic_menu_chat_dashboard.png Binary files differindex c0b238c..d176199 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_chat_dashboard.png +++ b/core/res/res/drawable-xhdpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_clear_playlist.png b/core/res/res/drawable-xhdpi/ic_menu_clear_playlist.png Binary files differindex 8981d6f..73385f1 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_clear_playlist.png +++ b/core/res/res/drawable-xhdpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_close_clear_cancel.png b/core/res/res/drawable-xhdpi/ic_menu_close_clear_cancel.png Binary files differindex d743d75..4c7eb6a 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_close_clear_cancel.png +++ b/core/res/res/drawable-xhdpi/ic_menu_close_clear_cancel.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_compass.png b/core/res/res/drawable-xhdpi/ic_menu_compass.png Binary files differindex 1c2ad89..de829df 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_compass.png +++ b/core/res/res/drawable-xhdpi/ic_menu_compass.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_compose.png b/core/res/res/drawable-xhdpi/ic_menu_compose.png Binary files differindex bef190e..78acb3a 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_compose.png +++ b/core/res/res/drawable-xhdpi/ic_menu_compose.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_copy.png b/core/res/res/drawable-xhdpi/ic_menu_copy.png Binary files differindex 22761fc..03aa0a4 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_copy.png +++ b/core/res/res/drawable-xhdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_copy_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_copy_holo_dark.png Binary files differindex ba883ae..fcad047 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_copy_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_copy_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_copy_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_copy_holo_light.png Binary files differindex 364b169..9d8414d 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_copy_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_copy_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_crop.png b/core/res/res/drawable-xhdpi/ic_menu_crop.png Binary files differindex d32daae..3b166a5 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_crop.png +++ b/core/res/res/drawable-xhdpi/ic_menu_crop.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_cut.png b/core/res/res/drawable-xhdpi/ic_menu_cut.png Binary files differindex efefcde..e32a823 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_cut.png +++ b/core/res/res/drawable-xhdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_cut_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_cut_holo_dark.png Binary files differindex 7aa8750..82ce874 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_cut_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_cut_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_cut_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_cut_holo_light.png Binary files differindex d4e4d81..2dbc916 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_cut_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_cut_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_day.png b/core/res/res/drawable-xhdpi/ic_menu_day.png Binary files differindex 9eed1b2..113a23e 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_day.png +++ b/core/res/res/drawable-xhdpi/ic_menu_day.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_delete.png b/core/res/res/drawable-xhdpi/ic_menu_delete.png Binary files differindex 65b9cae..959b106 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_delete.png +++ b/core/res/res/drawable-xhdpi/ic_menu_delete.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_directions.png b/core/res/res/drawable-xhdpi/ic_menu_directions.png Binary files differindex bdc0088..81da165 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_directions.png +++ b/core/res/res/drawable-xhdpi/ic_menu_directions.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_edit.png b/core/res/res/drawable-xhdpi/ic_menu_edit.png Binary files differindex fcdd71e..ac2227b 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_edit.png +++ b/core/res/res/drawable-xhdpi/ic_menu_edit.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_emoticons.png b/core/res/res/drawable-xhdpi/ic_menu_emoticons.png Binary files differindex af730fa..4a28869 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_emoticons.png +++ b/core/res/res/drawable-xhdpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_end_conversation.png b/core/res/res/drawable-xhdpi/ic_menu_end_conversation.png Binary files differindex ac76f3b..cce5228 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_end_conversation.png +++ b/core/res/res/drawable-xhdpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_find.png b/core/res/res/drawable-xhdpi/ic_menu_find.png Binary files differindex ccf2aab..50e6c2e 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_find.png +++ b/core/res/res/drawable-xhdpi/ic_menu_find.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_find_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_find_holo_dark.png Binary files differindex 3ede9e2..fce9be8 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_find_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_find_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_find_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_find_holo_light.png Binary files differindex de20fa0..505a63a 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_find_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_find_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_find_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_menu_find_mtrl_alpha.png Binary files differindex dd5460f..974bec9 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_find_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_menu_find_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_forward.png b/core/res/res/drawable-xhdpi/ic_menu_forward.png Binary files differindex 6463e7a..f9deaee 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_forward.png +++ b/core/res/res/drawable-xhdpi/ic_menu_forward.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_friendslist.png b/core/res/res/drawable-xhdpi/ic_menu_friendslist.png Binary files differindex 9200f87..fa51a10 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_friendslist.png +++ b/core/res/res/drawable-xhdpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_gallery.png b/core/res/res/drawable-xhdpi/ic_menu_gallery.png Binary files differindex 6b21e22..7445772 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_gallery.png +++ b/core/res/res/drawable-xhdpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_goto.png b/core/res/res/drawable-xhdpi/ic_menu_goto.png Binary files differindex b925e69..44c129c 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_goto.png +++ b/core/res/res/drawable-xhdpi/ic_menu_goto.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_help.png b/core/res/res/drawable-xhdpi/ic_menu_help.png Binary files differindex 128c7e8..92bd26c 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_help.png +++ b/core/res/res/drawable-xhdpi/ic_menu_help.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_help_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_help_holo_light.png Binary files differindex b961de9..3de87c2 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_help_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_help_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_home.png b/core/res/res/drawable-xhdpi/ic_menu_home.png Binary files differindex 689f372..5f25157 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_home.png +++ b/core/res/res/drawable-xhdpi/ic_menu_home.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_info_details.png b/core/res/res/drawable-xhdpi/ic_menu_info_details.png Binary files differindex 24ea543..191cc85 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_info_details.png +++ b/core/res/res/drawable-xhdpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_invite.png b/core/res/res/drawable-xhdpi/ic_menu_invite.png Binary files differindex d594607..554a556 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_invite.png +++ b/core/res/res/drawable-xhdpi/ic_menu_invite.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_login.png b/core/res/res/drawable-xhdpi/ic_menu_login.png Binary files differindex 5095ed9..c8c106e 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_login.png +++ b/core/res/res/drawable-xhdpi/ic_menu_login.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_manage.png b/core/res/res/drawable-xhdpi/ic_menu_manage.png Binary files differindex d743624..c4e9609 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_manage.png +++ b/core/res/res/drawable-xhdpi/ic_menu_manage.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_mapmode.png b/core/res/res/drawable-xhdpi/ic_menu_mapmode.png Binary files differindex 0b62d08..1954b3f 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_mapmode.png +++ b/core/res/res/drawable-xhdpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_mark.png b/core/res/res/drawable-xhdpi/ic_menu_mark.png Binary files differindex a5de6fb..55a6b35 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_mark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_mark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_month.png b/core/res/res/drawable-xhdpi/ic_menu_month.png Binary files differindex 099263b..64607a8 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_month.png +++ b/core/res/res/drawable-xhdpi/ic_menu_month.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_more.png b/core/res/res/drawable-xhdpi/ic_menu_more.png Binary files differindex c7a6538..5fd5137 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_more.png +++ b/core/res/res/drawable-xhdpi/ic_menu_more.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow.png b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow.png Binary files differindex 2998d65..6004bb1 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow.png +++ b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_dark.png Binary files differindex 62659fa..4e944a7 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_light.png Binary files differindex 341edaf..471a5b9 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_focused_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_dark.png Binary files differindex a92fb1d..6b3e03f 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png Binary files differindex 930ca8d..0dc2f0b 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_my_calendar.png b/core/res/res/drawable-xhdpi/ic_menu_my_calendar.png Binary files differindex ca95b92..08c3270 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_my_calendar.png +++ b/core/res/res/drawable-xhdpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_mylocation.png b/core/res/res/drawable-xhdpi/ic_menu_mylocation.png Binary files differindex b0a76a2..34fae9f 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_mylocation.png +++ b/core/res/res/drawable-xhdpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_myplaces.png b/core/res/res/drawable-xhdpi/ic_menu_myplaces.png Binary files differindex 205848e..6007428 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_myplaces.png +++ b/core/res/res/drawable-xhdpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_notifications.png b/core/res/res/drawable-xhdpi/ic_menu_notifications.png Binary files differindex db80b57..f48b8ee 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_notifications.png +++ b/core/res/res/drawable-xhdpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_paste.png b/core/res/res/drawable-xhdpi/ic_menu_paste.png Binary files differindex a69f0eb..fae2220 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_paste.png +++ b/core/res/res/drawable-xhdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_paste_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_paste_holo_dark.png Binary files differindex 4c5f7f2..c5cbb27 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_paste_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_paste_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_paste_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_paste_holo_light.png Binary files differindex 6edd4b2..1b7801c 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_paste_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_paste_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_play_clip.png b/core/res/res/drawable-xhdpi/ic_menu_play_clip.png Binary files differindex f680fce..b9f42a9 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_play_clip.png +++ b/core/res/res/drawable-xhdpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_preferences.png b/core/res/res/drawable-xhdpi/ic_menu_preferences.png Binary files differindex 02cfbad..829a848 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_preferences.png +++ b/core/res/res/drawable-xhdpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_recent_history.png b/core/res/res/drawable-xhdpi/ic_menu_recent_history.png Binary files differindex fc5e1fc..1e76cfb 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_recent_history.png +++ b/core/res/res/drawable-xhdpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_report_image.png b/core/res/res/drawable-xhdpi/ic_menu_report_image.png Binary files differindex 26f7ff4..475f0c2 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_report_image.png +++ b/core/res/res/drawable-xhdpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_revert.png b/core/res/res/drawable-xhdpi/ic_menu_revert.png Binary files differindex 19c580f..208ae29 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_revert.png +++ b/core/res/res/drawable-xhdpi/ic_menu_revert.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_rotate.png b/core/res/res/drawable-xhdpi/ic_menu_rotate.png Binary files differindex 98e19fe..be6cd75 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_rotate.png +++ b/core/res/res/drawable-xhdpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_save.png b/core/res/res/drawable-xhdpi/ic_menu_save.png Binary files differindex 62a66d8..4cdfb89 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_save.png +++ b/core/res/res/drawable-xhdpi/ic_menu_save.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_search.png b/core/res/res/drawable-xhdpi/ic_menu_search.png Binary files differindex 4444495..43d8e66 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_search.png +++ b/core/res/res/drawable-xhdpi/ic_menu_search.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_search_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_search_holo_dark.png Binary files differindex 1208859..1f09e3e6 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_search_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_search_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_search_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_search_holo_light.png Binary files differindex 6811782..0dd3f1d 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_search_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_search_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_search_mtrl_alpha.png b/core/res/res/drawable-xhdpi/ic_menu_search_mtrl_alpha.png Binary files differindex 05cfab7..ab88047 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_search_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/ic_menu_search_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_dark.png Binary files differindex 8eef37d..b697895 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_light.png Binary files differindex 2e1cf86..4917cca 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_selectall_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_send.png b/core/res/res/drawable-xhdpi/ic_menu_send.png Binary files differindex 6e5ec78..311a797 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_send.png +++ b/core/res/res/drawable-xhdpi/ic_menu_send.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_set_as.png b/core/res/res/drawable-xhdpi/ic_menu_set_as.png Binary files differindex 8689766..f5d4ab7 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_set_as.png +++ b/core/res/res/drawable-xhdpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_settings_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_settings_holo_light.png Binary files differindex aa33c38..b166ae0 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_settings_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_settings_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_share.png b/core/res/res/drawable-xhdpi/ic_menu_share.png Binary files differindex fce1d35..3036968 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_share.png +++ b/core/res/res/drawable-xhdpi/ic_menu_share.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_share_holo_dark.png b/core/res/res/drawable-xhdpi/ic_menu_share_holo_dark.png Binary files differindex 45a0f1d..448cb94 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_share_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_menu_share_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_share_holo_light.png b/core/res/res/drawable-xhdpi/ic_menu_share_holo_light.png Binary files differindex 528e554..f63af7b 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_share_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_menu_share_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_slideshow.png b/core/res/res/drawable-xhdpi/ic_menu_slideshow.png Binary files differindex 8740f37..f70b5ef 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_slideshow.png +++ b/core/res/res/drawable-xhdpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-xhdpi/ic_menu_sort_alphabetically.png Binary files differindex 5736ff8..67d2baf 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_sort_alphabetically.png +++ b/core/res/res/drawable-xhdpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_sort_by_size.png b/core/res/res/drawable-xhdpi/ic_menu_sort_by_size.png Binary files differindex fe3836c..89adb75 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_sort_by_size.png +++ b/core/res/res/drawable-xhdpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_star.png b/core/res/res/drawable-xhdpi/ic_menu_star.png Binary files differindex c051020..d7c3bf0 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_star.png +++ b/core/res/res/drawable-xhdpi/ic_menu_star.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_start_conversation.png b/core/res/res/drawable-xhdpi/ic_menu_start_conversation.png Binary files differindex d71ed17..b999431 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_start_conversation.png +++ b/core/res/res/drawable-xhdpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_stop.png b/core/res/res/drawable-xhdpi/ic_menu_stop.png Binary files differindex 855af11..c9bb382 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_stop.png +++ b/core/res/res/drawable-xhdpi/ic_menu_stop.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_today.png b/core/res/res/drawable-xhdpi/ic_menu_today.png Binary files differindex e9ebc5e..e4d3040 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_today.png +++ b/core/res/res/drawable-xhdpi/ic_menu_today.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_upload.png b/core/res/res/drawable-xhdpi/ic_menu_upload.png Binary files differindex 94d1478..72bb995 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_upload.png +++ b/core/res/res/drawable-xhdpi/ic_menu_upload.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-xhdpi/ic_menu_upload_you_tube.png Binary files differindex 508c354..956570c 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_upload_you_tube.png +++ b/core/res/res/drawable-xhdpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_view.png b/core/res/res/drawable-xhdpi/ic_menu_view.png Binary files differindex e97c30df..332d177 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_view.png +++ b/core/res/res/drawable-xhdpi/ic_menu_view.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_week.png b/core/res/res/drawable-xhdpi/ic_menu_week.png Binary files differindex 2c3e761..b88c142 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_week.png +++ b/core/res/res/drawable-xhdpi/ic_menu_week.png diff --git a/core/res/res/drawable-xhdpi/ic_menu_zoom.png b/core/res/res/drawable-xhdpi/ic_menu_zoom.png Binary files differindex 858aef5..778a249 100644 --- a/core/res/res/drawable-xhdpi/ic_menu_zoom.png +++ b/core/res/res/drawable-xhdpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_cast_0.png b/core/res/res/drawable-xhdpi/ic_notification_cast_0.png Binary files differindex 818c1cd..bd38b28 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_cast_0.png +++ b/core/res/res/drawable-xhdpi/ic_notification_cast_0.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_cast_1.png b/core/res/res/drawable-xhdpi/ic_notification_cast_1.png Binary files differindex 2a56e31..2e034ba 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_cast_1.png +++ b/core/res/res/drawable-xhdpi/ic_notification_cast_1.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_cast_2.png b/core/res/res/drawable-xhdpi/ic_notification_cast_2.png Binary files differindex 3515a76..51d9dd4 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_cast_2.png +++ b/core/res/res/drawable-xhdpi/ic_notification_cast_2.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_clear_all.png b/core/res/res/drawable-xhdpi/ic_notification_clear_all.png Binary files differindex 5c553cf..e8c6849 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_clear_all.png +++ b/core/res/res/drawable-xhdpi/ic_notification_clear_all.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_ime_default.png b/core/res/res/drawable-xhdpi/ic_notification_ime_default.png Binary files differindex 900801a..12a29fd 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_ime_default.png +++ b/core/res/res/drawable-xhdpi/ic_notification_ime_default.png diff --git a/core/res/res/drawable-xhdpi/ic_notification_overlay.9.png b/core/res/res/drawable-xhdpi/ic_notification_overlay.9.png Binary files differindex a7a8bb3..571b260 100644 --- a/core/res/res/drawable-xhdpi/ic_notification_overlay.9.png +++ b/core/res/res/drawable-xhdpi/ic_notification_overlay.9.png diff --git a/core/res/res/drawable-xhdpi/ic_partial_secure.png b/core/res/res/drawable-xhdpi/ic_partial_secure.png Binary files differindex 2dfbb1e..fe68cc4 100644 --- a/core/res/res/drawable-xhdpi/ic_partial_secure.png +++ b/core/res/res/drawable-xhdpi/ic_partial_secure.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_disk_full.png b/core/res/res/drawable-xhdpi/ic_popup_disk_full.png Binary files differindex 4313fdc..669a3b1 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_disk_full.png +++ b/core/res/res/drawable-xhdpi/ic_popup_disk_full.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_reminder.png b/core/res/res/drawable-xhdpi/ic_popup_reminder.png Binary files differindex 4a03a1b..5f19506 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_reminder.png +++ b/core/res/res/drawable-xhdpi/ic_popup_reminder.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_1.png b/core/res/res/drawable-xhdpi/ic_popup_sync_1.png Binary files differindex 48f8d53..b947293 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_1.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_1.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_2.png b/core/res/res/drawable-xhdpi/ic_popup_sync_2.png Binary files differindex 880c202..02b8d18 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_2.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_2.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_3.png b/core/res/res/drawable-xhdpi/ic_popup_sync_3.png Binary files differindex eb6d03c..6008a2c 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_3.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_3.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_4.png b/core/res/res/drawable-xhdpi/ic_popup_sync_4.png Binary files differindex 02a4d93..08eb752 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_4.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_4.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_5.png b/core/res/res/drawable-xhdpi/ic_popup_sync_5.png Binary files differindex caaf598..4207ae5 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_5.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_5.png diff --git a/core/res/res/drawable-xhdpi/ic_popup_sync_6.png b/core/res/res/drawable-xhdpi/ic_popup_sync_6.png Binary files differindex e662ab2..0ce453c 100644 --- a/core/res/res/drawable-xhdpi/ic_popup_sync_6.png +++ b/core/res/res/drawable-xhdpi/ic_popup_sync_6.png diff --git a/core/res/res/drawable-xhdpi/ic_print.png b/core/res/res/drawable-xhdpi/ic_print.png Binary files differindex 6b55a14..cf4cc00 100644 --- a/core/res/res/drawable-xhdpi/ic_print.png +++ b/core/res/res/drawable-xhdpi/ic_print.png diff --git a/core/res/res/drawable-xhdpi/ic_print_error.png b/core/res/res/drawable-xhdpi/ic_print_error.png Binary files differindex c3faa42..6406140 100644 --- a/core/res/res/drawable-xhdpi/ic_print_error.png +++ b/core/res/res/drawable-xhdpi/ic_print_error.png diff --git a/core/res/res/drawable-xhdpi/ic_search.png b/core/res/res/drawable-xhdpi/ic_search.png Binary files differindex 738a392..68946f3 100644 --- a/core/res/res/drawable-xhdpi/ic_search.png +++ b/core/res/res/drawable-xhdpi/ic_search.png diff --git a/core/res/res/drawable-xhdpi/ic_search_api_holo_dark.png b/core/res/res/drawable-xhdpi/ic_search_api_holo_dark.png Binary files differindex b0d7acf..ca54fa2 100644 --- a/core/res/res/drawable-xhdpi/ic_search_api_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_search_api_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_search_api_holo_light.png b/core/res/res/drawable-xhdpi/ic_search_api_holo_light.png Binary files differindex c9626a0..e5687d1 100644 --- a/core/res/res/drawable-xhdpi/ic_search_api_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_search_api_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_search_category_default.png b/core/res/res/drawable-xhdpi/ic_search_category_default.png Binary files differindex 351cfe0..117360e 100644 --- a/core/res/res/drawable-xhdpi/ic_search_category_default.png +++ b/core/res/res/drawable-xhdpi/ic_search_category_default.png diff --git a/core/res/res/drawable-xhdpi/ic_secure.png b/core/res/res/drawable-xhdpi/ic_secure.png Binary files differindex 9e24028..be6c401 100644 --- a/core/res/res/drawable-xhdpi/ic_secure.png +++ b/core/res/res/drawable-xhdpi/ic_secure.png diff --git a/core/res/res/drawable-xhdpi/ic_settings.png b/core/res/res/drawable-xhdpi/ic_settings.png Binary files differindex 208089d..eae8d17 100644 --- a/core/res/res/drawable-xhdpi/ic_settings.png +++ b/core/res/res/drawable-xhdpi/ic_settings.png diff --git a/core/res/res/drawable-xhdpi/ic_settings_language.png b/core/res/res/drawable-xhdpi/ic_settings_language.png Binary files differindex 2c42db3..896706f 100644 --- a/core/res/res/drawable-xhdpi/ic_settings_language.png +++ b/core/res/res/drawable-xhdpi/ic_settings_language.png diff --git a/core/res/res/drawable-xhdpi/ic_sim_card_multi_24px_clr.png b/core/res/res/drawable-xhdpi/ic_sim_card_multi_24px_clr.png Binary files differindex 9675e56..981338b 100644 --- a/core/res/res/drawable-xhdpi/ic_sim_card_multi_24px_clr.png +++ b/core/res/res/drawable-xhdpi/ic_sim_card_multi_24px_clr.png diff --git a/core/res/res/drawable-xhdpi/ic_sim_card_multi_48px_clr.png b/core/res/res/drawable-xhdpi/ic_sim_card_multi_48px_clr.png Binary files differindex a57a0b9..ff93843 100644 --- a/core/res/res/drawable-xhdpi/ic_sim_card_multi_48px_clr.png +++ b/core/res/res/drawable-xhdpi/ic_sim_card_multi_48px_clr.png diff --git a/core/res/res/drawable-xhdpi/ic_star_black_16dp.png b/core/res/res/drawable-xhdpi/ic_star_black_16dp.png Binary files differindex 732c48e..d53d53c 100644 --- a/core/res/res/drawable-xhdpi/ic_star_black_16dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_black_16dp.png diff --git a/core/res/res/drawable-xhdpi/ic_star_black_36dp.png b/core/res/res/drawable-xhdpi/ic_star_black_36dp.png Binary files differindex 54d3065..a933c27 100644 --- a/core/res/res/drawable-xhdpi/ic_star_black_36dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_black_36dp.png diff --git a/core/res/res/drawable-xhdpi/ic_star_black_48dp.png b/core/res/res/drawable-xhdpi/ic_star_black_48dp.png Binary files differindex 7be2280..e36d3c6 100644 --- a/core/res/res/drawable-xhdpi/ic_star_black_48dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_black_48dp.png diff --git a/core/res/res/drawable-xhdpi/ic_star_half_black_16dp.png b/core/res/res/drawable-xhdpi/ic_star_half_black_16dp.png Binary files differindex 5d6f3c8..1a9888a 100644 --- a/core/res/res/drawable-xhdpi/ic_star_half_black_16dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_half_black_16dp.png diff --git a/core/res/res/drawable-xhdpi/ic_star_half_black_36dp.png b/core/res/res/drawable-xhdpi/ic_star_half_black_36dp.png Binary files differindex 2ed3a20..2ee4e91 100644 --- a/core/res/res/drawable-xhdpi/ic_star_half_black_36dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_half_black_36dp.png diff --git a/core/res/res/drawable-xhdpi/ic_star_half_black_48dp.png b/core/res/res/drawable-xhdpi/ic_star_half_black_48dp.png Binary files differindex 348d4d8..3ef7c63 100644 --- a/core/res/res/drawable-xhdpi/ic_star_half_black_48dp.png +++ b/core/res/res/drawable-xhdpi/ic_star_half_black_48dp.png diff --git a/core/res/res/drawable-xhdpi/ic_vibrate.png b/core/res/res/drawable-xhdpi/ic_vibrate.png Binary files differindex 5d0724a..2d2c1f3 100644 --- a/core/res/res/drawable-xhdpi/ic_vibrate.png +++ b/core/res/res/drawable-xhdpi/ic_vibrate.png diff --git a/core/res/res/drawable-xhdpi/ic_vibrate_small.png b/core/res/res/drawable-xhdpi/ic_vibrate_small.png Binary files differindex 6ee6fd8..0afe8b6 100644 --- a/core/res/res/drawable-xhdpi/ic_vibrate_small.png +++ b/core/res/res/drawable-xhdpi/ic_vibrate_small.png diff --git a/core/res/res/drawable-xhdpi/ic_voice_search.png b/core/res/res/drawable-xhdpi/ic_voice_search.png Binary files differindex 3f0518b..639e5cc 100644 --- a/core/res/res/drawable-xhdpi/ic_voice_search.png +++ b/core/res/res/drawable-xhdpi/ic_voice_search.png diff --git a/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_dark.png b/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_dark.png Binary files differindex eb6e5fa..3a5d0c8 100644 --- a/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_dark.png +++ b/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_light.png b/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_light.png Binary files differindex c6b40bb..a8f470e 100644 --- a/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_light.png +++ b/core/res/res/drawable-xhdpi/ic_voice_search_api_holo_light.png diff --git a/core/res/res/drawable-xhdpi/ic_volume.png b/core/res/res/drawable-xhdpi/ic_volume.png Binary files differindex f6a457d..192b294 100644 --- a/core/res/res/drawable-xhdpi/ic_volume.png +++ b/core/res/res/drawable-xhdpi/ic_volume.png diff --git a/core/res/res/drawable-xhdpi/ic_volume_bluetooth_ad2p.png b/core/res/res/drawable-xhdpi/ic_volume_bluetooth_ad2p.png Binary files differindex cbcdf33..9175005 100644 --- a/core/res/res/drawable-xhdpi/ic_volume_bluetooth_ad2p.png +++ b/core/res/res/drawable-xhdpi/ic_volume_bluetooth_ad2p.png diff --git a/core/res/res/drawable-xhdpi/ic_volume_bluetooth_in_call.png b/core/res/res/drawable-xhdpi/ic_volume_bluetooth_in_call.png Binary files differindex 9c7e906..4fc39b7 100644 --- a/core/res/res/drawable-xhdpi/ic_volume_bluetooth_in_call.png +++ b/core/res/res/drawable-xhdpi/ic_volume_bluetooth_in_call.png diff --git a/core/res/res/drawable-xhdpi/ic_volume_off.png b/core/res/res/drawable-xhdpi/ic_volume_off.png Binary files differindex e094514..097fc16 100644 --- a/core/res/res/drawable-xhdpi/ic_volume_off.png +++ b/core/res/res/drawable-xhdpi/ic_volume_off.png diff --git a/core/res/res/drawable-xhdpi/ic_volume_off_small.png b/core/res/res/drawable-xhdpi/ic_volume_off_small.png Binary files differindex bc29608..f12d6ee 100644 --- a/core/res/res/drawable-xhdpi/ic_volume_off_small.png +++ b/core/res/res/drawable-xhdpi/ic_volume_off_small.png diff --git a/core/res/res/drawable-xhdpi/ic_volume_small.png b/core/res/res/drawable-xhdpi/ic_volume_small.png Binary files differindex 9d6d920..ff36c63 100644 --- a/core/res/res/drawable-xhdpi/ic_volume_small.png +++ b/core/res/res/drawable-xhdpi/ic_volume_small.png diff --git a/core/res/res/drawable-xhdpi/icon_highlight_rectangle.9.png b/core/res/res/drawable-xhdpi/icon_highlight_rectangle.9.png Binary files differindex cdc37f1..11e0585 100644 --- a/core/res/res/drawable-xhdpi/icon_highlight_rectangle.9.png +++ b/core/res/res/drawable-xhdpi/icon_highlight_rectangle.9.png diff --git a/core/res/res/drawable-xhdpi/icon_highlight_square.9.png b/core/res/res/drawable-xhdpi/icon_highlight_square.9.png Binary files differindex cc2ab8c..8eb189b 100644 --- a/core/res/res/drawable-xhdpi/icon_highlight_square.9.png +++ b/core/res/res/drawable-xhdpi/icon_highlight_square.9.png diff --git a/core/res/res/drawable-xhdpi/ime_qwerty.png b/core/res/res/drawable-xhdpi/ime_qwerty.png Binary files differindex 42c9e5a..a20afe2 100644 --- a/core/res/res/drawable-xhdpi/ime_qwerty.png +++ b/core/res/res/drawable-xhdpi/ime_qwerty.png diff --git a/core/res/res/drawable-xhdpi/indicator_input_error.png b/core/res/res/drawable-xhdpi/indicator_input_error.png Binary files differindex 5be92a0..144a4e6 100644 --- a/core/res/res/drawable-xhdpi/indicator_input_error.png +++ b/core/res/res/drawable-xhdpi/indicator_input_error.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_green.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_green.png Binary files differindex c106f76..ab09116 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_green.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_green.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_yellow.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_yellow.png Binary files differindex 7657f74..5866de9 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_yellow.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_left_yellow.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_middle_yellow.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_middle_yellow.png Binary files differindex a90926d..1131a31 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_middle_yellow.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_middle_yellow.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_red.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_red.png Binary files differindex 3a00c56..6319966 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_red.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_red.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_yellow.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_yellow.png Binary files differindex 113daaa..3f07ae2 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_yellow.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_long_right_yellow.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left.png Binary files differindex ac62915..c31a8e5 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left_and_right.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left_and_right.png Binary files differindex 0efed7a..46e12f9 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left_and_right.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_left_and_right.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_right.png b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_right.png Binary files differindex 859998b..375ba63 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_arrow_short_right.png +++ b/core/res/res/drawable-xhdpi/jog_dial_arrow_short_right.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_bg.png b/core/res/res/drawable-xhdpi/jog_dial_bg.png Binary files differindex 61fcb46..48cf4b6 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_bg.png +++ b/core/res/res/drawable-xhdpi/jog_dial_bg.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_dimple.png b/core/res/res/drawable-xhdpi/jog_dial_dimple.png Binary files differindex 3ab2ab6..af78ecc 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_dimple.png +++ b/core/res/res/drawable-xhdpi/jog_dial_dimple.png diff --git a/core/res/res/drawable-xhdpi/jog_dial_dimple_dim.png b/core/res/res/drawable-xhdpi/jog_dial_dimple_dim.png Binary files differindex 720ff80..e076695 100644 --- a/core/res/res/drawable-xhdpi/jog_dial_dimple_dim.png +++ b/core/res/res/drawable-xhdpi/jog_dial_dimple_dim.png diff --git a/core/res/res/drawable-xhdpi/keyboard_accessory_bg_landscape.9.png b/core/res/res/drawable-xhdpi/keyboard_accessory_bg_landscape.9.png Binary files differindex e534908..40b65ed 100644 --- a/core/res/res/drawable-xhdpi/keyboard_accessory_bg_landscape.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_accessory_bg_landscape.9.png diff --git a/core/res/res/drawable-xhdpi/keyboard_background.9.png b/core/res/res/drawable-xhdpi/keyboard_background.9.png Binary files differindex 33d8519..23f96afc 100644 --- a/core/res/res/drawable-xhdpi/keyboard_background.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_background.9.png diff --git a/core/res/res/drawable-xhdpi/keyboard_key_feedback_background.9.png b/core/res/res/drawable-xhdpi/keyboard_key_feedback_background.9.png Binary files differindex 6e8584b..95bcce2 100644 --- a/core/res/res/drawable-xhdpi/keyboard_key_feedback_background.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_key_feedback_background.9.png diff --git a/core/res/res/drawable-xhdpi/keyboard_key_feedback_more_background.9.png b/core/res/res/drawable-xhdpi/keyboard_key_feedback_more_background.9.png Binary files differindex d983a95..b37d462 100644 --- a/core/res/res/drawable-xhdpi/keyboard_key_feedback_more_background.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_key_feedback_more_background.9.png diff --git a/core/res/res/drawable-xhdpi/keyboard_popup_panel_background.9.png b/core/res/res/drawable-xhdpi/keyboard_popup_panel_background.9.png Binary files differindex d9f4819..55efb6f 100644 --- a/core/res/res/drawable-xhdpi/keyboard_popup_panel_background.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_popup_panel_background.9.png diff --git a/core/res/res/drawable-xhdpi/keyboard_popup_panel_trans_background.9.png b/core/res/res/drawable-xhdpi/keyboard_popup_panel_trans_background.9.png Binary files differindex 9a19f78..bb262f3 100644 --- a/core/res/res/drawable-xhdpi/keyboard_popup_panel_trans_background.9.png +++ b/core/res/res/drawable-xhdpi/keyboard_popup_panel_trans_background.9.png diff --git a/core/res/res/drawable-xhdpi/light_header.9.png b/core/res/res/drawable-xhdpi/light_header.9.png Binary files differindex 029dd2a..f22658e 100644 --- a/core/res/res/drawable-xhdpi/light_header.9.png +++ b/core/res/res/drawable-xhdpi/light_header.9.png diff --git a/core/res/res/drawable-xhdpi/list_activated_holo.9.png b/core/res/res/drawable-xhdpi/list_activated_holo.9.png Binary files differindex eda10e6..0b596cd 100644 --- a/core/res/res/drawable-xhdpi/list_activated_holo.9.png +++ b/core/res/res/drawable-xhdpi/list_activated_holo.9.png diff --git a/core/res/res/drawable-xhdpi/list_divider_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_divider_holo_dark.9.png Binary files differindex e62f011..2ec3580 100644 --- a/core/res/res/drawable-xhdpi/list_divider_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_divider_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_divider_holo_light.9.png b/core/res/res/drawable-xhdpi/list_divider_holo_light.9.png Binary files differindex 65061c0..6db5621 100644 --- a/core/res/res/drawable-xhdpi/list_divider_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_divider_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_divider_horizontal_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_divider_horizontal_holo_dark.9.png Binary files differindex 0c901de..9f778e0 100644 --- a/core/res/res/drawable-xhdpi/list_divider_horizontal_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_divider_horizontal_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_focused_holo.9.png b/core/res/res/drawable-xhdpi/list_focused_holo.9.png Binary files differindex b545f8e..3f0b051 100644 --- a/core/res/res/drawable-xhdpi/list_focused_holo.9.png +++ b/core/res/res/drawable-xhdpi/list_focused_holo.9.png diff --git a/core/res/res/drawable-xhdpi/list_longpressed_holo.9.png b/core/res/res/drawable-xhdpi/list_longpressed_holo.9.png Binary files differindex eda10e6..0b596cd 100644 --- a/core/res/res/drawable-xhdpi/list_longpressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/list_longpressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/list_longpressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_longpressed_holo_dark.9.png Binary files differindex 1080244..df0fae0 100644 --- a/core/res/res/drawable-xhdpi/list_longpressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_longpressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_longpressed_holo_light.9.png b/core/res/res/drawable-xhdpi/list_longpressed_holo_light.9.png Binary files differindex 5532e88..f16b3f13 100644 --- a/core/res/res/drawable-xhdpi/list_longpressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_longpressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_pressed_holo_dark.9.png Binary files differindex 29037a0..92b646c 100644 --- a/core/res/res/drawable-xhdpi/list_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/list_pressed_holo_light.9.png Binary files differindex f4af926..cfc41af 100644 --- a/core/res/res/drawable-xhdpi/list_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_section_divider_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_section_divider_holo_dark.9.png Binary files differindex 942d72e..b7c4515 100644 --- a/core/res/res/drawable-xhdpi/list_section_divider_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_section_divider_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_section_divider_holo_light.9.png b/core/res/res/drawable-xhdpi/list_section_divider_holo_light.9.png Binary files differindex 4ad088f..c8d7d8d 100644 --- a/core/res/res/drawable-xhdpi/list_section_divider_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_section_divider_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_section_divider_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/list_section_divider_mtrl_alpha.9.png Binary files differindex e053b39..b6ad88d 100644 --- a/core/res/res/drawable-xhdpi/list_section_divider_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/list_section_divider_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/list_section_header_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_section_header_holo_dark.9.png Binary files differindex 6cb42c1..7d0a92f 100644 --- a/core/res/res/drawable-xhdpi/list_section_header_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_section_header_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_section_header_holo_light.9.png b/core/res/res/drawable-xhdpi/list_section_header_holo_light.9.png Binary files differindex f646a41..42feed5 100644 --- a/core/res/res/drawable-xhdpi/list_section_header_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_section_header_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selected_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selected_holo_dark.9.png Binary files differindex e9e7c18..2f63062 100644 --- a/core/res/res/drawable-xhdpi/list_selected_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selected_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selected_holo_light.9.png Binary files differindex 74e3843..2599d6b 100644 --- a/core/res/res/drawable-xhdpi/list_selected_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selected_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_activated_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selector_activated_holo_dark.9.png Binary files differindex f176c7f..a26fa28 100644 --- a/core/res/res/drawable-xhdpi/list_selector_activated_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_activated_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selector_activated_holo_light.9.png Binary files differindex b13f340..3e33001 100644 --- a/core/res/res/drawable-xhdpi/list_selector_activated_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_activated_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_default.9.png b/core/res/res/drawable-xhdpi/list_selector_background_default.9.png Binary files differindex 7261e96..e48dff7 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_default.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_default.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_default_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_default_light.9.png Binary files differindex 1fc96e2..585c0a8 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_default_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_default_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_disabled.9.png b/core/res/res/drawable-xhdpi/list_selector_background_disabled.9.png Binary files differindex f039081..9349186 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_disabled.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_disabled_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_disabled_light.9.png Binary files differindex 9b22eff..109b978 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_disabled_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_disabled_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_focus.9.png b/core/res/res/drawable-xhdpi/list_selector_background_focus.9.png Binary files differindex 79c4577..b4f73de 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_focus.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_focused.9.png b/core/res/res/drawable-xhdpi/list_selector_background_focused.9.png Binary files differindex c8e7681..82379dc 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_focused.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_focused.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_focused_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_focused_light.9.png Binary files differindex c8e7681..82379dc 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_focused_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_focused_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_focused_selected.9.png b/core/res/res/drawable-xhdpi/list_selector_background_focused_selected.9.png Binary files differindex f56a2dc..dd6596b 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_focused_selected.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_focused_selected.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_longpress.9.png b/core/res/res/drawable-xhdpi/list_selector_background_longpress.9.png Binary files differindex 73fc783..5e88115 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_longpress.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_longpress_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_longpress_light.9.png Binary files differindex ee50a53..31d94ab 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_longpress_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_longpress_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_pressed.9.png b/core/res/res/drawable-xhdpi/list_selector_background_pressed.9.png Binary files differindex 5b3ebe1..6eeddce 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_pressed.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_pressed_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_pressed_light.9.png Binary files differindex a9a293c..289933a 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_pressed_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_pressed_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_selected.9.png b/core/res/res/drawable-xhdpi/list_selector_background_selected.9.png Binary files differindex 78358fe..e4aa62b 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_selected.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_selected.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_background_selected_light.9.png b/core/res/res/drawable-xhdpi/list_selector_background_selected_light.9.png Binary files differindex 7349da5..0903b13 100644 --- a/core/res/res/drawable-xhdpi/list_selector_background_selected_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_background_selected_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selector_disabled_holo_dark.9.png Binary files differindex 88726b6..4a18e7d 100644 --- a/core/res/res/drawable-xhdpi/list_selector_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selector_disabled_holo_light.9.png Binary files differindex c6a7d4d..e6f45a9 100644 --- a/core/res/res/drawable-xhdpi/list_selector_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selector_focused_holo_dark.9.png Binary files differindex d9a26f4..c2d95b4 100644 --- a/core/res/res/drawable-xhdpi/list_selector_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selector_focused_holo_light.9.png Binary files differindex 7ea2b21..8e239c9 100644 --- a/core/res/res/drawable-xhdpi/list_selector_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_dark.9.png Binary files differindex 7033b0e..b6ffb83 100644 --- a/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_light.9.png Binary files differindex e638675..a9973d8 100644 --- a/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_multiselect_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/list_selector_pressed_holo_dark.9.png Binary files differindex df19701..160d582 100644 --- a/core/res/res/drawable-xhdpi/list_selector_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/list_selector_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/list_selector_pressed_holo_light.9.png Binary files differindex 6e5a6a9..93fe221 100644 --- a/core/res/res/drawable-xhdpi/list_selector_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/list_selector_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/magnified_region_frame.9.png b/core/res/res/drawable-xhdpi/magnified_region_frame.9.png Binary files differindex 424b3d9..5c8f6a2 100644 --- a/core/res/res/drawable-xhdpi/magnified_region_frame.9.png +++ b/core/res/res/drawable-xhdpi/magnified_region_frame.9.png diff --git a/core/res/res/drawable-xhdpi/maps_google_logo.png b/core/res/res/drawable-xhdpi/maps_google_logo.png Binary files differindex 2cd6257..a528a1d 100644 --- a/core/res/res/drawable-xhdpi/maps_google_logo.png +++ b/core/res/res/drawable-xhdpi/maps_google_logo.png diff --git a/core/res/res/drawable-xhdpi/menu_background.9.png b/core/res/res/drawable-xhdpi/menu_background.9.png Binary files differindex 3aa8ccb..4510c75 100644 --- a/core/res/res/drawable-xhdpi/menu_background.9.png +++ b/core/res/res/drawable-xhdpi/menu_background.9.png diff --git a/core/res/res/drawable-xhdpi/menu_background_fill_parent_width.9.png b/core/res/res/drawable-xhdpi/menu_background_fill_parent_width.9.png Binary files differindex af08de2..6bfca68 100644 --- a/core/res/res/drawable-xhdpi/menu_background_fill_parent_width.9.png +++ b/core/res/res/drawable-xhdpi/menu_background_fill_parent_width.9.png diff --git a/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_dark.9.png b/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_dark.9.png Binary files differindex abc48f8..9c6d323 100644 --- a/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_light.9.png b/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_light.9.png Binary files differindex 48905ed..9091544 100644 --- a/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/menu_dropdown_panel_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_dark.9.png b/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_dark.9.png Binary files differindex c1ad023..b8bc3fc 100644 --- a/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_light.9.png b/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_light.9.png Binary files differindex a1e33d6..54b1c41 100644 --- a/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/menu_hardkey_panel_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/menu_popup_panel_holo_dark.9.png b/core/res/res/drawable-xhdpi/menu_popup_panel_holo_dark.9.png Binary files differindex e85b0c2..188b844 100644 --- a/core/res/res/drawable-xhdpi/menu_popup_panel_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/menu_popup_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/menu_popup_panel_holo_light.9.png b/core/res/res/drawable-xhdpi/menu_popup_panel_holo_light.9.png Binary files differindex eea215d..b66a2e7 100644 --- a/core/res/res/drawable-xhdpi/menu_popup_panel_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/menu_popup_panel_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/menu_separator.9.png b/core/res/res/drawable-xhdpi/menu_separator.9.png Binary files differindex 3c3722c..e9633be 100644 --- a/core/res/res/drawable-xhdpi/menu_separator.9.png +++ b/core/res/res/drawable-xhdpi/menu_separator.9.png diff --git a/core/res/res/drawable-xhdpi/menu_submenu_background.9.png b/core/res/res/drawable-xhdpi/menu_submenu_background.9.png Binary files differindex 4a8b2ad..c767408 100644 --- a/core/res/res/drawable-xhdpi/menu_submenu_background.9.png +++ b/core/res/res/drawable-xhdpi/menu_submenu_background.9.png diff --git a/core/res/res/drawable-xhdpi/menuitem_background_focus.9.png b/core/res/res/drawable-xhdpi/menuitem_background_focus.9.png Binary files differindex 83e4ae0..f113e5b 100644 --- a/core/res/res/drawable-xhdpi/menuitem_background_focus.9.png +++ b/core/res/res/drawable-xhdpi/menuitem_background_focus.9.png diff --git a/core/res/res/drawable-xhdpi/menuitem_background_pressed.9.png b/core/res/res/drawable-xhdpi/menuitem_background_pressed.9.png Binary files differindex 70a000f..aa639fb 100644 --- a/core/res/res/drawable-xhdpi/menuitem_background_pressed.9.png +++ b/core/res/res/drawable-xhdpi/menuitem_background_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/menuitem_background_solid_focused.9.png b/core/res/res/drawable-xhdpi/menuitem_background_solid_focused.9.png Binary files differindex 671e756..b4ff4c4 100644 --- a/core/res/res/drawable-xhdpi/menuitem_background_solid_focused.9.png +++ b/core/res/res/drawable-xhdpi/menuitem_background_solid_focused.9.png diff --git a/core/res/res/drawable-xhdpi/menuitem_background_solid_pressed.9.png b/core/res/res/drawable-xhdpi/menuitem_background_solid_pressed.9.png Binary files differindex 5f334d8..a046d1b 100644 --- a/core/res/res/drawable-xhdpi/menuitem_background_solid_pressed.9.png +++ b/core/res/res/drawable-xhdpi/menuitem_background_solid_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/menuitem_checkbox_on.png b/core/res/res/drawable-xhdpi/menuitem_checkbox_on.png Binary files differindex a7d2ad2..dcf0cd1 100644 --- a/core/res/res/drawable-xhdpi/menuitem_checkbox_on.png +++ b/core/res/res/drawable-xhdpi/menuitem_checkbox_on.png diff --git a/core/res/res/drawable-xhdpi/minitab_lt_focus.9.png b/core/res/res/drawable-xhdpi/minitab_lt_focus.9.png Binary files differindex 7a0995b..49a2e96 100644 --- a/core/res/res/drawable-xhdpi/minitab_lt_focus.9.png +++ b/core/res/res/drawable-xhdpi/minitab_lt_focus.9.png diff --git a/core/res/res/drawable-xhdpi/minitab_lt_press.9.png b/core/res/res/drawable-xhdpi/minitab_lt_press.9.png Binary files differindex 7602d3e..7dc5679 100644 --- a/core/res/res/drawable-xhdpi/minitab_lt_press.9.png +++ b/core/res/res/drawable-xhdpi/minitab_lt_press.9.png diff --git a/core/res/res/drawable-xhdpi/minitab_lt_selected.9.png b/core/res/res/drawable-xhdpi/minitab_lt_selected.9.png Binary files differindex 544fad5..0c2cb8a 100644 --- a/core/res/res/drawable-xhdpi/minitab_lt_selected.9.png +++ b/core/res/res/drawable-xhdpi/minitab_lt_selected.9.png diff --git a/core/res/res/drawable-xhdpi/minitab_lt_unselected.9.png b/core/res/res/drawable-xhdpi/minitab_lt_unselected.9.png Binary files differindex bcdb9d7..b1dc053 100644 --- a/core/res/res/drawable-xhdpi/minitab_lt_unselected.9.png +++ b/core/res/res/drawable-xhdpi/minitab_lt_unselected.9.png diff --git a/core/res/res/drawable-xhdpi/minitab_lt_unselected_press.9.png b/core/res/res/drawable-xhdpi/minitab_lt_unselected_press.9.png Binary files differindex 8aabb89..90d55a9 100644 --- a/core/res/res/drawable-xhdpi/minitab_lt_unselected_press.9.png +++ b/core/res/res/drawable-xhdpi/minitab_lt_unselected_press.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_down_disabled.9.png b/core/res/res/drawable-xhdpi/numberpicker_down_disabled.9.png Binary files differindex ec92ea5..80d3af0 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_down_disabled.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_down_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_down_disabled_focused.9.png b/core/res/res/drawable-xhdpi/numberpicker_down_disabled_focused.9.png Binary files differindex 03c020d..0e909ea 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_down_disabled_focused.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_down_disabled_focused.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_down_normal.9.png b/core/res/res/drawable-xhdpi/numberpicker_down_normal.9.png Binary files differindex 8637414..2c28e9b 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_down_normal.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_down_normal.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_down_pressed.9.png b/core/res/res/drawable-xhdpi/numberpicker_down_pressed.9.png Binary files differindex bb56365..641f31d 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_down_pressed.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_down_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_down_selected.9.png b/core/res/res/drawable-xhdpi/numberpicker_down_selected.9.png Binary files differindex 4a076f6..1c18a54 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_down_selected.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_down_selected.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_input_disabled.9.png b/core/res/res/drawable-xhdpi/numberpicker_input_disabled.9.png Binary files differindex d176022..f4e8def 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_input_disabled.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_input_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_input_normal.9.png b/core/res/res/drawable-xhdpi/numberpicker_input_normal.9.png Binary files differindex dcacfcf..eb6ca17 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_input_normal.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_input_normal.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_input_pressed.9.png b/core/res/res/drawable-xhdpi/numberpicker_input_pressed.9.png Binary files differindex f8cb9e5..b844db6 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_input_pressed.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_input_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_input_selected.9.png b/core/res/res/drawable-xhdpi/numberpicker_input_selected.9.png Binary files differindex 38c429f..c69dada 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_input_selected.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_input_selected.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_selection_divider.9.png b/core/res/res/drawable-xhdpi/numberpicker_selection_divider.9.png Binary files differindex 97eb5fe..ab8c965 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_selection_divider.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_selection_divider.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_up_disabled.9.png b/core/res/res/drawable-xhdpi/numberpicker_up_disabled.9.png Binary files differindex a1d8ae1..2342712 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_up_disabled.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_up_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_up_disabled_focused.9.png b/core/res/res/drawable-xhdpi/numberpicker_up_disabled_focused.9.png Binary files differindex 0256f32..cf7c259 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_up_disabled_focused.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_up_disabled_focused.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_up_normal.9.png b/core/res/res/drawable-xhdpi/numberpicker_up_normal.9.png Binary files differindex f6746a6..879da83 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_up_normal.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_up_normal.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_up_pressed.9.png b/core/res/res/drawable-xhdpi/numberpicker_up_pressed.9.png Binary files differindex 1071c73..67d0d4b 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_up_pressed.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_up_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/numberpicker_up_selected.9.png b/core/res/res/drawable-xhdpi/numberpicker_up_selected.9.png Binary files differindex f446d48..3714b11 100644 --- a/core/res/res/drawable-xhdpi/numberpicker_up_selected.9.png +++ b/core/res/res/drawable-xhdpi/numberpicker_up_selected.9.png diff --git a/core/res/res/drawable-xhdpi/panel_background.9.png b/core/res/res/drawable-xhdpi/panel_background.9.png Binary files differindex f3a3a9d..6065c15 100644 --- a/core/res/res/drawable-xhdpi/panel_background.9.png +++ b/core/res/res/drawable-xhdpi/panel_background.9.png diff --git a/core/res/res/drawable-xhdpi/panel_bg_holo_dark.9.png b/core/res/res/drawable-xhdpi/panel_bg_holo_dark.9.png Binary files differindex aaf6d8b..2a389e7 100644 --- a/core/res/res/drawable-xhdpi/panel_bg_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/panel_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/panel_bg_holo_light.9.png b/core/res/res/drawable-xhdpi/panel_bg_holo_light.9.png Binary files differindex 6ea7615..4da0dd4b 100644 --- a/core/res/res/drawable-xhdpi/panel_bg_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/panel_bg_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_focus_blue.9.png b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_focus_blue.9.png Binary files differindex 8c7b0bd..11ca57d 100644 --- a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_focus_blue.9.png +++ b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_focus_blue.9.png diff --git a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_normal.9.png b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_normal.9.png Binary files differindex 5477a02..f869afa 100644 --- a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_normal.9.png +++ b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_normal.9.png diff --git a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_pressed_blue.9.png b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_pressed_blue.9.png Binary files differindex d79a003..a8a9f3c 100644 --- a/core/res/res/drawable-xhdpi/panel_picture_frame_bg_pressed_blue.9.png +++ b/core/res/res/drawable-xhdpi/panel_picture_frame_bg_pressed_blue.9.png diff --git a/core/res/res/drawable-xhdpi/password_field_default.9.png b/core/res/res/drawable-xhdpi/password_field_default.9.png Binary files differindex 9aa6776..9a527db 100644 --- a/core/res/res/drawable-xhdpi/password_field_default.9.png +++ b/core/res/res/drawable-xhdpi/password_field_default.9.png diff --git a/core/res/res/drawable-xhdpi/password_keyboard_background_holo.9.png b/core/res/res/drawable-xhdpi/password_keyboard_background_holo.9.png Binary files differindex 7f95130..5b75f79 100644 --- a/core/res/res/drawable-xhdpi/password_keyboard_background_holo.9.png +++ b/core/res/res/drawable-xhdpi/password_keyboard_background_holo.9.png diff --git a/core/res/res/drawable-xhdpi/perm_group_accessibility_features.png b/core/res/res/drawable-xhdpi/perm_group_accessibility_features.png Binary files differindex 53a12a1..3362e4e 100644 --- a/core/res/res/drawable-xhdpi/perm_group_accessibility_features.png +++ b/core/res/res/drawable-xhdpi/perm_group_accessibility_features.png diff --git a/core/res/res/drawable-xhdpi/perm_group_accounts.png b/core/res/res/drawable-xhdpi/perm_group_accounts.png Binary files differindex ca622e9..d680bfb 100644 --- a/core/res/res/drawable-xhdpi/perm_group_accounts.png +++ b/core/res/res/drawable-xhdpi/perm_group_accounts.png diff --git a/core/res/res/drawable-xhdpi/perm_group_affects_battery.png b/core/res/res/drawable-xhdpi/perm_group_affects_battery.png Binary files differindex 3527aa7..9c0092d 100644 --- a/core/res/res/drawable-xhdpi/perm_group_affects_battery.png +++ b/core/res/res/drawable-xhdpi/perm_group_affects_battery.png diff --git a/core/res/res/drawable-xhdpi/perm_group_app_info.png b/core/res/res/drawable-xhdpi/perm_group_app_info.png Binary files differindex 902b795..abb69d3 100644 --- a/core/res/res/drawable-xhdpi/perm_group_app_info.png +++ b/core/res/res/drawable-xhdpi/perm_group_app_info.png diff --git a/core/res/res/drawable-xhdpi/perm_group_audio_settings.png b/core/res/res/drawable-xhdpi/perm_group_audio_settings.png Binary files differindex 8100212..2bce4d0 100644 --- a/core/res/res/drawable-xhdpi/perm_group_audio_settings.png +++ b/core/res/res/drawable-xhdpi/perm_group_audio_settings.png diff --git a/core/res/res/drawable-xhdpi/perm_group_bluetooth.png b/core/res/res/drawable-xhdpi/perm_group_bluetooth.png Binary files differindex 754da87..9df6aa2 100644 --- a/core/res/res/drawable-xhdpi/perm_group_bluetooth.png +++ b/core/res/res/drawable-xhdpi/perm_group_bluetooth.png diff --git a/core/res/res/drawable-xhdpi/perm_group_bookmarks.png b/core/res/res/drawable-xhdpi/perm_group_bookmarks.png Binary files differindex 44525bc..b43d12b 100644 --- a/core/res/res/drawable-xhdpi/perm_group_bookmarks.png +++ b/core/res/res/drawable-xhdpi/perm_group_bookmarks.png diff --git a/core/res/res/drawable-xhdpi/perm_group_calendar.png b/core/res/res/drawable-xhdpi/perm_group_calendar.png Binary files differindex 9821c27..06c61bb 100644 --- a/core/res/res/drawable-xhdpi/perm_group_calendar.png +++ b/core/res/res/drawable-xhdpi/perm_group_calendar.png diff --git a/core/res/res/drawable-xhdpi/perm_group_camera.png b/core/res/res/drawable-xhdpi/perm_group_camera.png Binary files differindex 23b7167..19bd838 100644 --- a/core/res/res/drawable-xhdpi/perm_group_camera.png +++ b/core/res/res/drawable-xhdpi/perm_group_camera.png diff --git a/core/res/res/drawable-xhdpi/perm_group_device_alarms.png b/core/res/res/drawable-xhdpi/perm_group_device_alarms.png Binary files differindex 615578e..f5d2eb1 100644 --- a/core/res/res/drawable-xhdpi/perm_group_device_alarms.png +++ b/core/res/res/drawable-xhdpi/perm_group_device_alarms.png diff --git a/core/res/res/drawable-xhdpi/perm_group_display.png b/core/res/res/drawable-xhdpi/perm_group_display.png Binary files differindex 1489213..2f41ac1 100644 --- a/core/res/res/drawable-xhdpi/perm_group_display.png +++ b/core/res/res/drawable-xhdpi/perm_group_display.png diff --git a/core/res/res/drawable-xhdpi/perm_group_location.png b/core/res/res/drawable-xhdpi/perm_group_location.png Binary files differindex d949cdb..3dc7924 100644 --- a/core/res/res/drawable-xhdpi/perm_group_location.png +++ b/core/res/res/drawable-xhdpi/perm_group_location.png diff --git a/core/res/res/drawable-xhdpi/perm_group_messages.png b/core/res/res/drawable-xhdpi/perm_group_messages.png Binary files differindex dbb9aba..ab25ed7 100644 --- a/core/res/res/drawable-xhdpi/perm_group_messages.png +++ b/core/res/res/drawable-xhdpi/perm_group_messages.png diff --git a/core/res/res/drawable-xhdpi/perm_group_microphone.png b/core/res/res/drawable-xhdpi/perm_group_microphone.png Binary files differindex 8887a41..4221012 100644 --- a/core/res/res/drawable-xhdpi/perm_group_microphone.png +++ b/core/res/res/drawable-xhdpi/perm_group_microphone.png diff --git a/core/res/res/drawable-xhdpi/perm_group_network.png b/core/res/res/drawable-xhdpi/perm_group_network.png Binary files differindex ebe034f..4879e05 100644 --- a/core/res/res/drawable-xhdpi/perm_group_network.png +++ b/core/res/res/drawable-xhdpi/perm_group_network.png diff --git a/core/res/res/drawable-xhdpi/perm_group_personal_info.png b/core/res/res/drawable-xhdpi/perm_group_personal_info.png Binary files differindex 5ae4111..5630fde 100644 --- a/core/res/res/drawable-xhdpi/perm_group_personal_info.png +++ b/core/res/res/drawable-xhdpi/perm_group_personal_info.png diff --git a/core/res/res/drawable-xhdpi/perm_group_phone_calls.png b/core/res/res/drawable-xhdpi/perm_group_phone_calls.png Binary files differindex 9e1d2ca..3985acc 100644 --- a/core/res/res/drawable-xhdpi/perm_group_phone_calls.png +++ b/core/res/res/drawable-xhdpi/perm_group_phone_calls.png diff --git a/core/res/res/drawable-xhdpi/perm_group_screenlock.png b/core/res/res/drawable-xhdpi/perm_group_screenlock.png Binary files differindex 96d6873..100486a 100644 --- a/core/res/res/drawable-xhdpi/perm_group_screenlock.png +++ b/core/res/res/drawable-xhdpi/perm_group_screenlock.png diff --git a/core/res/res/drawable-xhdpi/perm_group_shortrange_network.png b/core/res/res/drawable-xhdpi/perm_group_shortrange_network.png Binary files differindex 2f0c2d9..49a89b0 100644 --- a/core/res/res/drawable-xhdpi/perm_group_shortrange_network.png +++ b/core/res/res/drawable-xhdpi/perm_group_shortrange_network.png diff --git a/core/res/res/drawable-xhdpi/perm_group_social_info.png b/core/res/res/drawable-xhdpi/perm_group_social_info.png Binary files differindex 842662c..850dc3a 100644 --- a/core/res/res/drawable-xhdpi/perm_group_social_info.png +++ b/core/res/res/drawable-xhdpi/perm_group_social_info.png diff --git a/core/res/res/drawable-xhdpi/perm_group_status_bar.png b/core/res/res/drawable-xhdpi/perm_group_status_bar.png Binary files differindex 8103320..e05e77a 100644 --- a/core/res/res/drawable-xhdpi/perm_group_status_bar.png +++ b/core/res/res/drawable-xhdpi/perm_group_status_bar.png diff --git a/core/res/res/drawable-xhdpi/perm_group_storage.png b/core/res/res/drawable-xhdpi/perm_group_storage.png Binary files differindex a2d4d5e..a38f47b 100644 --- a/core/res/res/drawable-xhdpi/perm_group_storage.png +++ b/core/res/res/drawable-xhdpi/perm_group_storage.png diff --git a/core/res/res/drawable-xhdpi/perm_group_sync_settings.png b/core/res/res/drawable-xhdpi/perm_group_sync_settings.png Binary files differindex 252a2a0..006d455 100644 --- a/core/res/res/drawable-xhdpi/perm_group_sync_settings.png +++ b/core/res/res/drawable-xhdpi/perm_group_sync_settings.png diff --git a/core/res/res/drawable-xhdpi/perm_group_system_clock.png b/core/res/res/drawable-xhdpi/perm_group_system_clock.png Binary files differindex da8a915..089c0cc 100644 --- a/core/res/res/drawable-xhdpi/perm_group_system_clock.png +++ b/core/res/res/drawable-xhdpi/perm_group_system_clock.png diff --git a/core/res/res/drawable-xhdpi/perm_group_system_tools.png b/core/res/res/drawable-xhdpi/perm_group_system_tools.png Binary files differindex 047c60c..7db15fa 100644 --- a/core/res/res/drawable-xhdpi/perm_group_system_tools.png +++ b/core/res/res/drawable-xhdpi/perm_group_system_tools.png diff --git a/core/res/res/drawable-xhdpi/perm_group_user_dictionary.png b/core/res/res/drawable-xhdpi/perm_group_user_dictionary.png Binary files differindex 35d7d5f..2f5c10b 100644 --- a/core/res/res/drawable-xhdpi/perm_group_user_dictionary.png +++ b/core/res/res/drawable-xhdpi/perm_group_user_dictionary.png diff --git a/core/res/res/drawable-xhdpi/perm_group_user_dictionary_write.png b/core/res/res/drawable-xhdpi/perm_group_user_dictionary_write.png Binary files differindex 74e25ac..3220a6f 100644 --- a/core/res/res/drawable-xhdpi/perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-xhdpi/perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-xhdpi/perm_group_voicemail.png b/core/res/res/drawable-xhdpi/perm_group_voicemail.png Binary files differindex 430964d..708f33a 100644 --- a/core/res/res/drawable-xhdpi/perm_group_voicemail.png +++ b/core/res/res/drawable-xhdpi/perm_group_voicemail.png diff --git a/core/res/res/drawable-xhdpi/perm_group_wallpaper.png b/core/res/res/drawable-xhdpi/perm_group_wallpaper.png Binary files differindex 3b698d8..6e12a01 100644 --- a/core/res/res/drawable-xhdpi/perm_group_wallpaper.png +++ b/core/res/res/drawable-xhdpi/perm_group_wallpaper.png diff --git a/core/res/res/drawable-xhdpi/picture_emergency.png b/core/res/res/drawable-xhdpi/picture_emergency.png Binary files differindex 08b421e..c904cad 100644 --- a/core/res/res/drawable-xhdpi/picture_emergency.png +++ b/core/res/res/drawable-xhdpi/picture_emergency.png diff --git a/core/res/res/drawable-xhdpi/picture_frame.9.png b/core/res/res/drawable-xhdpi/picture_frame.9.png Binary files differindex 69ef655..52a9b8d 100644 --- a/core/res/res/drawable-xhdpi/picture_frame.9.png +++ b/core/res/res/drawable-xhdpi/picture_frame.9.png diff --git a/core/res/res/drawable-xhdpi/pointer_arrow.png b/core/res/res/drawable-xhdpi/pointer_arrow.png Binary files differindex e2d9ed2..c6e2e98 100644 --- a/core/res/res/drawable-xhdpi/pointer_arrow.png +++ b/core/res/res/drawable-xhdpi/pointer_arrow.png diff --git a/core/res/res/drawable-xhdpi/pointer_spot_anchor.png b/core/res/res/drawable-xhdpi/pointer_spot_anchor.png Binary files differindex fa9226e..af2ef38 100644 --- a/core/res/res/drawable-xhdpi/pointer_spot_anchor.png +++ b/core/res/res/drawable-xhdpi/pointer_spot_anchor.png diff --git a/core/res/res/drawable-xhdpi/pointer_spot_hover.png b/core/res/res/drawable-xhdpi/pointer_spot_hover.png Binary files differindex f09a778..1feb2fb 100644 --- a/core/res/res/drawable-xhdpi/pointer_spot_hover.png +++ b/core/res/res/drawable-xhdpi/pointer_spot_hover.png diff --git a/core/res/res/drawable-xhdpi/pointer_spot_touch.png b/core/res/res/drawable-xhdpi/pointer_spot_touch.png Binary files differindex 53d7a20..59e2194 100644 --- a/core/res/res/drawable-xhdpi/pointer_spot_touch.png +++ b/core/res/res/drawable-xhdpi/pointer_spot_touch.png diff --git a/core/res/res/drawable-xhdpi/popup_background_mtrl_mult.9.png b/core/res/res/drawable-xhdpi/popup_background_mtrl_mult.9.png Binary files differindex a081ceb..c7c3a64 100644 --- a/core/res/res/drawable-xhdpi/popup_background_mtrl_mult.9.png +++ b/core/res/res/drawable-xhdpi/popup_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-xhdpi/popup_bottom_bright.9.png b/core/res/res/drawable-xhdpi/popup_bottom_bright.9.png Binary files differindex cdc0afb..9ed311b 100644 --- a/core/res/res/drawable-xhdpi/popup_bottom_bright.9.png +++ b/core/res/res/drawable-xhdpi/popup_bottom_bright.9.png diff --git a/core/res/res/drawable-xhdpi/popup_bottom_dark.9.png b/core/res/res/drawable-xhdpi/popup_bottom_dark.9.png Binary files differindex 36b0448..ff568f4 100644 --- a/core/res/res/drawable-xhdpi/popup_bottom_dark.9.png +++ b/core/res/res/drawable-xhdpi/popup_bottom_dark.9.png diff --git a/core/res/res/drawable-xhdpi/popup_bottom_medium.9.png b/core/res/res/drawable-xhdpi/popup_bottom_medium.9.png Binary files differindex 3a7a8b3..fc4721c 100644 --- a/core/res/res/drawable-xhdpi/popup_bottom_medium.9.png +++ b/core/res/res/drawable-xhdpi/popup_bottom_medium.9.png diff --git a/core/res/res/drawable-xhdpi/popup_center_bright.9.png b/core/res/res/drawable-xhdpi/popup_center_bright.9.png Binary files differindex 97614e3..53c7429 100644 --- a/core/res/res/drawable-xhdpi/popup_center_bright.9.png +++ b/core/res/res/drawable-xhdpi/popup_center_bright.9.png diff --git a/core/res/res/drawable-xhdpi/popup_center_dark.9.png b/core/res/res/drawable-xhdpi/popup_center_dark.9.png Binary files differindex 87378e1..2b012fb 100644 --- a/core/res/res/drawable-xhdpi/popup_center_dark.9.png +++ b/core/res/res/drawable-xhdpi/popup_center_dark.9.png diff --git a/core/res/res/drawable-xhdpi/popup_center_medium.9.png b/core/res/res/drawable-xhdpi/popup_center_medium.9.png Binary files differindex ea29ed4..44a49d8 100644 --- a/core/res/res/drawable-xhdpi/popup_center_medium.9.png +++ b/core/res/res/drawable-xhdpi/popup_center_medium.9.png diff --git a/core/res/res/drawable-xhdpi/popup_full_bright.9.png b/core/res/res/drawable-xhdpi/popup_full_bright.9.png Binary files differindex f10dd85..aba64bd 100644 --- a/core/res/res/drawable-xhdpi/popup_full_bright.9.png +++ b/core/res/res/drawable-xhdpi/popup_full_bright.9.png diff --git a/core/res/res/drawable-xhdpi/popup_full_dark.9.png b/core/res/res/drawable-xhdpi/popup_full_dark.9.png Binary files differindex 7de3e9d..cf06b85 100644 --- a/core/res/res/drawable-xhdpi/popup_full_dark.9.png +++ b/core/res/res/drawable-xhdpi/popup_full_dark.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_above_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_above_am.9.png Binary files differindex e382712..ce1d1e4 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_above_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_above_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_dark_am.9.png Binary files differindex a210f3c..3b015de 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_light_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_light_am.9.png Binary files differindex d69b772..b6461f7 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_above_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_am.9.png Binary files differindex a24e607..40af6dd 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_holo_dark_am.9.png Binary files differindex f106329..6ff0311 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_inline_error_holo_light_am.9.png b/core/res/res/drawable-xhdpi/popup_inline_error_holo_light_am.9.png Binary files differindex 0c65386..077976c 100644 --- a/core/res/res/drawable-xhdpi/popup_inline_error_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/popup_inline_error_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/popup_top_bright.9.png b/core/res/res/drawable-xhdpi/popup_top_bright.9.png Binary files differindex 64e4139..638c9e6 100644 --- a/core/res/res/drawable-xhdpi/popup_top_bright.9.png +++ b/core/res/res/drawable-xhdpi/popup_top_bright.9.png diff --git a/core/res/res/drawable-xhdpi/popup_top_dark.9.png b/core/res/res/drawable-xhdpi/popup_top_dark.9.png Binary files differindex 902bc29..1a3ecc9 100644 --- a/core/res/res/drawable-xhdpi/popup_top_dark.9.png +++ b/core/res/res/drawable-xhdpi/popup_top_dark.9.png diff --git a/core/res/res/drawable-xhdpi/presence_audio_away.png b/core/res/res/drawable-xhdpi/presence_audio_away.png Binary files differindex 4fc6f6a..e70ff13 100644 --- a/core/res/res/drawable-xhdpi/presence_audio_away.png +++ b/core/res/res/drawable-xhdpi/presence_audio_away.png diff --git a/core/res/res/drawable-xhdpi/presence_audio_busy.png b/core/res/res/drawable-xhdpi/presence_audio_busy.png Binary files differindex ca45ac9..2241e1d 100644 --- a/core/res/res/drawable-xhdpi/presence_audio_busy.png +++ b/core/res/res/drawable-xhdpi/presence_audio_busy.png diff --git a/core/res/res/drawable-xhdpi/presence_audio_online.png b/core/res/res/drawable-xhdpi/presence_audio_online.png Binary files differindex 595c730..73f7110 100644 --- a/core/res/res/drawable-xhdpi/presence_audio_online.png +++ b/core/res/res/drawable-xhdpi/presence_audio_online.png diff --git a/core/res/res/drawable-xhdpi/presence_away.png b/core/res/res/drawable-xhdpi/presence_away.png Binary files differindex 1478e72..2e95310 100644 --- a/core/res/res/drawable-xhdpi/presence_away.png +++ b/core/res/res/drawable-xhdpi/presence_away.png diff --git a/core/res/res/drawable-xhdpi/presence_busy.png b/core/res/res/drawable-xhdpi/presence_busy.png Binary files differindex 8278ce2..e669a73 100644 --- a/core/res/res/drawable-xhdpi/presence_busy.png +++ b/core/res/res/drawable-xhdpi/presence_busy.png diff --git a/core/res/res/drawable-xhdpi/presence_invisible.png b/core/res/res/drawable-xhdpi/presence_invisible.png Binary files differindex 9bb6cef..e73aab8 100644 --- a/core/res/res/drawable-xhdpi/presence_invisible.png +++ b/core/res/res/drawable-xhdpi/presence_invisible.png diff --git a/core/res/res/drawable-xhdpi/presence_offline.png b/core/res/res/drawable-xhdpi/presence_offline.png Binary files differindex fc7ba24..b067f05 100644 --- a/core/res/res/drawable-xhdpi/presence_offline.png +++ b/core/res/res/drawable-xhdpi/presence_offline.png diff --git a/core/res/res/drawable-xhdpi/presence_online.png b/core/res/res/drawable-xhdpi/presence_online.png Binary files differindex e2aef11..270b696 100644 --- a/core/res/res/drawable-xhdpi/presence_online.png +++ b/core/res/res/drawable-xhdpi/presence_online.png diff --git a/core/res/res/drawable-xhdpi/presence_video_away.png b/core/res/res/drawable-xhdpi/presence_video_away.png Binary files differindex 02f7d63..5dea3f2 100644 --- a/core/res/res/drawable-xhdpi/presence_video_away.png +++ b/core/res/res/drawable-xhdpi/presence_video_away.png diff --git a/core/res/res/drawable-xhdpi/presence_video_busy.png b/core/res/res/drawable-xhdpi/presence_video_busy.png Binary files differindex db0bec7..b1e1fdc 100644 --- a/core/res/res/drawable-xhdpi/presence_video_busy.png +++ b/core/res/res/drawable-xhdpi/presence_video_busy.png diff --git a/core/res/res/drawable-xhdpi/presence_video_online.png b/core/res/res/drawable-xhdpi/presence_video_online.png Binary files differindex e12be95..71e48d5 100644 --- a/core/res/res/drawable-xhdpi/presence_video_online.png +++ b/core/res/res/drawable-xhdpi/presence_video_online.png diff --git a/core/res/res/drawable-xhdpi/pressed_application_background_static.png b/core/res/res/drawable-xhdpi/pressed_application_background_static.png Binary files differindex b70de9e..93013c1 100644 --- a/core/res/res/drawable-xhdpi/pressed_application_background_static.png +++ b/core/res/res/drawable-xhdpi/pressed_application_background_static.png diff --git a/core/res/res/drawable-xhdpi/progress_bg_holo_dark.9.png b/core/res/res/drawable-xhdpi/progress_bg_holo_dark.9.png Binary files differindex 3499528..2dd6d67 100644 --- a/core/res/res/drawable-xhdpi/progress_bg_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/progress_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/progress_bg_holo_light.9.png b/core/res/res/drawable-xhdpi/progress_bg_holo_light.9.png Binary files differindex cbd19ac..5e85526 100644 --- a/core/res/res/drawable-xhdpi/progress_bg_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/progress_bg_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/progress_primary_holo_dark.9.png b/core/res/res/drawable-xhdpi/progress_primary_holo_dark.9.png Binary files differindex f1069fd..ac068d9 100644 --- a/core/res/res/drawable-xhdpi/progress_primary_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/progress_primary_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/progress_primary_holo_light.9.png b/core/res/res/drawable-xhdpi/progress_primary_holo_light.9.png Binary files differindex e62123c..ffe56cb 100644 --- a/core/res/res/drawable-xhdpi/progress_primary_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/progress_primary_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/progress_secondary_holo_dark.9.png b/core/res/res/drawable-xhdpi/progress_secondary_holo_dark.9.png Binary files differindex 06ae19c..ebc427e 100644 --- a/core/res/res/drawable-xhdpi/progress_secondary_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/progress_secondary_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/progress_secondary_holo_light.9.png b/core/res/res/drawable-xhdpi/progress_secondary_holo_light.9.png Binary files differindex 37c6d5f..bd6bc7d 100644 --- a/core/res/res/drawable-xhdpi/progress_secondary_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/progress_secondary_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate1.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate1.png Binary files differindex 7f01aa4..bedf9c1 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate1.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate1.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate2.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate2.png Binary files differindex 3105385..87a85a2 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate2.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate2.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate3.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate3.png Binary files differindex 248b49a..7628a0e 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate3.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate3.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo1.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo1.png Binary files differindex ae847c9..0ea968a 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo1.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo1.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo2.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo2.png Binary files differindex 7bf3ad6..1341a36 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo2.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo2.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo3.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo3.png Binary files differindex 6c6341b..971704c 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo3.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo3.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo4.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo4.png Binary files differindex d7bb796..3eb7efd 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo4.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo4.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo5.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo5.png Binary files differindex 255fcb8..2711681 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo5.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo5.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo6.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo6.png Binary files differindex 6e5207e..577894b 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo6.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo6.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo7.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo7.png Binary files differindex 7223bc0..c63e3f5 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo7.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo7.png diff --git a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo8.png b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo8.png Binary files differindex ebcbe51..f2cb80d 100644 --- a/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo8.png +++ b/core/res/res/drawable-xhdpi/progressbar_indeterminate_holo8.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_dark.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_dark.9.png Binary files differindex 3f23144..b0fd777 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_light.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_light.9.png Binary files differindex 41848dd..e3a75f6 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowdown_left_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_dark.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_dark.9.png Binary files differindex b2a1d8c..b1981c6 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_light.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_light.9.png Binary files differindex 27218f2..b40c991 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowdown_right_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_dark.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_dark.9.png Binary files differindex 49d1ed5..f45bfd2 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_light.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_light.9.png Binary files differindex 8be8ac8..dc0d7ff 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_right_holo_dark.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_right_holo_dark.9.png Binary files differindex 3f9e4aa..1d15ee7 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowup_left_right_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowup_left_right_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/quickactions_arrowup_right_holo_light.9.png b/core/res/res/drawable-xhdpi/quickactions_arrowup_right_holo_light.9.png Binary files differindex 46f3640..921be5c 100644 --- a/core/res/res/drawable-xhdpi/quickactions_arrowup_right_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/quickactions_arrowup_right_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_dark_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_dark_am.9.png Binary files differindex 6927834..23ff2bf 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_light_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_light_am.9.png Binary files differindex 4bce527..3aeb554 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_light_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_focused_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_dark_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_dark_am.9.png Binary files differindex 99dbfcc..3761af0 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_light_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_light_am.9.png Binary files differindex 2d3e5c8..bdead88 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_light_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_normal_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png Binary files differindex 16c1e00..b1c6c7c 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_light_am.9.png b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_light_am.9.png Binary files differindex 92a298b..abaa365 100644 --- a/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_light_am.9.png +++ b/core/res/res/drawable-xhdpi/quickcontact_badge_overlay_pressed_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/radiobutton_off_background.png b/core/res/res/drawable-xhdpi/radiobutton_off_background.png Binary files differindex 384442f..9e9d3c4 100644 --- a/core/res/res/drawable-xhdpi/radiobutton_off_background.png +++ b/core/res/res/drawable-xhdpi/radiobutton_off_background.png diff --git a/core/res/res/drawable-xhdpi/radiobutton_on_background.png b/core/res/res/drawable-xhdpi/radiobutton_on_background.png Binary files differindex c65e4ff..00af9ce 100644 --- a/core/res/res/drawable-xhdpi/radiobutton_on_background.png +++ b/core/res/res/drawable-xhdpi/radiobutton_on_background.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_half.png b/core/res/res/drawable-xhdpi/rate_star_big_half.png Binary files differindex 2ecb3b5..7cabe3b 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_half.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_half.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_half_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_big_half_holo_dark.png Binary files differindex f9d3cec..4c28de5 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_half_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_half_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_half_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_big_half_holo_light.png Binary files differindex bbdc70d..7ce0469 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_half_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_half_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_off.png b/core/res/res/drawable-xhdpi/rate_star_big_off.png Binary files differindex 8dae714..e248cf6 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_off.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_off.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_off_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_big_off_holo_dark.png Binary files differindex 34b94db..aeae6ef 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_off_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_big_off_holo_light.png Binary files differindex 34cb926..9f8d6c4 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_on.png b/core/res/res/drawable-xhdpi/rate_star_big_on.png Binary files differindex 43633e1..1b5ca5c 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_on.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_on.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_on_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_big_on_holo_dark.png Binary files differindex 273fd16..d44fc97 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_big_on_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_big_on_holo_light.png Binary files differindex dbd11bd..4c59eff 100644 --- a/core/res/res/drawable-xhdpi/rate_star_big_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_big_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_half.png b/core/res/res/drawable-xhdpi/rate_star_med_half.png Binary files differindex 44178c9..18e9511 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_half.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_half.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_half_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_med_half_holo_dark.png Binary files differindex 013543e..c0e05f4 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_half_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_half_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_half_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_med_half_holo_light.png Binary files differindex 801703f..4809e0c 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_half_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_half_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_off.png b/core/res/res/drawable-xhdpi/rate_star_med_off.png Binary files differindex 101692d..01de8fd 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_off.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_off.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_off_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_med_off_holo_dark.png Binary files differindex d411e25..123cd68 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_off_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_med_off_holo_light.png Binary files differindex 39f0fa2..81456ac 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_on.png b/core/res/res/drawable-xhdpi/rate_star_med_on.png Binary files differindex a650d0d..a4b55a6 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_on.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_on.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_on_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_med_on_holo_dark.png Binary files differindex fdfe932..2faa6d0 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_med_on_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_med_on_holo_light.png Binary files differindex ca88d28..21e3b57 100644 --- a/core/res/res/drawable-xhdpi/rate_star_med_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_med_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_half.png b/core/res/res/drawable-xhdpi/rate_star_small_half.png Binary files differindex a7e97a5..d05b984 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_half.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_half.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_half_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_small_half_holo_dark.png Binary files differindex 3d2a774..25f2cfe 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_half_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_half_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_half_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_small_half_holo_light.png Binary files differindex 9221829..434bdd7 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_half_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_half_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_off.png b/core/res/res/drawable-xhdpi/rate_star_small_off.png Binary files differindex 71140ac..982d8b9 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_off.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_off.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_off_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_small_off_holo_dark.png Binary files differindex 346daa3..ce2342f 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_off_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_off_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_off_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_small_off_holo_light.png Binary files differindex 4c2b62c..7799874 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_off_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_off_holo_light.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_on.png b/core/res/res/drawable-xhdpi/rate_star_small_on.png Binary files differindex ddfb876..9fa415a 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_on.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_on.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_on_holo_dark.png b/core/res/res/drawable-xhdpi/rate_star_small_on_holo_dark.png Binary files differindex 9bf2466..89bd90b 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_on_holo_dark.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_on_holo_dark.png diff --git a/core/res/res/drawable-xhdpi/rate_star_small_on_holo_light.png b/core/res/res/drawable-xhdpi/rate_star_small_on_holo_light.png Binary files differindex 187eede..847bcc6 100644 --- a/core/res/res/drawable-xhdpi/rate_star_small_on_holo_light.png +++ b/core/res/res/drawable-xhdpi/rate_star_small_on_holo_light.png diff --git a/core/res/res/drawable-xhdpi/recent_dialog_background.9.png b/core/res/res/drawable-xhdpi/recent_dialog_background.9.png Binary files differindex 867e715..a3d20df 100644 --- a/core/res/res/drawable-xhdpi/recent_dialog_background.9.png +++ b/core/res/res/drawable-xhdpi/recent_dialog_background.9.png diff --git a/core/res/res/drawable-xhdpi/reticle.png b/core/res/res/drawable-xhdpi/reticle.png Binary files differindex c28b70d..b307648 100644 --- a/core/res/res/drawable-xhdpi/reticle.png +++ b/core/res/res/drawable-xhdpi/reticle.png diff --git a/core/res/res/drawable-xhdpi/scrollbar_handle_accelerated_anim2.9.png b/core/res/res/drawable-xhdpi/scrollbar_handle_accelerated_anim2.9.png Binary files differindex 70856c0..d4b97d4 100644 --- a/core/res/res/drawable-xhdpi/scrollbar_handle_accelerated_anim2.9.png +++ b/core/res/res/drawable-xhdpi/scrollbar_handle_accelerated_anim2.9.png diff --git a/core/res/res/drawable-xhdpi/scrollbar_handle_holo_dark.9.png b/core/res/res/drawable-xhdpi/scrollbar_handle_holo_dark.9.png Binary files differindex 948072f..f046845 100644 --- a/core/res/res/drawable-xhdpi/scrollbar_handle_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/scrollbar_handle_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/scrollbar_handle_holo_light.9.png b/core/res/res/drawable-xhdpi/scrollbar_handle_holo_light.9.png Binary files differindex 461be3f..cc86136 100644 --- a/core/res/res/drawable-xhdpi/scrollbar_handle_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/scrollbar_handle_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/scrollbar_handle_horizontal.9.png b/core/res/res/drawable-xhdpi/scrollbar_handle_horizontal.9.png Binary files differindex be3e90e..508ef37 100644 --- a/core/res/res/drawable-xhdpi/scrollbar_handle_horizontal.9.png +++ b/core/res/res/drawable-xhdpi/scrollbar_handle_horizontal.9.png diff --git a/core/res/res/drawable-xhdpi/scrollbar_handle_vertical.9.png b/core/res/res/drawable-xhdpi/scrollbar_handle_vertical.9.png Binary files differindex 24789a5c..fbfbcbd 100644 --- a/core/res/res/drawable-xhdpi/scrollbar_handle_vertical.9.png +++ b/core/res/res/drawable-xhdpi/scrollbar_handle_vertical.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_disabled_holo.png b/core/res/res/drawable-xhdpi/scrubber_control_disabled_holo.png Binary files differindex 62be77c..c765099 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_disabled_holo.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_disabled_holo.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_focused_holo.png b/core/res/res/drawable-xhdpi/scrubber_control_focused_holo.png Binary files differindex 754dd2f..a72447b 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_focused_holo.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_focused_holo.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_000.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_000.png Binary files differindex ea09a31..aaed2e4 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_000.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_001.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_001.png Binary files differindex f9a4391..bb99fb0 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_001.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_002.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_002.png Binary files differindex d9606e1..9d3bfbc 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_002.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_003.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_003.png Binary files differindex df2d9d0..d72edec 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_003.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_004.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_004.png Binary files differindex 625a322..3c433a1 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_004.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_005.png b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_005.png Binary files differindex 79e8dde..35c6893 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_005.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_from_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_normal_holo.png b/core/res/res/drawable-xhdpi/scrubber_control_normal_holo.png Binary files differindex d546a73..bf6e760 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_normal_holo.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_normal_holo.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_off_mtrl_alpha.png b/core/res/res/drawable-xhdpi/scrubber_control_off_mtrl_alpha.png Binary files differindex 729e0bf..138f643 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_off_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_off_pressed_mtrl_alpha.png b/core/res/res/drawable-xhdpi/scrubber_control_off_pressed_mtrl_alpha.png Binary files differindex 754b321..9cd4fb3 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_off_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_off_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_on_mtrl_alpha.png b/core/res/res/drawable-xhdpi/scrubber_control_on_mtrl_alpha.png Binary files differindex d018a7c..bbe9662 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_on_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_on_pressed_mtrl_alpha.png b/core/res/res/drawable-xhdpi/scrubber_control_on_pressed_mtrl_alpha.png Binary files differindex a7ed0f8..73023ba 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_pressed_holo.png b/core/res/res/drawable-xhdpi/scrubber_control_pressed_holo.png Binary files differindex 0b62072..a178e4a 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_pressed_holo.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_pressed_holo.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_000.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_000.png Binary files differindex e99c266..cd41d74 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_000.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_001.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_001.png Binary files differindex f0329a4..5e29b6b 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_001.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_002.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_002.png Binary files differindex 42c40b7..8c03ba6 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_002.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_003.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_003.png Binary files differindex 807491f..c610871 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_003.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_004.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_004.png Binary files differindex dfec9cc..ad8d8fc 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_004.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_005.png b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_005.png Binary files differindex 0ed59ea..8d67525 100644 --- a/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_005.png +++ b/core/res/res/drawable-xhdpi/scrubber_control_to_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xhdpi/scrubber_primary_holo.9.png b/core/res/res/drawable-xhdpi/scrubber_primary_holo.9.png Binary files differindex 3b0b241..f9a5884 100644 --- a/core/res/res/drawable-xhdpi/scrubber_primary_holo.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_primary_holo.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_primary_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/scrubber_primary_mtrl_alpha.9.png Binary files differindex 2b4734d..314caa0 100644 --- a/core/res/res/drawable-xhdpi/scrubber_primary_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_primary_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_secondary_holo.9.png b/core/res/res/drawable-xhdpi/scrubber_secondary_holo.9.png Binary files differindex 9099034..d28a29d 100644 --- a/core/res/res/drawable-xhdpi/scrubber_secondary_holo.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_secondary_holo.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_track_holo_dark.9.png b/core/res/res/drawable-xhdpi/scrubber_track_holo_dark.9.png Binary files differindex bfb2048..0960391 100644 --- a/core/res/res/drawable-xhdpi/scrubber_track_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_track_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_track_holo_light.9.png b/core/res/res/drawable-xhdpi/scrubber_track_holo_light.9.png Binary files differindex a7d396d..264caec 100644 --- a/core/res/res/drawable-xhdpi/scrubber_track_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_track_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/scrubber_track_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/scrubber_track_mtrl_alpha.9.png Binary files differindex 805cb29..4b47315 100644 --- a/core/res/res/drawable-xhdpi/scrubber_track_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/scrubber_track_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/search_dropdown_background.9.png b/core/res/res/drawable-xhdpi/search_dropdown_background.9.png Binary files differindex 52761a7..044762d 100644 --- a/core/res/res/drawable-xhdpi/search_dropdown_background.9.png +++ b/core/res/res/drawable-xhdpi/search_dropdown_background.9.png diff --git a/core/res/res/drawable-xhdpi/search_plate.9.png b/core/res/res/drawable-xhdpi/search_plate.9.png Binary files differindex f917cb6..b2966c3 100644 --- a/core/res/res/drawable-xhdpi/search_plate.9.png +++ b/core/res/res/drawable-xhdpi/search_plate.9.png diff --git a/core/res/res/drawable-xhdpi/search_plate_global.9.png b/core/res/res/drawable-xhdpi/search_plate_global.9.png Binary files differindex 2c935ae..744b026 100644 --- a/core/res/res/drawable-xhdpi/search_plate_global.9.png +++ b/core/res/res/drawable-xhdpi/search_plate_global.9.png diff --git a/core/res/res/drawable-xhdpi/seek_thumb_normal.png b/core/res/res/drawable-xhdpi/seek_thumb_normal.png Binary files differindex fb21fcb..d303898 100644 --- a/core/res/res/drawable-xhdpi/seek_thumb_normal.png +++ b/core/res/res/drawable-xhdpi/seek_thumb_normal.png diff --git a/core/res/res/drawable-xhdpi/seek_thumb_pressed.png b/core/res/res/drawable-xhdpi/seek_thumb_pressed.png Binary files differindex d3cb25a..e63073b 100644 --- a/core/res/res/drawable-xhdpi/seek_thumb_pressed.png +++ b/core/res/res/drawable-xhdpi/seek_thumb_pressed.png diff --git a/core/res/res/drawable-xhdpi/seek_thumb_selected.png b/core/res/res/drawable-xhdpi/seek_thumb_selected.png Binary files differindex 8227c1f..fc7556d 100644 --- a/core/res/res/drawable-xhdpi/seek_thumb_selected.png +++ b/core/res/res/drawable-xhdpi/seek_thumb_selected.png diff --git a/core/res/res/drawable-xhdpi/settings_header_raw.9.png b/core/res/res/drawable-xhdpi/settings_header_raw.9.png Binary files differindex c248237..65af51e 100644 --- a/core/res/res/drawable-xhdpi/settings_header_raw.9.png +++ b/core/res/res/drawable-xhdpi/settings_header_raw.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_16_inner_holo.png b/core/res/res/drawable-xhdpi/spinner_16_inner_holo.png Binary files differindex 55e2329..d54f737 100644 --- a/core/res/res/drawable-xhdpi/spinner_16_inner_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_16_inner_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_16_outer_holo.png b/core/res/res/drawable-xhdpi/spinner_16_outer_holo.png Binary files differindex afd4bb9..fa8ac6b 100644 --- a/core/res/res/drawable-xhdpi/spinner_16_outer_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_16_outer_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_48_inner_holo.png b/core/res/res/drawable-xhdpi/spinner_48_inner_holo.png Binary files differindex 19517c4..bcf3cc6 100644 --- a/core/res/res/drawable-xhdpi/spinner_48_inner_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_48_inner_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_48_outer_holo.png b/core/res/res/drawable-xhdpi/spinner_48_outer_holo.png Binary files differindex 14143c5..2f7cd1a 100644 --- a/core/res/res/drawable-xhdpi/spinner_48_outer_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_48_outer_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_76_inner_holo.png b/core/res/res/drawable-xhdpi/spinner_76_inner_holo.png Binary files differindex 4c92e956..df22bd6 100644 --- a/core/res/res/drawable-xhdpi/spinner_76_inner_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_76_inner_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_76_outer_holo.png b/core/res/res/drawable-xhdpi/spinner_76_outer_holo.png Binary files differindex fe1d615..78a6a40 100644 --- a/core/res/res/drawable-xhdpi/spinner_76_outer_holo.png +++ b/core/res/res/drawable-xhdpi/spinner_76_outer_holo.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_default_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_default_holo_dark_am.9.png Binary files differindex c43293d..6e3eaad 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_default_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_default_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_default_holo_light_am.9.png Binary files differindex 3dc481e..ac7e1b6 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_default_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_default_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_dark_am.9.png Binary files differindex 9a7b173..f747299 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_light_am.9.png Binary files differindex 6888fdc..9843784 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_dark_am.9.png Binary files differindex 9408b47..7e43840 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_light_am.9.png Binary files differindex 1cb95d1..a3cd43a 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_dark_am.9.png Binary files differindex 2dab26f..0e4c581 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_light_am.9.png Binary files differindex d15cd51..13ff1dc 100644 --- a/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_ab_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_black_16.png b/core/res/res/drawable-xhdpi/spinner_black_16.png Binary files differindex 5b1422c..0c8b250 100644 --- a/core/res/res/drawable-xhdpi/spinner_black_16.png +++ b/core/res/res/drawable-xhdpi/spinner_black_16.png diff --git a/core/res/res/drawable-xhdpi/spinner_black_20.png b/core/res/res/drawable-xhdpi/spinner_black_20.png Binary files differindex 5f53e38..f749a70 100644 --- a/core/res/res/drawable-xhdpi/spinner_black_20.png +++ b/core/res/res/drawable-xhdpi/spinner_black_20.png diff --git a/core/res/res/drawable-xhdpi/spinner_black_48.png b/core/res/res/drawable-xhdpi/spinner_black_48.png Binary files differindex 3aab620..e5c1bba 100644 --- a/core/res/res/drawable-xhdpi/spinner_black_48.png +++ b/core/res/res/drawable-xhdpi/spinner_black_48.png diff --git a/core/res/res/drawable-xhdpi/spinner_black_76.png b/core/res/res/drawable-xhdpi/spinner_black_76.png Binary files differindex 2968d8c..f3c69ad 100644 --- a/core/res/res/drawable-xhdpi/spinner_black_76.png +++ b/core/res/res/drawable-xhdpi/spinner_black_76.png diff --git a/core/res/res/drawable-xhdpi/spinner_default_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_default_holo_dark_am.9.png Binary files differindex fadfb5d..53768ae 100644 --- a/core/res/res/drawable-xhdpi/spinner_default_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_default_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_default_holo_light_am.9.png Binary files differindex 5a4ec3b..21a0ff3 100644 --- a/core/res/res/drawable-xhdpi/spinner_default_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_default_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_disabled_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_disabled_holo_dark_am.9.png Binary files differindex 7c3c49b..92de030 100644 --- a/core/res/res/drawable-xhdpi/spinner_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_disabled_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_disabled_holo_light_am.9.png Binary files differindex fe54126..8edaf9a 100644 --- a/core/res/res/drawable-xhdpi/spinner_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_dropdown_background_down.9.png b/core/res/res/drawable-xhdpi/spinner_dropdown_background_down.9.png Binary files differindex 7814354..397d244 100644 --- a/core/res/res/drawable-xhdpi/spinner_dropdown_background_down.9.png +++ b/core/res/res/drawable-xhdpi/spinner_dropdown_background_down.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_dropdown_background_up.9.png b/core/res/res/drawable-xhdpi/spinner_dropdown_background_up.9.png Binary files differindex 17ee05c..4161f7b 100644 --- a/core/res/res/drawable-xhdpi/spinner_dropdown_background_up.9.png +++ b/core/res/res/drawable-xhdpi/spinner_dropdown_background_up.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_focused_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_focused_holo_dark_am.9.png Binary files differindex 9ea957e..ed7d2c9 100644 --- a/core/res/res/drawable-xhdpi/spinner_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_focused_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_focused_holo_light_am.9.png Binary files differindex 8cb2fd8..8ed0054 100644 --- a/core/res/res/drawable-xhdpi/spinner_focused_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_normal.9.png b/core/res/res/drawable-xhdpi/spinner_normal.9.png Binary files differindex 1ecf897..80fd040 100644 --- a/core/res/res/drawable-xhdpi/spinner_normal.9.png +++ b/core/res/res/drawable-xhdpi/spinner_normal.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_press.9.png b/core/res/res/drawable-xhdpi/spinner_press.9.png Binary files differindex 87af85c..4267e2e 100644 --- a/core/res/res/drawable-xhdpi/spinner_press.9.png +++ b/core/res/res/drawable-xhdpi/spinner_press.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_pressed_holo_dark_am.9.png b/core/res/res/drawable-xhdpi/spinner_pressed_holo_dark_am.9.png Binary files differindex 2023a9d..c814dd3 100644 --- a/core/res/res/drawable-xhdpi/spinner_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_pressed_holo_light_am.9.png b/core/res/res/drawable-xhdpi/spinner_pressed_holo_light_am.9.png Binary files differindex 3b066ae..dbdc70c 100644 --- a/core/res/res/drawable-xhdpi/spinner_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-xhdpi/spinner_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_select.9.png b/core/res/res/drawable-xhdpi/spinner_select.9.png Binary files differindex 15b7a90..9799382 100644 --- a/core/res/res/drawable-xhdpi/spinner_select.9.png +++ b/core/res/res/drawable-xhdpi/spinner_select.9.png diff --git a/core/res/res/drawable-xhdpi/spinner_white_16.png b/core/res/res/drawable-xhdpi/spinner_white_16.png Binary files differindex 69be752..1d4ac24 100644 --- a/core/res/res/drawable-xhdpi/spinner_white_16.png +++ b/core/res/res/drawable-xhdpi/spinner_white_16.png diff --git a/core/res/res/drawable-xhdpi/spinner_white_48.png b/core/res/res/drawable-xhdpi/spinner_white_48.png Binary files differindex 7b196bc..ae4617a 100644 --- a/core/res/res/drawable-xhdpi/spinner_white_48.png +++ b/core/res/res/drawable-xhdpi/spinner_white_48.png diff --git a/core/res/res/drawable-xhdpi/spinner_white_76.png b/core/res/res/drawable-xhdpi/spinner_white_76.png Binary files differindex ba47005..75f049b 100644 --- a/core/res/res/drawable-xhdpi/spinner_white_76.png +++ b/core/res/res/drawable-xhdpi/spinner_white_76.png diff --git a/core/res/res/drawable-xhdpi/star_big_off.png b/core/res/res/drawable-xhdpi/star_big_off.png Binary files differindex 8a17843..4a5d572 100644 --- a/core/res/res/drawable-xhdpi/star_big_off.png +++ b/core/res/res/drawable-xhdpi/star_big_off.png diff --git a/core/res/res/drawable-xhdpi/star_big_on.png b/core/res/res/drawable-xhdpi/star_big_on.png Binary files differindex 84f0596..2e832d2 100644 --- a/core/res/res/drawable-xhdpi/star_big_on.png +++ b/core/res/res/drawable-xhdpi/star_big_on.png diff --git a/core/res/res/drawable-xhdpi/star_off.png b/core/res/res/drawable-xhdpi/star_off.png Binary files differindex 010ef9b..8eec9b0 100644 --- a/core/res/res/drawable-xhdpi/star_off.png +++ b/core/res/res/drawable-xhdpi/star_off.png diff --git a/core/res/res/drawable-xhdpi/star_on.png b/core/res/res/drawable-xhdpi/star_on.png Binary files differindex 01e077a..8c9cc91 100644 --- a/core/res/res/drawable-xhdpi/star_on.png +++ b/core/res/res/drawable-xhdpi/star_on.png diff --git a/core/res/res/drawable-xhdpi/stat_ecb_mode.png b/core/res/res/drawable-xhdpi/stat_ecb_mode.png Binary files differindex ce17494..afecf89 100644 --- a/core/res/res/drawable-xhdpi/stat_ecb_mode.png +++ b/core/res/res/drawable-xhdpi/stat_ecb_mode.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_car_mode.png b/core/res/res/drawable-xhdpi/stat_notify_car_mode.png Binary files differindex 1f3a9cc..94c5c98 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_car_mode.png +++ b/core/res/res/drawable-xhdpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_chat.png b/core/res/res/drawable-xhdpi/stat_notify_chat.png Binary files differindex af85623..2376391 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_chat.png +++ b/core/res/res/drawable-xhdpi/stat_notify_chat.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_disk_full.png b/core/res/res/drawable-xhdpi/stat_notify_disk_full.png Binary files differindex 3fa330e..aea62f7 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_disk_full.png +++ b/core/res/res/drawable-xhdpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_email_generic.png b/core/res/res/drawable-xhdpi/stat_notify_email_generic.png Binary files differindex 07d297f..e1976bf 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_email_generic.png +++ b/core/res/res/drawable-xhdpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_error.png b/core/res/res/drawable-xhdpi/stat_notify_error.png Binary files differindex 2d0283e..573d834 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_error.png +++ b/core/res/res/drawable-xhdpi/stat_notify_error.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_gmail.png b/core/res/res/drawable-xhdpi/stat_notify_gmail.png Binary files differindex e1efa9b..b7dee83 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_gmail.png +++ b/core/res/res/drawable-xhdpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_missed_call.png b/core/res/res/drawable-xhdpi/stat_notify_missed_call.png Binary files differindex 8719eff..2dd47d7 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_missed_call.png +++ b/core/res/res/drawable-xhdpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_more.png b/core/res/res/drawable-xhdpi/stat_notify_more.png Binary files differindex 76c2c76..326de39 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_more.png +++ b/core/res/res/drawable-xhdpi/stat_notify_more.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_rssi_in_range.png b/core/res/res/drawable-xhdpi/stat_notify_rssi_in_range.png Binary files differindex c0586d8..0e52903 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_rssi_in_range.png +++ b/core/res/res/drawable-xhdpi/stat_notify_rssi_in_range.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sdcard.png b/core/res/res/drawable-xhdpi/stat_notify_sdcard.png Binary files differindex 7201213..e5ae165 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sdcard.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-xhdpi/stat_notify_sdcard_prepare.png Binary files differindex 648893b..9ede161 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sdcard_prepare.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-xhdpi/stat_notify_sdcard_usb.png Binary files differindex abd8b6e..891cbb7 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sdcard_usb.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-xhdpi/stat_notify_sim_toolkit.png Binary files differindex 9e1df72..97207c8 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sim_toolkit.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sync.png b/core/res/res/drawable-xhdpi/stat_notify_sync.png Binary files differindex b3bf21f..eefdcf4 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sync.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sync.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sync_anim0.png b/core/res/res/drawable-xhdpi/stat_notify_sync_anim0.png Binary files differindex b3bf21f..eefdcf4 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sync_anim0.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_sync_error.png b/core/res/res/drawable-xhdpi/stat_notify_sync_error.png Binary files differindex 33582ef..7c18d88 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_sync_error.png +++ b/core/res/res/drawable-xhdpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-xhdpi/stat_notify_voicemail.png b/core/res/res/drawable-xhdpi/stat_notify_voicemail.png Binary files differindex fd88ac2..e2c945c 100644 --- a/core/res/res/drawable-xhdpi/stat_notify_voicemail.png +++ b/core/res/res/drawable-xhdpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_0.png b/core/res/res/drawable-xhdpi/stat_sys_battery_0.png Binary files differindex 50aa720..fd9f085 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_0.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_0.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_100.png b/core/res/res/drawable-xhdpi/stat_sys_battery_100.png Binary files differindex 0aefc68..6d04b72 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_100.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_100.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_15.png b/core/res/res/drawable-xhdpi/stat_sys_battery_15.png Binary files differindex 686ce51..2ddf663 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_15.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_15.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_28.png b/core/res/res/drawable-xhdpi/stat_sys_battery_28.png Binary files differindex 031546b..cd0d330 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_28.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_28.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_43.png b/core/res/res/drawable-xhdpi/stat_sys_battery_43.png Binary files differindex d386987..ef609a6 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_43.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_43.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_57.png b/core/res/res/drawable-xhdpi/stat_sys_battery_57.png Binary files differindex 51115df..e59d4da 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_57.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_57.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_71.png b/core/res/res/drawable-xhdpi/stat_sys_battery_71.png Binary files differindex ca4fd80..52938c1 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_71.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_71.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_85.png b/core/res/res/drawable-xhdpi/stat_sys_battery_85.png Binary files differindex f32e9e1..2df1547 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_85.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_85.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim0.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim0.png Binary files differindex 1d9efe7..94fb0ff 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim0.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim0.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim100.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim100.png Binary files differindex c5debbf..f2d3399 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim100.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim100.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim15.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim15.png Binary files differindex 0b11fb1..459ca13 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim15.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim15.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim28.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim28.png Binary files differindex 3d06ee2..8b0b369 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim28.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim28.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim43.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim43.png Binary files differindex ea601e1..4adb9a0 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim43.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim43.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim57.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim57.png Binary files differindex 843b0b4..0f05759 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim57.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim57.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim71.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim71.png Binary files differindex 213e3f1..b71cd5f 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim71.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim71.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim85.png b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim85.png Binary files differindex ca5c415..9bca393 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim85.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_charge_anim85.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_battery_unknown.png b/core/res/res/drawable-xhdpi/stat_sys_battery_unknown.png Binary files differindex 7f156be..6161991 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_battery_unknown.png +++ b/core/res/res/drawable-xhdpi/stat_sys_battery_unknown.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_certificate_info.png b/core/res/res/drawable-xhdpi/stat_sys_certificate_info.png Binary files differindex 3c93ea0..df780fb 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_certificate_info.png +++ b/core/res/res/drawable-xhdpi/stat_sys_certificate_info.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-xhdpi/stat_sys_data_bluetooth.png Binary files differindex 68cac47..cb9dcf3 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_data_bluetooth.png +++ b/core/res/res/drawable-xhdpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_data_usb.png b/core/res/res/drawable-xhdpi/stat_sys_data_usb.png Binary files differindex 57c1099..043fec8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_data_usb.png +++ b/core/res/res/drawable-xhdpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_3_fully.png b/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_3_fully.png Binary files differindex ec6bc54..8cb27d8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_3_fully.png +++ b/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_3_fully.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_disconnected.png b/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_disconnected.png Binary files differindex 9fd4f33..a3e1b03 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_disconnected.png +++ b/core/res/res/drawable-xhdpi/stat_sys_data_wimax_signal_disconnected.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim0.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim0.png Binary files differindex 73cbc96..e954ceb 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim0.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim1.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim1.png Binary files differindex 3e39abb..f172afa 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim1.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim2.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim2.png Binary files differindex fc9b0de..ea356c8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim2.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim3.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim3.png Binary files differindex 94bc012..1783709 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim3.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim4.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim4.png Binary files differindex e6b5857..ecb712e 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim4.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_download_anim5.png b/core/res/res/drawable-xhdpi/stat_sys_download_anim5.png Binary files differindex f1df0c8..8543e2a 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_download_anim5.png +++ b/core/res/res/drawable-xhdpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_gps_on.png b/core/res/res/drawable-xhdpi/stat_sys_gps_on.png Binary files differindex 8a6edfb..a048f73 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_gps_on.png +++ b/core/res/res/drawable-xhdpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_headset.png b/core/res/res/drawable-xhdpi/stat_sys_headset.png Binary files differindex 4d447ab..81edb16 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_headset.png +++ b/core/res/res/drawable-xhdpi/stat_sys_headset.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_phone_call.png b/core/res/res/drawable-xhdpi/stat_sys_phone_call.png Binary files differindex e7a3981..f7c56f7 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_phone_call.png +++ b/core/res/res/drawable-xhdpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_phone_call_forward.png b/core/res/res/drawable-xhdpi/stat_sys_phone_call_forward.png Binary files differindex 15c8dda..d5e2ac2 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_phone_call_forward.png +++ b/core/res/res/drawable-xhdpi/stat_sys_phone_call_forward.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_phone_call_on_hold.png b/core/res/res/drawable-xhdpi/stat_sys_phone_call_on_hold.png Binary files differindex d5a1531..3974a92 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_phone_call_on_hold.png +++ b/core/res/res/drawable-xhdpi/stat_sys_phone_call_on_hold.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_r_signal_0_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_r_signal_0_cdma.png Binary files differindex 99ce378..1c9a85d 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_r_signal_0_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_r_signal_0_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_r_signal_1_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_r_signal_1_cdma.png Binary files differindex e430114..ec76ee4 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_r_signal_1_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_r_signal_1_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_r_signal_2_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_r_signal_2_cdma.png Binary files differindex 4241896..f5111f7 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_r_signal_2_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_r_signal_2_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_r_signal_3_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_r_signal_3_cdma.png Binary files differindex 3195fee..d215af7 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_r_signal_3_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_r_signal_3_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_r_signal_4_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_r_signal_4_cdma.png Binary files differindex 3cb5463..caadc2b 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_r_signal_4_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_r_signal_4_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_0_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_0_cdma.png Binary files differindex 5f9a46b..d54f93e 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_0_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_0_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_1_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_1_cdma.png Binary files differindex da5d09c..adce8c8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_1_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_1_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_2_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_2_cdma.png Binary files differindex 8cd6e08..475e19e 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_2_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_2_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_3_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_3_cdma.png Binary files differindex 6c68680..cc7fa8d 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_3_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_3_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_4_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_4_cdma.png Binary files differindex 5cf6e9c..8a3adf7 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_ra_signal_4_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_ra_signal_4_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_0_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_signal_0_cdma.png Binary files differindex 28815f1..588d247 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_0_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_0_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_1_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_signal_1_cdma.png Binary files differindex 1643c10..971cddb 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_1_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_1_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_2_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_signal_2_cdma.png Binary files differindex 0f5a147..8f78cb73 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_2_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_2_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_3_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_signal_3_cdma.png Binary files differindex d37f761..7c1550f 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_3_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_3_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_4_cdma.png b/core/res/res/drawable-xhdpi/stat_sys_signal_4_cdma.png Binary files differindex f4b835f..8dd19d8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_4_cdma.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_4_cdma.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_0.png b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_0.png Binary files differindex dc5196c..7a93730 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_0.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_0.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_1.png b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_1.png Binary files differindex 5da3b3a..3cbd4fb 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_1.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_1.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_2.png b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_2.png Binary files differindex d17890d..fed95de 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_2.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_2.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_3.png b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_3.png Binary files differindex 2dbe7599..e697876 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_3.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_3.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_4.png b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_4.png Binary files differindex 796f9ed..2653da8 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_4.png +++ b/core/res/res/drawable-xhdpi/stat_sys_signal_evdo_4.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-xhdpi/stat_sys_tether_bluetooth.png Binary files differindex 3f57d1c..53f58ba 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_tether_bluetooth.png +++ b/core/res/res/drawable-xhdpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_tether_general.png b/core/res/res/drawable-xhdpi/stat_sys_tether_general.png Binary files differindex 34b0cb3..cb41b36 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_tether_general.png +++ b/core/res/res/drawable-xhdpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_tether_usb.png b/core/res/res/drawable-xhdpi/stat_sys_tether_usb.png Binary files differindex 36afe48..79ad4e4 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_tether_usb.png +++ b/core/res/res/drawable-xhdpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_throttled.png b/core/res/res/drawable-xhdpi/stat_sys_throttled.png Binary files differindex 043a1e3..e21ed01 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_throttled.png +++ b/core/res/res/drawable-xhdpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim0.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim0.png Binary files differindex 2fbdaf8..8386a63 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim0.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim1.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim1.png Binary files differindex cd0ca73..7dad7e1 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim1.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim2.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim2.png Binary files differindex e443f45..cbc8d81 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim2.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim3.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim3.png Binary files differindex 8fb42f8..5f2da2d 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim3.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim4.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim4.png Binary files differindex 2fb1802..c1c1d79 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim4.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_upload_anim5.png b/core/res/res/drawable-xhdpi/stat_sys_upload_anim5.png Binary files differindex c1d9db5..739b0a3 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_upload_anim5.png +++ b/core/res/res/drawable-xhdpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call.png b/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call.png Binary files differindex af80481..4f10b00 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call.png +++ b/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call_on_hold.png b/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call_on_hold.png Binary files differindex 2ba1095..2cbc0e5 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call_on_hold.png +++ b/core/res/res/drawable-xhdpi/stat_sys_vp_phone_call_on_hold.png diff --git a/core/res/res/drawable-xhdpi/stat_sys_warning.png b/core/res/res/drawable-xhdpi/stat_sys_warning.png Binary files differindex c7ac11f..ac1657d 100644 --- a/core/res/res/drawable-xhdpi/stat_sys_warning.png +++ b/core/res/res/drawable-xhdpi/stat_sys_warning.png diff --git a/core/res/res/drawable-xhdpi/status_bar_background.png b/core/res/res/drawable-xhdpi/status_bar_background.png Binary files differindex 529904f..a431b2d 100644 --- a/core/res/res/drawable-xhdpi/status_bar_background.png +++ b/core/res/res/drawable-xhdpi/status_bar_background.png diff --git a/core/res/res/drawable-xhdpi/status_bar_header_background.9.png b/core/res/res/drawable-xhdpi/status_bar_header_background.9.png Binary files differindex efd3e97..d692938 100644 --- a/core/res/res/drawable-xhdpi/status_bar_header_background.9.png +++ b/core/res/res/drawable-xhdpi/status_bar_header_background.9.png diff --git a/core/res/res/drawable-xhdpi/status_bar_item_app_background_normal.9.png b/core/res/res/drawable-xhdpi/status_bar_item_app_background_normal.9.png Binary files differindex 7f3d9db..69ceac7 100644 --- a/core/res/res/drawable-xhdpi/status_bar_item_app_background_normal.9.png +++ b/core/res/res/drawable-xhdpi/status_bar_item_app_background_normal.9.png diff --git a/core/res/res/drawable-xhdpi/status_bar_item_background_focus.9.png b/core/res/res/drawable-xhdpi/status_bar_item_background_focus.9.png Binary files differindex 5d77613..cc2934b 100644 --- a/core/res/res/drawable-xhdpi/status_bar_item_background_focus.9.png +++ b/core/res/res/drawable-xhdpi/status_bar_item_background_focus.9.png diff --git a/core/res/res/drawable-xhdpi/status_bar_item_background_normal.9.png b/core/res/res/drawable-xhdpi/status_bar_item_background_normal.9.png Binary files differindex 3b4959f..ae18e9a 100644 --- a/core/res/res/drawable-xhdpi/status_bar_item_background_normal.9.png +++ b/core/res/res/drawable-xhdpi/status_bar_item_background_normal.9.png diff --git a/core/res/res/drawable-xhdpi/status_bar_item_background_pressed.9.png b/core/res/res/drawable-xhdpi/status_bar_item_background_pressed.9.png Binary files differindex 70a000f..aa639fb 100644 --- a/core/res/res/drawable-xhdpi/status_bar_item_background_pressed.9.png +++ b/core/res/res/drawable-xhdpi/status_bar_item_background_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/statusbar_background.9.png b/core/res/res/drawable-xhdpi/statusbar_background.9.png Binary files differindex e1a3a9b..4c6b11e 100644 --- a/core/res/res/drawable-xhdpi/statusbar_background.9.png +++ b/core/res/res/drawable-xhdpi/statusbar_background.9.png diff --git a/core/res/res/drawable-xhdpi/submenu_arrow_nofocus.png b/core/res/res/drawable-xhdpi/submenu_arrow_nofocus.png Binary files differindex 5e64030..48216ba 100644 --- a/core/res/res/drawable-xhdpi/submenu_arrow_nofocus.png +++ b/core/res/res/drawable-xhdpi/submenu_arrow_nofocus.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_dark.9.png Binary files differindex b23070c..55eff46 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_light.9.png Binary files differindex 29f177a..6471b6b 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_bg_focused_holo_dark.9.png Binary files differindex e85103d..66d31c6 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_bg_focused_holo_light.9.png Binary files differindex 75978bc..10497af 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_bg_holo_dark.9.png Binary files differindex 732481e..83c7a15 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_bg_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_bg_holo_light.9.png Binary files differindex aec616e..02ceff3 100644 --- a/core/res/res/drawable-xhdpi/switch_bg_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_bg_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_dark.9.png Binary files differindex ca48bd8..4edff91 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png Binary files differindex ca48bd8..4edff91 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_dark.9.png Binary files differindex c3d80f0..2b3703b 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png Binary files differindex c3d80f0..2b3703b 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_thumb_holo_dark.9.png Binary files differindex df236df..12e41f5 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_thumb_holo_light.9.png Binary files differindex df236df..12e41f5 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_dark.9.png b/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_dark.9.png Binary files differindex dc69b12..8a95b2e 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png b/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png Binary files differindex 2370b63..5dac50e 100644 --- a/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/sym_action_add.png b/core/res/res/drawable-xhdpi/sym_action_add.png Binary files differindex b0562c4..257bbd7 100644 --- a/core/res/res/drawable-xhdpi/sym_action_add.png +++ b/core/res/res/drawable-xhdpi/sym_action_add.png diff --git a/core/res/res/drawable-xhdpi/sym_action_call.png b/core/res/res/drawable-xhdpi/sym_action_call.png Binary files differindex e0de1e0..9bb9305 100644 --- a/core/res/res/drawable-xhdpi/sym_action_call.png +++ b/core/res/res/drawable-xhdpi/sym_action_call.png diff --git a/core/res/res/drawable-xhdpi/sym_action_chat.png b/core/res/res/drawable-xhdpi/sym_action_chat.png Binary files differindex c0f2624..92fe52e 100644 --- a/core/res/res/drawable-xhdpi/sym_action_chat.png +++ b/core/res/res/drawable-xhdpi/sym_action_chat.png diff --git a/core/res/res/drawable-xhdpi/sym_action_email.png b/core/res/res/drawable-xhdpi/sym_action_email.png Binary files differindex 343a9c1..74e424d 100644 --- a/core/res/res/drawable-xhdpi/sym_action_email.png +++ b/core/res/res/drawable-xhdpi/sym_action_email.png diff --git a/core/res/res/drawable-xhdpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/drawable-xhdpi/sym_app_on_sd_unavailable_icon.png Binary files differindex e4e6a5a..af950eb 100644 --- a/core/res/res/drawable-xhdpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/drawable-xhdpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/drawable-xhdpi/sym_call_incoming.png b/core/res/res/drawable-xhdpi/sym_call_incoming.png Binary files differindex 738390a..44c7f7e 100644 --- a/core/res/res/drawable-xhdpi/sym_call_incoming.png +++ b/core/res/res/drawable-xhdpi/sym_call_incoming.png diff --git a/core/res/res/drawable-xhdpi/sym_call_missed.png b/core/res/res/drawable-xhdpi/sym_call_missed.png Binary files differindex 2eb7aa4..80bf423 100644 --- a/core/res/res/drawable-xhdpi/sym_call_missed.png +++ b/core/res/res/drawable-xhdpi/sym_call_missed.png diff --git a/core/res/res/drawable-xhdpi/sym_call_outgoing.png b/core/res/res/drawable-xhdpi/sym_call_outgoing.png Binary files differindex 77f21e6..1c4e8d2 100644 --- a/core/res/res/drawable-xhdpi/sym_call_outgoing.png +++ b/core/res/res/drawable-xhdpi/sym_call_outgoing.png diff --git a/core/res/res/drawable-xhdpi/sym_contact_card.png b/core/res/res/drawable-xhdpi/sym_contact_card.png Binary files differindex aa65f1c..e2835e3 100644 --- a/core/res/res/drawable-xhdpi/sym_contact_card.png +++ b/core/res/res/drawable-xhdpi/sym_contact_card.png diff --git a/core/res/res/drawable-xhdpi/sym_def_app_icon.png b/core/res/res/drawable-xhdpi/sym_def_app_icon.png Binary files differindex bfa42f0..6a7d18b 100644 --- a/core/res/res/drawable-xhdpi/sym_def_app_icon.png +++ b/core/res/res/drawable-xhdpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_delete.png b/core/res/res/drawable-xhdpi/sym_keyboard_delete.png Binary files differindex 45c14aa..d044cf5 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_delete_dim.png b/core/res/res/drawable-xhdpi/sym_keyboard_delete_dim.png Binary files differindex 2dac874..e526e4c 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_delete_dim.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_delete_dim.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_enter.png b/core/res/res/drawable-xhdpi/sym_keyboard_enter.png Binary files differindex 3b034fd..63a892b 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_enter.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_enter.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_delete.png Binary files differindex 843cc82..930fbc3 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_delete.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_ok.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_ok.png Binary files differindex 425452e..8c2372b 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_ok.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_ok.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_return.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_return.png Binary files differindex d19e4dd..c55b869 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_return.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_return.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift.png Binary files differindex 22df421..bf94755 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift_locked.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift_locked.png Binary files differindex 30f3ead..e76ca40 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift_locked.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_shift_locked.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_space.png b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_space.png Binary files differindex 840da36..b523f40 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_feedback_space.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_feedback_space.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-xhdpi/sym_keyboard_num0_no_plus.png Binary files differindex cdd256d..17c4993 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num0_no_plus.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num1.png b/core/res/res/drawable-xhdpi/sym_keyboard_num1.png Binary files differindex d81d4b5..e619d36 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num1.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num2.png b/core/res/res/drawable-xhdpi/sym_keyboard_num2.png Binary files differindex 8ae9faf..f7d4f29 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num2.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num3.png b/core/res/res/drawable-xhdpi/sym_keyboard_num3.png Binary files differindex ed6e90a..a6df40e 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num3.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num4.png b/core/res/res/drawable-xhdpi/sym_keyboard_num4.png Binary files differindex 5cff39f..b0a5ff4 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num4.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num5.png b/core/res/res/drawable-xhdpi/sym_keyboard_num5.png Binary files differindex 1c9358e..95c99ac 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num5.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num6.png b/core/res/res/drawable-xhdpi/sym_keyboard_num6.png Binary files differindex 9a5cb6f..09e8c4c 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num6.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num7.png b/core/res/res/drawable-xhdpi/sym_keyboard_num7.png Binary files differindex 1bd5c6b..6b8533b 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num7.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num8.png b/core/res/res/drawable-xhdpi/sym_keyboard_num8.png Binary files differindex 9a33152..f85b157 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num8.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_num9.png b/core/res/res/drawable-xhdpi/sym_keyboard_num9.png Binary files differindex caa3113..ac54696 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_num9.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_ok.png b/core/res/res/drawable-xhdpi/sym_keyboard_ok.png Binary files differindex 08a5eef..c961763 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_ok.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_ok.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_ok_dim.png b/core/res/res/drawable-xhdpi/sym_keyboard_ok_dim.png Binary files differindex 6a36618..0e2765d 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_ok_dim.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_ok_dim.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_return.png b/core/res/res/drawable-xhdpi/sym_keyboard_return.png Binary files differindex b1e1ce9..d84f0dc 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_return.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_return.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_shift.png b/core/res/res/drawable-xhdpi/sym_keyboard_shift.png Binary files differindex 6df4080..fd3a9f0 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_shift.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_shift.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_shift_locked.png b/core/res/res/drawable-xhdpi/sym_keyboard_shift_locked.png Binary files differindex 470196e..7c492b0 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_shift_locked.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_shift_locked.png diff --git a/core/res/res/drawable-xhdpi/sym_keyboard_space.png b/core/res/res/drawable-xhdpi/sym_keyboard_space.png Binary files differindex cce2845..0990cf4 100644 --- a/core/res/res/drawable-xhdpi/sym_keyboard_space.png +++ b/core/res/res/drawable-xhdpi/sym_keyboard_space.png diff --git a/core/res/res/drawable-xhdpi/tab_bottom_holo.9.png b/core/res/res/drawable-xhdpi/tab_bottom_holo.9.png Binary files differindex 712dd22..28b5acc 100644 --- a/core/res/res/drawable-xhdpi/tab_bottom_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_bottom_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_focus.9.png b/core/res/res/drawable-xhdpi/tab_focus.9.png Binary files differindex 737d2c4..c9ff9dd 100644 --- a/core/res/res/drawable-xhdpi/tab_focus.9.png +++ b/core/res/res/drawable-xhdpi/tab_focus.9.png diff --git a/core/res/res/drawable-xhdpi/tab_focus_bar_left.9.png b/core/res/res/drawable-xhdpi/tab_focus_bar_left.9.png Binary files differindex e879e37..0243025 100644 --- a/core/res/res/drawable-xhdpi/tab_focus_bar_left.9.png +++ b/core/res/res/drawable-xhdpi/tab_focus_bar_left.9.png diff --git a/core/res/res/drawable-xhdpi/tab_focus_bar_right.9.png b/core/res/res/drawable-xhdpi/tab_focus_bar_right.9.png Binary files differindex e879e37..0243025 100644 --- a/core/res/res/drawable-xhdpi/tab_focus_bar_right.9.png +++ b/core/res/res/drawable-xhdpi/tab_focus_bar_right.9.png diff --git a/core/res/res/drawable-xhdpi/tab_indicator_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/tab_indicator_mtrl_alpha.9.png Binary files differindex 5610d8c..b9b1d50 100644 --- a/core/res/res/drawable-xhdpi/tab_indicator_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/tab_indicator_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/tab_press.9.png b/core/res/res/drawable-xhdpi/tab_press.9.png Binary files differindex 78b43db..7a9629b 100644 --- a/core/res/res/drawable-xhdpi/tab_press.9.png +++ b/core/res/res/drawable-xhdpi/tab_press.9.png diff --git a/core/res/res/drawable-xhdpi/tab_press_bar_left.9.png b/core/res/res/drawable-xhdpi/tab_press_bar_left.9.png Binary files differindex c5f44f3..ccb0dd8 100644 --- a/core/res/res/drawable-xhdpi/tab_press_bar_left.9.png +++ b/core/res/res/drawable-xhdpi/tab_press_bar_left.9.png diff --git a/core/res/res/drawable-xhdpi/tab_press_bar_right.9.png b/core/res/res/drawable-xhdpi/tab_press_bar_right.9.png Binary files differindex c5f44f3..ccb0dd8 100644 --- a/core/res/res/drawable-xhdpi/tab_press_bar_right.9.png +++ b/core/res/res/drawable-xhdpi/tab_press_bar_right.9.png diff --git a/core/res/res/drawable-xhdpi/tab_pressed_holo.9.png b/core/res/res/drawable-xhdpi/tab_pressed_holo.9.png Binary files differindex c221975..b76fa97 100644 --- a/core/res/res/drawable-xhdpi/tab_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected.9.png b/core/res/res/drawable-xhdpi/tab_selected.9.png Binary files differindex fba5ee4..2a0c5f2 100644 --- a/core/res/res/drawable-xhdpi/tab_selected.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_bar_left.9.png b/core/res/res/drawable-xhdpi/tab_selected_bar_left.9.png Binary files differindex 53efbb4..27a9f86 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_bar_left.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_bar_left.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_bar_left_v4.9.png b/core/res/res/drawable-xhdpi/tab_selected_bar_left_v4.9.png Binary files differindex eec4ddb..df907df 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_bar_left_v4.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_bar_left_v4.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_bar_right.9.png b/core/res/res/drawable-xhdpi/tab_selected_bar_right.9.png Binary files differindex 53efbb4..27a9f86 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_bar_right.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_bar_right.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_bar_right_v4.9.png b/core/res/res/drawable-xhdpi/tab_selected_bar_right_v4.9.png Binary files differindex eec4ddb..df907df 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_bar_right_v4.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_bar_right_v4.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_focused_holo.9.png b/core/res/res/drawable-xhdpi/tab_selected_focused_holo.9.png Binary files differindex 03cfb09..73f40fd 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_focused_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_focused_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_holo.9.png b/core/res/res/drawable-xhdpi/tab_selected_holo.9.png Binary files differindex e4229f2..3631e00 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_pressed_holo.9.png b/core/res/res/drawable-xhdpi/tab_selected_pressed_holo.9.png Binary files differindex f13a194..2d51400 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_selected_v4.9.png b/core/res/res/drawable-xhdpi/tab_selected_v4.9.png Binary files differindex f1f4ec6..2ab8e9f 100644 --- a/core/res/res/drawable-xhdpi/tab_selected_v4.9.png +++ b/core/res/res/drawable-xhdpi/tab_selected_v4.9.png diff --git a/core/res/res/drawable-xhdpi/tab_unselected.9.png b/core/res/res/drawable-xhdpi/tab_unselected.9.png Binary files differindex 3171701..7eee26d 100644 --- a/core/res/res/drawable-xhdpi/tab_unselected.9.png +++ b/core/res/res/drawable-xhdpi/tab_unselected.9.png diff --git a/core/res/res/drawable-xhdpi/tab_unselected_focused_holo.9.png b/core/res/res/drawable-xhdpi/tab_unselected_focused_holo.9.png Binary files differindex f3a5cbd..84fc1fc 100644 --- a/core/res/res/drawable-xhdpi/tab_unselected_focused_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_unselected_focused_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_unselected_holo.9.png b/core/res/res/drawable-xhdpi/tab_unselected_holo.9.png Binary files differindex 9465173..403c35c 100644 --- a/core/res/res/drawable-xhdpi/tab_unselected_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_unselected_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png b/core/res/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png Binary files differindex 358ce26..87ab2cf 100644 --- a/core/res/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png +++ b/core/res/res/drawable-xhdpi/tab_unselected_pressed_holo.9.png diff --git a/core/res/res/drawable-xhdpi/tab_unselected_v4.9.png b/core/res/res/drawable-xhdpi/tab_unselected_v4.9.png Binary files differindex 1df8c3a..6f2b706 100644 --- a/core/res/res/drawable-xhdpi/tab_unselected_v4.9.png +++ b/core/res/res/drawable-xhdpi/tab_unselected_v4.9.png diff --git a/core/res/res/drawable-xhdpi/text_edit_paste_window.9.png b/core/res/res/drawable-xhdpi/text_edit_paste_window.9.png Binary files differindex a6e199a..b204bee 100644 --- a/core/res/res/drawable-xhdpi/text_edit_paste_window.9.png +++ b/core/res/res/drawable-xhdpi/text_edit_paste_window.9.png diff --git a/core/res/res/drawable-xhdpi/text_edit_side_paste_window.9.png b/core/res/res/drawable-xhdpi/text_edit_side_paste_window.9.png Binary files differindex f96ff01..0b8be86 100644 --- a/core/res/res/drawable-xhdpi/text_edit_side_paste_window.9.png +++ b/core/res/res/drawable-xhdpi/text_edit_side_paste_window.9.png diff --git a/core/res/res/drawable-xhdpi/text_edit_suggestions_window.9.png b/core/res/res/drawable-xhdpi/text_edit_suggestions_window.9.png Binary files differindex a6e199a..b204bee 100644 --- a/core/res/res/drawable-xhdpi/text_edit_suggestions_window.9.png +++ b/core/res/res/drawable-xhdpi/text_edit_suggestions_window.9.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_left.png b/core/res/res/drawable-xhdpi/text_select_handle_left.png Binary files differindex 98d10c9..f111f50 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_left.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_left.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_left_mtrl_alpha.png b/core/res/res/drawable-xhdpi/text_select_handle_left_mtrl_alpha.png Binary files differindex 58f8c43..d881a01 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_left_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_left_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_middle.png b/core/res/res/drawable-xhdpi/text_select_handle_middle.png Binary files differindex 058b30b..8ef2ac0 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_middle.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_middle_mtrl_alpha.png b/core/res/res/drawable-xhdpi/text_select_handle_middle_mtrl_alpha.png Binary files differindex c1ca323..ac9ebe5 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_middle_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_middle_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_right.png b/core/res/res/drawable-xhdpi/text_select_handle_right.png Binary files differindex b3a0c9f..d305601 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_right.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_right.png diff --git a/core/res/res/drawable-xhdpi/text_select_handle_right_mtrl_alpha.png b/core/res/res/drawable-xhdpi/text_select_handle_right_mtrl_alpha.png Binary files differindex 42a893d..e9c038d 100644 --- a/core/res/res/drawable-xhdpi/text_select_handle_right_mtrl_alpha.png +++ b/core/res/res/drawable-xhdpi/text_select_handle_right_mtrl_alpha.png diff --git a/core/res/res/drawable-xhdpi/textfield_activated_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_activated_holo_dark.9.png Binary files differindex 653b7dc..649833d 100644 --- a/core/res/res/drawable-xhdpi/textfield_activated_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_activated_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_activated_holo_light.9.png Binary files differindex 08fcc5e..5023462 100644 --- a/core/res/res/drawable-xhdpi/textfield_activated_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_activated_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_activated_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/textfield_activated_mtrl_alpha.9.png Binary files differindex 8c617fd..13fba59 100644 --- a/core/res/res/drawable-xhdpi/textfield_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/textfield_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_default.9.png b/core/res/res/drawable-xhdpi/textfield_default.9.png Binary files differindex f084f47..82ad7de 100644 --- a/core/res/res/drawable-xhdpi/textfield_default.9.png +++ b/core/res/res/drawable-xhdpi/textfield_default.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_default_holo_dark.9.png Binary files differindex 3f63c3fc..c99ed72 100644 --- a/core/res/res/drawable-xhdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_default_holo_light.9.png Binary files differindex dbb9924..e148a57 100644 --- a/core/res/res/drawable-xhdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_default_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/textfield_default_mtrl_alpha.9.png Binary files differindex 240ef7b..2096034 100644 --- a/core/res/res/drawable-xhdpi/textfield_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/textfield_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled.9.png b/core/res/res/drawable-xhdpi/textfield_disabled.9.png Binary files differindex 1940051..eef79f1 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_dark.9.png Binary files differindex a9767fc..16d9879 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png Binary files differindex 40a28cf..0b9bacb 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_disabled_holo_dark.9.png Binary files differindex d78b10d..d0cd9ac 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_disabled_holo_light.9.png Binary files differindex 4ffdd86..e5b280f 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_disabled_selected.9.png b/core/res/res/drawable-xhdpi/textfield_disabled_selected.9.png Binary files differindex 335bee6..7a5f2d1 100644 --- a/core/res/res/drawable-xhdpi/textfield_disabled_selected.9.png +++ b/core/res/res/drawable-xhdpi/textfield_disabled_selected.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_focused_holo_dark.9.png Binary files differindex 3ed03f3..dfa610a 100644 --- a/core/res/res/drawable-xhdpi/textfield_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_focused_holo_light.9.png Binary files differindex 3ed03f3..dfa610a 100644 --- a/core/res/res/drawable-xhdpi/textfield_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_dark.9.png Binary files differindex e12da1b..649833d 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_light.9.png Binary files differindex 557788b..5023462 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_activated_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_dark.9.png Binary files differindex 9a367c9..7ac3855 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_light.9.png Binary files differindex 147ac58..e148a57 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_dark.9.png Binary files differindex f89316a..0d540f6 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_light.9.png Binary files differindex 06173a4..0b9bacb 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_dark.9.png Binary files differindex 1463e5d..d0cd9ac 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_light.9.png Binary files differindex e1c7e8c..e5b280f 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_dark.9.png Binary files differindex 9247353..b177ed1 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_light.9.png Binary files differindex cab8e9f..6e60537 100644 --- a/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_multiline_focused_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_activated_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/textfield_search_activated_mtrl_alpha.9.png Binary files differindex 33c1035..0334777 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_default.9.png b/core/res/res/drawable-xhdpi/textfield_search_default.9.png Binary files differindex ad4b935..0369ca8 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_default.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_default.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_search_default_holo_dark.9.png Binary files differindex 8fdbbf3..8bb1a00 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_search_default_holo_light.9.png Binary files differindex 4e9ae43..63d30b4 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_default_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/textfield_search_default_mtrl_alpha.9.png Binary files differindex 0226f84..a25bd54 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_empty_default.9.png b/core/res/res/drawable-xhdpi/textfield_search_empty_default.9.png Binary files differindex 0c60f9e..d869e78 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_empty_default.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_empty_default.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_empty_pressed.9.png b/core/res/res/drawable-xhdpi/textfield_search_empty_pressed.9.png Binary files differindex 741bed9..4cd70c2 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_empty_pressed.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_empty_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_empty_selected.9.png b/core/res/res/drawable-xhdpi/textfield_search_empty_selected.9.png Binary files differindex 24ea6cf..6b6e082 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_empty_selected.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_empty_selected.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_pressed.9.png b/core/res/res/drawable-xhdpi/textfield_search_pressed.9.png Binary files differindex 815785c..35c6b04 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_pressed.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_pressed.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_dark.9.png Binary files differindex 98f4871..7007166 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_light.9.png Binary files differindex 733373e..213d31e 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_right_default_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_dark.9.png Binary files differindex 0c6bb03..fd9bee6 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_light.9.png Binary files differindex 0c6bb03..fd9bee6 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_right_selected_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_selected.9.png b/core/res/res/drawable-xhdpi/textfield_search_selected.9.png Binary files differindex f009cdb..1ba8b00 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_selected.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_selected.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-xhdpi/textfield_search_selected_holo_dark.9.png Binary files differindex e5bfd8a..6841b04 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_selected_holo_dark.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-xhdpi/textfield_search_selected_holo_light.9.png Binary files differindex 1743da6..079fd3f 100644 --- a/core/res/res/drawable-xhdpi/textfield_search_selected_holo_light.9.png +++ b/core/res/res/drawable-xhdpi/textfield_search_selected_holo_light.9.png diff --git a/core/res/res/drawable-xhdpi/textfield_selected.9.png b/core/res/res/drawable-xhdpi/textfield_selected.9.png Binary files differindex 963efde..9114f54 100644 --- a/core/res/res/drawable-xhdpi/textfield_selected.9.png +++ b/core/res/res/drawable-xhdpi/textfield_selected.9.png diff --git a/core/res/res/drawable-xhdpi/title_bar_medium.9.png b/core/res/res/drawable-xhdpi/title_bar_medium.9.png Binary files differindex 109c017..0c0b7d0 100644 --- a/core/res/res/drawable-xhdpi/title_bar_medium.9.png +++ b/core/res/res/drawable-xhdpi/title_bar_medium.9.png diff --git a/core/res/res/drawable-xhdpi/title_bar_portrait.9.png b/core/res/res/drawable-xhdpi/title_bar_portrait.9.png Binary files differindex 3c91a4a..b95d641 100644 --- a/core/res/res/drawable-xhdpi/title_bar_portrait.9.png +++ b/core/res/res/drawable-xhdpi/title_bar_portrait.9.png diff --git a/core/res/res/drawable-xhdpi/title_bar_tall.9.png b/core/res/res/drawable-xhdpi/title_bar_tall.9.png Binary files differindex e986db1..f1b3843 100644 --- a/core/res/res/drawable-xhdpi/title_bar_tall.9.png +++ b/core/res/res/drawable-xhdpi/title_bar_tall.9.png diff --git a/core/res/res/drawable-xhdpi/toast_frame.9.png b/core/res/res/drawable-xhdpi/toast_frame.9.png Binary files differindex 77e69c7..73b19ab 100644 --- a/core/res/res/drawable-xhdpi/toast_frame.9.png +++ b/core/res/res/drawable-xhdpi/toast_frame.9.png diff --git a/core/res/res/drawable-xhdpi/transportcontrol_bg.9.png b/core/res/res/drawable-xhdpi/transportcontrol_bg.9.png Binary files differindex b690a2a..c177bab 100644 --- a/core/res/res/drawable-xhdpi/transportcontrol_bg.9.png +++ b/core/res/res/drawable-xhdpi/transportcontrol_bg.9.png diff --git a/core/res/res/drawable-xhdpi/unknown_image.png b/core/res/res/drawable-xhdpi/unknown_image.png Binary files differindex 0a9f643..e9aca0d 100644 --- a/core/res/res/drawable-xhdpi/unknown_image.png +++ b/core/res/res/drawable-xhdpi/unknown_image.png diff --git a/core/res/res/drawable-xhdpi/usb_android.png b/core/res/res/drawable-xhdpi/usb_android.png Binary files differindex 41fc29d..cd38493 100644 --- a/core/res/res/drawable-xhdpi/usb_android.png +++ b/core/res/res/drawable-xhdpi/usb_android.png diff --git a/core/res/res/drawable-xhdpi/usb_android_connected.png b/core/res/res/drawable-xhdpi/usb_android_connected.png Binary files differindex 71f2d44..3d95a1c 100644 --- a/core/res/res/drawable-xhdpi/usb_android_connected.png +++ b/core/res/res/drawable-xhdpi/usb_android_connected.png diff --git a/core/res/res/drawable-xhdpi/vpn_connected.png b/core/res/res/drawable-xhdpi/vpn_connected.png Binary files differindex 1f46be2..ce63276 100644 --- a/core/res/res/drawable-xhdpi/vpn_connected.png +++ b/core/res/res/drawable-xhdpi/vpn_connected.png diff --git a/core/res/res/drawable-xhdpi/vpn_disconnected.png b/core/res/res/drawable-xhdpi/vpn_disconnected.png Binary files differindex 847d3f5..e00b276 100644 --- a/core/res/res/drawable-xhdpi/vpn_disconnected.png +++ b/core/res/res/drawable-xhdpi/vpn_disconnected.png diff --git a/core/res/res/drawable-xhdpi/zoom_plate.9.png b/core/res/res/drawable-xhdpi/zoom_plate.9.png Binary files differindex 797215b..b29fdf3 100644 --- a/core/res/res/drawable-xhdpi/zoom_plate.9.png +++ b/core/res/res/drawable-xhdpi/zoom_plate.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_bottom_solid_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_bottom_solid_dark_holo.9.png Binary files differindex 8358392..164f12e 100644 --- a/core/res/res/drawable-xxhdpi/ab_bottom_solid_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_bottom_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_bottom_solid_inverse_holo.9.png b/core/res/res/drawable-xxhdpi/ab_bottom_solid_inverse_holo.9.png Binary files differindex 8c6e40c..a52b52b 100644 --- a/core/res/res/drawable-xxhdpi/ab_bottom_solid_inverse_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_bottom_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_bottom_solid_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_bottom_solid_light_holo.9.png Binary files differindex f6c33dc..511b6df 100644 --- a/core/res/res/drawable-xxhdpi/ab_bottom_solid_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_bottom_solid_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_bottom_transparent_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_bottom_transparent_dark_holo.9.png Binary files differindex f32ca94..9a40691 100644 --- a/core/res/res/drawable-xxhdpi/ab_bottom_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_bottom_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_bottom_transparent_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_bottom_transparent_light_holo.9.png Binary files differindex da69ea5..dee88be 100644 --- a/core/res/res/drawable-xxhdpi/ab_bottom_transparent_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_bottom_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_share_pack_holo_dark.9.png b/core/res/res/drawable-xxhdpi/ab_share_pack_holo_dark.9.png Binary files differindex 18269a9..90c1533 100644 --- a/core/res/res/drawable-xxhdpi/ab_share_pack_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/ab_share_pack_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_share_pack_holo_light.9.png b/core/res/res/drawable-xxhdpi/ab_share_pack_holo_light.9.png Binary files differindex 469f736..8e8b3fb 100644 --- a/core/res/res/drawable-xxhdpi/ab_share_pack_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/ab_share_pack_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_share_pack_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/ab_share_pack_mtrl_alpha.9.png Binary files differindex 469f736..8e8b3fb 100644 --- a/core/res/res/drawable-xxhdpi/ab_share_pack_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/ab_share_pack_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_solid_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_solid_dark_holo.9.png Binary files differindex 48be5cc..d35dd0d 100644 --- a/core/res/res/drawable-xxhdpi/ab_solid_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_solid_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_solid_light_holo.9.png Binary files differindex 2e49b8d..99b8e60 100644 --- a/core/res/res/drawable-xxhdpi/ab_solid_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_solid_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_solid_shadow_holo.9.png b/core/res/res/drawable-xxhdpi/ab_solid_shadow_holo.9.png Binary files differindex 8071886..2711e39 100644 --- a/core/res/res/drawable-xxhdpi/ab_solid_shadow_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_solid_shadow_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_solid_shadow_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/ab_solid_shadow_mtrl_alpha.9.png Binary files differindex e8a94dc..87333f1 100644 --- a/core/res/res/drawable-xxhdpi/ab_solid_shadow_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/ab_solid_shadow_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_stacked_solid_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_stacked_solid_dark_holo.9.png Binary files differindex 086069b..913ec83 100644 --- a/core/res/res/drawable-xxhdpi/ab_stacked_solid_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_stacked_solid_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_stacked_solid_inverse_holo.9.png b/core/res/res/drawable-xxhdpi/ab_stacked_solid_inverse_holo.9.png Binary files differindex 4074d81..49c3eda 100644 --- a/core/res/res/drawable-xxhdpi/ab_stacked_solid_inverse_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_stacked_solid_inverse_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_stacked_solid_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_stacked_solid_light_holo.9.png Binary files differindex 8ce58b3..b3c979f 100644 --- a/core/res/res/drawable-xxhdpi/ab_stacked_solid_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_stacked_solid_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_stacked_transparent_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_stacked_transparent_dark_holo.9.png Binary files differindex fd92764..cdb408d 100644 --- a/core/res/res/drawable-xxhdpi/ab_stacked_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_stacked_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_stacked_transparent_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_stacked_transparent_light_holo.9.png Binary files differindex 8d64aa7..7016217 100644 --- a/core/res/res/drawable-xxhdpi/ab_stacked_transparent_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_stacked_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_transparent_dark_holo.9.png b/core/res/res/drawable-xxhdpi/ab_transparent_dark_holo.9.png Binary files differindex 84155cc..c743437 100644 --- a/core/res/res/drawable-xxhdpi/ab_transparent_dark_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_transparent_dark_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/ab_transparent_light_holo.9.png b/core/res/res/drawable-xxhdpi/ab_transparent_light_holo.9.png Binary files differindex d48e27f..2ab1fbf 100644 --- a/core/res/res/drawable-xxhdpi/ab_transparent_light_holo.9.png +++ b/core/res/res/drawable-xxhdpi/ab_transparent_light_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_dark.9.png Binary files differindex 95475ee..9cf7e75 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_light.9.png Binary files differindex e1c55ad..16fb50a 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_dark.9.png Binary files differindex 6c49fe7..2066c2b 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_light.9.png Binary files differindex 35a557e..28d62c3 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_dark.9.png Binary files differindex 65f9009..c73d38d 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_light.9.png Binary files differindex 1be216b..b8768fa 100644 --- a/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_cab_done_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_dark.png Binary files differindex 0707776..71b69c6 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_light.png Binary files differindex e1553b7..ac51332 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_dark.png Binary files differindex e74b8b7..425e203 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_light.png Binary files differindex 47a6373..467ec02 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_dark.png Binary files differindex b0353fe..abe8b14 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_light.png Binary files differindex 889a67c..70ba7c4 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_holo.png b/core/res/res/drawable-xxhdpi/btn_check_off_holo.png Binary files differindex cdcfdef..4731415 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_holo.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_holo.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_off_holo_dark.png Binary files differindex ecfc08c..77e0f7a 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_off_holo_light.png Binary files differindex b067b58..5159e27 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_dark.png Binary files differindex 4c95f96..ae075a2 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_light.png Binary files differindex df468e0..6889d87 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_dark.png Binary files differindex d249372..bf4adaa 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_light.png Binary files differindex b544001..f5dd4be 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_dark.png Binary files differindex eff125b..e966f64 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_light.png Binary files differindex 013c1f6..d4ae431 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_dark.png Binary files differindex e0d942a..b3fe5bc 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_light.png Binary files differindex 83f8dfd..2a190fe 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_holo.png b/core/res/res/drawable-xxhdpi/btn_check_on_holo.png Binary files differindex 6193147..183d51d 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_holo.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_holo.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_on_holo_dark.png Binary files differindex 1aafc83..87ca9ad 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_on_holo_light.png Binary files differindex 11598dd..eac65cf 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_dark.png Binary files differindex 668548b..4eac5fd 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_light.png Binary files differindex 385350c..ddb3d57 100644 --- a/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_check_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_dark.9.png Binary files differindex aea519c..f6b0d65 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_light.9.png Binary files differindex 8ec4bf5..f6b0d65 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo.9.png b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo.9.png Binary files differindex 60732b3..6bcf90e 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_dark.9.png Binary files differindex 12bac53..ffada86 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_light.9.png Binary files differindex b4c90d4..ffada86 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_focused_holo.9.png b/core/res/res/drawable-xxhdpi/btn_default_focused_holo.9.png Binary files differindex 33c3ebb..93cd22f 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_focused_holo.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_focused_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_default_focused_holo_dark.9.png Binary files differindex f7bfd78..ac85985 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_default_focused_holo_light.9.png Binary files differindex 7f5432f..ac85985 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_normal_holo.9.png b/core/res/res/drawable-xxhdpi/btn_default_normal_holo.9.png Binary files differindex c1632c8..f48682e 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_normal_holo.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_normal_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_default_normal_holo_dark.9.png Binary files differindex 6449593..f48ac22 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_normal_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_default_normal_holo_light.9.png Binary files differindex 68be3c5..1371307 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_normal_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_normal_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo.9.png b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo.9.png Binary files differindex e05017c..dbc5c6c 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_dark.9.png Binary files differindex 016a5ee..3f876c5 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_light.9.png Binary files differindex 9521603..04744d0 100644 --- a/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_default_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_dark.9.png Binary files differindex 54ff2c0..fdf6e80 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_light.9.png Binary files differindex e3c4945..9a0268e 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_group_focused_holo_dark.9.png Binary files differindex bd04226..d8586c2 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_group_focused_holo_light.9.png Binary files differindex f7aa79e..d8586c2 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_normal_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_group_normal_holo_dark.9.png Binary files differindex 26f98fc..7b4248c 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_normal_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_normal_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_group_normal_holo_light.9.png Binary files differindex 1ba39f2..9635f9e 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_normal_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_normal_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_dark.9.png Binary files differindex 531acc4..f20b3c2 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_light.9.png Binary files differindex 358f546..5fd5471 100644 --- a/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_group_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_dark.png Binary files differindex 6c0f6f3..b2a01d8 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_light.png Binary files differindex 63ac52b..5acdd87 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_dark.png Binary files differindex 946936e..4030fdf 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_light.png Binary files differindex 06f0cc7..d036c5a 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_dark.png Binary files differindex abbf1ae..223f49d 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_light.png Binary files differindex 28f5843..379fbad 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_holo.png b/core/res/res/drawable-xxhdpi/btn_radio_off_holo.png Binary files differindex c8ac939..fe25caf 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_holo.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_holo.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_off_holo_dark.png Binary files differindex a7afd00..f6124ac 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_off_holo_light.png Binary files differindex 43fac43..35582ef 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_dark.png Binary files differindex 39ff3d5..7795928 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_light.png Binary files differindex 702155f..f4dcc22 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_dark.png Binary files differindex 16b2023..68d5577 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_light.png Binary files differindex f03d07f..3eb0fdc 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_dark.png Binary files differindex 66b833d..ae09aac 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_light.png Binary files differindex adb7304..5d05e80 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_dark.png Binary files differindex cb7d6c8..d664dca 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_light.png Binary files differindex 12a0601..3220a90 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_holo.png b/core/res/res/drawable-xxhdpi/btn_radio_on_holo.png Binary files differindex 2a11733..7efebdb 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_holo.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_holo.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_on_holo_dark.png Binary files differindex f3ce811..88c25bb 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_on_holo_light.png Binary files differindex 43142b6..4f5f16d 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_dark.png Binary files differindex d43a0f9..e002c39 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_light.png Binary files differindex c05643f..fefa6fa 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_000.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_000.png Binary files differindex cbc3833..09730cf 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_000.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_000.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_001.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_001.png Binary files differindex 4243895..34aafdb 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_001.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_001.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_002.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_002.png Binary files differindex b522d37..a5a8857 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_002.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_002.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_003.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_003.png Binary files differindex 647b965..b20383f 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_003.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_003.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_004.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_004.png Binary files differindex a317497..3117c13 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_004.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_004.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_005.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_005.png Binary files differindex 0e4b25f..509184c 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_005.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_005.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_006.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_006.png Binary files differindex 6e279d9..c62188e 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_006.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_006.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_007.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_007.png Binary files differindex f0840cc..6289b89 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_007.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_007.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_008.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_008.png Binary files differindex 140e9e8..2441774 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_008.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_008.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_009.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_009.png Binary files differindex 5cf8ec5..f7d5a0c 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_009.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_009.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_010.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_010.png Binary files differindex f9624d8..8c48c8e 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_010.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_010.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_011.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_011.png Binary files differindex 899df8c..e630207 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_011.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_011.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_012.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_012.png Binary files differindex 6543e1c..6efaa06 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_012.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_012.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_013.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_013.png Binary files differindex cd758dd..da07c8a 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_013.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_013.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_014.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_014.png Binary files differindex 72d950c..dfacbb7 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_014.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_014.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_015.png b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_015.png Binary files differindex 07bdbc9..0cf6dd2 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_015.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_off_mtrl_015.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_000.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_000.png Binary files differindex c9af24b..0cf6dd2 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_000.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_000.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_001.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_001.png Binary files differindex 01de3f5..f25337b 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_001.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_001.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_002.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_002.png Binary files differindex f428bc5..2fb0d03 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_002.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_002.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_003.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_003.png Binary files differindex ab5c008..eab0510 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_003.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_003.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_004.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_004.png Binary files differindex 5b157cf..2b57d3b 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_004.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_004.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_005.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_005.png Binary files differindex 1210be2..8aa303e 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_005.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_005.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_006.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_006.png Binary files differindex e6b4140..944d923 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_006.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_006.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_007.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_007.png Binary files differindex b678e08..46bc7a6 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_007.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_007.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_008.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_008.png Binary files differindex 6ca2a69..8ef34c1 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_008.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_008.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_009.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_009.png Binary files differindex 7de608e..e8f6d30 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_009.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_009.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_010.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_010.png Binary files differindex b2bbcce..355003f 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_010.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_010.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_011.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_011.png Binary files differindex 6950db3..c5a3f79 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_011.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_011.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_012.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_012.png Binary files differindex c790756..98a9e12 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_012.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_012.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_013.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_013.png Binary files differindex ed5d888..467c133 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_013.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_013.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_014.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_014.png Binary files differindex 81a4a63..ed5b578 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_014.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_014.png diff --git a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_015.png b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_015.png Binary files differindex db1d93a..09730cf 100644 --- a/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_015.png +++ b/core/res/res/drawable-xxhdpi/btn_radio_to_on_mtrl_015.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_dark.png Binary files differindex 292c752..bf009ff 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_light.png Binary files differindex 635c009..8b10258 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_dark.png Binary files differindex fef0797..a14ab04 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_light.png Binary files differindex c43977dd..197fa73 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_dark.png Binary files differindex 521dc80..d92a8e3 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_light.png Binary files differindex 71a367b..35c65fc 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_mtrl_alpha.png Binary files differindex 4b49faf..23aa975 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_dark.png Binary files differindex 35f72fa..54f0f21 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_light.png Binary files differindex c8541c3..cd8318f 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_dark.png Binary files differindex 899e577..373451e 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_light.png Binary files differindex aaa6826..7a7cf5d 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_dark.png Binary files differindex e699edc..332c2c2 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_light.png Binary files differindex a59c23c..5a48137 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_dark.png Binary files differindex d2504fb..f2b8c3d 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_light.png Binary files differindex d514bdd..5874f62 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_dark.png Binary files differindex 53c7a53..11af381 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_light.png Binary files differindex f942490..a575d58 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_mtrl_alpha.png Binary files differindex 561d9ef..8b240e7 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_dark.png Binary files differindex 11bae7c..3238a35 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_light.png Binary files differindex 08804b5..1610260 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_dark.png Binary files differindex e15fc63..de3109b 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_light.png Binary files differindex cc82a54..a3f1378 100644 --- a/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_rating_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/btn_star_mtrl_alpha.png Binary files differindex 7488ff9..6e9efbc 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/btn_star_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_dark.png Binary files differindex 853243d..cdfbc15 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png Binary files differindex b5cd0bb..36bcafe 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_dark.png Binary files differindex bb16a5f..872904d 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png Binary files differindex c178a9b..e440b6b 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_dark.png Binary files differindex 886f395..6342332 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png Binary files differindex ab2b334..6be4e77 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_dark.png Binary files differindex 59a8547..eba6e60 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png Binary files differindex 14cac81..0a64849 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_dark.png Binary files differindex b756e79..78501d9 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png Binary files differindex 89bf5b4..f7d8e48 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_dark.png Binary files differindex 7027cc2..b641859 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png Binary files differindex d491c5b..ea59d73 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_dark.png Binary files differindex f968b1a..2904f30 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png Binary files differindex 1999f68..9573946 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_dark.png Binary files differindex ab4b58c..c0f902a 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png Binary files differindex cd44fa6..315b219 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_dark.png Binary files differindex 8847d78..ed27605 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png Binary files differindex 3ef0498..2f1269e 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_dark.png Binary files differindex 50e4940..c77e287 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png Binary files differindex 0b77905..4109065 100644 --- a/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00001.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00001.9.png Binary files differindex 1eca9a9..1b91834 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00001.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00001.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00002.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00002.9.png Binary files differindex 5427211..6ae8a5f 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00002.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00002.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00003.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00003.9.png Binary files differindex 43c06ab..b7b86e7 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00003.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00003.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00004.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00004.9.png Binary files differindex 6db3f1e..6edc55b 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00004.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00004.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00005.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00005.9.png Binary files differindex 53b3a62..43c947c 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00005.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00005.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00006.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00006.9.png Binary files differindex 7add520..14810af 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00006.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00006.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00007.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00007.9.png Binary files differindex a4d57de..8d92231 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00007.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00007.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00008.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00008.9.png Binary files differindex 4b3a023..0848af8 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00008.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00008.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00009.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00009.9.png Binary files differindex a4caa65..cc8d73c 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00009.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00009.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00010.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00010.9.png Binary files differindex 2ab46c0..9837354 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00010.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00010.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00011.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00011.9.png Binary files differindex 5c06e44..c594415 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00011.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00011.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00012.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00012.9.png Binary files differindex 60d8c11..4811708 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00012.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_off_mtrl_00012.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00001.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00001.9.png Binary files differindex b149e47..69ae441 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00001.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00001.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00002.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00002.9.png Binary files differindex 6a12a1f..de73637 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00002.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00002.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00003.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00003.9.png Binary files differindex 2803c7c..8642ead 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00003.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00003.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00004.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00004.9.png Binary files differindex 032f6ea..0ea7f83 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00004.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00004.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00005.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00005.9.png Binary files differindex ea83c35..93e6f89 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00005.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00005.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00006.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00006.9.png Binary files differindex 2801f29..998849b 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00006.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00006.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00007.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00007.9.png Binary files differindex 66b89b3..8d92231 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00007.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00007.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00008.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00008.9.png Binary files differindex 1f8770c..7df58d7 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00008.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00008.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00009.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00009.9.png Binary files differindex 0d6a95b..dc8ea1e 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00009.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00009.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00010.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00010.9.png Binary files differindex 8e602db..2a01f41 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00010.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00010.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00011.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00011.9.png Binary files differindex 3143c1f..ac771011 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00011.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00011.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00012.9.png b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00012.9.png Binary files differindex 00fb83e..ebe0bac 100644 --- a/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00012.9.png +++ b/core/res/res/drawable-xxhdpi/btn_switch_to_on_mtrl_00012.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png Binary files differindex e5ec283..a0845c6 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_light.9.png Binary files differindex 5cd267d..a0845c6 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_dark.9.png Binary files differindex c34c7af..2b632e5 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_light.9.png Binary files differindex 9b3900a..2b632e5 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_dark.9.png Binary files differindex 345fe9c..6225389 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_light.9.png Binary files differindex b338843..6225389 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_dark.9.png Binary files differindex 3f6ab80..dada620 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_light.9.png Binary files differindex df71589..db701a1 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_normal_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_dark.9.png Binary files differindex 1e675d3..4e444b9 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_light.9.png Binary files differindex 2ceb802..ac0def7 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_off_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png Binary files differindex ea15883..f88b72b 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_light.9.png Binary files differindex b403039..7f948be 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_dark.9.png Binary files differindex f12643e..7dbb648 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_light.9.png Binary files differindex 3090c9a..3fd6f82 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_dark.9.png Binary files differindex 2fb4d91..c50d95e 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_light.9.png Binary files differindex 5e17dd5..7e23463 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_dark.9.png Binary files differindex bf9b997..2f3ebf6 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_light.9.png Binary files differindex b36f670..c6bf21d 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_normal_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_dark.9.png Binary files differindex e7a9265..948bf6b 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_light.9.png Binary files differindex df58767..94ab7bc 100644 --- a/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_dark.9.png b/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_dark.9.png Binary files differindex 8666113..3bcfa21 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_light.9.png b/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_light.9.png Binary files differindex 805927b..f6c260c 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_bottom_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_bottom_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/cab_background_bottom_mtrl_alpha.9.png Binary files differindex 22bd8ce..0cb0e23 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_bottom_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_bottom_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_top_holo_dark.9.png b/core/res/res/drawable-xxhdpi/cab_background_top_holo_dark.9.png Binary files differindex cbb4f4c..522a324 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_top_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_top_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_top_holo_light.9.png b/core/res/res/drawable-xxhdpi/cab_background_top_holo_light.9.png Binary files differindex 6d467f7..7b62bb8 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_top_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_top_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/cab_background_top_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/cab_background_top_mtrl_alpha.9.png Binary files differindex 1dd64b9..b8cf68c 100644 --- a/core/res/res/drawable-xxhdpi/cab_background_top_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/cab_background_top_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/cling_arrow_up.png b/core/res/res/drawable-xxhdpi/cling_arrow_up.png Binary files differindex 1983f13..81116bc 100644 --- a/core/res/res/drawable-xxhdpi/cling_arrow_up.png +++ b/core/res/res/drawable-xxhdpi/cling_arrow_up.png diff --git a/core/res/res/drawable-xxhdpi/cling_bg.9.png b/core/res/res/drawable-xxhdpi/cling_bg.9.png Binary files differindex 7beae03..fabea19 100644 --- a/core/res/res/drawable-xxhdpi/cling_bg.9.png +++ b/core/res/res/drawable-xxhdpi/cling_bg.9.png diff --git a/core/res/res/drawable-xxhdpi/cling_button_normal.9.png b/core/res/res/drawable-xxhdpi/cling_button_normal.9.png Binary files differindex e412876..a147dd7 100644 --- a/core/res/res/drawable-xxhdpi/cling_button_normal.9.png +++ b/core/res/res/drawable-xxhdpi/cling_button_normal.9.png diff --git a/core/res/res/drawable-xxhdpi/cling_button_pressed.9.png b/core/res/res/drawable-xxhdpi/cling_button_pressed.9.png Binary files differindex 55e89da..ddbea32 100644 --- a/core/res/res/drawable-xxhdpi/cling_button_pressed.9.png +++ b/core/res/res/drawable-xxhdpi/cling_button_pressed.9.png diff --git a/core/res/res/drawable-xxhdpi/combobox_disabled.png b/core/res/res/drawable-xxhdpi/combobox_disabled.png Binary files differindex d342344..e9d6f50 100644 --- a/core/res/res/drawable-xxhdpi/combobox_disabled.png +++ b/core/res/res/drawable-xxhdpi/combobox_disabled.png diff --git a/core/res/res/drawable-xxhdpi/combobox_nohighlight.png b/core/res/res/drawable-xxhdpi/combobox_nohighlight.png Binary files differindex 377fbd3..e7c4784 100644 --- a/core/res/res/drawable-xxhdpi/combobox_nohighlight.png +++ b/core/res/res/drawable-xxhdpi/combobox_nohighlight.png diff --git a/core/res/res/drawable-xxhdpi/create_contact.png b/core/res/res/drawable-xxhdpi/create_contact.png Binary files differindex 9baf195..ef752f3 100644 --- a/core/res/res/drawable-xxhdpi/create_contact.png +++ b/core/res/res/drawable-xxhdpi/create_contact.png diff --git a/core/res/res/drawable-xxhdpi/day_picker_week_view_dayline_holo.9.png b/core/res/res/drawable-xxhdpi/day_picker_week_view_dayline_holo.9.png Binary files differindex 6b22972..ee9e4a7 100644 --- a/core/res/res/drawable-xxhdpi/day_picker_week_view_dayline_holo.9.png +++ b/core/res/res/drawable-xxhdpi/day_picker_week_view_dayline_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_background_mtrl_mult.9.png b/core/res/res/drawable-xxhdpi/dialog_background_mtrl_mult.9.png Binary files differindex bb9debb..e352cc4 100644 --- a/core/res/res/drawable-xxhdpi/dialog_background_mtrl_mult.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_bottom_holo_dark.9.png b/core/res/res/drawable-xxhdpi/dialog_bottom_holo_dark.9.png Binary files differindex 0d2ba50..bd8a17f 100644 --- a/core/res/res/drawable-xxhdpi/dialog_bottom_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_bottom_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_bottom_holo_light.9.png b/core/res/res/drawable-xxhdpi/dialog_bottom_holo_light.9.png Binary files differindex 13462d1..120aae2 100644 --- a/core/res/res/drawable-xxhdpi/dialog_bottom_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_bottom_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_full_holo_dark.9.png b/core/res/res/drawable-xxhdpi/dialog_full_holo_dark.9.png Binary files differindex b029809..f983a52 100644 --- a/core/res/res/drawable-xxhdpi/dialog_full_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_full_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_full_holo_light.9.png b/core/res/res/drawable-xxhdpi/dialog_full_holo_light.9.png Binary files differindex 63dd192..206060a 100644 --- a/core/res/res/drawable-xxhdpi/dialog_full_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_full_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_dark.png Binary files differindex ffe7cbf..71c8d2b 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_light.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_light.png Binary files differindex f21e320..538d7a9 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_dark.png Binary files differindex 87cf4d5..90240e6 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_light.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_light.png Binary files differindex 8d185f4..c6237e5 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_dark.png Binary files differindex cb2ec6a..640672c 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_light.png Binary files differindex 776dbfd..0d7d72e 100644 --- a/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/dialog_ic_close_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/dialog_middle_holo_dark.9.png b/core/res/res/drawable-xxhdpi/dialog_middle_holo_dark.9.png Binary files differindex d922fd6..bf55388 100644 --- a/core/res/res/drawable-xxhdpi/dialog_middle_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_middle_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_middle_holo_light.9.png b/core/res/res/drawable-xxhdpi/dialog_middle_holo_light.9.png Binary files differindex 1298194..8af9cb8 100644 --- a/core/res/res/drawable-xxhdpi/dialog_middle_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_middle_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_top_holo_dark.9.png b/core/res/res/drawable-xxhdpi/dialog_top_holo_dark.9.png Binary files differindex baf7be3..6ba9669 100644 --- a/core/res/res/drawable-xxhdpi/dialog_top_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_top_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/dialog_top_holo_light.9.png b/core/res/res/drawable-xxhdpi/dialog_top_holo_light.9.png Binary files differindex f35251f..d86c5de 100644 --- a/core/res/res/drawable-xxhdpi/dialog_top_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/dialog_top_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_angel.png b/core/res/res/drawable-xxhdpi/emo_im_angel.png Binary files differindex 7d317e2..84477fc 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_angel.png +++ b/core/res/res/drawable-xxhdpi/emo_im_angel.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_cool.png b/core/res/res/drawable-xxhdpi/emo_im_cool.png Binary files differindex a05fabe..860cdd5 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_cool.png +++ b/core/res/res/drawable-xxhdpi/emo_im_cool.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_crying.png b/core/res/res/drawable-xxhdpi/emo_im_crying.png Binary files differindex 102800d..42e1d5a 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_crying.png +++ b/core/res/res/drawable-xxhdpi/emo_im_crying.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_embarrassed.png b/core/res/res/drawable-xxhdpi/emo_im_embarrassed.png Binary files differindex 6e5d226..af3f47a 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_embarrassed.png +++ b/core/res/res/drawable-xxhdpi/emo_im_embarrassed.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-xxhdpi/emo_im_foot_in_mouth.png Binary files differindex c328f8c..0cb6fb2 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_foot_in_mouth.png +++ b/core/res/res/drawable-xxhdpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_happy.png b/core/res/res/drawable-xxhdpi/emo_im_happy.png Binary files differindex 11e0163..41a1981 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_happy.png +++ b/core/res/res/drawable-xxhdpi/emo_im_happy.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_kissing.png b/core/res/res/drawable-xxhdpi/emo_im_kissing.png Binary files differindex b929861..2830f07 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_kissing.png +++ b/core/res/res/drawable-xxhdpi/emo_im_kissing.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_laughing.png b/core/res/res/drawable-xxhdpi/emo_im_laughing.png Binary files differindex 4ed90bc..0dd841d 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_laughing.png +++ b/core/res/res/drawable-xxhdpi/emo_im_laughing.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-xxhdpi/emo_im_lips_are_sealed.png Binary files differindex bcbcf8d..de53071 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_lips_are_sealed.png +++ b/core/res/res/drawable-xxhdpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_money_mouth.png b/core/res/res/drawable-xxhdpi/emo_im_money_mouth.png Binary files differindex e17cf77..d705d9e 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_money_mouth.png +++ b/core/res/res/drawable-xxhdpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_sad.png b/core/res/res/drawable-xxhdpi/emo_im_sad.png Binary files differindex 0696d99..e2f6f71 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_sad.png +++ b/core/res/res/drawable-xxhdpi/emo_im_sad.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_surprised.png b/core/res/res/drawable-xxhdpi/emo_im_surprised.png Binary files differindex bd821d7..4fb5e50 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_surprised.png +++ b/core/res/res/drawable-xxhdpi/emo_im_surprised.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png Binary files differindex af21474..620a114 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png +++ b/core/res/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_undecided.png b/core/res/res/drawable-xxhdpi/emo_im_undecided.png Binary files differindex c43aa0b..179dd11 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_undecided.png +++ b/core/res/res/drawable-xxhdpi/emo_im_undecided.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_winking.png b/core/res/res/drawable-xxhdpi/emo_im_winking.png Binary files differindex 41cdd23..e79fa67 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_winking.png +++ b/core/res/res/drawable-xxhdpi/emo_im_winking.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_wtf.png b/core/res/res/drawable-xxhdpi/emo_im_wtf.png Binary files differindex 36f0b32..361a468 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_wtf.png +++ b/core/res/res/drawable-xxhdpi/emo_im_wtf.png diff --git a/core/res/res/drawable-xxhdpi/emo_im_yelling.png b/core/res/res/drawable-xxhdpi/emo_im_yelling.png Binary files differindex db210eb..f41946f 100644 --- a/core/res/res/drawable-xxhdpi/emo_im_yelling.png +++ b/core/res/res/drawable-xxhdpi/emo_im_yelling.png diff --git a/core/res/res/drawable-xxhdpi/expander_close_holo_dark.9.png b/core/res/res/drawable-xxhdpi/expander_close_holo_dark.9.png Binary files differindex fb41e44..2042090 100644 --- a/core/res/res/drawable-xxhdpi/expander_close_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/expander_close_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/expander_close_holo_light.9.png b/core/res/res/drawable-xxhdpi/expander_close_holo_light.9.png Binary files differindex f3042a7..943a11e 100644 --- a/core/res/res/drawable-xxhdpi/expander_close_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/expander_close_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/expander_close_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/expander_close_mtrl_alpha.9.png Binary files differindex e78fff6..230be31 100644 --- a/core/res/res/drawable-xxhdpi/expander_close_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/expander_close_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/expander_open_holo_dark.9.png b/core/res/res/drawable-xxhdpi/expander_open_holo_dark.9.png Binary files differindex b1f006a..7a7d013 100644 --- a/core/res/res/drawable-xxhdpi/expander_open_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/expander_open_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/expander_open_holo_light.9.png b/core/res/res/drawable-xxhdpi/expander_open_holo_light.9.png Binary files differindex bac07f6..3f13089 100644 --- a/core/res/res/drawable-xxhdpi/expander_open_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/expander_open_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/expander_open_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/expander_open_mtrl_alpha.9.png Binary files differindex a3d0965..90cdb4a 100644 --- a/core/res/res/drawable-xxhdpi/expander_open_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/expander_open_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_dark.9.png b/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_dark.9.png Binary files differindex c9b5893..fa04e71 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_light.9.png b/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_light.9.png Binary files differindex a1326ed..0106b9f 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_label_left_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_dark.9.png b/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_dark.9.png Binary files differindex 91152ea..604445d 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_light.9.png b/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_light.9.png Binary files differindex 1541e97..6d0f0a6 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_label_right_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_thumb_default_holo.png b/core/res/res/drawable-xxhdpi/fastscroll_thumb_default_holo.png Binary files differindex d8335d5..e7cf7d3 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_thumb_default_holo.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_thumb_default_holo.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_thumb_pressed_holo.png b/core/res/res/drawable-xxhdpi/fastscroll_thumb_pressed_holo.png Binary files differindex cdc13e1..886a195 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_thumb_pressed_holo.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_thumb_pressed_holo.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_dark.9.png Binary files differindex b9455ff..a9e4cbb 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_light.9.png Binary files differindex a5c54dc..a9e4cbb 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_track_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_dark.9.png Binary files differindex eaf0969..2a94aa9 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_light.9.png Binary files differindex 9db45c0..88bc65b 100644 --- a/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/fastscroll_track_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/ic_ab_back_holo_dark_am.png b/core/res/res/drawable-xxhdpi/ic_ab_back_holo_dark_am.png Binary files differindex 04d1348..b4d587a 100644 --- a/core/res/res/drawable-xxhdpi/ic_ab_back_holo_dark_am.png +++ b/core/res/res/drawable-xxhdpi/ic_ab_back_holo_dark_am.png diff --git a/core/res/res/drawable-xxhdpi/ic_ab_back_holo_light_am.png b/core/res/res/drawable-xxhdpi/ic_ab_back_holo_light_am.png Binary files differindex 962dba3..05ff21a 100644 --- a/core/res/res/drawable-xxhdpi/ic_ab_back_holo_light_am.png +++ b/core/res/res/drawable-xxhdpi/ic_ab_back_holo_light_am.png diff --git a/core/res/res/drawable-xxhdpi/ic_audio_notification_am_alpha.png b/core/res/res/drawable-xxhdpi/ic_audio_notification_am_alpha.png Binary files differindex fb0e96e..6aa812e 100755 --- a/core/res/res/drawable-xxhdpi/ic_audio_notification_am_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_audio_notification_am_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_audio_notification_mute_am_alpha.png b/core/res/res/drawable-xxhdpi/ic_audio_notification_mute_am_alpha.png Binary files differindex 3aa7b53..9443537 100644 --- a/core/res/res/drawable-xxhdpi/ic_audio_notification_mute_am_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_audio_notification_mute_am_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_btn_search_go.png b/core/res/res/drawable-xxhdpi/ic_btn_search_go.png Binary files differindex 1f4301d..bb37ba0 100644 --- a/core/res/res/drawable-xxhdpi/ic_btn_search_go.png +++ b/core/res/res/drawable-xxhdpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-xxhdpi/ic_btn_speak_now.png b/core/res/res/drawable-xxhdpi/ic_btn_speak_now.png Binary files differindex b15f385..d6a58c9 100644 --- a/core/res/res/drawable-xxhdpi/ic_btn_speak_now.png +++ b/core/res/res/drawable-xxhdpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-xxhdpi/ic_bullet_key_permission.png b/core/res/res/drawable-xxhdpi/ic_bullet_key_permission.png Binary files differindex a74c286..acd24d2 100644 --- a/core/res/res/drawable-xxhdpi/ic_bullet_key_permission.png +++ b/core/res/res/drawable-xxhdpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-xxhdpi/ic_cab_done_holo.png b/core/res/res/drawable-xxhdpi/ic_cab_done_holo.png Binary files differindex a23a3ae..fd1914c 100644 --- a/core/res/res/drawable-xxhdpi/ic_cab_done_holo.png +++ b/core/res/res/drawable-xxhdpi/ic_cab_done_holo.png diff --git a/core/res/res/drawable-xxhdpi/ic_cab_done_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_cab_done_holo_dark.png Binary files differindex fdecbe1..686350e 100644 --- a/core/res/res/drawable-xxhdpi/ic_cab_done_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_cab_done_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_cab_done_holo_light.png b/core/res/res/drawable-xxhdpi/ic_cab_done_holo_light.png Binary files differindex ca93e70..5eaf6d5 100644 --- a/core/res/res/drawable-xxhdpi/ic_cab_done_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_cab_done_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_cab_done_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_cab_done_mtrl_alpha.png Binary files differindex 1f9c734..7bfb4a1 100644 --- a/core/res/res/drawable-xxhdpi/ic_cab_done_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_cab_done_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_dark.png Binary files differindex 6e48dc6..f3971fa 100644 --- a/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_light.png b/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_light.png Binary files differindex d26f75e..a1fc2a9 100644 --- a/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_commit_search_api_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_commit_search_api_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_commit_search_api_mtrl_alpha.png Binary files differindex fc1b8b4..e474b26 100644 --- a/core/res/res/drawable-xxhdpi/ic_commit_search_api_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_commit_search_api_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_contact_picture.png b/core/res/res/drawable-xxhdpi/ic_contact_picture.png Binary files differindex b36ec17..9b66691 100644 --- a/core/res/res/drawable-xxhdpi/ic_contact_picture.png +++ b/core/res/res/drawable-xxhdpi/ic_contact_picture.png diff --git a/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_dark.png Binary files differindex 6e057ac..47762e7 100644 --- a/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_light.png b/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_light.png Binary files differindex 4111bc5..a8f899c 100644 --- a/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_contact_picture_180_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_dark.png Binary files differindex 52a69c3..154f62a 100644 --- a/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_light.png b/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_light.png Binary files differindex 5a41c23..bcc25a0 100644 --- a/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_contact_picture_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_corp_icon.png b/core/res/res/drawable-xxhdpi/ic_corp_icon.png Binary files differindex d33319f..d30c16f 100644 --- a/core/res/res/drawable-xxhdpi/ic_corp_icon.png +++ b/core/res/res/drawable-xxhdpi/ic_corp_icon.png diff --git a/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_dark.png Binary files differindex cdd6fd8..adc0b13 100644 --- a/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_light.png b/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_light.png Binary files differindex 24ec28c..ab9395c 100644 --- a/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_dialog_alert_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_emergency.png b/core/res/res/drawable-xxhdpi/ic_emergency.png Binary files differindex d070311..b11f52e 100644 --- a/core/res/res/drawable-xxhdpi/ic_emergency.png +++ b/core/res/res/drawable-xxhdpi/ic_emergency.png diff --git a/core/res/res/drawable-xxhdpi/ic_find_next_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_find_next_mtrl_alpha.png Binary files differindex e3a7e9e..15a27eb 100644 --- a/core/res/res/drawable-xxhdpi/ic_find_next_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_find_next_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_find_previous_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_find_previous_mtrl_alpha.png Binary files differindex f9cf16c..f1dd552 100644 --- a/core/res/res/drawable-xxhdpi/ic_find_previous_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_find_previous_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_input_delete.png b/core/res/res/drawable-xxhdpi/ic_input_delete.png Binary files differindex ea047dd..68497ab 100644 --- a/core/res/res/drawable-xxhdpi/ic_input_delete.png +++ b/core/res/res/drawable-xxhdpi/ic_input_delete.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_alpha.png b/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_alpha.png Binary files differindex 116b891..bfe1211 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_off_am_alpha.png b/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_off_am_alpha.png Binary files differindex 5ca72ed..cb344f0 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_off_am_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_airplane_mode_off_am_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_idle_alarm_alpha.png b/core/res/res/drawable-xxhdpi/ic_lock_idle_alarm_alpha.png Binary files differindex ed2d3c5..b86b17a 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_idle_alarm_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_idle_alarm_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_lock_alpha.png b/core/res/res/drawable-xxhdpi/ic_lock_lock_alpha.png Binary files differindex 1b8882c..09ba77b 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_lock_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_lock_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_open_wht_24dp.png b/core/res/res/drawable-xxhdpi/ic_lock_open_wht_24dp.png Binary files differindex 1b11b59..ad73ef7 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_open_wht_24dp.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_open_wht_24dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_outline_wht_24dp.png b/core/res/res/drawable-xxhdpi/ic_lock_outline_wht_24dp.png Binary files differindex ae0d655..fb722fc 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_outline_wht_24dp.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_outline_wht_24dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_power_off_alpha.png b/core/res/res/drawable-xxhdpi/ic_lock_power_off_alpha.png Binary files differindex 061dc78..ef25940 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_power_off_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_power_off_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-xxhdpi/ic_lock_silent_mode_off.png Binary files differindex 2cca958..74fa805 100644 --- a/core/res/res/drawable-xxhdpi/ic_lock_silent_mode_off.png +++ b/core/res/res/drawable-xxhdpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_alarm.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_alarm.png Binary files differindex f53fa8f..061a83f 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_alarm.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_alarm.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_active.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_active.png Binary files differindex 78a560f..bf2cc33 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_active.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_active.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_focused.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_focused.png Binary files differindex 9c21761..a394018 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_focused.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_focused.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_normal.png Binary files differindex 9298b61..2a95560d 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_answer_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_activated.png Binary files differindex c41fe84..469b213 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_normal.png Binary files differindex 3c29157..a7e493d 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_camera_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_down.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_down.png Binary files differindex 8b3458b..ccda0a0 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_down.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_down.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_left.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_left.png Binary files differindex 10cad65..c776b97 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_left.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_left.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_right.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_right.png Binary files differindex 9fe0601..b3d92b8 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_right.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_right.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_up.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_up.png Binary files differindex 8e9d6d0..8df0b62 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_up.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_chevron_up.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_activated.png Binary files differindex 1d114b1..7887284 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_focused.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_focused.png Binary files differindex 4db7876..60148a3 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_focused.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_focused.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_normal.png Binary files differindex 89aece4..b59f625 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_decline_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_normal.png Binary files differindex 4b99bad..605e0f9 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_pressed.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_pressed.png Binary files differindex d1bd72e..774e813 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_pressed.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_emergencycall_pressed.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_normal.png Binary files differindex ece563c..07813ad 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_pressed.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_pressed.png Binary files differindex ff3dfa1..146e916 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_pressed.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_forgotpassword_pressed.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_activated.png Binary files differindex d03fc06..f2b0c12 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_focused.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_focused.png Binary files differindex 76124a9..8e6f423 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_focused.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_focused.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_normal.png Binary files differindex d0680dc..7349371 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_google_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_google_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_normal.png Binary files differindex a5418d8..8cbc102 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_pressed.png Binary files differindex 7528064..d7f2fe7 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_pressed.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_handle_pressed.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_player_background.9.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_player_background.9.png Binary files differindex 6dacccf..5a09699 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_player_background.9.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_player_background.9.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_puk.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_puk.png Binary files differindex 61db8cd..9f9fe8f 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_puk.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_puk.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_activated.png Binary files differindex fd295ec..0c94819 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_focused.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_focused.png Binary files differindex a2e1b69..a735c55 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_focused.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_focused.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_normal.png Binary files differindex d791ffa..10fd8bb 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_silent_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_sim.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_sim.png Binary files differindex 3ba4331a..c98ae9e 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_sim.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_sim.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_activated.png Binary files differindex e469bf4..81d8d47 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_focused.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_focused.png Binary files differindex 89b3213..4895981 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_focused.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_focused.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_normal.png Binary files differindex 72bc5ee..8c81d56 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_soundon_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_activated.png Binary files differindex 10cbb7e..631280f 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_focusde.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_focusde.png Binary files differindex 0cf7307..f2ec475 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_focusde.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_focusde.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_normal.png Binary files differindex 304996d..5aec967 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_text_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_text_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_activated.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_activated.png Binary files differindex dbd5d48..3b391b7 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_activated.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_activated.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_normal.png b/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_normal.png Binary files differindex 153bfa9..f9aae78 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_normal.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreen_unlock_normal.png diff --git a/core/res/res/drawable-xxhdpi/ic_lockscreens_now_button.png b/core/res/res/drawable-xxhdpi/ic_lockscreens_now_button.png Binary files differindex 74ad3c8..a7306fd 100644 --- a/core/res/res/drawable-xxhdpi/ic_lockscreens_now_button.png +++ b/core/res/res/drawable-xxhdpi/ic_lockscreens_now_button.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_embed_play.png b/core/res/res/drawable-xxhdpi/ic_media_embed_play.png Binary files differindex 3bf5a82..f8d1266 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_embed_play.png +++ b/core/res/res/drawable-xxhdpi/ic_media_embed_play.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_ff.png b/core/res/res/drawable-xxhdpi/ic_media_ff.png Binary files differindex ab9e022..55e56be 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_ff.png +++ b/core/res/res/drawable-xxhdpi/ic_media_ff.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_fullscreen.png b/core/res/res/drawable-xxhdpi/ic_media_fullscreen.png Binary files differindex 5734f16..34c9cf2 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_fullscreen.png +++ b/core/res/res/drawable-xxhdpi/ic_media_fullscreen.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_next.png b/core/res/res/drawable-xxhdpi/ic_media_next.png Binary files differindex ce0a143..5a7b682 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_next.png +++ b/core/res/res/drawable-xxhdpi/ic_media_next.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_pause.png b/core/res/res/drawable-xxhdpi/ic_media_pause.png Binary files differindex 9a36b17..42c1676 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_pause.png +++ b/core/res/res/drawable-xxhdpi/ic_media_pause.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_play.png b/core/res/res/drawable-xxhdpi/ic_media_play.png Binary files differindex 41f76bb..6d6cbbe 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_play.png +++ b/core/res/res/drawable-xxhdpi/ic_media_play.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_previous.png b/core/res/res/drawable-xxhdpi/ic_media_previous.png Binary files differindex d468874..b5ed756 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_previous.png +++ b/core/res/res/drawable-xxhdpi/ic_media_previous.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_rew.png b/core/res/res/drawable-xxhdpi/ic_media_rew.png Binary files differindex 8ebb2cc..b2de4ba 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_rew.png +++ b/core/res/res/drawable-xxhdpi/ic_media_rew.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_dark.png Binary files differindex 6fad4a64..1dd9969 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_light.png Binary files differindex 865617c..d847f51 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_mtrl_alpha.png Binary files differindex 6fad4a64..1dd9969 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_disabled_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_disabled_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_dark.png Binary files differindex 44d98d5..5e6710d 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_light.png Binary files differindex b5b29b0..c6532a8 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_off_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_off_mtrl_alpha.png Binary files differindex 44d98d5..5e6710d 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_off_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_dark.png Binary files differindex c807b50..7f58df8 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_light.png Binary files differindex 3fc7188..e196f6c 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_mtrl_alpha.png Binary files differindex c807b50..7f58df8 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_0_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_0_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_dark.png Binary files differindex d54f44a..36dd1b9 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_light.png Binary files differindex 092fe8c..6188f22 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_mtrl_alpha.png Binary files differindex d54f44a..36dd1b9 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_1_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_1_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_dark.png Binary files differindex 17c1d99..53ca38c 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_light.png Binary files differindex 4fd5808..c78612b 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_mtrl_alpha.png Binary files differindex 17c1d99..53ca38c 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_2_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_2_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_dark.png Binary files differindex 906401e..f064513 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_light.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_light.png Binary files differindex d29e563..2d468e1 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_route_on_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_media_route_on_mtrl_alpha.png Binary files differindex 906401e..f064513 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_route_on_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_media_route_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_media_stop.png b/core/res/res/drawable-xxhdpi/ic_media_stop.png Binary files differindex c09989a..f91f195 100644 --- a/core/res/res/drawable-xxhdpi/ic_media_stop.png +++ b/core/res/res/drawable-xxhdpi/ic_media_stop.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_account_list.png b/core/res/res/drawable-xxhdpi/ic_menu_account_list.png Binary files differindex e072523..7833582 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_account_list.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_add.png b/core/res/res/drawable-xxhdpi/ic_menu_add.png Binary files differindex 18a83a1..bc30d47 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_add.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_add.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_agenda.png b/core/res/res/drawable-xxhdpi/ic_menu_agenda.png Binary files differindex 20f350b..d7444bd 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_agenda.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_allfriends.png b/core/res/res/drawable-xxhdpi/ic_menu_allfriends.png Binary files differindex c07a7c7..d89ff03 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_allfriends.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-xxhdpi/ic_menu_always_landscape_portrait.png Binary files differindex 2decf65..c11f607 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_always_landscape_portrait.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_archive.png b/core/res/res/drawable-xxhdpi/ic_menu_archive.png Binary files differindex a2d93b9..27ad217 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_archive.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_archive.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_attachment.png b/core/res/res/drawable-xxhdpi/ic_menu_attachment.png Binary files differindex a92f66b..981475b 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_attachment.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_back.png b/core/res/res/drawable-xxhdpi/ic_menu_back.png Binary files differindex d3191ca..d573f55 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_back.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_back.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_block.png b/core/res/res/drawable-xxhdpi/ic_menu_block.png Binary files differindex 6b8f78d..0096707 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_block.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_block.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_blocked_user.png b/core/res/res/drawable-xxhdpi/ic_menu_blocked_user.png Binary files differindex 096bfe4..a2644e4 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_blocked_user.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_btn_add.png b/core/res/res/drawable-xxhdpi/ic_menu_btn_add.png Binary files differindex 18a83a1..bc30d47 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_btn_add.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_btn_add.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_call.png b/core/res/res/drawable-xxhdpi/ic_menu_call.png Binary files differindex 3b99ebb..9ad96f6 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_call.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_call.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_camera.png b/core/res/res/drawable-xxhdpi/ic_menu_camera.png Binary files differindex e09d050..15f519a 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_camera.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_camera.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_cc_am.png b/core/res/res/drawable-xxhdpi/ic_menu_cc_am.png Binary files differindex 5f1b341..995d4c0 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_cc_am.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_cc_am.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-xxhdpi/ic_menu_chat_dashboard.png Binary files differindex 92fdd99..1db6b09 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_chat_dashboard.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_clear_playlist.png b/core/res/res/drawable-xxhdpi/ic_menu_clear_playlist.png Binary files differindex 819e839..e402b1d 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_clear_playlist.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_compass.png b/core/res/res/drawable-xxhdpi/ic_menu_compass.png Binary files differindex 068678d..b8159a0 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_compass.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_compass.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_compose.png b/core/res/res/drawable-xxhdpi/ic_menu_compose.png Binary files differindex f4ccc2d..f1d52cf 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_compose.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_compose.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_copy.png b/core/res/res/drawable-xxhdpi/ic_menu_copy.png Binary files differindex 222e083..ba6931e 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_copy.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_dark.png Binary files differindex 9dd56ef..cb35671 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_light.png Binary files differindex 91043c9..57d7223 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_copy_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_crop.png b/core/res/res/drawable-xxhdpi/ic_menu_crop.png Binary files differindex 4cc11ca..761a158 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_crop.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_crop.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_cut.png b/core/res/res/drawable-xxhdpi/ic_menu_cut.png Binary files differindex 81f45c6..beae328 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_cut.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_dark.png Binary files differindex 1bec21c..55cd0be 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_light.png Binary files differindex 0dfab90..861d06b 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_cut_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_day.png b/core/res/res/drawable-xxhdpi/ic_menu_day.png Binary files differindex 6b92894..186bb46 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_day.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_day.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_delete.png b/core/res/res/drawable-xxhdpi/ic_menu_delete.png Binary files differindex 8e9e78d..164738c 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_delete.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_delete.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_directions.png b/core/res/res/drawable-xxhdpi/ic_menu_directions.png Binary files differindex f8a50c5..3fe4e40 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_directions.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_directions.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_edit.png b/core/res/res/drawable-xxhdpi/ic_menu_edit.png Binary files differindex 2b6e967..fb8e1e9 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_edit.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_edit.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_emoticons.png b/core/res/res/drawable-xxhdpi/ic_menu_emoticons.png Binary files differindex eae564f..089e6a2 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_emoticons.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_end_conversation.png b/core/res/res/drawable-xxhdpi/ic_menu_end_conversation.png Binary files differindex dd94956..cc0aee8 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_end_conversation.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_find.png b/core/res/res/drawable-xxhdpi/ic_menu_find.png Binary files differindex 32fad0a..47db993 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_find.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_find.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_find_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_find_holo_dark.png Binary files differindex f15e47a..c7b9763 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_find_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_find_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_find_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_find_holo_light.png Binary files differindex 61f6128..d34950b 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_find_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_find_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_find_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_menu_find_mtrl_alpha.png Binary files differindex d35b337..fbc77a2 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_find_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_find_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_forward.png b/core/res/res/drawable-xxhdpi/ic_menu_forward.png Binary files differindex ca7eff9..33815cf 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_forward.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_forward.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_friendslist.png b/core/res/res/drawable-xxhdpi/ic_menu_friendslist.png Binary files differindex 920d687..121243f 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_friendslist.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_gallery.png b/core/res/res/drawable-xxhdpi/ic_menu_gallery.png Binary files differindex 3140ba9..7d2f09f 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_gallery.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_goto.png b/core/res/res/drawable-xxhdpi/ic_menu_goto.png Binary files differindex 0d2109c..1344d78 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_goto.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_goto.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_help.png b/core/res/res/drawable-xxhdpi/ic_menu_help.png Binary files differindex a16ad70..0d07ebe 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_help.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_help.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_help_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_help_holo_light.png Binary files differindex 62c9eda..bd9f3af 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_help_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_help_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_home.png b/core/res/res/drawable-xxhdpi/ic_menu_home.png Binary files differindex 23c67d0..ecc0908 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_home.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_home.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_info_details.png b/core/res/res/drawable-xxhdpi/ic_menu_info_details.png Binary files differindex 4414bea..9fa742e 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_info_details.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_invite.png b/core/res/res/drawable-xxhdpi/ic_menu_invite.png Binary files differindex 8020fd8..b5327a1 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_invite.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_invite.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_login.png b/core/res/res/drawable-xxhdpi/ic_menu_login.png Binary files differindex 2ac01e9..f9619d4 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_login.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_login.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_manage.png b/core/res/res/drawable-xxhdpi/ic_menu_manage.png Binary files differindex 733b759..9a511aa 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_manage.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_manage.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_mapmode.png b/core/res/res/drawable-xxhdpi/ic_menu_mapmode.png Binary files differindex 4d8c185..c83eddf 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_mapmode.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_mark.png b/core/res/res/drawable-xxhdpi/ic_menu_mark.png Binary files differindex 768aeb3..fca05d8 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_mark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_mark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_month.png b/core/res/res/drawable-xxhdpi/ic_menu_month.png Binary files differindex b591a23..c16a10b 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_month.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_month.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_more.png b/core/res/res/drawable-xxhdpi/ic_menu_more.png Binary files differindex 7e0bb5e..9d76a6a 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_more.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_more.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow.png b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow.png Binary files differindex c3a1390..ac4bba8 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_dark.png Binary files differindex 9cddee4..0fb4af9 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_light.png Binary files differindex 826e724..a7741ea 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_dark.png Binary files differindex 498a9ff..a1b11a2 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_light.png Binary files differindex d3d3f1a..24ecf1d 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_moreoverflow_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_my_calendar.png b/core/res/res/drawable-xxhdpi/ic_menu_my_calendar.png Binary files differindex a9285fe..82be589 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_my_calendar.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_mylocation.png b/core/res/res/drawable-xxhdpi/ic_menu_mylocation.png Binary files differindex 8ea61e1..c023ec0 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_mylocation.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_myplaces.png b/core/res/res/drawable-xxhdpi/ic_menu_myplaces.png Binary files differindex 85b3f20..508e4d2 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_myplaces.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_notifications.png b/core/res/res/drawable-xxhdpi/ic_menu_notifications.png Binary files differindex d72a365..c20b61e 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_notifications.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_paste.png b/core/res/res/drawable-xxhdpi/ic_menu_paste.png Binary files differindex 11f560c..30436ef 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_paste.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_dark.png Binary files differindex d0b1fdb..0513e88 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_light.png Binary files differindex 27d01a6..8ae959c0 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_paste_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_play_clip.png b/core/res/res/drawable-xxhdpi/ic_menu_play_clip.png Binary files differindex 5c3b1e3..1eda537 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_play_clip.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_preferences.png b/core/res/res/drawable-xxhdpi/ic_menu_preferences.png Binary files differindex b039537..1a0527d 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_preferences.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_recent_history.png b/core/res/res/drawable-xxhdpi/ic_menu_recent_history.png Binary files differindex a3640a6..97d345b 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_recent_history.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_report_image.png b/core/res/res/drawable-xxhdpi/ic_menu_report_image.png Binary files differindex b8cf01e..0914892 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_report_image.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_revert.png b/core/res/res/drawable-xxhdpi/ic_menu_revert.png Binary files differindex 009cb91..79a0ab8 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_revert.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_revert.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_rotate.png b/core/res/res/drawable-xxhdpi/ic_menu_rotate.png Binary files differindex fd6781f..5bb17e1 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_rotate.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_save.png b/core/res/res/drawable-xxhdpi/ic_menu_save.png Binary files differindex 800da9a..0bd01f6 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_save.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_save.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_search.png b/core/res/res/drawable-xxhdpi/ic_menu_search.png Binary files differindex 22bb4c8..472011f 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_search.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_search.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_search_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_search_holo_dark.png Binary files differindex 4ba4314..69cf42f 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_search_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_search_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_search_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_search_holo_light.png Binary files differindex c69d526..865b5bf 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_search_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_search_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_search_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/ic_menu_search_mtrl_alpha.png Binary files differindex 6f60bd3..cad8cbc 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_search_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_search_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_dark.png Binary files differindex 9608411..4147401 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_light.png Binary files differindex f66ab27..ebb7c3f 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_selectall_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_send.png b/core/res/res/drawable-xxhdpi/ic_menu_send.png Binary files differindex 7674d24..a051ae5 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_send.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_send.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_set_as.png b/core/res/res/drawable-xxhdpi/ic_menu_set_as.png Binary files differindex 667d723..5bc3742 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_set_as.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_settings_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_settings_holo_light.png Binary files differindex 5df7a55..332ad40 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_settings_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_settings_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_share.png b/core/res/res/drawable-xxhdpi/ic_menu_share.png Binary files differindex 7b90639..1fb7c3c 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_share.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_share.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_share_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_menu_share_holo_dark.png Binary files differindex cc0cdda..ce07e73 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_share_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_share_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_share_holo_light.png b/core/res/res/drawable-xxhdpi/ic_menu_share_holo_light.png Binary files differindex 1e21d9d..89b5fc5 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_share_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_share_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_slideshow.png b/core/res/res/drawable-xxhdpi/ic_menu_slideshow.png Binary files differindex 5db7bc7..b338467 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_slideshow.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-xxhdpi/ic_menu_sort_alphabetically.png Binary files differindex bb925f2..2a4f5f7 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_sort_alphabetically.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_sort_by_size.png b/core/res/res/drawable-xxhdpi/ic_menu_sort_by_size.png Binary files differindex da3b4a7..87aadaf 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_sort_by_size.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_star.png b/core/res/res/drawable-xxhdpi/ic_menu_star.png Binary files differindex 63ce68d..eef0545 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_star.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_star.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_start_conversation.png b/core/res/res/drawable-xxhdpi/ic_menu_start_conversation.png Binary files differindex bb26e49..37d01a0 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_start_conversation.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_stop.png b/core/res/res/drawable-xxhdpi/ic_menu_stop.png Binary files differindex 992738d..c607d38 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_stop.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_stop.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_today.png b/core/res/res/drawable-xxhdpi/ic_menu_today.png Binary files differindex b5d58d8..c4abbff 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_today.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_today.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_upload.png b/core/res/res/drawable-xxhdpi/ic_menu_upload.png Binary files differindex 931e6ed..cca0100 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_upload.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_upload.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-xxhdpi/ic_menu_upload_you_tube.png Binary files differindex fd8f409..a810fbb 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_upload_you_tube.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_view.png b/core/res/res/drawable-xxhdpi/ic_menu_view.png Binary files differindex aff6c86..0d3c322 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_view.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_view.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_week.png b/core/res/res/drawable-xxhdpi/ic_menu_week.png Binary files differindex 8da6b1e..2bc52f8 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_week.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_week.png diff --git a/core/res/res/drawable-xxhdpi/ic_menu_zoom.png b/core/res/res/drawable-xxhdpi/ic_menu_zoom.png Binary files differindex f6a5c30..5e8b757 100644 --- a/core/res/res/drawable-xxhdpi/ic_menu_zoom.png +++ b/core/res/res/drawable-xxhdpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-xxhdpi/ic_notification_cast_0.png b/core/res/res/drawable-xxhdpi/ic_notification_cast_0.png Binary files differindex 7ef0d3d..c8d76ef 100644 --- a/core/res/res/drawable-xxhdpi/ic_notification_cast_0.png +++ b/core/res/res/drawable-xxhdpi/ic_notification_cast_0.png diff --git a/core/res/res/drawable-xxhdpi/ic_notification_cast_1.png b/core/res/res/drawable-xxhdpi/ic_notification_cast_1.png Binary files differindex ed04beb..ddb3231 100644 --- a/core/res/res/drawable-xxhdpi/ic_notification_cast_1.png +++ b/core/res/res/drawable-xxhdpi/ic_notification_cast_1.png diff --git a/core/res/res/drawable-xxhdpi/ic_notification_cast_2.png b/core/res/res/drawable-xxhdpi/ic_notification_cast_2.png Binary files differindex d62d27d..a89c294 100644 --- a/core/res/res/drawable-xxhdpi/ic_notification_cast_2.png +++ b/core/res/res/drawable-xxhdpi/ic_notification_cast_2.png diff --git a/core/res/res/drawable-xxhdpi/ic_notification_ime_default.png b/core/res/res/drawable-xxhdpi/ic_notification_ime_default.png Binary files differindex 6c8222e..0526c38 100644 --- a/core/res/res/drawable-xxhdpi/ic_notification_ime_default.png +++ b/core/res/res/drawable-xxhdpi/ic_notification_ime_default.png diff --git a/core/res/res/drawable-xxhdpi/ic_notification_media_route.png b/core/res/res/drawable-xxhdpi/ic_notification_media_route.png Binary files differindex da1a627..61ab34d 100644 --- a/core/res/res/drawable-xxhdpi/ic_notification_media_route.png +++ b/core/res/res/drawable-xxhdpi/ic_notification_media_route.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_accounts.png b/core/res/res/drawable-xxhdpi/ic_perm_group_accounts.png Binary files differindex f30fcd4..60e2da9 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_accounts.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_accounts.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_app_info.png b/core/res/res/drawable-xxhdpi/ic_perm_group_app_info.png Binary files differindex 11f2638..2d9632c 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_app_info.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_app_info.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_audio_settings.png b/core/res/res/drawable-xxhdpi/ic_perm_group_audio_settings.png Binary files differindex aaf8f76..b76f3f2 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_audio_settings.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_audio_settings.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_bluetooth.png b/core/res/res/drawable-xxhdpi/ic_perm_group_bluetooth.png Binary files differindex b302cc7..42317ba 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_bluetooth.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_bluetooth.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_bookmarks.png b/core/res/res/drawable-xxhdpi/ic_perm_group_bookmarks.png Binary files differindex 75aee05..3d175dd 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_bookmarks.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_bookmarks.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_calendar.png b/core/res/res/drawable-xxhdpi/ic_perm_group_calendar.png Binary files differindex ad3629c..5a29736 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_calendar.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_calendar.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_camera.png b/core/res/res/drawable-xxhdpi/ic_perm_group_camera.png Binary files differindex e22ffb8..5223398 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_camera.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_camera.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_device_alarms.png b/core/res/res/drawable-xxhdpi/ic_perm_group_device_alarms.png Binary files differindex 0b48a24..8c428cd 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_device_alarms.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_device_alarms.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_display.png b/core/res/res/drawable-xxhdpi/ic_perm_group_display.png Binary files differindex 29e6332..fa4a2d0c 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_display.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_display.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_effects_battery.png b/core/res/res/drawable-xxhdpi/ic_perm_group_effects_battery.png Binary files differindex afe137a..87729b0 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_effects_battery.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_effects_battery.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_location.png b/core/res/res/drawable-xxhdpi/ic_perm_group_location.png Binary files differindex 7124634..0c21801 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_location.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_location.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_messages.png b/core/res/res/drawable-xxhdpi/ic_perm_group_messages.png Binary files differindex 9534dcb..bb3c99d 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_messages.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_messages.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_microphone.png b/core/res/res/drawable-xxhdpi/ic_perm_group_microphone.png Binary files differindex 723a2cf..d19fdf8 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_microphone.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_microphone.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_network.png b/core/res/res/drawable-xxhdpi/ic_perm_group_network.png Binary files differindex 703b25b..03956f9 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_network.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_network.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_personal_info.png b/core/res/res/drawable-xxhdpi/ic_perm_group_personal_info.png Binary files differindex 2428976..4260d09 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_personal_info.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_personal_info.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_phone_calls.png b/core/res/res/drawable-xxhdpi/ic_perm_group_phone_calls.png Binary files differindex 67e523c..1ff9d2d 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_phone_calls.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_phone_calls.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_screenlock.png b/core/res/res/drawable-xxhdpi/ic_perm_group_screenlock.png Binary files differindex d660740..0e67609 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_screenlock.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_screenlock.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_shortrange_network.png b/core/res/res/drawable-xxhdpi/ic_perm_group_shortrange_network.png Binary files differindex 3aae345..ce20167 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_shortrange_network.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_shortrange_network.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_social_info.png b/core/res/res/drawable-xxhdpi/ic_perm_group_social_info.png Binary files differindex a3d7b26..618bf78 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_social_info.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_social_info.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_status_bar.png b/core/res/res/drawable-xxhdpi/ic_perm_group_status_bar.png Binary files differindex e260acf..8da2b5b 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_status_bar.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_status_bar.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_storage.png b/core/res/res/drawable-xxhdpi/ic_perm_group_storage.png Binary files differindex d3937db..edce54d 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_storage.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_storage.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_sync_settings.png b/core/res/res/drawable-xxhdpi/ic_perm_group_sync_settings.png Binary files differindex 41ef06b..1058dbb 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_sync_settings.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_sync_settings.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_system_clock.png b/core/res/res/drawable-xxhdpi/ic_perm_group_system_clock.png Binary files differindex 5a89628..1bb4b00 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_system_clock.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_system_clock.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_system_tools.png b/core/res/res/drawable-xxhdpi/ic_perm_group_system_tools.png Binary files differindex cee2b05..8600cb4 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_system_tools.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_system_tools.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary.png b/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary.png Binary files differindex 8c2cd17..aca092f 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary_write.png b/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary_write.png Binary files differindex 121d6cf..88da31d 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_voicemail.png b/core/res/res/drawable-xxhdpi/ic_perm_group_voicemail.png Binary files differindex 118c140..c98f914 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_voicemail.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_voicemail.png diff --git a/core/res/res/drawable-xxhdpi/ic_perm_group_wallpapewr.png b/core/res/res/drawable-xxhdpi/ic_perm_group_wallpapewr.png Binary files differindex f95cd9d..1d81728 100644 --- a/core/res/res/drawable-xxhdpi/ic_perm_group_wallpapewr.png +++ b/core/res/res/drawable-xxhdpi/ic_perm_group_wallpapewr.png diff --git a/core/res/res/drawable-xxhdpi/ic_search_api_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_search_api_holo_dark.png Binary files differindex eb30465..5a701e1 100644 --- a/core/res/res/drawable-xxhdpi/ic_search_api_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_search_api_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_search_api_holo_light.png b/core/res/res/drawable-xxhdpi/ic_search_api_holo_light.png Binary files differindex bc14415..80d673d 100644 --- a/core/res/res/drawable-xxhdpi/ic_search_api_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_search_api_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/ic_settings.png b/core/res/res/drawable-xxhdpi/ic_settings.png Binary files differindex 452942e..ed75c74 100644 --- a/core/res/res/drawable-xxhdpi/ic_settings.png +++ b/core/res/res/drawable-xxhdpi/ic_settings.png diff --git a/core/res/res/drawable-xxhdpi/ic_sim_card_multi_24px_clr.png b/core/res/res/drawable-xxhdpi/ic_sim_card_multi_24px_clr.png Binary files differindex db26fbf..83b182f 100644 --- a/core/res/res/drawable-xxhdpi/ic_sim_card_multi_24px_clr.png +++ b/core/res/res/drawable-xxhdpi/ic_sim_card_multi_24px_clr.png diff --git a/core/res/res/drawable-xxhdpi/ic_sim_card_multi_48px_clr.png b/core/res/res/drawable-xxhdpi/ic_sim_card_multi_48px_clr.png Binary files differindex dddb0a1..aab1ea0 100644 --- a/core/res/res/drawable-xxhdpi/ic_sim_card_multi_48px_clr.png +++ b/core/res/res/drawable-xxhdpi/ic_sim_card_multi_48px_clr.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_black_16dp.png b/core/res/res/drawable-xxhdpi/ic_star_black_16dp.png Binary files differindex c636ce8..8e540e9 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_black_16dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_black_16dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_black_36dp.png b/core/res/res/drawable-xxhdpi/ic_star_black_36dp.png Binary files differindex 52d03f1..53603ce 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_black_36dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_black_36dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_black_48dp.png b/core/res/res/drawable-xxhdpi/ic_star_black_48dp.png Binary files differindex 918a395..28efb47 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_black_48dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_black_48dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_half_black_16dp.png b/core/res/res/drawable-xxhdpi/ic_star_half_black_16dp.png Binary files differindex 9b268d1..62c7f8b 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_half_black_16dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_half_black_16dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_half_black_36dp.png b/core/res/res/drawable-xxhdpi/ic_star_half_black_36dp.png Binary files differindex 167d8ae..6d04a9c 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_half_black_36dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_half_black_36dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_star_half_black_48dp.png b/core/res/res/drawable-xxhdpi/ic_star_half_black_48dp.png Binary files differindex 64e76bb..fd4d8d2 100644 --- a/core/res/res/drawable-xxhdpi/ic_star_half_black_48dp.png +++ b/core/res/res/drawable-xxhdpi/ic_star_half_black_48dp.png diff --git a/core/res/res/drawable-xxhdpi/ic_suggestions_add.png b/core/res/res/drawable-xxhdpi/ic_suggestions_add.png Binary files differindex b880d40..ce239ef 100644 --- a/core/res/res/drawable-xxhdpi/ic_suggestions_add.png +++ b/core/res/res/drawable-xxhdpi/ic_suggestions_add.png diff --git a/core/res/res/drawable-xxhdpi/ic_suggestions_delete.png b/core/res/res/drawable-xxhdpi/ic_suggestions_delete.png Binary files differindex f9e2702..a456d8f 100644 --- a/core/res/res/drawable-xxhdpi/ic_suggestions_delete.png +++ b/core/res/res/drawable-xxhdpi/ic_suggestions_delete.png diff --git a/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_dark.png b/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_dark.png Binary files differindex 813048c..bbcf2d7 100644 --- a/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_light.png b/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_light.png Binary files differindex 8addde0..28b968c 100644 --- a/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_light.png +++ b/core/res/res/drawable-xxhdpi/ic_voice_search_api_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/indicator_input_error.png b/core/res/res/drawable-xxhdpi/indicator_input_error.png Binary files differindex b5a6eaf..15208aa 100644 --- a/core/res/res/drawable-xxhdpi/indicator_input_error.png +++ b/core/res/res/drawable-xxhdpi/indicator_input_error.png diff --git a/core/res/res/drawable-xxhdpi/list_activated_holo.9.png b/core/res/res/drawable-xxhdpi/list_activated_holo.9.png Binary files differindex 9f08bb0..bff9984 100644 --- a/core/res/res/drawable-xxhdpi/list_activated_holo.9.png +++ b/core/res/res/drawable-xxhdpi/list_activated_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/list_divider_holo_dark.9.png b/core/res/res/drawable-xxhdpi/list_divider_holo_dark.9.png Binary files differindex 9678825..2ec3580 100644 --- a/core/res/res/drawable-xxhdpi/list_divider_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/list_divider_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/list_divider_holo_light.9.png b/core/res/res/drawable-xxhdpi/list_divider_holo_light.9.png Binary files differindex c69a6a3..6db5621 100644 --- a/core/res/res/drawable-xxhdpi/list_divider_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/list_divider_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/list_focused_holo.9.png b/core/res/res/drawable-xxhdpi/list_focused_holo.9.png Binary files differindex 76cad17..d3a91de 100644 --- a/core/res/res/drawable-xxhdpi/list_focused_holo.9.png +++ b/core/res/res/drawable-xxhdpi/list_focused_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/list_longpressed_holo.9.png b/core/res/res/drawable-xxhdpi/list_longpressed_holo.9.png Binary files differindex 8f436ea..bff9984 100644 --- a/core/res/res/drawable-xxhdpi/list_longpressed_holo.9.png +++ b/core/res/res/drawable-xxhdpi/list_longpressed_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/list_longpressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/list_longpressed_holo_dark.9.png Binary files differindex 6eb451f..0ea3d19 100644 --- a/core/res/res/drawable-xxhdpi/list_longpressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/list_longpressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/list_longpressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/list_longpressed_holo_light.9.png Binary files differindex 230d649..2f24449 100644 --- a/core/res/res/drawable-xxhdpi/list_longpressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/list_longpressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/list_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/list_pressed_holo_dark.9.png Binary files differindex d4952ea..64ca807 100644 --- a/core/res/res/drawable-xxhdpi/list_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/list_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/list_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/list_pressed_holo_light.9.png Binary files differindex 1352a17..f216f3b 100644 --- a/core/res/res/drawable-xxhdpi/list_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/list_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/list_section_divider_holo_dark.9.png b/core/res/res/drawable-xxhdpi/list_section_divider_holo_dark.9.png Binary files differindex 61f8915..34e7585 100644 --- a/core/res/res/drawable-xxhdpi/list_section_divider_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/list_section_divider_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/list_section_divider_holo_light.9.png b/core/res/res/drawable-xxhdpi/list_section_divider_holo_light.9.png Binary files differindex 5ae4882..dc53958 100644 --- a/core/res/res/drawable-xxhdpi/list_section_divider_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/list_section_divider_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/list_section_divider_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/list_section_divider_mtrl_alpha.9.png Binary files differindex 491fab9..70c23f6 100644 --- a/core/res/res/drawable-xxhdpi/list_section_divider_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/list_section_divider_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selected_holo_dark.9.png b/core/res/res/drawable-xxhdpi/list_selected_holo_dark.9.png Binary files differindex 922cff7..917eb26 100644 --- a/core/res/res/drawable-xxhdpi/list_selected_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/list_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selected_holo_light.9.png b/core/res/res/drawable-xxhdpi/list_selected_holo_light.9.png Binary files differindex 0f58325..25337d5 100644 --- a/core/res/res/drawable-xxhdpi/list_selected_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/list_selected_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selector_background_disabled.9.png b/core/res/res/drawable-xxhdpi/list_selector_background_disabled.9.png Binary files differindex e662b69..e7dcc48 100644 --- a/core/res/res/drawable-xxhdpi/list_selector_background_disabled.9.png +++ b/core/res/res/drawable-xxhdpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selector_background_focus.9.png b/core/res/res/drawable-xxhdpi/list_selector_background_focus.9.png Binary files differindex 5167387..e91a127 100644 --- a/core/res/res/drawable-xxhdpi/list_selector_background_focus.9.png +++ b/core/res/res/drawable-xxhdpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selector_background_longpress.9.png b/core/res/res/drawable-xxhdpi/list_selector_background_longpress.9.png Binary files differindex 4d83885..f96c319 100644 --- a/core/res/res/drawable-xxhdpi/list_selector_background_longpress.9.png +++ b/core/res/res/drawable-xxhdpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-xxhdpi/list_selector_background_pressed.9.png b/core/res/res/drawable-xxhdpi/list_selector_background_pressed.9.png Binary files differindex 2f93cbf..2f1f050 100644 --- a/core/res/res/drawable-xxhdpi/list_selector_background_pressed.9.png +++ b/core/res/res/drawable-xxhdpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-xxhdpi/lockscreen_protection_pattern.png b/core/res/res/drawable-xxhdpi/lockscreen_protection_pattern.png Binary files differindex 5521eb6..bd87616 100644 --- a/core/res/res/drawable-xxhdpi/lockscreen_protection_pattern.png +++ b/core/res/res/drawable-xxhdpi/lockscreen_protection_pattern.png diff --git a/core/res/res/drawable-xxhdpi/magnified_region_frame.9.png b/core/res/res/drawable-xxhdpi/magnified_region_frame.9.png Binary files differindex 09ee1c3..3020448 100644 --- a/core/res/res/drawable-xxhdpi/magnified_region_frame.9.png +++ b/core/res/res/drawable-xxhdpi/magnified_region_frame.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_dark.9.png b/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_dark.9.png Binary files differindex e87e372..75e2540 100644 --- a/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_light.9.png b/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_light.9.png Binary files differindex 6ca7814..38e5ddb 100644 --- a/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/menu_dropdown_panel_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_dark.9.png b/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_dark.9.png Binary files differindex c933eab..2d644d0 100644 --- a/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_light.9.png b/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_light.9.png Binary files differindex 112f939..52d3908 100644 --- a/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/menu_hardkey_panel_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_dark.9.png b/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_dark.9.png Binary files differindex 90489bc..ca3c7f4 100644 --- a/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_light.9.png b/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_light.9.png Binary files differindex 472c3d3..09911c5 100644 --- a/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/menu_popup_panel_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_dark.png Binary files differindex 6f0a88c..e8ff1dc 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_light.png Binary files differindex ea965c5..b1e417f 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_dark.png Binary files differindex 822df62..fc8e613 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_light.png Binary files differindex b17dd91..9172a8d 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_dark.png Binary files differindex b558db7..dcd9dd3 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_light.png Binary files differindex 5121bc0..3c0e05e 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_dark.png Binary files differindex 166e08c..e95c0ff 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_light.png Binary files differindex 166e08c..e95c0ff 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_longpressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_dark.png Binary files differindex 3f2e813..bf1c19c 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_light.png Binary files differindex 9026c12..9155480 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_dark.png Binary files differindex 2a24398..cbe76f1 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_light.png Binary files differindex 2a24398..cbe76f1 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_down_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_selection_divider.9.png b/core/res/res/drawable-xxhdpi/numberpicker_selection_divider.9.png Binary files differindex b7a9940..5055897 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_selection_divider.9.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_selection_divider.9.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_dark.png Binary files differindex a4eb1a5..0106e93 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_light.png Binary files differindex b43b0c2..0088b1d 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_dark.png Binary files differindex 81b68fc..5411f87 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_light.png Binary files differindex 91b2f2f..7af240a 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_disabled_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_dark.png Binary files differindex 82da07e..7e1bede 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_light.png Binary files differindex d7c2f34..c2f3688 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_focused_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_dark.png Binary files differindex 1bc2bf1..5724d10 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_light.png Binary files differindex 1bc2bf1..5724d10 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_longpressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_dark.png Binary files differindex 0fd9b05..fe224cf 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_light.png Binary files differindex 9f6a470..c169f95 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_normal_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_dark.png b/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_dark.png Binary files differindex 35905ea..8f3ca26 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_light.png b/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_light.png Binary files differindex 35905ea..8f3ca26 100644 --- a/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_light.png +++ b/core/res/res/drawable-xxhdpi/numberpicker_up_pressed_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/panel_bg_holo_dark.9.png b/core/res/res/drawable-xxhdpi/panel_bg_holo_dark.9.png Binary files differindex 8993469..418ed5b 100644 --- a/core/res/res/drawable-xxhdpi/panel_bg_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/panel_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/panel_bg_holo_light.9.png b/core/res/res/drawable-xxhdpi/panel_bg_holo_light.9.png Binary files differindex 38ec76c..1878264 100644 --- a/core/res/res/drawable-xxhdpi/panel_bg_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/panel_bg_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_accessibility_features.png b/core/res/res/drawable-xxhdpi/perm_group_accessibility_features.png Binary files differindex 5a63b68..3416984 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_accessibility_features.png +++ b/core/res/res/drawable-xxhdpi/perm_group_accessibility_features.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_accounts.png b/core/res/res/drawable-xxhdpi/perm_group_accounts.png Binary files differindex 2fc3baa..1ae74d4 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_accounts.png +++ b/core/res/res/drawable-xxhdpi/perm_group_accounts.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_affects_battery.png b/core/res/res/drawable-xxhdpi/perm_group_affects_battery.png Binary files differindex 63561be..8145183 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_affects_battery.png +++ b/core/res/res/drawable-xxhdpi/perm_group_affects_battery.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_app_info.png b/core/res/res/drawable-xxhdpi/perm_group_app_info.png Binary files differindex fc407f3..a32cd09 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_app_info.png +++ b/core/res/res/drawable-xxhdpi/perm_group_app_info.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_audio_settings.png b/core/res/res/drawable-xxhdpi/perm_group_audio_settings.png Binary files differindex 23b5d97..550e9f4 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_audio_settings.png +++ b/core/res/res/drawable-xxhdpi/perm_group_audio_settings.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_bluetooth.png b/core/res/res/drawable-xxhdpi/perm_group_bluetooth.png Binary files differindex 2dc9b23..927aeb4 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_bluetooth.png +++ b/core/res/res/drawable-xxhdpi/perm_group_bluetooth.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_bookmarks.png b/core/res/res/drawable-xxhdpi/perm_group_bookmarks.png Binary files differindex 883bad3..b01418d 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_bookmarks.png +++ b/core/res/res/drawable-xxhdpi/perm_group_bookmarks.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_calendar.png b/core/res/res/drawable-xxhdpi/perm_group_calendar.png Binary files differindex 08f0474..9e66597 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_calendar.png +++ b/core/res/res/drawable-xxhdpi/perm_group_calendar.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_camera.png b/core/res/res/drawable-xxhdpi/perm_group_camera.png Binary files differindex 88a3d0e..5d1bcf5 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_camera.png +++ b/core/res/res/drawable-xxhdpi/perm_group_camera.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_device_alarms.png b/core/res/res/drawable-xxhdpi/perm_group_device_alarms.png Binary files differindex 12ab22f..591a8b6 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_device_alarms.png +++ b/core/res/res/drawable-xxhdpi/perm_group_device_alarms.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_display.png b/core/res/res/drawable-xxhdpi/perm_group_display.png Binary files differindex 44e695e..a1ff7a8 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_display.png +++ b/core/res/res/drawable-xxhdpi/perm_group_display.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_location.png b/core/res/res/drawable-xxhdpi/perm_group_location.png Binary files differindex 3a83d8b..c4de2a6 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_location.png +++ b/core/res/res/drawable-xxhdpi/perm_group_location.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_messages.png b/core/res/res/drawable-xxhdpi/perm_group_messages.png Binary files differindex 9e2ef73..35b56b4 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_messages.png +++ b/core/res/res/drawable-xxhdpi/perm_group_messages.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_microphone.png b/core/res/res/drawable-xxhdpi/perm_group_microphone.png Binary files differindex 65a6bf2..4844076 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_microphone.png +++ b/core/res/res/drawable-xxhdpi/perm_group_microphone.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_network.png b/core/res/res/drawable-xxhdpi/perm_group_network.png Binary files differindex 4bdb1ba..807a6c3 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_network.png +++ b/core/res/res/drawable-xxhdpi/perm_group_network.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_personal_info.png b/core/res/res/drawable-xxhdpi/perm_group_personal_info.png Binary files differindex c81a2a5..d3fa8fc 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_personal_info.png +++ b/core/res/res/drawable-xxhdpi/perm_group_personal_info.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_phone_calls.png b/core/res/res/drawable-xxhdpi/perm_group_phone_calls.png Binary files differindex e4daafb..eeab9a0 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_phone_calls.png +++ b/core/res/res/drawable-xxhdpi/perm_group_phone_calls.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_screenlock.png b/core/res/res/drawable-xxhdpi/perm_group_screenlock.png Binary files differindex 3097363..5e0f318 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_screenlock.png +++ b/core/res/res/drawable-xxhdpi/perm_group_screenlock.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_shortrange_network.png b/core/res/res/drawable-xxhdpi/perm_group_shortrange_network.png Binary files differindex 6b21718..036da30 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_shortrange_network.png +++ b/core/res/res/drawable-xxhdpi/perm_group_shortrange_network.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_social_info.png b/core/res/res/drawable-xxhdpi/perm_group_social_info.png Binary files differindex 076fd19..9aeb15d 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_social_info.png +++ b/core/res/res/drawable-xxhdpi/perm_group_social_info.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_status_bar.png b/core/res/res/drawable-xxhdpi/perm_group_status_bar.png Binary files differindex eda264b..aaad7c0 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_status_bar.png +++ b/core/res/res/drawable-xxhdpi/perm_group_status_bar.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_storage.png b/core/res/res/drawable-xxhdpi/perm_group_storage.png Binary files differindex 837211e..5294582 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_storage.png +++ b/core/res/res/drawable-xxhdpi/perm_group_storage.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_sync_settings.png b/core/res/res/drawable-xxhdpi/perm_group_sync_settings.png Binary files differindex 15ab0fc..7f8e28e 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_sync_settings.png +++ b/core/res/res/drawable-xxhdpi/perm_group_sync_settings.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_system_clock.png b/core/res/res/drawable-xxhdpi/perm_group_system_clock.png Binary files differindex 9149497..d6ee7fa 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_system_clock.png +++ b/core/res/res/drawable-xxhdpi/perm_group_system_clock.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_system_tools.png b/core/res/res/drawable-xxhdpi/perm_group_system_tools.png Binary files differindex 0332e40..d02790d 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_system_tools.png +++ b/core/res/res/drawable-xxhdpi/perm_group_system_tools.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_user_dictionary.png b/core/res/res/drawable-xxhdpi/perm_group_user_dictionary.png Binary files differindex 5b6ea3b..4b39e06 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_user_dictionary.png +++ b/core/res/res/drawable-xxhdpi/perm_group_user_dictionary.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_user_dictionary_write.png b/core/res/res/drawable-xxhdpi/perm_group_user_dictionary_write.png Binary files differindex d92e719..a2db06e 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-xxhdpi/perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_voicemail.png b/core/res/res/drawable-xxhdpi/perm_group_voicemail.png Binary files differindex 8f08516..1227f7d 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_voicemail.png +++ b/core/res/res/drawable-xxhdpi/perm_group_voicemail.png diff --git a/core/res/res/drawable-xxhdpi/perm_group_wallpaper.png b/core/res/res/drawable-xxhdpi/perm_group_wallpaper.png Binary files differindex 9c87e9a..83e4fe0 100644 --- a/core/res/res/drawable-xxhdpi/perm_group_wallpaper.png +++ b/core/res/res/drawable-xxhdpi/perm_group_wallpaper.png diff --git a/core/res/res/drawable-xxhdpi/pointer_arrow.png b/core/res/res/drawable-xxhdpi/pointer_arrow.png Binary files differindex 65e0320..0074ab2 100644 --- a/core/res/res/drawable-xxhdpi/pointer_arrow.png +++ b/core/res/res/drawable-xxhdpi/pointer_arrow.png diff --git a/core/res/res/drawable-xxhdpi/popup_background_mtrl_mult.9.png b/core/res/res/drawable-xxhdpi/popup_background_mtrl_mult.9.png Binary files differindex fb7d715..139a5a5 100644 --- a/core/res/res/drawable-xxhdpi/popup_background_mtrl_mult.9.png +++ b/core/res/res/drawable-xxhdpi/popup_background_mtrl_mult.9.png diff --git a/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_dark_am.9.png Binary files differindex 251660a..1cc2662 100644 --- a/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_light_am.9.png Binary files differindex 12b1e64..414fae2 100644 --- a/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/popup_inline_error_above_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/popup_inline_error_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/popup_inline_error_holo_dark_am.9.png Binary files differindex 5d389af..af28d78 100644 --- a/core/res/res/drawable-xxhdpi/popup_inline_error_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/popup_inline_error_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/popup_inline_error_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/popup_inline_error_holo_light_am.9.png Binary files differindex 5e3c01b..2240cd1 100644 --- a/core/res/res/drawable-xxhdpi/popup_inline_error_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/popup_inline_error_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/presence_audio_away.png b/core/res/res/drawable-xxhdpi/presence_audio_away.png Binary files differindex e8e2b1a..a4e5eda 100644 --- a/core/res/res/drawable-xxhdpi/presence_audio_away.png +++ b/core/res/res/drawable-xxhdpi/presence_audio_away.png diff --git a/core/res/res/drawable-xxhdpi/presence_audio_busy.png b/core/res/res/drawable-xxhdpi/presence_audio_busy.png Binary files differindex 824b5be..3a54540 100644 --- a/core/res/res/drawable-xxhdpi/presence_audio_busy.png +++ b/core/res/res/drawable-xxhdpi/presence_audio_busy.png diff --git a/core/res/res/drawable-xxhdpi/presence_audio_online.png b/core/res/res/drawable-xxhdpi/presence_audio_online.png Binary files differindex 6b3cd2d..456fd00 100644 --- a/core/res/res/drawable-xxhdpi/presence_audio_online.png +++ b/core/res/res/drawable-xxhdpi/presence_audio_online.png diff --git a/core/res/res/drawable-xxhdpi/presence_away.png b/core/res/res/drawable-xxhdpi/presence_away.png Binary files differindex 217f4e9..2ea3a5b 100644 --- a/core/res/res/drawable-xxhdpi/presence_away.png +++ b/core/res/res/drawable-xxhdpi/presence_away.png diff --git a/core/res/res/drawable-xxhdpi/presence_busy.png b/core/res/res/drawable-xxhdpi/presence_busy.png Binary files differindex 9416720..51b68d7 100644 --- a/core/res/res/drawable-xxhdpi/presence_busy.png +++ b/core/res/res/drawable-xxhdpi/presence_busy.png diff --git a/core/res/res/drawable-xxhdpi/presence_invisible.png b/core/res/res/drawable-xxhdpi/presence_invisible.png Binary files differindex 72ada9c..d917708 100644 --- a/core/res/res/drawable-xxhdpi/presence_invisible.png +++ b/core/res/res/drawable-xxhdpi/presence_invisible.png diff --git a/core/res/res/drawable-xxhdpi/presence_offline.png b/core/res/res/drawable-xxhdpi/presence_offline.png Binary files differindex bc71d3a..74875ae 100644 --- a/core/res/res/drawable-xxhdpi/presence_offline.png +++ b/core/res/res/drawable-xxhdpi/presence_offline.png diff --git a/core/res/res/drawable-xxhdpi/presence_online.png b/core/res/res/drawable-xxhdpi/presence_online.png Binary files differindex 501a75d..5ca7fa1 100644 --- a/core/res/res/drawable-xxhdpi/presence_online.png +++ b/core/res/res/drawable-xxhdpi/presence_online.png diff --git a/core/res/res/drawable-xxhdpi/presence_video_away.png b/core/res/res/drawable-xxhdpi/presence_video_away.png Binary files differindex 1379bc0..eb04315 100644 --- a/core/res/res/drawable-xxhdpi/presence_video_away.png +++ b/core/res/res/drawable-xxhdpi/presence_video_away.png diff --git a/core/res/res/drawable-xxhdpi/presence_video_busy.png b/core/res/res/drawable-xxhdpi/presence_video_busy.png Binary files differindex d90297c..5d6e173 100644 --- a/core/res/res/drawable-xxhdpi/presence_video_busy.png +++ b/core/res/res/drawable-xxhdpi/presence_video_busy.png diff --git a/core/res/res/drawable-xxhdpi/presence_video_online.png b/core/res/res/drawable-xxhdpi/presence_video_online.png Binary files differindex 4186408..b79918a 100644 --- a/core/res/res/drawable-xxhdpi/presence_video_online.png +++ b/core/res/res/drawable-xxhdpi/presence_video_online.png diff --git a/core/res/res/drawable-xxhdpi/progress_bg_holo_dark.9.png b/core/res/res/drawable-xxhdpi/progress_bg_holo_dark.9.png Binary files differindex 2e8c2e5..d027f53 100644 --- a/core/res/res/drawable-xxhdpi/progress_bg_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/progress_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/progress_bg_holo_light.9.png b/core/res/res/drawable-xxhdpi/progress_bg_holo_light.9.png Binary files differindex fb146c3..230b8d6 100644 --- a/core/res/res/drawable-xxhdpi/progress_bg_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/progress_bg_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/progress_primary_holo_dark.9.png b/core/res/res/drawable-xxhdpi/progress_primary_holo_dark.9.png Binary files differindex 36078f9..85106e4 100644 --- a/core/res/res/drawable-xxhdpi/progress_primary_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/progress_primary_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/progress_primary_holo_light.9.png b/core/res/res/drawable-xxhdpi/progress_primary_holo_light.9.png Binary files differindex add4d38..75a5064 100644 --- a/core/res/res/drawable-xxhdpi/progress_primary_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/progress_primary_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/progress_secondary_holo_dark.9.png b/core/res/res/drawable-xxhdpi/progress_secondary_holo_dark.9.png Binary files differindex 90b56fc..0498aa5 100644 --- a/core/res/res/drawable-xxhdpi/progress_secondary_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/progress_secondary_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/progress_secondary_holo_light.9.png b/core/res/res/drawable-xxhdpi/progress_secondary_holo_light.9.png Binary files differindex 28b53dd..46204c5 100644 --- a/core/res/res/drawable-xxhdpi/progress_secondary_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/progress_secondary_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo1.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo1.png Binary files differindex e751345..efd4196 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo1.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo1.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo2.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo2.png Binary files differindex 663965f..bce0c2f 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo2.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo2.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo3.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo3.png Binary files differindex 3574c9a..9d5fd20 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo3.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo3.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo4.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo4.png Binary files differindex a289d33..18b7182 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo4.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo4.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo5.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo5.png Binary files differindex 6fa2fbb..6e2f23c 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo5.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo5.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo6.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo6.png Binary files differindex 0117543..1caa906 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo6.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo6.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo7.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo7.png Binary files differindex 681fe1d..863a1aa 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo7.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo7.png diff --git a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo8.png b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo8.png Binary files differindex bbc3999..370939b 100644 --- a/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo8.png +++ b/core/res/res/drawable-xxhdpi/progressbar_indeterminate_holo8.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_dark_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_dark_am.9.png Binary files differindex 8eda0f1..b89d5b1 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_light_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_light_am.9.png Binary files differindex c7cd27a..2450c61 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_focused_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_dark_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_dark_am.9.png Binary files differindex 09c8cbd..dab00a5 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_light_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_light_am.9.png Binary files differindex d0a5a71..f814d85 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_normal_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png Binary files differindex 432436f..c999d6a 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_light_am.9.png b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_light_am.9.png Binary files differindex b18aed6..84225e4 100644 --- a/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/quickcontact_badge_overlay_pressed_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_dark.png Binary files differindex ede3db5..cc61ae1 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_light.png Binary files differindex 906dbe1..a36b59f 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_half_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_dark.png Binary files differindex cff58d3..168e2ed 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_light.png Binary files differindex 7e1a770..c9ec0a3 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_dark.png Binary files differindex ab3f4d3..0f7e348 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_light.png Binary files differindex ab7a496..c90c8e7 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_big_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_dark.png Binary files differindex 8bb8aa0..fbe0266 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_light.png Binary files differindex 44e6696..f7bbb8a 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_half_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_dark.png Binary files differindex 94ec824..08076ac 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_light.png Binary files differindex 0a12fc9..869f0f1 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_dark.png Binary files differindex 4894658..0a6ac46 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_light.png Binary files differindex 4bb8a73..fa39236 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_med_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_dark.png Binary files differindex 9e215d7..ebe2fd0 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_light.png Binary files differindex e6ce596..a970d1d 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_half_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_dark.png Binary files differindex 2a9fc21..2e7fb9c 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_light.png Binary files differindex 42cad5e..dc1c198 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_off_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_dark.png b/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_dark.png Binary files differindex 0612b25..ca6e098 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_dark.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_dark.png diff --git a/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_light.png b/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_light.png Binary files differindex aaa3d0f..883a8fd 100644 --- a/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_light.png +++ b/core/res/res/drawable-xxhdpi/rate_star_small_on_holo_light.png diff --git a/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_dark.9.png b/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_dark.9.png Binary files differindex 66b3e9d..f9b77f0 100644 --- a/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_light.9.png b/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_light.9.png Binary files differindex 5fbd723..74e5caf 100644 --- a/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/scrollbar_handle_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_disabled_holo.png b/core/res/res/drawable-xxhdpi/scrubber_control_disabled_holo.png Binary files differindex 74b7431..b96b27e 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_disabled_holo.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_disabled_holo.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_focused_holo.png b/core/res/res/drawable-xxhdpi/scrubber_control_focused_holo.png Binary files differindex 2945fbd..d84c785 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_focused_holo.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_focused_holo.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_000.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_000.png Binary files differindex 46aa533..38f0079 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_000.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_001.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_001.png Binary files differindex a749469..c7a7c09 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_001.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_002.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_002.png Binary files differindex ef43f00..62b1b99 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_002.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_003.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_003.png Binary files differindex eebddc3..538fb11 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_003.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_004.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_004.png Binary files differindex 44b654d..90ddad0 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_004.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_005.png b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_005.png Binary files differindex 6e768c1..5839358 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_005.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_from_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_normal_holo.png b/core/res/res/drawable-xxhdpi/scrubber_control_normal_holo.png Binary files differindex 9dde7da..00ade29 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_normal_holo.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_normal_holo.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_off_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/scrubber_control_off_mtrl_alpha.png Binary files differindex a2b5716..5606035 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_off_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_off_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_off_pressed_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/scrubber_control_off_pressed_mtrl_alpha.png Binary files differindex 0319bd8..374271f 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_off_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_off_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_on_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/scrubber_control_on_mtrl_alpha.png Binary files differindex caabc2c..03824f0 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_on_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_on_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_on_pressed_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/scrubber_control_on_pressed_mtrl_alpha.png Binary files differindex b46ee1c..96ca66d 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_on_pressed_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_on_pressed_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_pressed_holo.png b/core/res/res/drawable-xxhdpi/scrubber_control_pressed_holo.png Binary files differindex 8afbb6d..4bd9ec4 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_pressed_holo.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_pressed_holo.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_000.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_000.png Binary files differindex 2ac6dae..adffc14 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_000.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_001.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_001.png Binary files differindex 91c49ce..7c37233 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_001.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_002.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_002.png Binary files differindex 4b4bd1f..65f9189 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_002.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_003.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_003.png Binary files differindex 637e596..54da412 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_003.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_004.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_004.png Binary files differindex 42d4d2a..c804c1f 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_004.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_005.png b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_005.png Binary files differindex 995d1b2..f3d16d5 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_005.png +++ b/core/res/res/drawable-xxhdpi/scrubber_control_to_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_primary_holo.9.png b/core/res/res/drawable-xxhdpi/scrubber_primary_holo.9.png Binary files differindex 209df49..aa09794 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_primary_holo.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_primary_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_primary_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/scrubber_primary_mtrl_alpha.9.png Binary files differindex 6a82af5..dc3241c 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_primary_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_primary_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_secondary_holo.9.png b/core/res/res/drawable-xxhdpi/scrubber_secondary_holo.9.png Binary files differindex 3dbcc48..83bf550 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_secondary_holo.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_secondary_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_track_holo_dark.9.png b/core/res/res/drawable-xxhdpi/scrubber_track_holo_dark.9.png Binary files differindex 4014860..df2c3f5 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_track_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_track_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_track_holo_light.9.png b/core/res/res/drawable-xxhdpi/scrubber_track_holo_light.9.png Binary files differindex 1a6f577..2e2196d 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_track_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_track_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/scrubber_track_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/scrubber_track_mtrl_alpha.9.png Binary files differindex c3791fc..ef2c495 100644 --- a/core/res/res/drawable-xxhdpi/scrubber_track_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/scrubber_track_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_16_inner_holo.png b/core/res/res/drawable-xxhdpi/spinner_16_inner_holo.png Binary files differindex 30f0db3..c362066 100644 --- a/core/res/res/drawable-xxhdpi/spinner_16_inner_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_16_inner_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_16_outer_holo.png b/core/res/res/drawable-xxhdpi/spinner_16_outer_holo.png Binary files differindex d0729da..9170899 100644 --- a/core/res/res/drawable-xxhdpi/spinner_16_outer_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_16_outer_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_48_inner_holo.png b/core/res/res/drawable-xxhdpi/spinner_48_inner_holo.png Binary files differindex eca7a46..5a296a4 100644 --- a/core/res/res/drawable-xxhdpi/spinner_48_inner_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_48_inner_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_48_outer_holo.png b/core/res/res/drawable-xxhdpi/spinner_48_outer_holo.png Binary files differindex 3511d52..39f0a50 100644 --- a/core/res/res/drawable-xxhdpi/spinner_48_outer_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_48_outer_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_76_inner_holo.png b/core/res/res/drawable-xxhdpi/spinner_76_inner_holo.png Binary files differindex 21ad59f..f492076 100644 --- a/core/res/res/drawable-xxhdpi/spinner_76_inner_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_76_inner_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_76_outer_holo.png b/core/res/res/drawable-xxhdpi/spinner_76_outer_holo.png Binary files differindex 471d78c..500d884 100644 --- a/core/res/res/drawable-xxhdpi/spinner_76_outer_holo.png +++ b/core/res/res/drawable-xxhdpi/spinner_76_outer_holo.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_dark.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_dark.9.png Binary files differindex 6be9e6b..8579313 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_light.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_light.9.png Binary files differindex 0b9a077..8579313 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_activated_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_dark_am.9.png Binary files differindex 71075a7..b7ba365 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_light_am.9.png Binary files differindex 6aabc3c..8d90750 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_default_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_dark_am.9.png Binary files differindex a2045e1..8048487 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_light_am.9.png Binary files differindex 1f4d161..0ee6f17 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_dark_am.9.png Binary files differindex 85b0634..9fe3e24 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_light_am.9.png Binary files differindex 52e29fc..fb9d899 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_dark_am.9.png Binary files differindex e78bfd0..dacab2f 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_light_am.9.png Binary files differindex 66c80a2..dba25d9 100644 --- a/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_ab_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_activated_holo_dark.9.png b/core/res/res/drawable-xxhdpi/spinner_activated_holo_dark.9.png Binary files differindex b1a39e1..a512804 100644 --- a/core/res/res/drawable-xxhdpi/spinner_activated_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_activated_holo_light.9.png b/core/res/res/drawable-xxhdpi/spinner_activated_holo_light.9.png Binary files differindex 052f551..a512804 100644 --- a/core/res/res/drawable-xxhdpi/spinner_activated_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_activated_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_default_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_default_holo_dark_am.9.png Binary files differindex b0020f2..404712b 100644 --- a/core/res/res/drawable-xxhdpi/spinner_default_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_default_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_default_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_default_holo_light_am.9.png Binary files differindex 32139ce..3278e89 100644 --- a/core/res/res/drawable-xxhdpi/spinner_default_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_default_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_disabled_holo.9.png b/core/res/res/drawable-xxhdpi/spinner_disabled_holo.9.png Binary files differindex f666309..f2ca61f 100644 --- a/core/res/res/drawable-xxhdpi/spinner_disabled_holo.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_disabled_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_disabled_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_disabled_holo_dark_am.9.png Binary files differindex 7c12096..3ee8111 100644 --- a/core/res/res/drawable-xxhdpi/spinner_disabled_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_disabled_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_disabled_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_disabled_holo_light_am.9.png Binary files differindex 4cef095..6c1695b 100644 --- a/core/res/res/drawable-xxhdpi/spinner_disabled_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_disabled_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_focused_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_focused_holo_dark_am.9.png Binary files differindex 5ab38fd..35d8b4d 100644 --- a/core/res/res/drawable-xxhdpi/spinner_focused_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_focused_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_focused_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_focused_holo_light_am.9.png Binary files differindex c40ce17..d732c99 100644 --- a/core/res/res/drawable-xxhdpi/spinner_focused_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_focused_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_normal_holo.9.png b/core/res/res/drawable-xxhdpi/spinner_normal_holo.9.png Binary files differindex 48a23f6..041e025 100644 --- a/core/res/res/drawable-xxhdpi/spinner_normal_holo.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_normal_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_pressed_holo_dark_am.9.png b/core/res/res/drawable-xxhdpi/spinner_pressed_holo_dark_am.9.png Binary files differindex e2212a5..13d43b7 100644 --- a/core/res/res/drawable-xxhdpi/spinner_pressed_holo_dark_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_pressed_holo_dark_am.9.png diff --git a/core/res/res/drawable-xxhdpi/spinner_pressed_holo_light_am.9.png b/core/res/res/drawable-xxhdpi/spinner_pressed_holo_light_am.9.png Binary files differindex 881ce7e..879027b 100644 --- a/core/res/res/drawable-xxhdpi/spinner_pressed_holo_light_am.9.png +++ b/core/res/res/drawable-xxhdpi/spinner_pressed_holo_light_am.9.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_car_mode.png b/core/res/res/drawable-xxhdpi/stat_notify_car_mode.png Binary files differindex b01e00f..c454465 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_car_mode.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_chat.png b/core/res/res/drawable-xxhdpi/stat_notify_chat.png Binary files differindex 960fdd4..3947011 100644 --- a/core/res/res/drawable-xxhdpi/stat_notify_chat.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_chat.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_disk_full.png b/core/res/res/drawable-xxhdpi/stat_notify_disk_full.png Binary files differindex cd790a6..a1019ae 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_disk_full.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_email_generic.png b/core/res/res/drawable-xxhdpi/stat_notify_email_generic.png Binary files differindex ba98c67..9d125ab 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_email_generic.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_error.png b/core/res/res/drawable-xxhdpi/stat_notify_error.png Binary files differindex fa5f7a3..a35bb29 100644 --- a/core/res/res/drawable-xxhdpi/stat_notify_error.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_error.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_gmail.png b/core/res/res/drawable-xxhdpi/stat_notify_gmail.png Binary files differindex 4640e88..edd4a25 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_gmail.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_missed_call.png b/core/res/res/drawable-xxhdpi/stat_notify_missed_call.png Binary files differindex 904df3b..6e26653 100644 --- a/core/res/res/drawable-xxhdpi/stat_notify_missed_call.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_more.png b/core/res/res/drawable-xxhdpi/stat_notify_more.png Binary files differindex f3a46ec..13c6302 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_more.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_more.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_rssi_in_range.png b/core/res/res/drawable-xxhdpi/stat_notify_rssi_in_range.png Binary files differindex 86c34ed..c896aec 100644 --- a/core/res/res/drawable-xxhdpi/stat_notify_rssi_in_range.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_rssi_in_range.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sdcard.png b/core/res/res/drawable-xxhdpi/stat_notify_sdcard.png Binary files differindex 87e9d20..7f0a706 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sdcard.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-xxhdpi/stat_notify_sdcard_prepare.png Binary files differindex 735ccc9..3811859 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sdcard_prepare.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-xxhdpi/stat_notify_sdcard_usb.png Binary files differindex e7512ed..43cdc8c 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sdcard_usb.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-xxhdpi/stat_notify_sim_toolkit.png Binary files differindex d1cf3d7..954c0bb 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sim_toolkit.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sync.png b/core/res/res/drawable-xxhdpi/stat_notify_sync.png Binary files differindex 2a36702..ef5cb89 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sync.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sync.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sync_anim0.png b/core/res/res/drawable-xxhdpi/stat_notify_sync_anim0.png Binary files differindex 2a36702..ef5cb89 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sync_anim0.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_sync_error.png b/core/res/res/drawable-xxhdpi/stat_notify_sync_error.png Binary files differindex db2f0e2..be26531 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_sync_error.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-xxhdpi/stat_notify_voicemail.png b/core/res/res/drawable-xxhdpi/stat_notify_voicemail.png Binary files differindex 71dfe68..cd59ce5 100755 --- a/core/res/res/drawable-xxhdpi/stat_notify_voicemail.png +++ b/core/res/res/drawable-xxhdpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_certificate_info.png b/core/res/res/drawable-xxhdpi/stat_sys_certificate_info.png Binary files differindex d96ef64..68a6ea6 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_certificate_info.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_certificate_info.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-xxhdpi/stat_sys_data_bluetooth.png Binary files differindex 6dd4d7f..b94d366 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_data_bluetooth.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_data_usb.png b/core/res/res/drawable-xxhdpi/stat_sys_data_usb.png Binary files differindex 7fcf5cd..f3dda21 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_data_usb.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_3_fully.png b/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_3_fully.png Binary files differindex aeccbd6..edcd4c4 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_3_fully.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_3_fully.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_disconnected.png b/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_disconnected.png Binary files differindex 3cdc45d..e7dad3f 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_disconnected.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_data_wimax_signal_disconnected.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim0.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim0.png Binary files differindex 836db12..962df9a 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim0.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim1.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim1.png Binary files differindex 5bc3add4..16c4c32 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim1.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim2.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim2.png Binary files differindex 962c450..6302362 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim2.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim3.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim3.png Binary files differindex e1d0d55..5dd9c1f 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim3.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim4.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim4.png Binary files differindex 84420de..f0502b2 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim4.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_download_anim5.png b/core/res/res/drawable-xxhdpi/stat_sys_download_anim5.png Binary files differindex b495943..837fd9a 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_download_anim5.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_gps_on.png b/core/res/res/drawable-xxhdpi/stat_sys_gps_on.png Binary files differindex 063f614..b9498cb 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_gps_on.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_phone_call.png b/core/res/res/drawable-xxhdpi/stat_sys_phone_call.png Binary files differindex 9348384..3f7a37d 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_phone_call.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-xxhdpi/stat_sys_tether_bluetooth.png Binary files differindex 25acfbb..433b665 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_tether_bluetooth.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_tether_general.png b/core/res/res/drawable-xxhdpi/stat_sys_tether_general.png Binary files differindex 5c65601..15a4a5c 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_tether_general.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_tether_usb.png b/core/res/res/drawable-xxhdpi/stat_sys_tether_usb.png Binary files differindex 28b4b54..975f859 100644 --- a/core/res/res/drawable-xxhdpi/stat_sys_tether_usb.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_throttled.png b/core/res/res/drawable-xxhdpi/stat_sys_throttled.png Binary files differindex c2189e4..bf9f144 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_throttled.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim0.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim0.png Binary files differindex 9e63fca..c2d1785 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim0.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim1.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim1.png Binary files differindex 39dd3b8..7b1a402 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim1.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim2.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim2.png Binary files differindex b828430..e339378 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim2.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim3.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim3.png Binary files differindex 7834460..419547c 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim3.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim4.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim4.png Binary files differindex 34c6f27..5dd9b14 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim4.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim5.png b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim5.png Binary files differindex 1270acf..0d922bc 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_upload_anim5.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-xxhdpi/stat_sys_warning.png b/core/res/res/drawable-xxhdpi/stat_sys_warning.png Binary files differindex 907de0f..794860c 100755 --- a/core/res/res/drawable-xxhdpi/stat_sys_warning.png +++ b/core/res/res/drawable-xxhdpi/stat_sys_warning.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_dark.9.png Binary files differindex e80453e..b8a6c8e 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_light.9.png Binary files differindex 0ec08ee..89c128b 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_dark.9.png Binary files differindex 13f852d..834d65a 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_light.9.png Binary files differindex e7767b8..36dd516 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_bg_holo_dark.9.png Binary files differindex d1133bf..b2a36bb 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_bg_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_bg_holo_light.9.png Binary files differindex 4532035..35ab3a4 100644 --- a/core/res/res/drawable-xxhdpi/switch_bg_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_bg_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_dark.9.png Binary files differindex 2b3e151..c7d083e 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_light.9.png Binary files differindex 77c08a5..cc3dc66 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_activated_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_dark.9.png Binary files differindex 5f36c04..6dbfb24 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_light.9.png Binary files differindex 7c16463..85c126a 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_holo_dark.9.png Binary files differindex f14f0d6..dde9c00 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_holo_light.9.png Binary files differindex 9920f54..b77729e 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_holo_light_v2.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_holo_light_v2.9.png Binary files differindex 00518ad..65a31ae 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_holo_light_v2.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_holo_light_v2.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_dark.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_dark.9.png Binary files differindex 98c517f..2ad3474 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_light.9.png b/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_light.9.png Binary files differindex a93ee06..1a7f64b 100644 --- a/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/switch_thumb_pressed_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/sym_def_app_icon.png b/core/res/res/drawable-xxhdpi/sym_def_app_icon.png Binary files differindex 324e72c..666fe57 100644 --- a/core/res/res/drawable-xxhdpi/sym_def_app_icon.png +++ b/core/res/res/drawable-xxhdpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_delete.png b/core/res/res/drawable-xxhdpi/sym_keyboard_delete.png Binary files differindex 9230135..579b354 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_delete.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_enter.png b/core/res/res/drawable-xxhdpi/sym_keyboard_enter.png Binary files differindex a234cde..02e1741 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_enter.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_enter.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num0_no_plus.png Binary files differindex da434a4..aa3edcb 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num0_no_plus.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num1.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num1.png Binary files differindex 715e9ae..09ccff8 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num1.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num2.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num2.png Binary files differindex d0cbce2..cadf76e 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num2.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num3.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num3.png Binary files differindex d152442..2997b50 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num3.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num4.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num4.png Binary files differindex 9438f47..7a1d353 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num4.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num5.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num5.png Binary files differindex 0104cfe..a95bc10 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num5.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num6.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num6.png Binary files differindex 852d0a22..0d4734f 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num6.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num7.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num7.png Binary files differindex bdd1e22..2397aa5 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num7.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num8.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num8.png Binary files differindex 0d9a0f3..ad80b0a 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num8.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_num9.png b/core/res/res/drawable-xxhdpi/sym_keyboard_num9.png Binary files differindex ab87892..5dfba13 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_num9.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-xxhdpi/sym_keyboard_return_holo.png b/core/res/res/drawable-xxhdpi/sym_keyboard_return_holo.png Binary files differindex 7d95807..50f13d1 100644 --- a/core/res/res/drawable-xxhdpi/sym_keyboard_return_holo.png +++ b/core/res/res/drawable-xxhdpi/sym_keyboard_return_holo.png diff --git a/core/res/res/drawable-xxhdpi/tab_indicator_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/tab_indicator_mtrl_alpha.9.png Binary files differindex 248f4f8..25ce3b7 100644 --- a/core/res/res/drawable-xxhdpi/tab_indicator_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/tab_indicator_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_selected_focused_holo.9.png b/core/res/res/drawable-xxhdpi/tab_selected_focused_holo.9.png Binary files differindex 619efa4..09ca002 100644 --- a/core/res/res/drawable-xxhdpi/tab_selected_focused_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_selected_focused_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_selected_holo.9.png b/core/res/res/drawable-xxhdpi/tab_selected_holo.9.png Binary files differindex bee35ca..a5f4dab 100644 --- a/core/res/res/drawable-xxhdpi/tab_selected_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_selected_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_selected_pressed_holo.9.png b/core/res/res/drawable-xxhdpi/tab_selected_pressed_holo.9.png Binary files differindex ffedd02..77d7ea4 100644 --- a/core/res/res/drawable-xxhdpi/tab_selected_pressed_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_selected_pressed_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_unselected_focused_holo.9.png b/core/res/res/drawable-xxhdpi/tab_unselected_focused_holo.9.png Binary files differindex e9a5bf5..3a9a901 100644 --- a/core/res/res/drawable-xxhdpi/tab_unselected_focused_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_unselected_focused_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_unselected_holo.9.png b/core/res/res/drawable-xxhdpi/tab_unselected_holo.9.png Binary files differindex 8fcecf7..e8ca792 100644 --- a/core/res/res/drawable-xxhdpi/tab_unselected_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_unselected_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/tab_unselected_pressed_holo.9.png b/core/res/res/drawable-xxhdpi/tab_unselected_pressed_holo.9.png Binary files differindex 82c6998..932fe01 100644 --- a/core/res/res/drawable-xxhdpi/tab_unselected_pressed_holo.9.png +++ b/core/res/res/drawable-xxhdpi/tab_unselected_pressed_holo.9.png diff --git a/core/res/res/drawable-xxhdpi/text_edit_paste_window.9.png b/core/res/res/drawable-xxhdpi/text_edit_paste_window.9.png Binary files differindex 9e247e6..57ca858 100644 --- a/core/res/res/drawable-xxhdpi/text_edit_paste_window.9.png +++ b/core/res/res/drawable-xxhdpi/text_edit_paste_window.9.png diff --git a/core/res/res/drawable-xxhdpi/text_edit_suggestions_window.9.png b/core/res/res/drawable-xxhdpi/text_edit_suggestions_window.9.png Binary files differindex 9e247e6..57ca858 100644 --- a/core/res/res/drawable-xxhdpi/text_edit_suggestions_window.9.png +++ b/core/res/res/drawable-xxhdpi/text_edit_suggestions_window.9.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_left.png b/core/res/res/drawable-xxhdpi/text_select_handle_left.png Binary files differindex 8497601..ad5eebf 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_left.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_left.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_left_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/text_select_handle_left_mtrl_alpha.png Binary files differindex d0f274a..2684d0f 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_left_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_left_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_middle.png b/core/res/res/drawable-xxhdpi/text_select_handle_middle.png Binary files differindex 7b74f66..185602a 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_middle.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_middle_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/text_select_handle_middle_mtrl_alpha.png Binary files differindex 5753d89..1e6d5c0 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_middle_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_middle_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_right.png b/core/res/res/drawable-xxhdpi/text_select_handle_right.png Binary files differindex 25e0780..8881c61 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_right.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_right.png diff --git a/core/res/res/drawable-xxhdpi/text_select_handle_right_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/text_select_handle_right_mtrl_alpha.png Binary files differindex f1f637a..9b4e070 100644 --- a/core/res/res/drawable-xxhdpi/text_select_handle_right_mtrl_alpha.png +++ b/core/res/res/drawable-xxhdpi/text_select_handle_right_mtrl_alpha.png diff --git a/core/res/res/drawable-xxhdpi/textfield_activated_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_activated_holo_dark.9.png Binary files differindex a4c891e..84d900d 100644 --- a/core/res/res/drawable-xxhdpi/textfield_activated_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_activated_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_activated_holo_light.9.png Binary files differindex a4c891e..84d900d 100644 --- a/core/res/res/drawable-xxhdpi/textfield_activated_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_activated_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_activated_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/textfield_activated_mtrl_alpha.9.png Binary files differindex 778670a..906962b 100644 --- a/core/res/res/drawable-xxhdpi/textfield_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_default_holo_dark.9.png Binary files differindex 1e8dafa..5e2b221 100644 --- a/core/res/res/drawable-xxhdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_default_holo_light.9.png Binary files differindex 9ece814..f0061eb 100644 --- a/core/res/res/drawable-xxhdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_default_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/textfield_default_mtrl_alpha.9.png Binary files differindex 6dd5d4f..978522c 100644 --- a/core/res/res/drawable-xxhdpi/textfield_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_dark.9.png Binary files differindex e21548e..c7fea45 100644 --- a/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_light.9.png Binary files differindex 5bc20f9..c09ace5 100644 --- a/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_disabled_holo_dark.9.png Binary files differindex 5592f76..e06c3b5 100644 --- a/core/res/res/drawable-xxhdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_disabled_holo_light.9.png Binary files differindex 8fda94d..a88c1e0 100644 --- a/core/res/res/drawable-xxhdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_focused_holo_dark.9.png Binary files differindex d557164..ecb8074 100644 --- a/core/res/res/drawable-xxhdpi/textfield_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_focused_holo_light.9.png Binary files differindex d557164..ecb8074 100644 --- a/core/res/res/drawable-xxhdpi/textfield_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_dark.9.png Binary files differindex a4c891e..84d900d 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_light.9.png Binary files differindex a4c891e..84d900d 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_activated_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_dark.9.png Binary files differindex 1e8dafa..5e2b221 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_light.9.png Binary files differindex 9ece814..f0061eb 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_dark.9.png Binary files differindex e21548e..c7fea45 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_light.9.png Binary files differindex 5bc20f9..c09ace5 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_dark.9.png Binary files differindex 5592f76..e06c3b5 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_light.9.png Binary files differindex 8fda94d..a88c1e0 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_disabled_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_dark.9.png Binary files differindex d557164..ecb8074 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_light.9.png Binary files differindex d557164..ecb8074 100644 --- a/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_multiline_focused_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_activated_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/textfield_search_activated_mtrl_alpha.9.png Binary files differindex b6efff3..aeef5ea 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_activated_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_activated_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_search_default_holo_dark.9.png Binary files differindex e634c75..1a95d64 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_search_default_holo_light.9.png Binary files differindex ea9dd89..7f99ddb 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_default_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/textfield_search_default_mtrl_alpha.9.png Binary files differindex 2b253fb..7f26962 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_default_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_default_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_dark.9.png Binary files differindex 6042bcf..416e58c 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_light.9.png Binary files differindex b34b536..8978b87 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_right_default_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_dark.9.png Binary files differindex 114acf4..3e274db 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_light.9.png Binary files differindex 098475b..22f1f32 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_right_selected_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_dark.9.png Binary files differindex 8fcaadc..e75f99a 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_dark.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_dark.9.png diff --git a/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_light.9.png Binary files differindex df5c730..54287b1 100644 --- a/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_light.9.png +++ b/core/res/res/drawable-xxhdpi/textfield_search_selected_holo_light.9.png diff --git a/core/res/res/drawable-xxhdpi/toast_frame.9.png b/core/res/res/drawable-xxhdpi/toast_frame.9.png Binary files differindex edecb63..4895073 100644 --- a/core/res/res/drawable-xxhdpi/toast_frame.9.png +++ b/core/res/res/drawable-xxhdpi/toast_frame.9.png diff --git a/core/res/res/drawable-xxhdpi/transportcontrol_bg.9.png b/core/res/res/drawable-xxhdpi/transportcontrol_bg.9.png Binary files differindex a5dc6cb..02ceca5 100644 --- a/core/res/res/drawable-xxhdpi/transportcontrol_bg.9.png +++ b/core/res/res/drawable-xxhdpi/transportcontrol_bg.9.png diff --git a/core/res/res/drawable-xxhdpi/vpn_connected.png b/core/res/res/drawable-xxhdpi/vpn_connected.png Binary files differindex ea4930c..1891cfe 100644 --- a/core/res/res/drawable-xxhdpi/vpn_connected.png +++ b/core/res/res/drawable-xxhdpi/vpn_connected.png diff --git a/core/res/res/drawable-xxhdpi/vpn_disconnected.png b/core/res/res/drawable-xxhdpi/vpn_disconnected.png Binary files differindex 4cd0dd4..74e6d11 100644 --- a/core/res/res/drawable-xxhdpi/vpn_disconnected.png +++ b/core/res/res/drawable-xxhdpi/vpn_disconnected.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_000.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_000.png Binary files differindex 44028af..2d787a1 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_000.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_000.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_001.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_001.png Binary files differindex ec13a86..41de28a 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_001.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_001.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_002.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_002.png Binary files differindex 43754eb..c8baba2 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_002.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_002.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_003.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_003.png Binary files differindex 39d1d64..6fc2f63 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_003.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_003.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_004.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_004.png Binary files differindex f36f883..8ef684e 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_004.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_004.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_005.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_005.png Binary files differindex 7a4cc5c..ba3de52 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_005.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_005.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_006.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_006.png Binary files differindex 80a21ec..0aa97c4 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_006.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_006.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_007.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_007.png Binary files differindex 2141104..c4416dd 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_007.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_007.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_008.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_008.png Binary files differindex 203bd51..eda84d6 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_008.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_008.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_009.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_009.png Binary files differindex 5df6fc5..9d622ed 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_009.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_009.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_010.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_010.png Binary files differindex 6d0fced..bc67681 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_010.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_010.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_011.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_011.png Binary files differindex 8c0c372..afbfbb9 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_011.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_011.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_012.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_012.png Binary files differindex 4fa6f53..c67ecf4 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_012.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_012.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_013.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_013.png Binary files differindex d3dbf7d..0c1f884 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_013.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_013.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_014.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_014.png Binary files differindex 4ccf8de..6bc012e 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_014.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_014.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_015.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_015.png Binary files differindex adef871..5e6b0d1 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_015.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_off_mtrl_015.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_000.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_000.png Binary files differindex adef871..5e6b0d1 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_000.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_000.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_001.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_001.png Binary files differindex 9fc3556..0403482 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_001.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_001.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_002.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_002.png Binary files differindex 7f00609..1ad2757 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_002.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_002.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_003.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_003.png Binary files differindex e4aa58d..6179000 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_003.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_003.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_004.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_004.png Binary files differindex fe4e4b7..b6469b4 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_004.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_004.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_005.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_005.png Binary files differindex 86666ca..6c25f66 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_005.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_005.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_006.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_006.png Binary files differindex 608faaf..5f0ab05 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_006.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_006.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_007.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_007.png Binary files differindex ec95422..9ff8a79 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_007.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_007.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_008.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_008.png Binary files differindex 76e2754..cfe8472 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_008.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_008.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_009.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_009.png Binary files differindex 3853eac..4b89904 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_009.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_009.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_010.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_010.png Binary files differindex 621aff1..35f4d3a 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_010.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_010.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_011.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_011.png Binary files differindex d24be2a..f017147 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_011.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_011.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_012.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_012.png Binary files differindex df33892..27a40dd 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_012.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_012.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_013.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_013.png Binary files differindex ff4b818..c173a09 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_013.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_013.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_014.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_014.png Binary files differindex d9793ae..2fc1fc1 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_014.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_014.png diff --git a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_015.png b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_015.png Binary files differindex 44028af..2d787a1 100644 --- a/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_015.png +++ b/core/res/res/drawable-xxxhdpi/btn_radio_to_on_mtrl_015.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00001.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00001.9.png Binary files differindex 786f493..c56032b 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00001.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00001.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00002.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00002.9.png Binary files differindex c6e1ac1..8f6f731 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00002.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00002.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00003.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00003.9.png Binary files differindex 2a65baa..625f62a 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00003.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00003.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00004.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00004.9.png Binary files differindex efce521..d2a7258 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00004.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00004.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00005.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00005.9.png Binary files differindex 5566524..9326d44 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00005.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00005.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00006.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00006.9.png Binary files differindex ee676a6..fde05d2 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00006.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00006.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00007.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00007.9.png Binary files differindex e0bb175..ec4c207 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00007.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00007.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00008.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00008.9.png Binary files differindex de9eada..abddced 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00008.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00008.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00009.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00009.9.png Binary files differindex 3c59ad8..acb5758 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00009.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00009.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00010.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00010.9.png Binary files differindex d524098..00b0306 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00010.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00010.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00011.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00011.9.png Binary files differindex 7c08d71..3beecf3 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00011.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00011.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00012.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00012.9.png Binary files differindex 017c2e1..2214365 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00012.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_off_mtrl_00012.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00001.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00001.9.png Binary files differindex d3f2a9a..df42bdd 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00001.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00001.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00002.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00002.9.png Binary files differindex cb75295..114d85f 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00002.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00002.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00003.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00003.9.png Binary files differindex 445644e..36aaf05 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00003.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00003.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00004.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00004.9.png Binary files differindex 5819f90..e20ed710 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00004.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00004.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00005.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00005.9.png Binary files differindex 91cb90f..ab6202f 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00005.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00005.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00006.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00006.9.png Binary files differindex cf6147c..74292fc 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00006.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00006.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00007.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00007.9.png Binary files differindex 75fca7c..ec4c207 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00007.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00007.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00008.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00008.9.png Binary files differindex b71a0b4..e294d53 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00008.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00008.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00009.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00009.9.png Binary files differindex edb7671..ab56bee 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00009.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00009.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00010.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00010.9.png Binary files differindex 5e0be17..7355506 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00010.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00010.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00011.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00011.9.png Binary files differindex b727eda..a6b0dd7 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00011.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00011.9.png diff --git a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00012.9.png b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00012.9.png Binary files differindex a3caefb..8983aea 100644 --- a/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00012.9.png +++ b/core/res/res/drawable-xxxhdpi/btn_switch_to_on_mtrl_00012.9.png diff --git a/core/res/res/drawable-xxxhdpi/ic_corp_icon.png b/core/res/res/drawable-xxxhdpi/ic_corp_icon.png Binary files differindex 359e210..0aa83d7 100644 --- a/core/res/res/drawable-xxxhdpi/ic_corp_icon.png +++ b/core/res/res/drawable-xxxhdpi/ic_corp_icon.png diff --git a/core/res/res/drawable-xxxhdpi/ic_lock_open_wht_24dp.png b/core/res/res/drawable-xxxhdpi/ic_lock_open_wht_24dp.png Binary files differindex 8774412..4923071 100644 --- a/core/res/res/drawable-xxxhdpi/ic_lock_open_wht_24dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_lock_open_wht_24dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_lock_outline_wht_24dp.png b/core/res/res/drawable-xxxhdpi/ic_lock_outline_wht_24dp.png Binary files differindex 1375acc..41251a1 100644 --- a/core/res/res/drawable-xxxhdpi/ic_lock_outline_wht_24dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_lock_outline_wht_24dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_menu_search_mtrl_alpha.png b/core/res/res/drawable-xxxhdpi/ic_menu_search_mtrl_alpha.png Binary files differindex 2a28f0f..2074569 100644 --- a/core/res/res/drawable-xxxhdpi/ic_menu_search_mtrl_alpha.png +++ b/core/res/res/drawable-xxxhdpi/ic_menu_search_mtrl_alpha.png diff --git a/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_24px_clr.png b/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_24px_clr.png Binary files differindex fbda037..8130699 100644 --- a/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_24px_clr.png +++ b/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_24px_clr.png diff --git a/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_48px_clr.png b/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_48px_clr.png Binary files differindex 3316f14..238b39e 100644 --- a/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_48px_clr.png +++ b/core/res/res/drawable-xxxhdpi/ic_sim_card_multi_48px_clr.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_black_16dp.png b/core/res/res/drawable-xxxhdpi/ic_star_black_16dp.png Binary files differindex 1fa274d..c933f36 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_black_16dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_black_16dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_black_36dp.png b/core/res/res/drawable-xxxhdpi/ic_star_black_36dp.png Binary files differindex 918a395..28efb47 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_black_36dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_black_36dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_black_48dp.png b/core/res/res/drawable-xxxhdpi/ic_star_black_48dp.png Binary files differindex 67e25d5..47a23d5 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_black_48dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_black_48dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_half_black_16dp.png b/core/res/res/drawable-xxxhdpi/ic_star_half_black_16dp.png Binary files differindex 266c167..3c40ad6 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_half_black_16dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_half_black_16dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_half_black_36dp.png b/core/res/res/drawable-xxxhdpi/ic_star_half_black_36dp.png Binary files differindex debdb77..8e9fa36 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_half_black_36dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_half_black_36dp.png diff --git a/core/res/res/drawable-xxxhdpi/ic_star_half_black_48dp.png b/core/res/res/drawable-xxxhdpi/ic_star_half_black_48dp.png Binary files differindex bfb6e61..145e175 100644 --- a/core/res/res/drawable-xxxhdpi/ic_star_half_black_48dp.png +++ b/core/res/res/drawable-xxxhdpi/ic_star_half_black_48dp.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_accessibility_features.png b/core/res/res/drawable-xxxhdpi/perm_group_accessibility_features.png Binary files differindex 8cebecf..f686205 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_accessibility_features.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_accessibility_features.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_accounts.png b/core/res/res/drawable-xxxhdpi/perm_group_accounts.png Binary files differindex 1d9db83..318af9c 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_accounts.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_accounts.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_affects_battery.png b/core/res/res/drawable-xxxhdpi/perm_group_affects_battery.png Binary files differindex 3b6300a..8263812 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_affects_battery.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_affects_battery.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_app_info.png b/core/res/res/drawable-xxxhdpi/perm_group_app_info.png Binary files differindex b54b98a..3de22bb 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_app_info.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_app_info.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_audio_settings.png b/core/res/res/drawable-xxxhdpi/perm_group_audio_settings.png Binary files differindex ec88cdd..785c9a4 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_audio_settings.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_audio_settings.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_bluetooth.png b/core/res/res/drawable-xxxhdpi/perm_group_bluetooth.png Binary files differindex 6f6409d..dc28a0f 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_bluetooth.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_bluetooth.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_bookmarks.png b/core/res/res/drawable-xxxhdpi/perm_group_bookmarks.png Binary files differindex f8f3f44..2abc79d 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_bookmarks.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_bookmarks.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_calendar.png b/core/res/res/drawable-xxxhdpi/perm_group_calendar.png Binary files differindex d6243b1..0d7b935 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_calendar.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_calendar.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_camera.png b/core/res/res/drawable-xxxhdpi/perm_group_camera.png Binary files differindex fdc4b44..259c5da 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_camera.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_camera.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_device_alarms.png b/core/res/res/drawable-xxxhdpi/perm_group_device_alarms.png Binary files differindex 00707d4..9c1e7d5 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_device_alarms.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_device_alarms.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_display.png b/core/res/res/drawable-xxxhdpi/perm_group_display.png Binary files differindex ca4f44b..ef9c4aa 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_display.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_display.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_location.png b/core/res/res/drawable-xxxhdpi/perm_group_location.png Binary files differindex a1019b2..8fa5c67 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_location.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_location.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_messages.png b/core/res/res/drawable-xxxhdpi/perm_group_messages.png Binary files differindex f7165fe..3afb8a6 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_messages.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_messages.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_microphone.png b/core/res/res/drawable-xxxhdpi/perm_group_microphone.png Binary files differindex a85e4cd..92117c6 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_microphone.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_microphone.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_network.png b/core/res/res/drawable-xxxhdpi/perm_group_network.png Binary files differindex 07f1eb7..21b8a59 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_network.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_network.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_personal_info.png b/core/res/res/drawable-xxxhdpi/perm_group_personal_info.png Binary files differindex 11eb453..b56b56e 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_personal_info.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_personal_info.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_phone_calls.png b/core/res/res/drawable-xxxhdpi/perm_group_phone_calls.png Binary files differindex f4e6b9f..a8a8c10 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_phone_calls.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_phone_calls.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_screenlock.png b/core/res/res/drawable-xxxhdpi/perm_group_screenlock.png Binary files differindex d559dce..0a4cba0 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_screenlock.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_screenlock.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_shortrange_network.png b/core/res/res/drawable-xxxhdpi/perm_group_shortrange_network.png Binary files differindex 3998ab6..a7404cf 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_shortrange_network.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_shortrange_network.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_social_info.png b/core/res/res/drawable-xxxhdpi/perm_group_social_info.png Binary files differindex 3b17e39..99527b3 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_social_info.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_social_info.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_status_bar.png b/core/res/res/drawable-xxxhdpi/perm_group_status_bar.png Binary files differindex 1b02702..9a6fd1b 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_status_bar.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_status_bar.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_storage.png b/core/res/res/drawable-xxxhdpi/perm_group_storage.png Binary files differindex 918b3ed..dc45a46 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_storage.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_storage.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_sync_settings.png b/core/res/res/drawable-xxxhdpi/perm_group_sync_settings.png Binary files differindex 12f90c5..47be2d3 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_sync_settings.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_sync_settings.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_system_clock.png b/core/res/res/drawable-xxxhdpi/perm_group_system_clock.png Binary files differindex afd968b..4fe8aff 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_system_clock.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_system_clock.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_system_tools.png b/core/res/res/drawable-xxxhdpi/perm_group_system_tools.png Binary files differindex dfcb702..1be74fc 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_system_tools.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_system_tools.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary.png b/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary.png Binary files differindex 32942ca..3ec3bb9 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary_write.png b/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary_write.png Binary files differindex 343551f..f7a4ac3 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary_write.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_user_dictionary_write.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_voicemail.png b/core/res/res/drawable-xxxhdpi/perm_group_voicemail.png Binary files differindex 7aeb786..09aaa53 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_voicemail.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_voicemail.png diff --git a/core/res/res/drawable-xxxhdpi/perm_group_wallpaper.png b/core/res/res/drawable-xxxhdpi/perm_group_wallpaper.png Binary files differindex 3c08471..71e4a2f 100644 --- a/core/res/res/drawable-xxxhdpi/perm_group_wallpaper.png +++ b/core/res/res/drawable-xxxhdpi/perm_group_wallpaper.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_000.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_000.png Binary files differindex 0c8f746..6cdde15 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_000.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_001.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_001.png Binary files differindex 5db9deb..a343f75 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_001.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_002.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_002.png Binary files differindex 3aca6d3..85b26bd 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_002.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_003.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_003.png Binary files differindex 746c74f..63e4477 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_003.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_004.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_004.png Binary files differindex 454a5b2..7d73586 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_004.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_005.png b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_005.png Binary files differindex 80ad8cc..bcb47e7 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_005.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_from_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_000.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_000.png Binary files differindex cfd0db4..e5a43bb 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_000.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_000.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_001.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_001.png Binary files differindex 845092f..1be535c 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_001.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_001.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_002.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_002.png Binary files differindex 0042db4..64d3941 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_002.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_002.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_003.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_003.png Binary files differindex 77b2901..ba2d761 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_003.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_003.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_004.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_004.png Binary files differindex fb3c238..2fec2fa 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_004.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_004.png diff --git a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_005.png b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_005.png Binary files differindex 0d28c45..eeb37c1 100644 --- a/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_005.png +++ b/core/res/res/drawable-xxxhdpi/scrubber_control_to_pressed_mtrl_005.png diff --git a/core/res/res/drawable-xxxhdpi/sym_def_app_icon.png b/core/res/res/drawable-xxxhdpi/sym_def_app_icon.png Binary files differindex aee44e1..a3a4fad 100644 --- a/core/res/res/drawable-xxxhdpi/sym_def_app_icon.png +++ b/core/res/res/drawable-xxxhdpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-xxxhdpi/tab_indicator_mtrl_alpha.9.png b/core/res/res/drawable-xxxhdpi/tab_indicator_mtrl_alpha.9.png Binary files differindex 5813179..35dd9ca 100644 --- a/core/res/res/drawable-xxxhdpi/tab_indicator_mtrl_alpha.9.png +++ b/core/res/res/drawable-xxxhdpi/tab_indicator_mtrl_alpha.9.png diff --git a/core/res/res/drawable-xxxhdpi/text_select_handle_left_mtrl_alpha.png b/core/res/res/drawable-xxxhdpi/text_select_handle_left_mtrl_alpha.png Binary files differindex 643168f..11a32d5 100644 --- a/core/res/res/drawable-xxxhdpi/text_select_handle_left_mtrl_alpha.png +++ b/core/res/res/drawable-xxxhdpi/text_select_handle_left_mtrl_alpha.png diff --git a/core/res/res/drawable-xxxhdpi/text_select_handle_right_mtrl_alpha.png b/core/res/res/drawable-xxxhdpi/text_select_handle_right_mtrl_alpha.png Binary files differindex e8f3aad..bc0be76 100644 --- a/core/res/res/drawable-xxxhdpi/text_select_handle_right_mtrl_alpha.png +++ b/core/res/res/drawable-xxxhdpi/text_select_handle_right_mtrl_alpha.png diff --git a/core/res/res/drawable/ic_eject_24dp.xml b/core/res/res/drawable/ic_eject_24dp.xml new file mode 100644 index 0000000..1bb351a --- /dev/null +++ b/core/res/res/drawable/ic_eject_24dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + <path + android:fillColor="#FF000000" + android:pathData="M5 17h14v2H5zm7,-12L5.33 15h13.34z"/> +</vector> diff --git a/core/res/res/drawable/ic_folder_24dp.xml b/core/res/res/drawable/ic_folder_24dp.xml new file mode 100644 index 0000000..9a386ca --- /dev/null +++ b/core/res/res/drawable/ic_folder_24dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M20 8H8c-2.21 0,-3.98 1.79,-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4,-1.79 4,-4V16c0,-2.21,-1.79,-4,-4,-4H24l-4,-4z"/> +</vector> diff --git a/core/res/res/drawable/ic_perm_device_info.xml b/core/res/res/drawable/ic_perm_device_info.xml new file mode 100644 index 0000000..ef91c74 --- /dev/null +++ b/core/res/res/drawable/ic_perm_device_info.xml @@ -0,0 +1,24 @@ +<!-- + Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24.0dp" + android:height="24.0dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M26.0,14.0l-4.0,0.0l0.0,4.0l4.0,0.0l0.0,-4.0zm0.0,8.0l-4.0,0.0l0.0,12.0l4.0,0.0L26.0,22.0zm8.0,-19.98L14.0,2.0c-2.21,0.0 -4.0,1.79 -4.0,4.0l0.0,36.0c0.0,2.21 1.79,4.0 4.0,4.0l20.0,0.0c2.21,0.0 4.0,-1.79 4.0,-4.0L38.0,6.0c0.0,-2.21 -1.79,-3.98 -4.0,-3.98zM34.0,38.0L14.0,38.0L14.0,10.0l20.0,0.0l0.0,28.0z"/> +</vector> diff --git a/core/res/res/drawable/ic_sd_card_48dp.xml b/core/res/res/drawable/ic_sd_card_48dp.xml new file mode 100644 index 0000000..90bab47 --- /dev/null +++ b/core/res/res/drawable/ic_sd_card_48dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="48dp" + android:height="48dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M36 4H20L8.04 16 8 40c0 2.2 1.8 4 4 4h24c2.2 0 4,-1.8 4,-4V8c0,-2.2,-1.8,-4,-4,-4zM24 16h-4V8h4v8zm6 0h-4V8h4v8zm6 0h-4V8h4v8z"/> +</vector> diff --git a/core/res/res/drawable/ic_settings_24dp.xml b/core/res/res/drawable/ic_settings_24dp.xml new file mode 100644 index 0000000..fc75f04 --- /dev/null +++ b/core/res/res/drawable/ic_settings_24dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M38.86 25.95c.08,-.64.14,-1.29.14,-1.95s-.06,-1.31,-.14,-1.95l4.23,-3.31c.38,-.3.49,-.84.24,-1.28l-4,-6.93c-.25,-.43,-.77,-.61,-1.22,-.43l-4.98 2.01c-1.03,-.79,-2.16,-1.46,-3.38,-1.97L29 4.84c-.09,-.47,-.5,-.84,-1,-.84h-8c-.5 0,-.91.37,-.99.84l-.75 5.3c-1.22.51,-2.35 1.17,-3.38 1.97L9.9 10.1c-.45,-.17,-.97 0,-1.22.43l-4 6.93c-.25.43,-.14.97.24 1.28l4.22 3.31C9.06 22.69 9 23.34 9 24s.06 1.31.14 1.95l-4.22 3.31c-.38.3,-.49.84,-.24 1.28l4 6.93c.25.43.77.61 1.22.43l4.98,-2.01c1.03.79 2.16 1.46 3.38 1.97l.75 5.3c.08.47.49.84.99.84h8c.5 0 .91,-.37.99,-.84l.75,-5.3c1.22,-.51 2.35,-1.17 3.38,-1.97l4.98 2.01c.45.17.97 0 1.22,-.43l4,-6.93c.25,-.43.14,-.97,-.24,-1.28l-4.22,-3.31zM24 31c-3.87 0,-7,-3.13,-7,-7s3.13,-7 7,-7 7 3.13 7 7,-3.13 7,-7 7z"/> +</vector> diff --git a/core/res/res/drawable/ic_storage_48dp.xml b/core/res/res/drawable/ic_storage_48dp.xml new file mode 100644 index 0000000..14233a4 --- /dev/null +++ b/core/res/res/drawable/ic_storage_48dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="48dp" + android:height="48dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M4 40h40v-8H4v8zm4,-6h4v4H8v-4zM4 8v8h40V8H4zm8 6H8v-4h4v4zM4 28h40v-8H4v8zm4,-6h4v4H8v-4z"/> +</vector> diff --git a/core/res/res/drawable/ic_usb_48dp.xml b/core/res/res/drawable/ic_usb_48dp.xml new file mode 100644 index 0000000..b2ec709 --- /dev/null +++ b/core/res/res/drawable/ic_usb_48dp.xml @@ -0,0 +1,24 @@ +<!-- +Copyright (C) 2015 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="48dp" + android:height="48dp" + android:viewportWidth="48.0" + android:viewportHeight="48.0"> + <path + android:fillColor="#FF000000" + android:pathData="M30 14v8h2v4h-6V10h4l-6,-8,-6 8h4v16h-6v-4.14c1.41,-.73 2.4,-2.16 2.4,-3.86 0,-2.43,-1.97,-4.4,-4.4,-4.4,-2.43 0,-4.4 1.97,-4.4 4.4 0 1.7.99 3.13 2.4 3.86V26c0 2.21 1.79 4 4 4h6v6.1c-1.42.73,-2.4 2.19,-2.4 3.9 0 2.43 1.97 4.4 4.4 4.4 2.43 0 4.4,-1.97 4.4,-4.4 0,-1.71,-.98,-3.17,-2.4,-3.9V30h6c2.21 0 4,-1.79 4,-4v-4h2v-8h-8z"/> +</vector> diff --git a/core/res/res/layout/select_dialog_multichoice_material.xml b/core/res/res/layout/select_dialog_multichoice_material.xml index e21df73..36e8e57 100644 --- a/core/res/res/layout/select_dialog_multichoice_material.xml +++ b/core/res/res/layout/select_dialog_multichoice_material.xml @@ -25,6 +25,6 @@ android:gravity="center_vertical" android:paddingStart="@dimen/select_dialog_padding_start_material" android:paddingEnd="?attr/dialogPreferredPadding" - android:checkMark="?attr/listChoiceIndicatorMultiple" - android:checkMarkGravity="start" + android:drawableStart="?attr/listChoiceIndicatorMultiple" + android:drawablePadding="20dp" android:ellipsize="marquee" /> diff --git a/core/res/res/layout/select_dialog_singlechoice_material.xml b/core/res/res/layout/select_dialog_singlechoice_material.xml index 3828317..995272a 100644 --- a/core/res/res/layout/select_dialog_singlechoice_material.xml +++ b/core/res/res/layout/select_dialog_singlechoice_material.xml @@ -25,6 +25,6 @@ android:gravity="center_vertical" android:paddingStart="@dimen/select_dialog_padding_start_material" android:paddingEnd="?attr/dialogPreferredPadding" - android:checkMark="?attr/listChoiceIndicatorSingle" - android:checkMarkGravity="start" + android:drawableStart="?attr/listChoiceIndicatorSingle" + android:drawablePadding="20dp" android:ellipsize="marquee" /> diff --git a/core/res/res/mipmap-hdpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/mipmap-hdpi/sym_app_on_sd_unavailable_icon.png Binary files differindex d915d41..4c9e454 100644 --- a/core/res/res/mipmap-hdpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/mipmap-hdpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/mipmap-hdpi/sym_def_app_icon.png b/core/res/res/mipmap-hdpi/sym_def_app_icon.png Binary files differindex cde69bc..6857e39 100644 --- a/core/res/res/mipmap-hdpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-hdpi/sym_def_app_icon.png diff --git a/core/res/res/mipmap-ldpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/mipmap-ldpi/sym_app_on_sd_unavailable_icon.png Binary files differindex d88250a..3931e85 100644 --- a/core/res/res/mipmap-ldpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/mipmap-ldpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/mipmap-ldpi/sym_def_app_icon.png b/core/res/res/mipmap-ldpi/sym_def_app_icon.png Binary files differindex 2c205c8..6e5e462 100644 --- a/core/res/res/mipmap-ldpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-ldpi/sym_def_app_icon.png diff --git a/core/res/res/mipmap-mdpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/mipmap-mdpi/sym_app_on_sd_unavailable_icon.png Binary files differindex 4730668..632bd2e 100644 --- a/core/res/res/mipmap-mdpi/sym_app_on_sd_unavailable_icon.png +++ b/core/res/res/mipmap-mdpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/mipmap-mdpi/sym_def_app_icon.png b/core/res/res/mipmap-mdpi/sym_def_app_icon.png Binary files differindex c133a0c..d55645c 100644 --- a/core/res/res/mipmap-mdpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-mdpi/sym_def_app_icon.png diff --git a/core/res/res/mipmap-xhdpi/sym_def_app_icon.png b/core/res/res/mipmap-xhdpi/sym_def_app_icon.png Binary files differindex bfa42f0..6a7d18b 100644 --- a/core/res/res/mipmap-xhdpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-xhdpi/sym_def_app_icon.png diff --git a/core/res/res/mipmap-xxhdpi/sym_def_app_icon.png b/core/res/res/mipmap-xxhdpi/sym_def_app_icon.png Binary files differindex 324e72c..666fe57 100644 --- a/core/res/res/mipmap-xxhdpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-xxhdpi/sym_def_app_icon.png diff --git a/core/res/res/mipmap-xxxhdpi/sym_def_app_icon.png b/core/res/res/mipmap-xxxhdpi/sym_def_app_icon.png Binary files differindex aee44e1..a3a4fad 100644 --- a/core/res/res/mipmap-xxxhdpi/sym_def_app_icon.png +++ b/core/res/res/mipmap-xxxhdpi/sym_def_app_icon.png diff --git a/core/res/res/values-af/strings.xml b/core/res/res/values-af/strings.xml index d302f15..a49907e 100644 --- a/core/res/res/values-af/strings.xml +++ b/core/res/res/values-af/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Laat die program toe om gebeure wat op jou tablet aangepas kan word, by te voeg, te verwyder of te verander, insluitend dié van vriende en medewerkers. Dit kan moontlik die program toelaat om boodskappe wat lyk of dit van kalendereienaars af kom, te stuur, of om gebeure sonder die eienaar se kennis aan te pas."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Laat die program toe om geleenthede wat jy op jou TV kan wysig, by te voeg, te verwyder en te verander, insluitend dié van vriende of kollegas. Dit kan die program toelaat om boodskappe te stuur wat lyk of dit van kalendereienaars af kom, of om geleenthede te wysig sonder dat die eienaar dit weet."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Laat die program toe om gebeure wat op jou foon aangepas kan word, by te voeg, te verwyder of te verander, insluitend dié van vriende en medewerkers. Dit kan moontlik die program toelaat om boodskappe wat lyk of dit van kalendereienaars af kom, te stuur, of om gebeure sonder die eienaar se kennis aan te pas."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"kamma liggingbronne vir toetsing"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Skep skynliggingsbronne vir toetsing of installeer \'n nuwe liggingsverskaffer. Die program kan dan die ligging en/of status wat deurgegee is deur ander liggingsbronne, soos GPS of liggingsverskaffers, oorheers."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"Kry toegang tot ekstra liggingverskaffer-bevele"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Gee die program toegang tot ekstra liggingverskaffer-bevele. Dit kan die program dalk toelaat om in te meng met die werking van die GPS of ander liggingbronne."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"presiese ligging (GPS en netwerkgebaseer)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Vingerafdrukhandeling is gekanselleer."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Te veel pogings. Probeer later weer."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Probeer weer."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lees sinkroniseer-instellings"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"As jy die USB-geheue aanskakel, sal sekere programme wat jy gebruik, stop en onbeskikbaar wees totdat jy die USB-geheue afskakel."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-handeling was onsuksesvol"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Gekoppel as \'n mediatoestel"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Gekoppel as \'n kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Gekoppel as \'n MIDI-toestel"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Gekoppel as \'n installeerder"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Gekoppel aan \'n USB-toebehoorsel"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Raak vir ander USB-opsies."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formateer USB-geheue?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formateer SD-kaart?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alle lêers wat op jou USB-geheue gestoor is, sal uitgevee word. Hierdie handeling kan nie omgekeer word nie!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d minute lank (tot <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Een minuut lank (tot <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d uur lank (tot <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Een uur lank (tot <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d minute lank</item> <item quantity="one">Een minuut lank</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d uur lank</item> <item quantity="one">Een uur lank</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Tot <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Totdat jy dit afskakel"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-am/strings.xml b/core/res/res/values-am/strings.xml index cdbc5af..d1fb436 100644 --- a/core/res/res/values-am/strings.xml +++ b/core/res/res/values-am/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"መተግበሪያው የጓደኞችህን እና የስራ ባልደረቦችህን ጨምሮ በጡባዊ ተኮህ ላይ ልታስተካክላቸው የምትችላቸውን ክስተቶች እንዲያክል፣ እንዲያስወግድ፣ እንዲለውጥ ይፈቅድለታል። ይህ መተግበሪያው ከቀን መቁጠሪያ ባለቤቶች የመጡ የሚመስሉ መልዕክቶችን እንዲልክ ወይም ያለባለቤቱ እውቀት ክስተቶችን እንዲያስተካክል ሊፈቅድለት ይችላል።"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"መተግበሪያው የጓደኛዎችን እና የስራ ባልደረባዎችን ጨምሮ በቴሌቪዥንዎ ላይ እርስዎ ሊቀይሯቸው የሚችሏቸው ክስተቶችን እንዲያክል፣ እንዲያስወግድ ወይም እንዲቀይር ያስችለዋል። ይሄ መተግበሪያው ያለባለቤቱ እውቀት ከቀን መቁጠሪያ ባለቤቶች የመጡ የሚመስሉ መልዕክቶችን እንዲልክ፣ ወይም ክስተቶችን እንዲቀይር ሊፈቅድለት ይችላል።"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"መተግበሪያው የጓደኞችዎን እና የስራ ባልደረቦችዎን ጨምሮ በስልክዎ ላይ ሊያስተካክሏቸው የሚችሏቸውን ክስተቶች እንዲያክል፣ እንዲያስወግድ፣ እንዲለውጥ ይፈቅድለታል። ይህ መተግበሪያው ከቀን መቁጠሪያ ባለቤቶች የመጡ የሚመስሉ መልዕክቶችን እንዲልክ ወይም ያለባለቤቱ እውቀት ክስተቶችን እንዲያስተካክል ሊፈቅድለት ይችላል።"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ለሙከራ ጊዜያዊ ሥፍራ ፍጠር።"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"ለሙከራ የጊዜያዊ የመነሻ ምንጮችን ይፍጠሩ ወይም አዲስ የአካባቢ አቅራቢ ይጫኑ። ይህ መተግበሪያው አካባቢውን እና/ወይም እንደ GPS ወይም የአካባቢ አቅራቢዎች ባሉ ሌላ የመነሻ ምንጮች የተመለሱ ሁኔታዎችን ችላ እንዲል ይፈቅድለታል።"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ተጨማሪ ሥፍራ አቅራቢ ትዕዛዞችን ድረስ።"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"መተግበሪያው ተጨማሪ የአካባቢ አቅራቢ ትእዛዞችን እንዲደርስ ይፈቅድለታል። ይሄ መተግበሪያው በጂፒኤስ ወይም ሌላ የአካባቢ ምንጮች ስራ ላይ ጣልቃ እንዲገባ ሊፈቅድለት ይችላል።"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ትክክለኛ አካባቢ (በጂ ፒ ኤስ እና አውታረ መረብ ላይ የተመሠረተ)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"የጣት አሻራ ስርዓተ ክወና ተትቷል።"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ከልክ በላይ ብዙ ሙከራዎች። በኋላ ላይ እንደገና ይሞክሩ።"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"እንደገና ይሞክሩ።"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"የሥምሪያ ቅንብሮች አንብብ"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"USB ማህደረ ትውስታ ካበራህ፤የምትጠቀማቸው አንዳንድ መተግበሪያዎች ይቆማሉ እና የUSB ማህደረ ትውስታ እስክታጠፋ ድረስ ላይገኙ ይችላሉ።"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ክወና ስኬታማ አልነበረም"</string> <string name="dlg_ok" msgid="7376953167039865701">"እሺ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"እንደ ማህደረ መረጃ መሣሪያ ተያይዟል"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"እንደካሜራ ተያይዟል"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"እንደ MIDI መሣሪያ ተገናኝቷል"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"እንደ ጫኝ ተያይዟል"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"ለUSB ተቀጥላ ተያይዟል"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ለሌላ የUSB አማራጮች ንካ።"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"የUSB ማከማቻ ቅረፅ"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD ካርድ ቅረፅ"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"በUSB ማህደረ ትውስታህ ውስጥ የተከማቹ ሁሉም ፋይሎች ይጠፋሉ፡፡ ይህ እርምጃ አይቀለበስም!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">ለ%1$d ደቂቃዎች (እስከ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ድረስ)</item> <item quantity="other">ለ%1$d ደቂቃዎች (እስከ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ድረስ)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">ለ%1$d ሰዓቶች (እስከ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ድረስ)</item> <item quantity="other">ለ%1$d ሰዓቶች (እስከ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ድረስ)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">ለ%d ደቂቃዎች</item> <item quantity="other">ለ%d ደቂቃዎች</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">ለ%d ሰዓቶች</item> <item quantity="other">ለ%d ሰዓቶች</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"እስከ <xliff:g id="FORMATTEDTIME">%1$s</xliff:g> ድረስ"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ይህን እስኪያጠፉት ድረስ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ar/strings.xml b/core/res/res/values-ar/strings.xml index ec1b4bc..f30b730 100644 --- a/core/res/res/values-ar/strings.xml +++ b/core/res/res/values-ar/strings.xml @@ -339,8 +339,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"للسماح للتطبيق بإضافة أو إزالة أو تغيير الأحداث التي يمكنك تعديلها على جهازك اللوحي، بما في ذلك أحداث الأصدقاء أو زملاء العمل. وقد يتيح هذا للتطبيق إرسال رسائل يبدو أنها واردة من أصحاب التقويم أو تعديل الأحداث بدون معرفة المالكين."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"يتيح للتطبيق إضافة أحداث يمكنك تعديلها على التلفزيون كما يتيح إزالتها أو تغييرها، بما في ذلك أحداث الأصدقاء وزملاء العمل. وقد يتيح هذا للتطبيق إرسال رسائل تبدو أنها من أصحاب التقاويم أو تعديل الأحداث بدون علم أصحاب هذه التقاويم."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"للسماح للتطبيق بإضافة أو إزالة أو تغيير الأحداث التي يمكنك تعديلها على هاتفك، بما في ذلك أحداث الأصدقاء أو زملاء العمل. وقد يتيح هذا للتطبيق إرسال رسائل يبدو أنها واردة من أصحاب التقويم أو تعديل الأحداث بدون معرفة المالكين."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"مصادر مواقع وهمية للاختبار"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"لإنشاء مصادر مواقع زائفة للاختبار أو تثبيت موفر مواقع جديد. يتيح هذا للتطبيق إلغاء الموقع و/أو الحالة التي تعرضها مصادر المواقع الأخرى مثل GPS أو موفري المواقع."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"الدخول إلى المزيد من أوامر موفر الموقع"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"للسماح للتطبيق بالدخول إلى أوامر إضافية لموفر الموقع. قد يتيح هذا للتطبيق التداخل مع تشغيل تقنية نظام تحديد المواقع العالمي (GPS) أو مصادر الموقع الأخرى."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"الموقع الدقيق (مستند إلى نظام تحديد المواقع العالمي والشبكة)"</string> @@ -442,6 +440,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"تم إلغاء تشغيل بصمة الإصبع."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"تم إجراء عدد كبير من المحاولات. أعد المحاولة لاحقًا."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"أعد المحاولة."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"قراءة إعدادات المزامنة"</string> @@ -1070,12 +1070,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"إذا تم تشغيل وحدة تخزين USB، فستتوقف بعض التطبيقات التي تستخدمها وربما تصبح غير متاحة إلى أن يتم إيقاف وحدة تخزين USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"لم تتم عملية USB بنجاح"</string> <string name="dlg_ok" msgid="7376953167039865701">"موافق"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"التوصيل كجهاز وسائط"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"التوصيل ككاميرا"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"تم التوصيل كجهاز MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"التوصيل كأداة تثبيت"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"الاتصال بجهاز USB ملحق"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"المس للاطلاع على خيارات USB الأخرى."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"تهيئة وحدة تخزين USB؟"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"هل تريد تنسيق بطاقة SD؟"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"سيتم مسح جميع الملفات المخزنة على وحدة تخزين USB. لا يمكن عكس هذا الإجراء!"</string> @@ -1506,6 +1512,7 @@ <item quantity="other">لمدة %1$d من الدقائق (حتى <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">لمدة دقيقة واحدة (حتى <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="zero">لمدة أقل من ساعة (%1$d) (حتى <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="two">لمدة ساعتين (%1$d) (حتى <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> @@ -1514,6 +1521,7 @@ <item quantity="other">لمدة %1$d من الساعات (حتى <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">لمدة ساعة واحدة (حتى <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="zero">لمدة أقل من دقيقة (%d)</item> <item quantity="two">لمدة دقيقتين (%d)</item> @@ -1522,6 +1530,7 @@ <item quantity="other">لمدة %d من الدقائق</item> <item quantity="one">لمدة دقيقة واحدة</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="zero">لمدة أقل من ساعة (%d)</item> <item quantity="two">لمدة ساعتين (%d)</item> @@ -1530,6 +1539,7 @@ <item quantity="other">لمدة %d من الساعات</item> <item quantity="one">لمدة ساعة واحدة</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"حتى <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"لحين تعطيل هذا الإعداد"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-bg/strings.xml b/core/res/res/values-bg/strings.xml index 685673e..c94330d 100644 --- a/core/res/res/values-bg/strings.xml +++ b/core/res/res/values-bg/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Разрешава на приложението да добавя, премахва и променя събития, които можете да променяте на таблета си, включително тези на приятели или колеги. Това може да му позволи да изпраща съобщения, които изглежда, че идват от собствениците на календарите, или да променя събития без знанието на собствениците."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Разрешава на приложението да добавя, премахва и променя събития, които можете да променяте на телевизора си, включително тези на приятели или колеги. Така приложението може да изпраща съобщения от името на собствениците на календарите или да променя събития без тяхно знание."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Разрешава на приложението да добавя, премахва и променя събития, които можете да променяте на телефона си, включително тези на приятели или колеги. Това може да му позволи да изпраща съобщения, които изглежда, че идват от собствениците на календарите, или да променя събития без знанието на собствениците."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"имитиране на източници на местоположение за тестване"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Създаване на мними източници на местоположение за тестване или инсталиране на нов доставчик на местоположение. Това разрешава на приложението да заменя местоположението и/или състоянието, връщано от други източници, като GPS или доставчиците."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"достъп до допълнителни команди на доставчика на местоположение"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Разрешава на приложението достъп до допълнителни команди на доставчика на местоположение. Това може да позволи на приложението да смущава работата на GPS или на другите източници на местоположение."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"точно местоположение (основано на GPS и мрежата)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Операцията за отпечатък е анулирана."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Твърде много опити. Пробвайте отново по-късно."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Опитайте отново."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"четене на настройките за синхронизиране"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ако включите USB хранилището, някои използвани от вас приложения ще спрат и може да не са налице, докато не го изключите."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Операцията през USB не бе успешна"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Свързан като медийно устройство"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Свързан като камера"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Свързано като MIDI устройство"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Свързан като инсталационна програма"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Установена е връзка с аксесоар за USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Докоснете за други опции за USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Да се форматира ли USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Да се форматира ли SD картата?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Всички файлове, съхранявани в USB хранилището ви, ще бъдат изтрити. Това действие не може да бъде отменено!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">За %1$d минути (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">За една минута (до <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">За %1$d часа (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">За един час (до <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">За %d минути</item> <item quantity="one">За една минута</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">За %d часа</item> <item quantity="one">За един час</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"До <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Докато не изключите това"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-bn-rBD/strings.xml b/core/res/res/values-bn-rBD/strings.xml index 5ec1be3..ba71f0e 100644 --- a/core/res/res/values-bn-rBD/strings.xml +++ b/core/res/res/values-bn-rBD/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"সেইসকল বন্ধু বা সহকর্মী সহ আপনি আপনার ট্যাবলেটে যে ইভেন্টগুলি সংশোধন করতে পারেন তা যুক্ত করাতে, সরাতে, পরিবর্তন করতে এই অ্যাপ্লিকেশানটিকে অনুমতি দেয়৷ এটি যেগুলি ক্যালেন্ডার মালিকদের থেকে এসে প্রদর্শিত হবে সেগুলিতে বার্তা পাঠাতে অথবা মালিককে না জানিয়ে ইভেন্টগুলি পরিবর্তন করতে দিতে পারে৷"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"অ্যাপ্লিকেশানকে ইভেন্টগুলি যোগ করার, সরানোর, পরিবর্তন করার অনুমতি দেয় যা আপনি আপনার টিভিতে বন্ধু বা সহকর্মীদের থেকে আসা ইভেন্টগুলি সমেত সেগুলি সংশোধন করতে পারবেন৷ এটি অ্যাপ্লিকেশানকে ক্যালেন্ডারের মালিকের থেকে এসেছে বলে মনে হয় এমন বার্তাগুলিকে পাঠানোর বা আপনার অজান্তে ইভেন্টগুলি সংশোধন করার অনুমতি দিতে পারে৷"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"সেইসকল বন্ধু বা সহকর্মী সহ আপনি আপনার ফোনে যে ইভেন্টগুলি সংশোধন করতে পারেন তা যুক্ত করাতে, সরাতে, পরিবর্তন করতে এই অ্যাপ্লিকেশানটিকে অনুমতি দেয়৷ এটি অ্যাপ্লিকেশানটিকে বার্তা পাঠাতে দেয় যা দেখে মনে হবে যে এটি ক্যালেন্ডার মালিকদের থেকে এসেছে অথবা মালিককে না জানিয়ে ইভেন্টগুলি পরিবর্তন করতে দিতে পারে৷"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"পরীক্ষার জন্য অবস্থান উৎসগুলি নকল করে"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"অবস্থান নির্ণয়ের সাথে সম্পর্কিত একটি নতুন পরিষেবা প্রদানকারী ইনস্টল বা পরীক্ষা করার জন্য অনুরূপ অবস্থান তৈরি করে৷ এটি অ্যাপ্লিকেশানটিকে অবস্থান এবং/অথবা অন্যান্য অবস্থান নির্ণয়ের সাথে সম্পর্কিত উৎসগুলি যেমন GPS বা অবস্থান সম্পর্কিত পরিষেবা প্রদানকারীদের থেকে পাওয়া স্থিতি ওভাররাইড করতে মঞ্জুর করে৷"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"অতিরিক্ত অবস্থান প্রদানকারী কমান্ডগুলি অ্যাক্সেস করে"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"অবস্থানের সাথে সম্পর্কিত তথ্য প্রদানকারীর অতিরিক্ত কম্যান্ডগুলিকে অ্যাপ্লিকেশানটিকে মঞ্জুর করে৷ এটি অ্যাপ্লিকেশানটিকে GPS অথবা অন্যান্য অবস্থান নির্ণয়ের সাথে সম্পর্কিত উৎসগুলির ক্রিয়াপ্রণালীর নিয়ন্ত্রণকে মঞ্জুর করতে পারে৷"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"সুনির্দিষ্ট অবস্থান (GPS এবং নেটওয়ার্ক ভিত্তিক)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"আঙ্গুলের ছাপ অপারেশন বাতিল করা হয়েছে৷"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"অনেকবার প্রচেষ্টা করা হয়েছে৷ পরে আবার চেষ্টা করুন৷"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"আবার চেষ্টা করুন৷"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"সিঙ্ক সেটিংস পড়ে"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"আপনি যদি USB সঞ্চয়স্থান চালু করেন তাহলে আপনার USB সঞ্চয়স্থান বন্ধ না করা পর্যন্ত আপনার ব্যবহৃত অ্যাপ্লিকেশানগুলির মধ্যে কয়েকটি বন্ধ হয়ে যাবে এবং অনুপলব্ধ হতে পারে৷"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB প্রক্রিয়াটি অসফল হয়েছে"</string> <string name="dlg_ok" msgid="7376953167039865701">"ঠিক আছে"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"একটি মিডিয়া ডিভাইস হিসাবে সংযুক্ত হয়েছে"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"একটি ক্যামেরা হিসাবে সংযুক্ত"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"একটি MIDI ডিভাইস হিসাবে সংযুক্ত করা হয়েছে"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"একটি ইনস্টলার হিসাবে সংযুক্ত হয়েছে"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"একটি USB যন্ত্রাংশতে সংযুক্ত হয়েছে"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"অন্যন্য USB বিকল্পের জন্য স্পর্শ করুন৷"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB সঞ্চয়স্থান ফরম্যাট করবেন?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD ফরম্যাট করবেন?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"আপনার USB সঞ্চয়স্থানে সংরক্ষিত সমস্ত ফাইল মুছে ফেলা হবে৷ এই ক্রিয়াটিকে পূর্বাবস্থায় ফেরানো যাবে না!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">%1$d মিনিটের জন্য (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> পর্যন্ত)</item> <item quantity="other">%1$d মিনিটের জন্য (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> পর্যন্ত)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d ঘন্টার জন্য (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> পর্যন্ত)</item> <item quantity="other">%1$d ঘন্টার জন্য (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> পর্যন্ত)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d মিনিটের জন্য</item> <item quantity="other">%d মিনিটের জন্য</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d ঘন্টার জন্য</item> <item quantity="other">%d ঘন্টার জন্য</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> পর্যন্ত"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"আপনার দ্বারা এটি বন্ধ করা পর্যন্ত"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ca/strings.xml b/core/res/res/values-ca/strings.xml index 81646b3..69b72ef 100644 --- a/core/res/res/values-ca/strings.xml +++ b/core/res/res/values-ca/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permet que l\'aplicació afegeixi, elimini o canviï esdeveniments que pots modificar a la tauleta, inclosos els d\'amics o de companys de feina. Aquesta acció pot permetre que l\'aplicació enviï missatges que sembli que provinguin dels propietaris del calendari o que modifiqui esdeveniments sense el coneixement dels propietaris."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permet que l\'aplicació afegeixi, suprimeixi o canviï esdeveniments que pots modificar al televisor, com ara els d\'amics o de companys de feina. És possible que l\'aplicació enviï missatges que sembli que provenen dels propietaris del calendari o bé que modifiqui esdeveniments sense que el propietari ho sàpiga."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permet que l\'aplicació afegeixi, elimini o canviï esdeveniments que pots modificar al telèfon, inclosos els d\'amics o de companys de feina. Aquesta acció pot permetre que l\'aplicació enviï missatges que sembli que provinguin dels propietaris del calendari o que modifiqui esdeveniments sense el coneixement dels propietaris."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"crear orígens d\'ubicacions fictícies per fer proves"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Crea fonts d\'ubicació fictícies per provar o per instal·lar un proveïdor d\'ubicació nou. Aquesta acció permet que l\'aplicació substitueixi la ubicació o l\'estat que retornen altres fonts d\'ubicació, com ara el GPS o altres proveïdors d\'ubicació."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"accedir a ordres del proveïdor d\'ubicació addicionals"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permet que l\'aplicació accedeixi a ordres addicionals del proveïdor d\'ubicacions; per tant, és possible que l\'aplicació pugui interferir en el funcionament del GPS o d\'altres fonts d\'ubicacions."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ubicació precisa (basada en GPS i xarxa)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"S\'ha cancel·lat l\'operació d\'empremta digital."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"S\'han produït massa intents. Torna-ho a provar més tard."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Torna-ho a provar."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"llegir la configuració de sincronització"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Si actives l\'emmagatzematge USB, algunes de les aplicacions que utilitzes s\'aturaran i pot ser que no estiguin disponibles fins que no desactivis l\'emmagatzematge USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"S\'ha produït un error amb l\'operació de l\'USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"D\'acord"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connectat com a disp. multimèdia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connectat com a càmera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connectat com a dispositiu MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connectat com a instal·lador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connectat a un accessori USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toca per accedir a altres opcions d\'USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formata l\'emmagatzematge USB"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Vols formatar la targeta SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"S\'esborraran tots els fitxers emmagatzemats al dispositiu d\'emmagatzematge USB. Aquesta acció no es pot desfer."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Durant %1$d minuts (fins a les <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durant 1 minut (fins a les <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Durant %1$d hores (fins a les <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durant 1 hora (fins a les <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Durant %d minuts</item> <item quantity="one">Durant un minut</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Durant %d hores</item> <item quantity="one">Durant 1 hora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Fins a les <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Fins que no ho desactivis"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-cs/strings.xml b/core/res/res/values-cs/strings.xml index d3ffb9b..bb21517 100644 --- a/core/res/res/values-cs/strings.xml +++ b/core/res/res/values-cs/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Umožňuje aplikaci přidat, odebrat nebo změnit události, které můžete v tabletu upravovat, a to včetně událostí přátel a spolupracovníků. Toto oprávnění umožňuje aplikaci odesílat zprávy, které budou zdánlivě přicházet od vlastníka kalendáře, nebo upravovat události bez vědomí vlastníka."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Umožňuje aplikaci přidávat, odstraňovat a měnit události, které můžete v televizi upravovat, a to včetně událostí přátel a spolupracovníků. Toto oprávnění umožňuje aplikaci odesílat zprávy, které budou zdánlivě přicházet od vlastníka kalendáře, nebo upravovat události bez vědomí vlastníka."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Umožňuje aplikaci přidat, odebrat nebo změnit události, které můžete v telefonu upravovat, a to včetně událostí přátel a spolupracovníků. Toto oprávnění umožňuje aplikaci odesílat zprávy, které budou zdánlivě přicházet od vlastníků kalendářů, nebo upravovat události bez vědomí vlastníků."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"simulace zdrojů polohy pro účely testování"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Vytváření simulace zdrojů polohy pro účely testování nebo instalace nového poskytovatele polohy. Toto oprávnění umožňuje aplikaci přepsat polohu nebo stav, který vracejí jiné zdroje polohy, například systém GPS nebo poskytovatelé polohy."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"přístup k dalším příkazům poskytovatele polohy"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Umožňuje aplikaci přístup k dalším příkazům poskytovatele polohy. To aplikaci umožní zasahovat do fungování systému GPS a dalších zdrojů polohy."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"přesná poloha (pomocí GPS a sítě)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operace otisku prstu byla zrušena."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Příliš mnoho pokusů. Zkuste to později."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Zkuste to znovu."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"čtení nastavení synchronizace"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Pokud zapnete úložiště USB, dojde k zastavení některých používaných aplikací. Tyto aplikace pravděpodobně nebudou k dispozici až do vypnutí úložiště USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operace rozhraní USB se nezdařila."</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Připojeno jako mediální zařízení"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Připojeno jako fotoaparát"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Připojeno jako zařízení MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Připojeno jako instalátor"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Připojeno k perifernímu zařízení USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Dotykem zobrazíte další možnosti rozhraní USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formátovat úložiště USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formátovat kartu SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Všechny soubory uložené v úložišti USB budou vymazány. Tuto akci nelze vrátit zpět."</string> @@ -1486,24 +1492,28 @@ <item quantity="other">%1$d minut (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Jednu minutu (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="few">%1$d hodiny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">%1$d hodiny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d hodin (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Jednu hodinu (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="few">%d minuty</item> <item quantity="many">%d minuty</item> <item quantity="other">%d minut</item> <item quantity="one">Jednu minutu</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="few">%d hodiny</item> <item quantity="many">%d hodiny</item> <item quantity="other">%d hodin</item> <item quantity="one">Jednu hodinu</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Do <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Dokud tuto funkci nevypnete"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-da/strings.xml b/core/res/res/values-da/strings.xml index 0c56fcd..a9231c3 100644 --- a/core/res/res/values-da/strings.xml +++ b/core/res/res/values-da/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Tillader, at appen kan tilføje, fjerne, ændre begivenheder, som du kan redigere på din tablet, f.eks. venners eller kollegers. Med denne tilladelelse kan appen sende meddelelser, der synes at komme fra ejere af kalendere, eller ændre begivenheder uden ejernes viden."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Giver appen lov til at tilføje, fjerne eller ændre begivenheder, som du kan redigere på dit tv, herunder venners og kollegers begivenheder. Dette kan give appen mulighed for at sende meddelelser, der ser ud, som om de kommer fra ejere af kalendere, eller for at ændre begivenheder uden ejernes viden."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Tillader, at appen kan tilføje, fjerne og ændre begivenheder, som du kan redigere på din telefon, f.eks. venners eller kollegers. Med denne tilladelse kan appen sende meddelelser, der synes at komme fra ejere af kalendere, eller ændre begivenheder uden ejernes viden."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imiterede placeringskilder til test"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Opret imiterede placeringskilder til test, eller installer en ny placeringsudbyder. Med denne tilladelse kan appen tilsidesætte den placering og/eller status, der returneres af andre placeringskilder, f.eks. GPS eller placeringsudbydere."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"få adgang til yderligere kommandoer for placeringsudbyder"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Tillader, at appen kan få adgang til yderligere kommandoer for placeringsudbydere. Dette kan gøre det muligt for appen at forstyrre GPS-funktionen eller andre placeringskilder."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"præcis placering (GPS- og netværksbaseret)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingeraftrykshandlingen blev annulleret."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Du har prøvet for mange gange. Prøv igen senere."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Prøv igen."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"læse indstillinger for synkronisering"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Hvis du slår USB-lager til, stoppes nogle af de apps, som du bruger, og de kan være utilgængelige, indtil du slår USB-lager fra igen."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-handlingen mislykkedes"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Tilsluttet som en medieenhed"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Tilsluttet som et kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Forbundet til en MIDI-enhed"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Tilsluttet som et installationsprogram"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Tilsluttet et USB-ekstraudstyr"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Tryk for at se andre valgmuligheder for USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formater USB-lager?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Vil du formatere SD-kortet?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alle filer, der er gemt på dit USB-lager, slettes. Denne handling kan ikke fortrydes!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">I %1$d minutter (indtil <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">I %1$d minutter (indtil <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">I %1$d timer (indtil <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">I %1$d timer (indtil <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">I %d minutter</item> <item quantity="other">I %d minutter</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">I %d timer</item> <item quantity="other">I %d timer</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Indtil <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Indtil du slår denne indstilling fra"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-de/strings.xml b/core/res/res/values-de/strings.xml index ae08c3f..8c2a79f 100644 --- a/core/res/res/values-de/strings.xml +++ b/core/res/res/values-de/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Ermöglicht der App, Termine, die Sie auf Ihrem Tablet ändern können, hinzuzufügen, zu entfernen und zu ändern, einschließlich der von Freunden und Kollegen. Damit kann die App Nachrichten senden, die so erscheinen, als stammten sie vom jeweiligen Kalenderinhaber, oder Termine ohne Wissen des Inhabers ändern."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Ermöglicht der App, Termine, die Sie auf Ihrem Fernseher bearbeiten können ‒ einschließlich der von Freunden und Kollegen ‒ hinzuzufügen, zu entfernen und zu ändern. Dadurch kann die App möglicherweise Nachrichten senden, die scheinbar von Kalendereigentümern stammen, oder Termine ohne Wissen der Eigentümer ändern."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Ermöglicht der App, Termine, die Sie auf Ihrem Telefon ändern können, hinzuzufügen, zu entfernen und zu ändern, einschließlich der von Freunden und Kollegen. Damit kann die App Nachrichten senden, die so erscheinen, als stammten sie vom jeweiligen Kalenderinhaber, oder Termine ohne Wissen des Inhabers ändern."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"Simulierte Standortquellen für Testzwecke"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Erstellen von simulierten Standortquellen für Testzwecke oder Installation eines neuen Standortanbieters. Damit kann die App den von anderen Standortquellen wie GPS oder Standortanbietern zurückgegebenen Standort und/oder Status überschreiben."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"Auf zusätzliche Dienstanbieterbefehle für Standort zugreifen"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ermöglicht der App, auf zusätzliche Standortanbieterbefehle zuzugreifen. Damit könnte die App die Funktionsweise von GPS oder anderen Standortquellen beeinträchtigen."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"Genauer Standort (GPS- und netzwerkbasiert)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingerabdruckvorgang abgebrochen"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Zu viele Versuche. Versuchen Sie es später erneut."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Bitte versuchen Sie es erneut."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"Synchronisierungseinstellungen lesen"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Wenn Sie den USB-Speicher aktivieren, werden einige von Ihnen verwendeten Apps beendet und sind möglicherweise erst wieder verfügbar, wenn Sie den USB-Speicher wieder deaktivieren."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-Vorgang fehlgeschlagen"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Als Mediengerät angeschlossen"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Als Kamera angeschlossen"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Als MIDI-Gerät verbunden"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Als Installationsprogramm angeschlossen"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Mit USB-Zubehör verbunden"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Für mehr USB-Optionen berühren"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB-Speicher formatieren?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD-Karte formatieren?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alle in Ihrem USB-Speicher abgelegten Dateien werden gelöscht. Diese Aktion kann nicht rückgängig gemacht werden!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d Minuten (bis <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">1 Minute (bis <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d Stunden (bis <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">1 Stunde (bis <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Für %d Minuten</item> <item quantity="one">Für 1 Minute</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Für %d Stunden</item> <item quantity="one">Für eine Stunde</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Bis <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Bis zur Deaktivierung"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-el/strings.xml b/core/res/res/values-el/strings.xml index 72dd5bb..5150f45 100644 --- a/core/res/res/values-el/strings.xml +++ b/core/res/res/values-el/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Επιτρέπει στην εφαρμογή την προσθήκη, την κατάργηση και την αλλαγή συμβάντων που μπορείτε να τροποποιήσετε στο tablet σας, συμπεριλαμβανομένων εκείνων των φίλων ή των συναδέλφων σας. Αυτό μπορεί να επιτρέπει στην εφαρμογή να αποστέλλει μηνύματα που φαίνεται ότι προέρχονται από κατόχους ημερολογίων ή να τροποποιεί συμβάντα χωρίς να το γνωρίζουν οι κάτοχοι."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Επιτρέπει στην εφαρμογή να προσθέτει, να καταργεί και να αλλάζει συμβάντα που μπορείτε να τροποποιείτε στην τηλεόρασή σας, συμπεριλαμβανομένων όσων ανήκουν σε φίλους ή συναδέλφους. Αυτό ενδέχεται να επιτρέπει στην εφαρμογή να αποστέλλει μηνύματα τα οποία φαίνεται ότι προέρχονται από κατόχους ημερολογίου ή να τροποποιεί συμβάντα χωρίς να το γνωρίζουν οι κάτοχοί τους."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Επιτρέπει στην εφαρμογή την προσθήκη, την κατάργηση και την αλλαγή συμβάντων που μπορείτε να τροποποιήσετε στο τηλέφωνό σας, συμπεριλαμβανομένων εκείνων των φίλων ή των συναδέλφων σας. Αυτό μπορεί να επιτρέπει στην εφαρμογή να αποστέλλει μηνύματα που φαίνεται ότι προέρχονται από κατόχους ημερολογίων ή να τροποποιεί συμβάντα χωρίς να το γνωρίζουν οι κάτοχοι."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"δημιουργία ψευδών πηγών τοποθεσίας για δοκιμή"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Δημιουργεί ψευδείς πηγές τοποθεσίας για τη δοκιμή ή την εγκατάσταση νέου παρόχου τοποθεσίας. Αυτό δίνει τη δυνατότητα στην εφαρμογή να παρακάμψει την τοποθεσία και/ή την κατάσταση που επιστρέφεται από άλλες πηγές τοποθεσίας, όπως το GPS ή οι πάροχοι τοποθεσίας."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"πρόσβαση σε επιπλέον εντολές παρόχου τοποθεσίας"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Επιτρέπει στην εφαρμογή την πρόσβαση σε επιπλέον εντολές παρόχου τοποθεσίας. Αυτό μπορεί να δώσει τη δυνατότητα στην εφαρμογή να παρέμβει στη λειτουργία του GPS ή άλλων πηγών τοποθεσίας."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ακριβής θέση (GPS και βάσει δικτύου)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Η λειτουργία μοναδικού χαρακτηριστικού ακυρώθηκε."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Πάρα πολλές προσπάθειες. Δοκιμάστε ξανά αργότερα."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Δοκιμάστε ξανά."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ανάγνωση ρυθμίσεων συγχρονισμού"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Εάν ενεργοποιήσετε τον χώρο αποθήκευσης USB, ορισμένες από τις εφαρμογές που χρησιμοποιείτε θα σταματήσουν και ενδέχεται να μην είναι διαθέσιμες μέχρι να απενεργοποιήσετε τον χώρο αποθήκευσης USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Λειτουργία USB ανεπιτυχής"</string> <string name="dlg_ok" msgid="7376953167039865701">"ΟΚ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Συνδεδεμένο ως συσκευή πολυμέσων"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Συνδεδεμένο ως φωτογραφική μηχανή"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Συνδεθήκατε ως συσκευή MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Συνδεδεμένο ως πρόγραμμα εγκατάστασης"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Σύνδεση σε αξεσουάρ USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Αγγίξτε για άλλες επιλογές USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Μορφοπ.χώρ.αποθ.USB;"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Να γίνει διαμόρφωση της κάρτας SD;"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Όλα τα αρχεία που είναι αποθηκευμένα στον αποθηκευτικό σας χώρο USB θα διαγραφούν. Αυτή η ενέργεια δεν είναι αναστρέψιμη!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Για %1$d λεπτά (έως τις <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Για ένα λεπτό (έως τις <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Για %1$d ώρες (έως τις <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Για μία ώρα (έως τις <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Για %d λεπτά</item> <item quantity="one">Για ένα λεπτό</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Για %d ώρες</item> <item quantity="one">Για μία ώρα</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Έως τις <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Μέχρι να το απενεργοποιήσετε"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-en-rAU/strings.xml b/core/res/res/values-en-rAU/strings.xml index 3cd9d7c..5cb034a 100644 --- a/core/res/res/values-en-rAU/strings.xml +++ b/core/res/res/values-en-rAU/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Allows the app to add, remove and change events that you can modify on your tablet, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Allows the app to add, remove, change events that you can modify on your TV, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Allows the app to add, remove and change events that you can modify on your phone, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"mock location sources for testing"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Create mock location sources for testing or install a new location provider. This allows the app to override the location and/or status returned by other location sources such as GPS or location providers."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"access extra location provider commands"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Allows the app to access extra location provider commands. This may allow the app to interfere with the operation of the GPS or other location sources."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precise location (GPS and network-based)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingerprint operation cancelled."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Too many attempts. Try again later."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Try again."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"read sync settings"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"If you turn on USB storage, some apps that you\'re using will stop and may be unavailable until you turn off USB storage."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB operation unsuccessful"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connected as a media device"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connected as a camera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connected as a MIDI device"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connected as an installer"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connected to a USB accessory"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Touch for other USB options."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format USB storage?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Format SD card?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"All files stored in your USB storage will be erased. This action can\'t be reversed!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">For %1$d minutes (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one minute (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">For %1$d hours (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one hour (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">For %d minutes</item> <item quantity="one">For one minute</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">For %d hours</item> <item quantity="one">For one hour</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Until <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Until you turn this off"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-en-rGB/strings.xml b/core/res/res/values-en-rGB/strings.xml index 3cd9d7c..5cb034a 100644 --- a/core/res/res/values-en-rGB/strings.xml +++ b/core/res/res/values-en-rGB/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Allows the app to add, remove and change events that you can modify on your tablet, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Allows the app to add, remove, change events that you can modify on your TV, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Allows the app to add, remove and change events that you can modify on your phone, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"mock location sources for testing"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Create mock location sources for testing or install a new location provider. This allows the app to override the location and/or status returned by other location sources such as GPS or location providers."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"access extra location provider commands"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Allows the app to access extra location provider commands. This may allow the app to interfere with the operation of the GPS or other location sources."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precise location (GPS and network-based)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingerprint operation cancelled."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Too many attempts. Try again later."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Try again."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"read sync settings"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"If you turn on USB storage, some apps that you\'re using will stop and may be unavailable until you turn off USB storage."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB operation unsuccessful"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connected as a media device"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connected as a camera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connected as a MIDI device"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connected as an installer"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connected to a USB accessory"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Touch for other USB options."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format USB storage?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Format SD card?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"All files stored in your USB storage will be erased. This action can\'t be reversed!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">For %1$d minutes (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one minute (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">For %1$d hours (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one hour (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">For %d minutes</item> <item quantity="one">For one minute</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">For %d hours</item> <item quantity="one">For one hour</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Until <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Until you turn this off"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-en-rIN/strings.xml b/core/res/res/values-en-rIN/strings.xml index 3cd9d7c..5cb034a 100644 --- a/core/res/res/values-en-rIN/strings.xml +++ b/core/res/res/values-en-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Allows the app to add, remove and change events that you can modify on your tablet, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Allows the app to add, remove, change events that you can modify on your TV, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Allows the app to add, remove and change events that you can modify on your phone, including those of friends or co-workers. This may allow the app to send messages that appear to come from calendar owners, or modify events without the owners\' knowledge."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"mock location sources for testing"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Create mock location sources for testing or install a new location provider. This allows the app to override the location and/or status returned by other location sources such as GPS or location providers."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"access extra location provider commands"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Allows the app to access extra location provider commands. This may allow the app to interfere with the operation of the GPS or other location sources."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precise location (GPS and network-based)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingerprint operation cancelled."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Too many attempts. Try again later."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Try again."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"read sync settings"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"If you turn on USB storage, some apps that you\'re using will stop and may be unavailable until you turn off USB storage."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB operation unsuccessful"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connected as a media device"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connected as a camera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connected as a MIDI device"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connected as an installer"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connected to a USB accessory"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Touch for other USB options."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format USB storage?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Format SD card?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"All files stored in your USB storage will be erased. This action can\'t be reversed!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">For %1$d minutes (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one minute (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">For %1$d hours (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">For one hour (until <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">For %d minutes</item> <item quantity="one">For one minute</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">For %d hours</item> <item quantity="one">For one hour</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Until <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Until you turn this off"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-es-rUS/strings.xml b/core/res/res/values-es-rUS/strings.xml index cce9406..a36e5d7 100644 --- a/core/res/res/values-es-rUS/strings.xml +++ b/core/res/res/values-es-rUS/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite que la aplicación agregue, elimine y cambie eventos que se pueden modificar en la tablet, incluidos los de amigos o compañeros de trabajo. La aplicación puede utilizar este permiso para enviar mensajes que parezcan proceder de propietarios de un calendario o para modificar eventos sin el consentimiento de los propietarios."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite que la aplicación agregue, elimine y cambie eventos que puedes modificar en la TV, incluidos aquellos de amigos o colegas. Esta opción puede permitir que la aplicación envíe mensajes que parecen ser de propietarios del calendario o modifique eventos sin que lo sepan los propietarios."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite que la aplicación agregue, elimine y cambie eventos que se pueden modificar en el dispositivo, incluidos los de amigos o compañeros de trabajo. La aplicación puede utilizar este permiso para enviar mensajes que parezcan proceder de propietarios de un calendario o para modificar los eventos sin el consentimiento de los propietarios."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"crear fuentes de ubicación de prueba"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Permite crear fuentes de ubicación simuladas para hacer pruebas o instalar un nuevo proveedor de ubicación. Esto autoriza a la aplicación a sobrescribir la ubicación o el estado proporcionados por otras fuentes de ubicación, como los proveedores de ubicación o GPS."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"acceder a comandos adicionales del proveedor del lugar"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite que la aplicación acceda a comandos adicionales del proveedor de ubicación. Esto puede permitirle a la aplicación interferir con el funcionamiento del GPS o de otras fuentes de ubicación."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ubicación precisa (según el GPS y la red)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Se canceló la operación de huella digital."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Demasiados intentos. Vuelve a intentarlo más tarde."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Vuelve a intentarlo."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"leer la configuración de sincronización"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Si activas el almacenamiento USB, se detendrán algunas aplicaciones que estás usando y es posible que no estén disponibles hasta que lo desactives."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Error en el funcionamiento del USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"Aceptar"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Conectado como un dispositivo de medios"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Conectado como una cámara"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Conectado como dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Conectado como un instalador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Conectado a un accesorio USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toca para acceder a otras opciones de USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"¿Deseas formatear el almacenamiento USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"¿Deseas formatear la tarjeta SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Se borrarán todos los archivos guardados en el almacenamiento USB. Esta acción no se puede deshacer."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Durante %1$d minutos hasta la(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g></item> <item quantity="one">Durante 1 minuto; hasta la(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g></item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Durante %1$d horas, hasta la(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g></item> <item quantity="one">Durante 1 hora; hasta la(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g></item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Durante %d minutos</item> <item quantity="one">Durante un minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Durante %d horas</item> <item quantity="one">Durante 1 hora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Hasta la(s) <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Hasta que lo desactives"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-es/strings.xml b/core/res/res/values-es/strings.xml index 65b51b5..7a2fc10 100644 --- a/core/res/res/values-es/strings.xml +++ b/core/res/res/values-es/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite que la aplicación añada, elimine y cambie eventos que se pueden modificar en el tablet, incluidos los de amigos o compañeros de trabajo. La aplicación puede utilizar este permiso para enviar mensajes que parezcan proceder de propietarios de un calendario o para modificar eventos sin conocimiento de los propietarios."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite que la aplicación añada, elimine y modifique eventos que puedes modificar en la TV, incluidos los de amigos y compañeros de trabajo. La aplicación puede utilizar este permiso para enviar mensajes que parezcan proceder de propietarios de un calendario o para modificar eventos sin conocimiento de los propietarios."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite que la aplicación añada, elimine y cambie eventos que se pueden modificar en el teléfono, incluidos los de amigos o compañeros de trabajo. La aplicación puede utilizar este permiso para enviar mensajes que parezcan proceder de propietarios de un calendario o para modificar eventos sin conocimiento de los propietarios."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"simular fuentes de ubicación para prueba"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Permite crear fuentes de ubicación simuladas para hacer pruebas o instalar un nuevo proveedor de ubicación. Este permiso autoriza a la aplicación a sobrescribir la ubicación o el estado proporcionados por otras fuentes de ubicación, como los proveedores de ubicación o GPS."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"acceder a comandos de proveedor de ubicación adicional"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite que la aplicación acceda a otros comandos del proveedor de ubicación. De esta forma, la aplicación podrá interferir en el funcionamiento del GPS o de otras fuentes de ubicación."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ubicación precisa (basada en redes y GPS)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Se ha cancelado la operación de huella digital."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Demasiados intentos. Vuelve a intentarlo más tarde."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Vuelve a intentarlo."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"leer la configuración de sincronización"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Si activas el almacenamiento USB, se detendrán algunas aplicaciones que estás usando y es posible que no estén disponibles hasta que lo desactives."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Error de funcionamiento de USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"Aceptar"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Conectado como dispositivo multimedia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Conectado como una cámara"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Conectado como dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Conectado como instalador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Conectado a un accesorio USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toca para acceder a otras opciones de USB"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"¿Formatear USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"¿Formatear la tarjeta SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Se borrarán todos los archivos almacenados en el almacenamiento USB. Esta acción no se puede deshacer."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Durante %1$d minutos (hasta las <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante un minuto (hasta las <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Durante %1$d horas (hasta las <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante una hora (hasta las <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Durante %d minutos</item> <item quantity="one">Durante un minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Durante %d horas</item> <item quantity="one">Durante una hora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Hasta las <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Hasta apagar el dispositivo"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-et-rEE/strings.xml b/core/res/res/values-et-rEE/strings.xml index 95b8fef..595b634 100644 --- a/core/res/res/values-et-rEE/strings.xml +++ b/core/res/res/values-et-rEE/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Võimaldab rakendusel lisada, eemaldada ja muuta sündmusi, mida saate muuta oma tahvelarvutis, sh sõprade ja töökaaslaste omi. See võib võimaldada rakendusel saata sõnumeid, mis näivad tulevat kalendri omanikelt, või muuta sündmusi omaniku teadmata."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Lubab rakendusel lisada, kustutada ja muuta sündmusi, mida saate teleris muuta, sealhulgas sõprade ja töökaaslaste omi. See lubab rakendusel saata sõnumeid, mis pärinevad näiliselt kalendrite omanikelt, või muuta sündmusi omanike teadmata."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Võimaldab rakendusel lisada, eemaldada ja muuta sündmusi, mida saate muuta oma telefonis, sh sõprade ja töökaaslaste omi. See võib võimaldada rakendusel saata sõnumeid, mis näivad tulevat kalendri omanikelt, või muuta sündmusi omaniku teadmata."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"võltsasukohad testimiseks"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Looge võltsasukoha allikaid, et katsetada või installida uut asukohapakkujat. See lubab rakendusel tühistada teiste asukohaallikate, näiteks GPS-i või asukohapakkujate tagastatud asukoha ja/või oleku."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"juurdepääs asukohapakkuja lisakäskudele"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Võimaldab rakendusel juurde pääseda asukohapakkuja erikäskudele. See võib lubada rakendusel mõjutada GPS-i või muude asukohaallikate tööd."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"täpne asukoht (GPS- ja võrgupõhine)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Sõrmejälje toiming tühistati."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Liiga palju katseid. Proovige hiljem uuesti."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Proovige uuesti."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"loe sünkroonimisseadeid"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Kui lülitate USB-salvestusruumi sisse, võivad mõned kasutatavad rakendused peatuda ega pruugi olla saadaval enne USB-salvestusruumi väljalülitamist."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB toiming ebaõnnestus"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Ühendatud meediumiseadmena"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Ühendatud kaamerana"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Ühendatud MIDI-seadmena"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Ühendatud installijana"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Ühendatud USB-lisaseadmega"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Puudutage teisi USB valikuid."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Vormind. USB-seade?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Kas vormindada SD-kaart?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Kõik USB-mäluseadmele salvestatud failid kustutatakse. Seda toimingut ei saa tagasi võtta."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d minutiks (kuni <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Üheks minutiks (kuni <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d tunniks (kuni <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Üheks tunniks (kuni <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d minutiks</item> <item quantity="one">Üheks minutiks</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d tunniks</item> <item quantity="one">Üheks tunniks</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Kuni <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Kuni lülitate selle välja"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-eu-rES/strings.xml b/core/res/res/values-eu-rES/strings.xml index c8f265c..77453d2 100644 --- a/core/res/res/values-eu-rES/strings.xml +++ b/core/res/res/values-eu-rES/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Tabletan alda ditzakezun gertaerak gehitzeko, kentzeko eta aldatzeko baimena ematen die aplikazioei, lagunenak eta lankideenak barne. Horrela, aplikazioak egutegi-jabeenak diruditen mezuak bidal ditzake, edo gertaerak alda ditzake jabeak jakin gabe."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Telebistan alda ditzakezun gertaerak gehitzea, kentzea edo aldatzea baimentzen die aplikazioei, lagunenak eta lankideenak barne. Horrela, egutegi-jabeenak diruditen mezuak bidal ditzakete aplikazioek, edo gertaerak alda ditzakete jabeek jakin gabe."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Telefonoan alda ditzakezun gertaerak gehitzeko, kentzeko eta aldatzeko baimena ematen die aplikazioei, lagunenak eta lankideenak barne. Horrela, aplikazioak egutegi-jabeenak diruditen mezuak bidal ditzake, edo gertaerak alda ditzake jabeak jakin gabe."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imitatu kokapen-iturburuak probak egiteko"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Probak egiteko kokapenaren iturburu faltsuak sortzeko edo kokapen-hornitzaile berria instalatzeko baimena ematen die aplikazioei. Horrela, GPSak edo kokapen-hornitzaileak bezalako kokapenaren iturburuek emandako kokapena edota egoera ordezka ditzake."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"atzitu kokapen-hornitzaileen komando gehigarriak"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Kokapen-hornitzailearen agindu gehigarriak atzitzea baimentzen die aplikazioei. Horrela, agian aplikazioek GPSaren edo bestelako kokapenaren iturburuen funtzionamenduan eragina izan dezakete."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"kokapena zehatza (GPSan eta sarean oinarrituta)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Hatz-markaren eragiketa bertan behera utzi da."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Saiakera gehiegi egin dituzu. Saiatu berriro geroago."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Saiatu berriro."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"Irakurri sinkronizazio-ezarpenak"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"USB memoria aktibatzen baduzu, erabiltzen ari zaren aplikazio batzuk gelditu egingo dira eta agian ez dira erabilgarri egongo USB memoria desaktibatu arte."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB eragiketak huts egin du"</string> <string name="dlg_ok" msgid="7376953167039865701">"Ados"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Multimedia-gailu gisa konektatua"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Kamera gisa konektatua"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI gailu gisa konektatu da"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Instalatzaile gisa konektatua"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB osagarri batera konektatuta"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Ukitu beste USB aukera batzuk ikusteko."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB memoria formateatu?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD txartela formateatu?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB memorian dauden fitxategi guztiak ezabatuko dira. Ezin izango duzu ekintza hori desegin!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d minutuz (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> arte)</item> <item quantity="one">Minutu batez (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> arte)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d orduz (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> arte)</item> <item quantity="one">Ordubetez (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> arte)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d minutuz</item> <item quantity="one">Minutu batez</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d orduz</item> <item quantity="one">Ordubetez</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> arte"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Zuk desaktibatu arte"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-fa/strings.xml b/core/res/res/values-fa/strings.xml index e79a321..f92b82d 100644 --- a/core/res/res/values-fa/strings.xml +++ b/core/res/res/values-fa/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"به برنامه اجازه میدهد رویدادهایی را که میتوانید در رایانهٔ لوحی خود اصلاح نمایید، از جمله رویدادهای دوستان یا همکاران خود را، اضافه یا حذف کرده یا تغییر دهد. این ویژگی ممکن است به برنامه اجازه دهد پیامهایی را که به نظر میرسد از مالکین تقویم رسیده است ارسال نموده یا رویدادها را بدون اطلاع مالک اصلاح کنند."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"به برنامه اجازه میدهد به افزودن، حذف یا تغییر رویدادهایی بپردازد که میتوانید در تلویزیونتان تغییر دهید، از جمله رویدادهای دوستان یا همکاران خود. این ویژگی شاید به برنامه اجازه دهد پیامهایی را ارسال کند که به نظر میرسد از جانب مالکین تقویم است یا رویدادها را بدون اطلاع مالک تغییر دهد."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"به برنامه اجازه میدهد رویدادهایی را که میتوانید در تلفن خود اصلاح نمایید، از جمله رویدادهای دوستان یا همکاران خود را، اضافه یا حذف کرده یا تغییر دهد. این ویژگی ممکن است به برنامه اجازه دهد پیامهایی را که به نظر میرسد از مالکین تقویم رسیده است ارسال نموده یا رویدادها را بدون اطلاع مالک اصلاح کنند."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"منابع مکان کاذب برای تست"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"منابع موقعیت مکانی کاذب را برای تست کردن یا نصب یک ارائهدهنده موقعیت مکانی جدید ایجاد نمایید. این کار به برنامه امکان میدهد موقعیت مکانی و/یا وضعیت گزارش داده شده توسط سایر منابع موقعیت مکانی مانند GPS یا ارائهدهندگان موقعیت مکانی را نادیده بگیرد."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"دسترسی به فرمانهای بیشتر ارائه دهنده مکان"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"به برنامه اجازه میدهد به دستورات ارائهدهنده مکان تکمیلی دسترسی داشته باشد. این کار ممکن است به برنامه امکان دهد با کارکرد GPS یا منابع دیگر مکان تداخل داشته باشد."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"موقعیت مکانی دقیق (مبتنی بر GPS و شبکه)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"عملکرد اثر انگشت لغو شد."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"تلاشهای زیادی انجام شده است. بعداً دوباره امتحان کنید."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"دوباره امتحان کنید."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"خواندن تنظیمات همگامسازی"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"در صورت فعال کردن حافظهٔ USB، برخی از برنامههایی که از آنها استفاده میکنید متوقف میشوند و تا زمانی که حافظهٔ USB را غیرفعال نکنید امکان استفاده از آنها وجود نخواهد داشت."</string> <string name="dlg_error_title" msgid="7323658469626514207">"راهاندازی USB ناموفق بود."</string> <string name="dlg_ok" msgid="7376953167039865701">"تأیید"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"متصل شده بهعنوان دستگاه رسانهای"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"متصل شده بهعنوان دوربین"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"به عنوان یک دستگاه MIDI متصل شد"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"متصل شده بهعنوان نصب کننده"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"به یک وسیله جانبی USB وصل شده است"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"برای سایر گزینههای USB لمس کنید."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"حافظهٔ USB فرمت شود؟"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"کارت SD فرمت شود؟"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"همه فایلهای ذخیره شده در حافظهٔ USB پاک خواهد شد. این عمل را نمیتوان برگرداند!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">به مدت %1$d دقیقه (تا <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">به مدت %1$d دقیقه (تا <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">به مدت %1$d ساعت (تا <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">به مدت %1$d ساعت (تا <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">به مدت %d دقیقه</item> <item quantity="other">به مدت %d دقیقه</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">به مدت %d ساعت</item> <item quantity="other">به مدت %d ساعت</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"تا <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"تا وقتی آن را خاموش کنید"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-fi/strings.xml b/core/res/res/values-fi/strings.xml index da3572e..d4f3335 100644 --- a/core/res/res/values-fi/strings.xml +++ b/core/res/res/values-fi/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Antaa sovelluksen lisätä, poistaa ja muuttaa tapahtumia, joita voit muokata tablet-laitteellasi. Näihin kuuluvat myös kavereidesi tai työkavereidesi tapahtumat. Sovellus voi lähettää viestejä, jotka vaikuttavat kalenterin omistajien lähettämiltä, tai muokata tapahtumia ilman niiden omistajien lupaa."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Antaa sovelluksen lisätä, poistaa ja muuttaa tapahtumia, joita on mahdollista muokata televisiolla. Tällaiset tapahtumat voivat olla kavereiden tai työkavereiden kutsuja. Sovellus voi lähettää viestejä, jotka näyttävät tulevan kalenterin omistajalta, tai muokata tapahtumia omistajan tietämättä."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Antaa sovelluksen lisätä, poistaa ja muuttaa tapahtumia, joita voit muokata puhelimellasi. Näihin kuuluvat myös kavereidesi tai työkavereidesi tapahtumat. Sovellus voi lähettää viestejä, jotka vaikuttavat kalenterin omistajien lähettämiltä, tai muokata tapahtumia ilman niiden omistajien lupaa."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imitoi sijaintilähteitä testaustarkoituksissa"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Luo imitoituja sijaintilähteitä testaustarkoituksessa tai asenna uusi sijaintipalvelu. Sovellus voi ohittaa muiden sijaintilähteiden kuten GPS:n ja sijaintipalveluiden palauttaman sijainnin ja/tai tilan."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"käytä lisää sijainnintarjoajakomentoja"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Antaa sovelluksen käyttää ylimääräisiä sijaintipalvelukomentoja. Sovellus saattaa tällöin häiritä GPS:n tai muiden sijaintilähteiden toimintaa."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"tarkka sijainti (GPS- ja verkkopohjainen)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Sormenjälkitoiminto peruutettiin."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Liian monta yritystä. Yritä myöhemmin uudelleen."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Yritä uudelleen."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lue synkronointiasetuksia"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Jos otat USB-tallennustilan käyttöön, osa käyttämistäsi sovelluksista pysähtyy eikä ehkä ole käytettävissä, ennen kuin poistat USB-tallennustilan käytöstä."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-toiminto epäonnistui."</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Kytketty medialaitteena"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Kytketty kamerana"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Yhdistetty MIDI-laitteeseen"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Kytketty asennusohjelmana"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Liitetty USB-laitteeseen"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Käytä muita USB-vaihtoehtoja koskettamalla."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Alusta USB-tila?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Alustetaanko SD-kortti?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Kaikki USB-tallennustilaan tallennetut tiedostot poistetaan. Tätä toimintoa ei voi kumota!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d minuutiksi (kunnes kello on <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Yhdeksi minuutiksi (kunnes kello on <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d tunniksi (kunnes kello on <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Yhdeksi tunniksi (kunnes kello on <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d minuutiksi</item> <item quantity="one">Minuutiksi</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d tunniksi</item> <item quantity="one">Tunniksi</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Kunnes kello on <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Kunnes poistat tämän käytöstä"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-fr-rCA/strings.xml b/core/res/res/values-fr-rCA/strings.xml index 3260fb8..10fb74f 100644 --- a/core/res/res/values-fr-rCA/strings.xml +++ b/core/res/res/values-fr-rCA/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permet à l\'application d\'ajouter, de supprimer et d\'apporter des modifications aux événements modifiables sur votre tablette, y compris ceux de vos amis ou de vos collègues. Cette autorisation peut lui permettre d\'envoyer des messages qui semblent provenir de propriétaires de l\'agenda ou de modifier les événements à l\'insu des propriétaires."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permet à l\'application d\'ajouter, de supprimer et de modifier les événements modifiables sur votre téléviseur, y compris ceux de vos amis et de vos collègues. Cette autorisation peut permettre à une application d\'envoyer des messages semblant provenir du propriétaire de l\'agenda ou modifier les événements à l\'insu de celui-ci."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permet à l\'application d\'ajouter, de supprimer et d\'apporter des modifications aux événements modifiables sur votre téléphone, y compris ceux de vos amis ou de vos collègues. Cette autorisation peut lui permettre d\'envoyer des messages qui semblent provenir de propriétaires de l\'agenda ou de modifier les événements à l\'insu des propriétaires."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"créer des sources de localisation fictives à des fins de test"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Permet de créer des sources de localisation fictives à des fins de tests ou pour installer un nouveau fournisseur de position. L\'application peut ainsi modifier la position ou l\'état renvoyé par d\'autres sources de localisation telles que le GPS ou les fournisseurs de position."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"accéder aux commandes de fournisseur de position géographique supplémentaires"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permet à l\'application d\'accéder à des commandes de localisation supplémentaires offertes par le fournisseur. Elle est ainsi susceptible d\'interférer avec le bon fonctionnement du GPS ou de toute autre source de localisation."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"position précise (GPS et réseau)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Opération d\'empreinte numérique annulée."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Trop de tentatives. Veuillez réessayer plus tard."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Réessayer."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lire les paramètres de synchronisation"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Si vous activez la mémoire de stockage USB, certaines applications en cours d\'utilisation vont être fermées et risquent de rester indisponibles jusqu\'à ce que la mémoire de stockage USB soit désactivée."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Échec du fonctionnement de la mémoire de stockage USB."</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connecté en tant qu\'app. multimédia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connecté en tant qu\'appareil photo"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connecté en tant qu\'appareil MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connecté en tant que programme d\'installation"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connecté à un accessoire USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Appuyez pour accéder aux autres options USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formater mémoire?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formater la carte SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Tous les fichiers stockés sur la mémoire de stockage USB vont être effacés. Cette action est irréversible."</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Pendant %1$d minute (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Pendant %1$d minutes (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Pendant %1$d heure (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Pendant %1$d heures (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Pendant %d minute</item> <item quantity="other">Pendant %d minutes</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Pendant %d heure</item> <item quantity="other">Pendant %d heures</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Jusqu\'à <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Jusqu\'à la désactivation"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-fr/strings.xml b/core/res/res/values-fr/strings.xml index 33f1a90..ac0305e 100644 --- a/core/res/res/values-fr/strings.xml +++ b/core/res/res/values-fr/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permet à l\'application d\'ajouter, de supprimer et d\'apporter des modifications aux événements modifiables sur votre tablette, y compris ceux de vos amis ou de vos collègues. Cette autorisation peut lui permettre d\'envoyer des messages qui semblent provenir de propriétaires de l\'agenda ou de modifier les événements à l\'insu des propriétaires."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permet à l\'application d\'ajouter, de supprimer et de modifier les événements modifiables sur le téléviseur, y compris ceux de vos amis et de vos collègues. Cette autorisation peut permettre à une application d\'envoyer des messages qui semblent provenir du propriétaire de l\'agenda ou de modifier les événements à l\'insu de celui-ci."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permet à l\'application d\'ajouter, de supprimer et d\'apporter des modifications aux événements modifiables sur votre téléphone, y compris ceux de vos amis ou de vos collègues. Cette autorisation peut lui permettre d\'envoyer des messages qui semblent provenir de propriétaires de l\'agenda ou de modifier les événements à l\'insu des propriétaires."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"Création de sources de localisation fictives à des fins de test"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Permet de créer des sources de localisation fictives à des fins de tests ou pour installer un nouveau fournisseur de position. L\'application peut ainsi modifier la position et/ou l\'état renvoyé par d\'autres sources de localisation telles que le GPS ou les fournisseurs de position."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"Accès aux commandes de fournisseur de position géographique supplémentaires"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permet à l\'application d\'accéder à des commandes de localisation supplémentaires offertes par le fournisseur. Elle est ainsi susceptible d\'interférer avec le bon fonctionnement du GPS ou de toute autre source de localisation."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"connaître votre position précise (GPS et réseau)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Opération d\'empreinte numérique annulée."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Trop de tentatives. Veuillez réessayer plus tard."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Veuillez réessayer."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lire les paramètres de synchronisation"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Si vous activez la mémoire de stockage USB, certaines applications en cours d\'utilisation vont être fermées et risquent de rester indisponibles jusqu\'à ce que la mémoire de stockage USB soit désactivée."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Échec du fonctionnement de la mémoire de stockage USB."</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Connecté en tant qu\'appareil multimédia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Connecté en tant qu\'appareil photo"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connecté en tant qu\'appareil MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Connecté en tant que programme d\'installation"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Connecté à un accessoire USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Appuyez ici pour accéder aux autres options USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formater mémoire ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formater la carte SD ?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Tous les fichiers stockés sur la mémoire de stockage USB vont être effacés. Cette action est irréversible."</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Pendant %1$d minute (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Pendant %1$d minutes (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Pendant %1$d heure (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Pendant %1$d heures (jusqu\'à <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Pendant %d minute</item> <item quantity="other">Pendant %d minutes</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Pendant %d heure</item> <item quantity="other">Pendant %d heures</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Jusqu\'à <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Jusqu\'à la désactivation"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-gl-rES/strings.xml b/core/res/res/values-gl-rES/strings.xml index 9eaa5d8..17eef31 100644 --- a/core/res/res/values-gl-rES/strings.xml +++ b/core/res/res/values-gl-rES/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite á aplicación engadir, eliminar e cambiar eventos que podes modificar no teu tablet, incluídos os de amigos ou compañeiros de traballo. É posible que esta acción permita á aplicación enviar mensaxes que parecen proceder de propietarios de calendarios ou modificar eventos sen o coñecemento dos propietarios."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite que a aplicación engada, elimine e cambie eventos que se poden modificar na televisión, incluídos os de amigos e compañeiros de traballo. A aplicación pode utilizar este permiso para enviar mensaxes que poidan proceder de propietarios dun calendario ou para modificar eventos sen coñecemento dos propietarios."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite á aplicación engadir, eliminar e cambiar eventos que podes modificar no teu teléfono, incluídos os de amigos ou compañeiros de traballo. É posible que esta acción permita á aplicación enviar mensaxes que parecen proceder de propietarios de calendarios ou modificar eventos sen o coñecemento dos propietarios."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"fontes da localización falsas para probas"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Permite crear fontes de localización falsas para probar ou instalar un novo provedor de localizacións. Isto permite á aplicación anular a localización e/ou o estado obtido por outras fontes de localización como o GPS ou provedores de localización."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"acceder a comandos adicionais do provedor de situación"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite á aplicación acceder a comandos adicionais de fornecedor de localizacións. É posible que isto provoque que a aplicación interfira co funcionamento do GPS ou doutras fontes da localización."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"localización precisa (baseada en GPS e na rede)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Cancelouse a operación da impresión dixital."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Demasiados intentos. Téntao de novo máis tarde."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Téntao de novo."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ler a configuración de sincronización"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Se activas o almacenamento USB, algunhas aplicacións que estás usando deteranse e é posible que non estean dispoñibles ata que desactives o almacenamento USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Produciuse un erro na operación do USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"Aceptar"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Conectado como dispositivo multimedia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Conectado como unha cámara"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Conectado como dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Conectado como instalador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Conectado a un accesorio USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toca para acceder a outras opcións de USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Queres formatar o almacenamento USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Queres formatar a tarxeta SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Borraranse todos os ficheiros gardados no teu almacenamento USB. Esta acción non se pode desfacer."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Durante %1$d minutos (ata as <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante un minuto (ata as <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Durante %1$d horas (ata as <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante unha hora (ata as <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Durante %d minutos</item> <item quantity="one">Durante un minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Durante %d horas</item> <item quantity="one">Durante unha hora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Ata as <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Ata que desactives isto"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-gu-rIN/strings.xml b/core/res/res/values-gu-rIN/strings.xml index 5e9e6be..aa91eb9 100644 --- a/core/res/res/values-gu-rIN/strings.xml +++ b/core/res/res/values-gu-rIN/strings.xml @@ -129,6 +129,7 @@ <string-array name="wfcOperatorErrorNotificationMessages"> </string-array> <string name="wfcSpnFormat" msgid="8211621332478306568">"%s"</string> + <string name="wfcDataSpnFormat" msgid="1118052028767666883">"%s"</string> <string name="wifi_calling_off_summary" msgid="8720659586041656098">"બંધ"</string> <string name="wfc_mode_wifi_preferred_summary" msgid="1994113411286935263">"Wi-Fi પસંદ કર્યું"</string> <string name="wfc_mode_cellular_preferred_summary" msgid="5920549484600758786">"સેલ્યુલર પસંદ કર્યું"</string> @@ -219,27 +220,27 @@ <string name="user_owner_label" msgid="6465364741001216388">"વ્યક્તિગત એપ્લિકેશન્સ"</string> <string name="managed_profile_label" msgid="6260850669674791528">"કાર્યાલય"</string> <string name="permgrouplab_contacts" msgid="3657758145679177612">"સંપર્કો"</string> - <string name="permgroupdesc_contacts" msgid="1437393511338346185">"તમારા સંપર્કોને ઍક્સેસ કરો અને સંશોધિત કરો"</string> + <string name="permgroupdesc_contacts" msgid="6951499528303668046">"તમારા સંપર્કોને ઍક્સેસ કરો"</string> <string name="permgrouplab_location" msgid="7275582855722310164">"સ્થાન"</string> <string name="permgroupdesc_location" msgid="536889867433972794">"તમારા સ્થાનને ઍક્સેસ કરો"</string> <string name="permgrouplab_socialInfo" msgid="5799096623412043791">"તમારી સામાજિક માહિતી"</string> <string name="permgroupdesc_socialInfo" msgid="7129842457611643493">"તમારા સંપર્કો અને સામાજિક કનેક્શન્સ વિશેની માહિતીની સીધી ઍક્સેસ."</string> <string name="permgrouplab_calendar" msgid="5863508437783683902">"કૅલેન્ડર"</string> - <string name="permgroupdesc_calendar" msgid="2116049656685591803">"તમારા કેલેન્ડરને ઍક્સેસ કરો અને સંશોધિત કરો"</string> + <string name="permgroupdesc_calendar" msgid="3889615280211184106">"તમારા કેલેન્ડરને ઍક્સેસ કરો"</string> <string name="permgrouplab_sms" msgid="228308803364967808">"SMS"</string> - <string name="permgroupdesc_sms" msgid="3695085582674524761">"SMS ને ઍક્સેસ કરો અને સંશોધિત કરો"</string> + <string name="permgroupdesc_sms" msgid="3714409903876407981">"SMS સંદેશા જુઓ અને સંચાલિત કરો"</string> <string name="permgrouplab_dictionary" msgid="8114410334955871144">"વપરાશકર્તા શબ્દકોશ"</string> <string name="permgroupdesc_dictionary" msgid="7586787746354378335">"વપરાશકર્તા શબ્દકોશમાં શબ્દો વાંચો અથવા લખો."</string> <string name="permgrouplab_bookmarks" msgid="1949519673103968229">"બુકમાર્ક્સ અને ઇતિહાસ"</string> <string name="permgroupdesc_bookmarks" msgid="4169771606257963028">"બુકમાર્ક્સ અને બ્રાઉઝર ઇતિહાસની સીધી ઍક્સેસ."</string> <string name="permgrouplab_microphone" msgid="171539900250043464">"માઇક્રોફોન"</string> - <string name="permgroupdesc_microphone" msgid="1296196977187629181">"ઉપકરણ માઇક્રોફોનનો ઉપયોગ કરો"</string> + <string name="permgroupdesc_microphone" msgid="4988812113943554584">"ઑડિઓ રેકોર્ડ કરો"</string> <string name="permgrouplab_camera" msgid="4820372495894586615">"કૅમેરો"</string> - <string name="permgroupdesc_camera" msgid="2429930670410559293">"ઉપકરણ કેમેરાનો ઉપયોગ કરો"</string> + <string name="permgroupdesc_camera" msgid="3250611594678347720">"ચિત્રો લો અને વિડિઓ રેકોર્ડ કરો"</string> <string name="permgrouplab_phone" msgid="5229115638567440675">"ફોન"</string> - <string name="permgroupdesc_phone" msgid="2016641188146068700">"ઉપકરણ ટેલિફોનીનો ઉપયોગ કરો"</string> + <string name="permgroupdesc_phone" msgid="6234224354060641055">"ફોન કૉલ કરો તથા સંચાલિત કરો"</string> <string name="permgrouplab_sensors" msgid="7416703484233940260">"સેન્સર્સ"</string> - <string name="permgroupdesc_sensors" msgid="2987451839455524494">"સેન્સર્સ અને પહેરવાલાયકને ઍક્સેસ કરો"</string> + <string name="permgroupdesc_sensors" msgid="6376772456799240169">"સેન્સર્સ અને પહેરવાલાયક ઉપકરણોથી ડેટા ઍક્સેસ કરો"</string> <string name="capability_title_canRetrieveWindowContent" msgid="3901717936930170320">"વિંડો સામગ્રી પુનર્પ્રાપ્ત કરો"</string> <string name="capability_desc_canRetrieveWindowContent" msgid="3772225008605310672">"તમે જેની સાથે ક્રિયાપ્રતિક્રિયા કરી રહ્યાં છો તે વિંડોની સામગ્રીની તપાસ કરો."</string> <string name="capability_title_canRequestTouchExploration" msgid="3108723364676667320">"ટચ કરીને અન્વેષણ કરો સક્ષમ કરો"</string> @@ -334,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"એપ્લિકેશનને મિત્રોના અથવા સહકાર્યકરો સહિત તમારા ટેબ્લેટ પર તમે સંશોધિત કરી શકો તે ઇવેન્ટ્સ ઉમેરવા, દૂર કરવા, બદલવાની મંજૂરી આપે છે. આ એપ્લિકેશનને કૅલેન્ડર માલિક તરફથી આવતાં હોય તેવા સંદેશા મોકલવાની અથવા માલિકની જાણ વિના ઇવેન્ટ્સ સંશોધિત કરવાની મંજૂરી આપી શકે છે."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"એપ્લિકેશનને મિત્રોના અથવા સહકાર્યકરો સહિત તમારા ટીવી પર તમે સંશોધિત કરી શકો તે ઇવેન્ટ્સ ઉમેરવા, દૂર કરવા, બદલવાની મંજૂરી આપે છે. આ એપ્લિકેશનને કૅલેન્ડર માલિક તરફથી આવતાં હોય તેવા સંદેશા મોકલવાની અથવા માલિકની જાણ વિના ઇવેન્ટ્સ સંશોધિત કરવાની મંજૂરી આપી શકે છે."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"એપ્લિકેશનને મિત્રોના અથવા સહકાર્યકરો સહિત તમારા ફોન પર તમે સંશોધિત કરી શકો તે ઇવેન્ટ્સ ઉમેરવા, દૂર કરવા, બદલવાની મંજૂરી આપે છે. આ એપ્લિકેશનને કૅલેન્ડર માલિક તરફથી આવતાં હોય તેવા સંદેશા મોકલવાની અથવા માલિકની જાણ વિના ઇવેન્ટ્સ સંશોધિત કરવાની મંજૂરી આપી શકે છે."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"પરીક્ષણ માટે નકલી સ્થાન સ્રોતો"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"પરીક્ષણ માટે નકલી સ્થાન સ્રોતો બનાવો અથવા એક નવો સ્થાન પ્રદાતા ઇન્સ્ટોલ કરો. આ એપ્લિકેશનને GPS અથવા સ્થાન પ્રદાતાઓ જેવા અન્ય સ્થાન સ્રોતો દ્વારા પરત કરાયેલ સ્થાન અને/અથવા સ્થિતિને ઓવરરાઇડ કરવાની મંજૂરી આપે છે."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"વધારાના સ્થાન પ્રદાતા આદેશોને ઍક્સેસ કરો"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"એપ્લિકેશનને વધારાના સ્થાન પ્રદાતા આદેશોને ઍક્સેસ કરવાની મંજૂરી આપે છે. આ એપ્લિકેશનને GPS અથવા અન્ય સ્થાન સ્રોતોના ઓપરેશનમાં દખલ કરવાની મંજૂરી આપી શકે છે."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"નિશ્ચિત સ્થાન (GPS અને નેટવર્ક-આધારિત)"</string> @@ -437,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ફિંગરપ્રિન્ટ ઓપરેશન રદ કર્યું."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ઘણા બધા પ્રયત્નો. પછીથી ફરી પ્રયાસ કરો."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ફરી પ્રયાસ કરો."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"સમન્વયન સેટિંગ્સ વાંચો"</string> @@ -1041,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"જો તમે USB સંગ્રહને ચાલુ કરો છો, તો તમે ઉપયોગમાં લઈ રહ્યાં છો તે કેટલીક એપ્લિકેશન્સ બંધ થઈ જશે અને જ્યાં સુધી તમે USB સંગ્રહ બંધ ન કરી લો ત્યાં સુધી અનુપલબ્ધ હોઈ શકે છે."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ઓપરેશન અસફળ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ઑકે"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"એક મીડિયા ઉપકરણ તરીકે કનેક્ટ થયું"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"કૅમેરા તરીકે કનેક્ટ કર્યું"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI ઉપકરણ તરીકે કનેક્ટ થયું"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ઇન્સ્ટોલર તરીકે કનેક્ટ કર્યું"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB ઍક્સેસરીથી કનેક્ટ થયાં"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"અન્ય USB વિકલ્પો માટે ટચ કરો."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB સંગ્રહને ફોર્મેટ કરીએ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD કાર્ડ ફોર્મેટ કરીએ?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"તમારા USB સંગ્રહમાં સંગ્રહિત તમામ ફાઇલો કાઢી નાખવામાં આવશે. આ ક્રિયા પલટાવી શકાતી નથી!"</string> @@ -1078,22 +1085,14 @@ <string name="ext_media_init_action" msgid="8317198948634872507">"સેટઅપ"</string> <string name="ext_media_unmount_action" msgid="1121883233103278199">"બહાર કાઢો"</string> <string name="ext_media_browse_action" msgid="8322172381028546087">"અન્વેષણ કરો"</string> - <!-- no translation found for ext_media_missing_title (620980315821543904) --> - <skip /> - <!-- no translation found for ext_media_missing_message (5761133583368750174) --> - <skip /> - <!-- no translation found for ext_media_move_specific_title (1471100343872375842) --> - <skip /> - <!-- no translation found for ext_media_move_title (1022809140035962662) --> - <skip /> - <!-- no translation found for ext_media_move_success_title (8575300932957954671) --> - <skip /> - <!-- no translation found for ext_media_move_success_message (4199002148206265426) --> - <skip /> - <!-- no translation found for ext_media_move_failure_title (7613189040358789908) --> - <skip /> - <!-- no translation found for ext_media_move_failure_message (1978096440816403360) --> - <skip /> + <string name="ext_media_missing_title" msgid="620980315821543904">"<xliff:g id="NAME">%s</xliff:g> ખૂટે છે"</string> + <string name="ext_media_missing_message" msgid="5761133583368750174">"આ ઉપકરણ ફરીથી દાખલ કરો"</string> + <string name="ext_media_move_specific_title" msgid="1471100343872375842">"<xliff:g id="NAME">%s</xliff:g> ખસેડી રહ્યાં છીએ"</string> + <string name="ext_media_move_title" msgid="1022809140035962662">"ડેટાને ખસેડી રહ્યાં છીએ"</string> + <string name="ext_media_move_success_title" msgid="8575300932957954671">"ખસેડવાનું પૂર્ણ થયું"</string> + <string name="ext_media_move_success_message" msgid="4199002148206265426">"ડેટાને <xliff:g id="NAME">%s</xliff:g> પર ખસેડી રહ્યાં છીએ"</string> + <string name="ext_media_move_failure_title" msgid="7613189040358789908">"ડેટા ખસેડી શક્યાં નથી"</string> + <string name="ext_media_move_failure_message" msgid="1978096440816403360">"મૂળ સ્થાન પર બાકી ડેટા"</string> <string name="activity_list_empty" msgid="1675388330786841066">"કોઈ મેળ ખાતી પ્રવૃત્તિઓ મળી નથી."</string> <string name="permlab_route_media_output" msgid="1642024455750414694">"મીડિયા આઉટપુટ રૂટ કરો"</string> <string name="permdesc_route_media_output" msgid="4932818749547244346">"એપ્લિકેશનને અન્ય બાહ્ય ઉપકરણો પર મીડિયા આઉટપુટને રૂટ કરવની મંજૂરી આપે છે."</string> @@ -1466,32 +1465,38 @@ <string name="lock_to_app_unlock_pattern" msgid="4182192144797225137">"અનપિન કરતા પહેલાં અનલૉક પેટર્ન માટે પૂછો"</string> <string name="lock_to_app_unlock_password" msgid="6380979775916974414">"અનપિન કરતાં પહેલાં પાસવર્ડ માટે પૂછો"</string> <string name="package_installed_device_owner" msgid="8420696545959087545">"તમારા વ્યવસ્થાપક દ્વારા ઇન્સ્ટોલ કરેલ"</string> + <string name="package_updated_device_owner" msgid="8856631322440187071">"તમારા વ્યવસ્થાપક દ્વારા અપડેટ થયેલ"</string> <string name="package_deleted_device_owner" msgid="7650577387493101353">"તમારા વ્યવસ્થાપક દ્વારા કાઢી નાખેલ"</string> <string name="battery_saver_description" msgid="1960431123816253034">"બૅટરી આવરદા વધુ સારી કરવામાં સહાય માટે, બૅટરી સેવર તમારા ઉપકરણના પ્રદર્શનને ઘટાડે છે અને વાઇબ્રેશન, સ્થાન સેવાઓ અને મોટાભાગના પૃષ્ઠભૂમિ ડેટાને સીમિત કરે છે. ઇમેઇલ, મેસેજિંગ અને અન્ય એપ્લિકેશન્સ જે સમન્વયન પર આધાર રાખે છે તે તમે તેમને ખોલશો નહીં ત્યાં સુધી અપડેટ થઈ શકતી નથી.\n\nજ્યારે તમારું ઉપકરણ ચાર્જ થઈ રહ્યું હોય ત્યારે બૅટરી સેવર આપમેળે બંધ થઈ જાય છે."</string> <plurals name="zen_mode_duration_minutes_summary" formatted="false" msgid="4367877408072000848"> <item quantity="one">%1$d મિનિટ માટે (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> સુધી)</item> <item quantity="other">%1$d મિનિટ માટે (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> સુધી)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d કલાક માટે (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> સુધી)</item> <item quantity="other">%1$d કલાક માટે (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> સુધી)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d મિનિટ માટે</item> <item quantity="other">%d મિનિટ માટે</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d કલાક માટે</item> <item quantity="other">%d કલાક માટે</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> સુધી"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"તમે આ બંધ ન કરો ત્યાં સુધી"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> <string name="toolbar_collapse_description" msgid="2821479483960330739">"સંકુચિત કરો"</string> <string name="zen_mode_feature_name" msgid="5254089399895895004">"ખલેલ પાડશો નહીં"</string> <string name="zen_mode_downtime_feature_name" msgid="2626974636779860146">"ડાઉનટાઇમ"</string> - <string name="zen_mode_default_weeknights_name" msgid="2069189413656431610">"સપ્તાહાંત સિવાયની રાત્રે"</string> - <string name="zen_mode_default_weekends_name" msgid="2377398437072017011">"સપ્તાહાંત"</string> + <string name="zen_mode_default_weeknights_name" msgid="3081318299464998143">"સપ્તાહાંત રાત્રિ"</string> + <string name="zen_mode_default_weekends_name" msgid="2786495801019345244">"સપ્તાહાંત"</string> + <string name="zen_mode_default_events_name" msgid="8158334939013085363">"ઇવેન્ટ"</string> <string name="muted_by" msgid="6147073845094180001">"<xliff:g id="THIRD_PARTY">%1$s</xliff:g> દ્વારા મ્યૂટ કરાયું"</string> <string name="system_error_wipe_data" msgid="6608165524785354962">"તમારા ઉપકરણમાં આંતરિક સમસ્યા છે અને જ્યાં સુધી તમે ફેક્ટરી ડેટા ફરીથી સેટ કરશો નહીં ત્યાં સુધી તે અસ્થિર રહી શકે છે."</string> <string name="system_error_manufacturer" msgid="8086872414744210668">"તમારા ઉપકરણમાં આંતરિક સમસ્યા છે. વિગતો માટે તમારા નિર્માતાનો સંપર્ક કરો."</string> diff --git a/core/res/res/values-hi/strings.xml b/core/res/res/values-hi/strings.xml index 9874c26..5eff6be 100644 --- a/core/res/res/values-hi/strings.xml +++ b/core/res/res/values-hi/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ऐप्स को मित्रों या सहकर्मियों के ईवेंट के साथ ही वे ईवेंट जोड़ने, निकालने, बदलने देता है जिन्हें आप अपने टेबलेट पर संशोधित कर सकते हैं. इससे ऐप्स ,अपनी जानकारी के बिना उन संदेशों को भेज सकता है जो कैलेंडर स्वामियों की ओर से आते दिखाई देते हैं, या ईवेंट संशोधित कर सकता है."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ऐप को ऐसे ईवेंट जोड़ने, निकालने, बदलने देती है जिन्हें आप अपने डिवाइस पर बदल सकते हैं, जिनमें मित्रों या सहकर्मियों के ईवेंट शामिल हैं. इससे ऐप ऐसे संदेश भेज सकता है जो कैलेंडर स्वामी से आते हुए प्रतीत होते हैं या ऐप स्वामी की जानकारी के बिना ईवेंट बदल सकता है."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ऐप्स को मित्रों या सहकर्मियों के ईवेंट के साथ ही वे ईवेंट जोड़ने, निकालने, बदलने देता है जिन्हें आप अपने फ़ोन पर संशोधित कर सकते हैं. इससे ऐप्स , अपनी जानकारी के बिना उन संदेशों को भेज सकता है जो कैलेंडर स्वामियों की ओर से आते दिखाई देते हैं, या ईवेंट संशोधित कर सकता है."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"परीक्षण के लिए नकली स्थान स्रोत"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"परीक्षण के लिए कृत्रिम स्थान स्रोत बनाएं या एक नया स्थान प्रदाता इंस्टॉल करें. यह ऐप्स को स्थान और/या अन्य स्थान स्रोतों जैसे GPS या स्थान प्रदाताओं द्वारा लौटाई गई स्थिति को ओवरराइड करने देता है."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"अतिरिक्त स्थान प्रदाता आदेशों में पहुंचे"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ऐप्स को अतिरिक्त स्थान प्रदाता आदेशों पर पहुंचने देती है. इससे ऐप्स GPS या अन्य स्थान स्रोतों के संचालन में अवरोध पहुंचा सकता है."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"सटीक स्थान (GPS और नेटवर्क-आधारित)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"फ़िंगरप्रिंट क्रियान्वयन रोक दिया गया."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"बहुत अधिक प्रयास कर लिए गए हैं. बाद में पुन: प्रयास करें."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"पुन: प्रयास करें."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"समन्वयन सेटिंग पढ़ें"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"यदि आप USB मेमोरी चालू करते हैं, तो आपके द्वारा उपयोग किए जा रहे कुछ ऐप्स रुक जाएंगे और हो सकता है कि वे तब तक अनुपलब्ध रहें जब तक कि आप USB मेमोरी बंद नहीं कर देते."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB कार्यवाही विफल"</string> <string name="dlg_ok" msgid="7376953167039865701">"ठीक है"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"किसी मीडिया डिवाइस के रूप में कनेक्ट किया गया"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"कैमरे के रूप में कनेक्ट करें"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI डिवाइस के रूप में कनेक्ट है"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"किसी इंस्टॉलर के रूप में कनेक्ट किया गया"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB सहायक सामग्री से कनेक्ट किया गया"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"अन्य USB विकल्पों के लिए स्पर्श करें."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB मेमोरी फ़ॉर्मेट करें?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD कार्ड प्रारूपित करें?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"आपके USB मेमोरी में संग्रहीत सभी फ़ाइलें मिट जाएंगी. यह क्रिया पूर्ववत नहीं की जा सकती!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">%1$d मिनट के लिए (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> तक)</item> <item quantity="other">%1$d मिनट के लिए (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> तक)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d घंटे के लिए (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> तक)</item> <item quantity="other">%1$d घंटे के लिए (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> तक)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d मिनट के लिए</item> <item quantity="other">%d मिनट के लिए</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d घंटे के लिए</item> <item quantity="other">%d घंटे के लिए</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> तक"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"जब तक आप इसे बंद नहीं कर देते"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-hr/strings.xml b/core/res/res/values-hr/strings.xml index cfe24ce..89da946 100644 --- a/core/res/res/values-hr/strings.xml +++ b/core/res/res/values-hr/strings.xml @@ -336,8 +336,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Aplikaciji omogućuje dodavanje, uklanjanje i promjenu događaja koje možete izmijeniti na tabletnom računalu, uključujući one od vaših prijatelja ili suradnika. To aplikaciji može omogućiti slanje poruka koje izgledaju kao da dolaze od vlasnika kalendara ili izmjenu događaja bez znanja vlasnika."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Aplikaciji omogućuje dodavanje, uklanjanje i promjenu događaja koje možete izmijeniti na televizoru, uključujući one vaših prijatelja ili suradnika. To aplikaciji može omogućiti slanje poruka koje izgledaju kao da ih je poslao vlasnik kalendara ili izmjenu događaja bez znanja vlasnika."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Aplikaciji omogućuje dodavanje, uklanjanje i promjenu događaja koje možete izmijeniti na telefonu, uključujući one od vaših prijatelja ili suradnika. To aplikaciji može omogućiti slanje poruka koje izgledaju kao da dolaze od vlasnika kalendara ili izmjenu događaja bez znanja vlasnika."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"omogućeno testiranje izvora lokacije"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Stvaranje lažnih izvora lokacije radi testiranja ili za instaliranje novog pružatelja usluga lokacije. To aplikaciji omogućuje zaobilaženje lokacije i/ili statusa koji vraćaju drugi izvori lokacije, primjerice GPS ili pružatelji usluga lokacije."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"pristup dodatnim naredbama davatelja lokacije"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Omogućuje aplikaciji pristup dodatnim naredbama davatelja usluga lokacije. To može omogućiti aplikaciji ometanje rada GPS-a ili drugih izvora lokacije."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precizna lokacija (GPS i mreža)"</string> @@ -439,6 +437,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Radnja otiska prsta otkazana je."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Previše pokušaja. Pokušajte ponovo kasnije."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Pokušajte ponovo."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"čitanje postavki sinkronizacije"</string> @@ -1049,12 +1049,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ako uključite USB pohranu, neke aplikacije koje upotrebljavate zaustavit će se i možda neće biti dostupne dok ne isključite USB pohranu."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Rad USB-a nije uspio"</string> <string name="dlg_ok" msgid="7376953167039865701">"U redu"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Spojen kao medijski uređaj"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Spojen kao fotoaparat"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Povezan kao MIDI uređaj"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Spojen kao instalacijski program"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Spojen na USB pribor"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Dodirnite za ostale opcije USB uređaja"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format. USB pohranu?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formatirati SD karticu?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Sve datoteke pohranjene na vašoj USB pohrani bit će izbrisane. Ta se radnja ne može poništiti!"</string> @@ -1476,21 +1482,25 @@ <item quantity="few">%1$d minute (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d minuta (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d sat (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d sata (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d sati (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d minutu</item> <item quantity="few">%d minute</item> <item quantity="other">%d minuta</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d sat</item> <item quantity="few">%d sata</item> <item quantity="other">%d sati</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Do <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Dok ne isključite"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-hu/strings.xml b/core/res/res/values-hu/strings.xml index 06dfb89..93a747a 100644 --- a/core/res/res/values-hu/strings.xml +++ b/core/res/res/values-hu/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Lehetővé teszi az alkalmazás számára a táblagépen módosítható események hozzáadását, törlését vagy módosítását, beleértve az ismerősök vagy munkatársak eseményeit is. Az engedéllyel rendelkező alkalmazás üzeneteket küldhet, amelyek úgy tűnhetnek, hogy a naptár tulajdonosától származnak, illetve módosíthatják az eseményeket a tulajdonosok tudta nélkül."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Lehetővé teszi az alkalmazás számára a tévén módosítható események hozzáadását, törlését vagy módosítását, beleértve az ismerősök vagy munkatársak eseményeit is. Ez lehetővé teheti az alkalmazás számára, hogy olyan üzeneteket küldjön, amelyekről úgy tűnik, hogy a naptár tulajdonosától származnak, illetve hogy a tulajdonosok tudta nélkül módosítsa az eseményeket."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Lehetővé teszi az alkalmazás számára a telefonon módosítható események hozzáadását, törlését vagy módosítását, beleértve az ismerősök vagy munkatársak eseményeit is. Az engedéllyel rendelkező alkalmazás üzeneteket küldhet, amelyek úgy tűnhetnek, hogy a naptár tulajdonosától származnak, illetve módosíthatják az eseményeket a tulajdonosok tudta nélkül."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"helyforrások utánzása tesztelés céljából"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Helyforrásutánzatok létrehozása tesztelés céljából, vagy új helyszolgáltató telepítése. Ez lehetővé teszi az alkalmazás számára, hogy felülírja az olyan helyforrások által biztosított hely- és/vagy állapotadatokat, mint a GPS vagy helyszolgáltatók."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"további helyszolgáltatói parancsok elérése"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Lehetővé teszi az alkalmazás számára további helyszolgáltatói parancsok elérését. Ezáltal az alkalmazás beavatkozhat a GPS vagy más helyforrások működésébe."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"pontos (GPS- és hálózatalapú) tartózkodási hely"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Ujjlenyomattal kapcsolatos művelet megszakítva"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Túl sok próbálkozás. Próbálja újra később."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Próbálkozzon újra."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"szinkronizálási beállítások olvasása"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ha bekapcsolja az USB-háttértárat, egyes jelenleg használt alkalmazások leállnak, és lehet, hogy nem lesznek elérhetők az USB-háttértár újbóli kikapcsolásáig."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Az USB-művelet sikertelen"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Csatlakoztatva médiaeszközként"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Csatlakoztatva kameraként"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Csatlakoztatva MIDI-eszközként"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Csatlakoztatva telepítőként"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Csatlakoztatva egy USB-kiegészítőhöz"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Érintse meg a további USB-opciókért."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB-tár formázása?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD-kártya formázása?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Az USB-háttértáron tárolt összes fájl törlésre kerül. Ez a művelet nem visszavonható!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d percen át (eddig: <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Egy percen át (eddig: <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d órán át (eddig: <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Egy órán át (eddig: <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d percen át</item> <item quantity="one">Egy percen át</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d órán át</item> <item quantity="one">Egy órán át</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Eddig: <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Amíg ki nem kapcsolja ezt"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-hy-rAM/strings.xml b/core/res/res/values-hy-rAM/strings.xml index 98f7e5c..d981de0 100644 --- a/core/res/res/values-hy-rAM/strings.xml +++ b/core/res/res/values-hy-rAM/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոխել իրադարձություններ, որոնք դուք կարող եք փոփոխել ձեր գրասալիկում, այդ թվում ընկերների կամ աշխատակիցների իրադարձությունները: Սա կարող է թույլ տալ հավելվածին ուղարկել հաղորդագրություններ, որոնք երևում են որպես օրացույցի սեփականատերերից ուղարկված, կամ փոփոխել իրադարձություններն առանց սեփականատերերի իմացության:"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոփոխել իրադարձությունները, որոնք կարող եք փոփոխել ձեր հեռուստացույցի մեջ, այդ թվում` ընկերների կամ աշխատակիցների հետ կապված իրադարձությունները: Սա կարող է թույլատրել հավելվածին ուղարկել հաղորդագրություններ, որոնք հայտնվում են օրացույցի սեփականատերերից կամ փոփոխել իրադարձություններն` առանց սեփականատերերի իմացության:"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոխել այն իրադարձությունները, որոնք կարող եք փոփոխել ձեր հեռախոսից, այդ թվում` ընկերների կամ գործընկերների: Սա կարող է թույլ տալ հավելվածին ուղարկել հաղորդագրություններ, որոնք իբրև գալիս են օրացույցի սեփականատիրոջից, կամ փոփոխել իրադարձությունները` առանց սեփականատիրոջ իմացության:"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"կեղծ տեղանքի աղբյուրներ փորձարկման համար"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Ստեղծել կեղծ տեղանքի աղբյուրներ` փորձարկման կամ տեղադրության նոր ծառայություն մատուցողի տեղադրման համար: Սա հնարավորություն է տալիս, որ ծրագիրը անտեսի տեղադրությունը և/կամ կարգավիճակը` տրամադրված տեղանքի այլ աղբյուրների կողմից, ինչպիսիք են GPS-ը կամ տեղադրության ծառայություն մատուցողները:"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"օգտագործել տեղադրություն տրամադրող հավելվյալ հրամաններ"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ծրագրին թույլ է տալիս օգտագործել տեղադրության մասին տվյալների աղբյուրների կառավարման լրացուցիչ հրահանգներ: Սա կարող է ծրագրին թույլ տալ միջամտել GPS-ի կամ տեղադրության մասին տվյալների այլ աղբյուրների գործառույթներին:"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ճշգրիտ վայրը (ըստ GPS-ի և ցանցի)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Իսկորոշումը մատնահետքի միջոցով չեղարկվեց:"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Չափից շատ փորձ եք կատարել: Փորձեք նորից քիչ հետո:"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Փորձեք նորից:"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"կարդալ համաժամեցման կարգավորումները"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Եթե դուք միացնեք USB կրիչը, որոշ ծրագրեր,որոնցից օգտվում եք, կդադարեն աշխատել և կարող են անհասանելի լինել, քանի դեռ չեք անջատել USB կրիչը:"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB գործողությունը անհաջող էր"</string> <string name="dlg_ok" msgid="7376953167039865701">"Լավ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Կապակցված է որպես մեդիա սարք"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Միացված է որպես ֆոտոխցիկ"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Կապակցված է որպես MIDI սարք"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Միացված է որպես տեղադրիչ"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Կապակցված է USB լրասարքի"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Հպեք` այլ USB ընտրանքների համար:"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Ֆորմատավորե՞լ USB կրիչը:"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Ֆորմատավորե՞լ SD քարտը:"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Ձեր USB կրիչում պահվող բոլոր ֆայլերը կջնջվեն: Այս գործողությունը անշրջելի է:"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">%1$d րոպե (մինչև <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d րոպե (մինչև <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d ժամ (մինչև <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d ժամ (մինչև <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d րոպե</item> <item quantity="other">%d րոպե</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d ժամ</item> <item quantity="other">%d ժամ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Մինչև <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Քանի դեռ չեք անջատել"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-in/strings.xml b/core/res/res/values-in/strings.xml index bc846e0..7689baf 100644 --- a/core/res/res/values-in/strings.xml +++ b/core/res/res/values-in/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Memungkinkan aplikasi menambahkan, menghapus, mengubah acara yang dapat Anda ubah pada tablet, termasuk acara teman atau rekan kerja. Izin ini memungkinkan aplikasi mengirim pesan yang kelihatannya berasal dari pemilik kalender, atau mengubah acara tanpa sepengetahuan pemilik."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Mengizinkan aplikasi untuk menambah, menghapus, mengubah acara yang dapat Anda modifikasi di TV, termasuk milik teman atau rekan kerja. Izin ini memungkinkan aplikasi untuk mengirim pesan yang terlihat berasal dari pemilik kalender, atau memodifikasi acara tanpa sepengetahuan pemilik."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Memungkinkan aplikasi menambahkan, menghapus, mengubah acara yang dapat Anda ubah pada ponsel, termasuk acara teman atau rekan kerja. Izin ini memungkinkan aplikasi mengirim pesan yang kelihatannya berasal dari pemilik kalender, atau mengubah acara tanpa sepengetahuan pemilik."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"sumber lokasi palsu untuk menguji"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Membuat sumber lokasi palsu untuk uji coba atau memasang penyedia lokasi baru. Izin ini memungkinkan aplikasi mengganti lokasi dan/atau status yang dimunculkan sumber lokasi lain, misalnya GPS atau penyedia lokasi."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"akses perintah penyedia lokasi ekstra"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Memungkinkan aplikasi mengakses perintah penyedia lokasi ekstra. Tindakan ini memungkinkan aplikasi mengganggu pengoperasian GPS atau sumber lokasi lain."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"lokasi akurat (berbasis jaringan dan GPS)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operasi sidik jari dibatalkan."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Terlalu banyak upaya. Coba lagi nanti."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Coba lagi."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"baca setelan sinkron"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Jika Anda menyalakan penyimpanan USB, beberapa apl yang Anda gunakan akan berhenti dan mungkin tidak dapat dibuka hingga penyimpanan USB dimatikan."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operasi USB gagal"</string> <string name="dlg_ok" msgid="7376953167039865701">"Oke"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Tersambung sebagai perangkat media"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Tersambung sebagai kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Terhubung sebagai perangkat MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Tersambung sebagai pemasang"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Tersambung ke aksesori USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Sentuh untuk opsi USB lainnya."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format penyimpanan USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Format kartu SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Semua file yang tersimpan dalam penyimpanan USB Anda akan dihapus. Tindakan ini tidak dapat diurungkan!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Selama %1$d menit (hingga <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Selama satu menit (hingga <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Selama %1$d jam (hingga <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Selama satu jam (hingga <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Selama %d menit</item> <item quantity="one">Selama satu menit</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Selama %d jam</item> <item quantity="one">Selama satu jam</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Hingga <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Hingga Anda menonaktifkan ini"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-is-rIS/strings.xml b/core/res/res/values-is-rIS/strings.xml index 6d6032c..3bdad48 100644 --- a/core/res/res/values-is-rIS/strings.xml +++ b/core/res/res/values-is-rIS/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Leyfir forriti að bæta við, fjarlægja og breyta viðburðum sem hægt er að vinna með í spjaldtölvunni, þ. á m. viðburðum sem vinir eða samstarfsmenn eiga. Þetta getur gert forritinu kleift að senda skilaboð sem virðast koma frá eigendum viðburðarins eða breyta viðburðum án vitundar eigenda þeirra."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Leyfir forriti að bæta við, fjarlægja og breyta viðburðum sem hægt er að breyta í sjónvarpinu, þ. á m. viðburðum sem vinir eða samstarfsmenn eiga. Þetta getur gert forritinu kleift að senda skilaboð sem virðast koma frá eigendum viðburðarins eða breyta viðburðum án vitundar eigenda þeirra."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Leyfir forriti að bæta við, fjarlægja og breyta viðburðum sem hægt er að breyta í símanum, þ. á m. viðburðum sem vinir eða samstarfsmenn eiga. Þetta getur gert forritinu kleift að senda skilaboð sem virðast koma frá eigendum viðburðarins eða breyta viðburðum án vitundar eigenda þeirra."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"gervistaðsetningarbúnaður fyrir prófun"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Búa til gervistaðsetningarbúnað til prófunar eða uppsetningar á nýrri staðsetningarveitu. Þetta gerir forritinu kleift að hnekkja staðsetningu og/eða stöðu frá öðrum staðsetningarbúnaði á borð við GPS eða staðsetningarveitur."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"aðgangur að viðbótarskipunum staðsetningarveitu"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Leyfir forriti að fá aðgang að fleiri skipunum staðsetningarveitu. Þetta getur gert forritinu kleift að hafa áhrif á virkni GPS og annars staðsetningarbúnaðar."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"nákvæm staðsetning (frá GPS og símakerfi)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Hætt við fingrafarsaðgerð."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Of margar tilraunir. Reyndu aftur síðar."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Reyndu aftur."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lesa samstillingar"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ef þú kveikir á USB-geymslu stöðvast sum forrit sem eru í notkun og þau kunna að vera óaðgengileg þar til slökkt er á USB-geymslunni."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-aðgerð mistókst"</string> <string name="dlg_ok" msgid="7376953167039865701">"Í lagi"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Tengt sem geymslumiðill"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Tengt sem myndavél"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Tengt sem MIDI-tæki"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Tengt sem uppsetningarforrit"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Tengt við USB-aukabúnað"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Snertu til að sjá aðra USB-valkosti."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Sníða USB-geymslu?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Sníða SD-kort?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Öllum skrám í USB-geymslunni verður eytt. Ekki er hægt að afturkalla þessa aðgerð!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Í %1$d mínútu (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Í %1$d mínútur (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Í %1$d klukkustund (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Í %1$d klukkustundir (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Í %d mínútu</item> <item quantity="other">Í %d mínútur</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Í %d klukkustund</item> <item quantity="other">Í %d klukkustundir</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Til <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Þar til þú slekkur á þessu"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-it/strings.xml b/core/res/res/values-it/strings.xml index fb2b1bb..6d65d00 100644 --- a/core/res/res/values-it/strings.xml +++ b/core/res/res/values-it/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Consente all\'applicazione di aggiungere, rimuovere, modificare gli eventi che puoi modificare sul tablet, inclusi quelli di amici o colleghi. Ciò potrebbe consentire all\'applicazione di inviare messaggi apparentemente provenienti dai proprietari del calendario o di modificare eventi all\'insaputa dei proprietari."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Consente all\'app di aggiungere, rimuovere o modificare eventi che è possibile modificare sulla TV, inclusi quelli di amici o colleghi. L\'app potrebbe inviare messaggi apparentemente provenienti dai proprietari del calendario o modificare eventi all\'insaputa dei proprietari."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Consente all\'applicazione di aggiungere, rimuovere, modificare gli eventi che puoi modificare sul telefono, inclusi quelli di amici o colleghi. Ciò potrebbe consentire all\'applicazione di inviare messaggi apparentemente provenienti dai proprietari del calendario o di modificare eventi all\'insaputa dei proprietari."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"fonti di geolocalizzazione fittizie per test"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Crea fonti di geolocalizzazione fittizie per i test o installa un nuovo fornitore di posizione. Ciò consente all\'applicazione di ignorare la posizione e/o lo stato restituito da altre fonti di geolocalizzazione, come il GPS o fornitori di posizione."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"accesso a comandi aggiuntivi del provider di localizz."</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Consente all\'app di accedere a ulteriori comandi del fornitore di posizione. Ciò potrebbe consentire all\'app di interferire con il funzionamento del GPS o di altre fonti di localizzazione."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"posizione precisa (GPS e basata sulla rete)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operazione associata all\'impronta digitale annullata."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Troppi tentativi. Riprova più tardi."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Riprova."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lettura impostazioni di sincronizz."</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Se attivi l\'archivio USB, alcune applicazioni che stai usando si interromperanno e potrebbero non essere disponibili fino a quando non disattiverai l\'archivio USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operazione USB non riuscita"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Collegato come dispositivo multimediale"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Collegato come fotocamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Connesso come un dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Collegato come installer"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Collegato a un accessorio USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Tocca per altre opzioni USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formattare archivio USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formattare la scheda SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Tutti i file memorizzati nell\'archivio USB verranno cancellati. Questa azione non può essere annullata."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Per %1$d minuti (fino alle ore <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Per un minuto (fino alle ore <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Per %1$d ore (fino alla ore <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Per un\'ora (fino alle ore <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Per %d minuti</item> <item quantity="one">Per un minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Per %d ore</item> <item quantity="one">Per un\'ora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Fino alle ore <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Fino alla disattivazione"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-iw/strings.xml b/core/res/res/values-iw/strings.xml index bbc31ad..6fb63d1 100644 --- a/core/res/res/values-iw/strings.xml +++ b/core/res/res/values-iw/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"מאפשר לאפליקציה להוסיף, להסיר ולשנות אירועים שאתה יכול לשנות בטאבלט, כולל אלה של חברים או עמיתים לעבודה. הדבר עשוי להתיר לאפליקציה לשלוח הודעות הנראות כאילו שנשלחו מבעלי יומן או לשנות אירועים ללא ידיעת הבעלים."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"מאפשרת לאפליקציה להוסיף, להסיר ולשנות אירועים הניתנים לשינוי בטלוויזיה, כולל אלו של חברים ועמיתים. הרשאה זו עלולה לאפשר לאפליקציה לשלוח הודעות שנראות כאילו הגיעו מבעלי היומן, או לשנות אירועים ללא ידיעת הבעלים."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"מאפשר לאפליקציה להוסיף, להסיר ולשנות אירועים שאתה יכול לשנות בטלפון, כולל אלה של חברים או עמיתים לעבודה. הדבר עשוי להתיר לאפליקציה לשלוח הודעות הנראות כאילו שנשלחו מבעלי יומן או לשנות אירועים ללא ידיעת הבעלים."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"צור מקורות מיקום מדומים לצורך בדיקה"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"צור מקורות מיקום מדומים לבדיקה, או התקן ספק מיקום חדש. פעולה זו מאפשרת לאפליקציה לעקוף את המיקום ו/או הסטטוס המוחזרים על ידי מקורות מיקום אחרים כמו GPS או ספקי מיקום."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"גישה לפקודות ספק מיקום נוספות"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"מאפשרת לאפליקציה לגשת לפקודות נוספות של ספק המיקום. הרשאה זו עשויה לאפשר לאפליקציה לשבש את פעולת ה-GPS או מקורות מיקום אחרים."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"מיקום מדויק (מבוסס GPS ורשת)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"פעולת טביעת האצבע בוטלה."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"יותר מדי ניסיונות. נסה שוב מאוחר יותר."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"נסה שוב."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"קרא את הגדרות הסינכרון"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"אם תפעיל אחסון USB, אפליקציות מסוימות שבהן אתה משתמש יפסיקו לפעול, וייתכן שהן לא יהיו זמינות עד שתכבה את אחסון ה-USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"פעולת USB נכשלה"</string> <string name="dlg_ok" msgid="7376953167039865701">"אישור"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"מחובר כמכשיר מדיה"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"מחובר כמצלמה"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"מחובר כהתקן MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"מחובר כמתקין"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"מחובר לאביזר USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"גע לקבלת אפשרויות USB נוספות."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"לפרמט את אמצעי האחסון מסוג USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"לפרמט את כרטיס ה-SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"כל הקבצים ששמורים באמצעי האחסון מסוג USB שלך יימחקו. פעולה זו היא בלתי הפיכה!"</string> @@ -1486,24 +1492,28 @@ <item quantity="other">למשך %1$d דקות (עד <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">למשך דקה אחת (עד <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="two">למשך %d שעות (עד <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">למשך %d שעות (עד <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">למשך %d שעות (עד <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">למשך שעה אחת (עד <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="two">למשך %d דקות</item> <item quantity="many">למשך %d דקות</item> <item quantity="other">למשך %d דקות</item> <item quantity="one">למשך דקה אחת</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="two">למשך %d שעות</item> <item quantity="many">למשך %d שעות</item> <item quantity="other">למשך %d שעות</item> <item quantity="one">למשך שעה אחת</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"עד <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"עד שתכבה"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ja/strings.xml b/core/res/res/values-ja/strings.xml index 48b290e..39b663f 100644 --- a/core/res/res/values-ja/strings.xml +++ b/core/res/res/values-ja/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ユーザーがタブレットから編集できる予定(友だちや同僚の予定も含む)を追加、削除、変更することをアプリに許可します。これによりアプリは、カレンダーの所有者から発信されたかのようなメッセージを送信したり、所有者の知らないうちに予定を変更したりできるようになる可能性があります。"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ユーザーがテレビから編集できる予定(友だちや同僚の予定も含む)を追加、削除、変更することをアプリに許可します。これによりアプリは、カレンダーの所有者から発信されたかのようなメッセージを送信したり、所有者の知らないうちに予定を変更したりできるようになる可能性があります。"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ユーザーが携帯端末から編集できる予定(友だちや同僚の予定も含む)を追加、削除、変更することをアプリに許可します。これによりアプリは、カレンダーの所有者から発信されたかのようなメッセージを送信したり、所有者の知らないうちに予定を変更したりできるようになる可能性があります。"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"仮の位置情報でテスト"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"テスト用に仮の位置情報源を作成するか、新しい位置情報提供元をインストールします。これにより、他の位置情報源(GPS、位置情報提供元など)から返された位置情報やステータスのオーバーライドをアプリに許可することになります。"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"位置情報提供者の追加コマンドアクセス"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"位置情報提供元の追加のコマンドにアクセスすることをアプリに許可します。許可すると、アプリがGPSなどの位置情報源の動作を妨害する恐れがあります。"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"正確な位置情報(GPSとネットワーク基地局)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"指紋の操作をキャンセルしました。"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"所定の回数以上間違えました。しばらくしてからもう一度お試しください。"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"もう一度お試しください。"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"同期設定の読み取り"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"USBストレージをONにすると、使用中のアプリの一部が停止し、USBストレージをOFFにするまで使用できなくなる場合があります。"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB操作に失敗しました"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"メディアデバイスとして接続"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"カメラとして接続"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDIデバイスとして接続"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"インストーラとして接続"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USBアクセサリを接続しました"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"USB接続方法を変更するにはタップしてください。"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USBストレージをフォーマットしますか?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SDカードをフォーマットしますか?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USBストレージに保存されているファイルはすべて消去されます。この操作は元に戻せません。"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d分間(<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>まで)</item> <item quantity="one">1分間(<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>まで)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d時間(<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>まで)</item> <item quantity="one">1時間(<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>まで)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d分</item> <item quantity="one">1分</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d時間</item> <item quantity="one">1時間</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>まで"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ユーザーがOFFにするまで"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ka-rGE/strings.xml b/core/res/res/values-ka-rGE/strings.xml index 323eb7d..ed7ce45 100644 --- a/core/res/res/values-ka-rGE/strings.xml +++ b/core/res/res/values-ka-rGE/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"აპს შეეძლება იმ ღონისძიებების დამატება, წაშლა და შეცვლა, რომლებსაც თქვენს ტაბლეტზე ქმნით, ასევე თქვენი მეგობრების და თანამშრომლების ღონისძიებებიც. ამგვარად, აპს ექნება შესაძლებლობა ისე დააგზავნოს შეტყობინებები კალენდრის მფლობელის სახელით ან შეცვალოს ღონისძიებები, რომ მფლობელმა ამის შესახებ არაფერი იცოდეს."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ნებას რთავს აპლიკაციას დაუმატოს, წაშალოს, შეცვალოს ის მოვლენები, რომლებიც თქვენ ტელევიზორში დააყნეთ, მეგობრებისა თუ თანამშრომლების ჩათვლით. შესაძლოა ნება დართოს აპლიკაციას, გააგზავნოს შეტყობინებები, რომელბიც კალენდარის მფლობელისგან გამომდინარეობს ან მფლობელის გაფრთხილების გარეშე შეცვალოს მოვლენები."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"აპს შეეძლება იმ ღონისძიებების დამატება, წაშლა და შეცვლა, რომლებსაც თქვენს ტელეფონზე ქმნით, ასევე თქვენი მეგობრების და თანამშრომლების ღონისძიებებიც. ამგვარად, აპს ექნება შესაძლებლობა ისე დააგზავნოს შეტყობინებები კალენდრის მფლობელის სახელით ან შეცვალოს ღონისძიებები, რომ მფლობელმა ამის შესახებ არაფერი იცოდეს."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"მდებარეობის წყაროების იმიტირება ტესტირებისთვის"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"აპს შეეძლება ტესტირებისთვის ყალბი ლოკაციების შექმნა, ან მდებარეობის ახალი პროვაიდერის დაყენება. ეს უფლებას მისცემს აპს, შეცვალოს მდებარეობის სხვა წყაროების მიერ, მაგ. GPS ან მდებარეობის პროვაიდერების მიერ მოწოდებული მდებარეობა და/ ან სტატუსი."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"მდებარეობის პროვაიდერის დამატებით ბრძანებებზე წვდომა"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"აპს შეეძლება წვდომა ჰქონდეს მდებარეობის სერვისის დამატებით ბრძანებებზე. შესაძლოა აპმა ეს გამოიყენოს GPS-ისა და მდებარეობის სხვა წყაროების მუშაობის პროცესში ჩარევისთვის."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ზუსტი მდებარეობა (GPS და ქსელის კოორდინატების მიხედვით)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"თითის ანაბეჭდის აღების ოპერაცია გაუქმდა."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ძალიან ბევრი მცდელობა იყო. სცადეთ მოგვიანებით."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ხელახლა სცადეთ"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"სინქრონიზაციის პარამეტრების წაკითხვა"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"თუ USB მეხსიერებას ჩართავთ, თქვენ მიერ მოხმარებადი რამდენიმე აპი შეწყვეტს მუშაობას და შესაძლოა მიუწვდომელი გახდეს USB მეხსიერების გამორთვამდე."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ოპერაცია წარუმატებელი იყო"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"დაკავშირებულია როგორც მედია მოწყობილობა"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"დაკავშირებულია როგორც კამერა"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"დაკავშირებული როგორც MIDI მოწყობილობა"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"დაკავშირებულია როგორც დამყენებელი"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"დაკავშირებულია USB აქსესუართან"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"შეეხეთ USB-ის სხვა პარამეტრების სანახავად."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"დავაფორმატო USB მეხსიერება?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"გსურთ SD ბარათის დაფორმატება?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"თქვენ USB მეხსიერებაში შენახული ყველა ფაილი წაიშლება. ეს მოქმედება ვეღარ შეიცვლება!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d წუთის განმავლობაში (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>-მდე)</item> <item quantity="one">ერთი წუთის განმავლობაში (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>-მდე)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d საათის განმავლობაში (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>-მდე)</item> <item quantity="one">ერთი საათის განმავლობაში (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>-მდე)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d წუთის განმავლობაში</item> <item quantity="one">ერთი წუთის განმავლობაში</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d საათის განმავლობაში</item> <item quantity="one">ერთი საათის განმავლობაში</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>-მდე"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"სანამ ამას გამორთავდეთ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-kk-rKZ/strings.xml b/core/res/res/values-kk-rKZ/strings.xml index e5655b0..ff87d06 100644 --- a/core/res/res/values-kk-rKZ/strings.xml +++ b/core/res/res/values-kk-rKZ/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Қолданбаға планшеттегі сізге өзгертуге болатын шараларды, достарыңыз бен әріптестеріңіздің шараларын қоса, қосу, алу және өзгерту мүмкіндігін береді. Бұл қолданбаға күнтізбе иелерінен келген сияқты көрсетілетін хабарлар жіберу немесе иесінің хабарынсыз шараларды өзгерту мүмкіндігін береді."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Қолданбаға сіз теледидарда өзгерте алатын оқиғаларды, соның ішінде, достардың немесе әріптестердің оқиғаларын қосуға, жоюға, өзгертуге рұқсат етеді. Бұл қолданбаға күнтізбе иелерінен келген болып көрінетін хабарларды жіберуге немесе иесінің білуінсіз оқиғаларды өзгертуге мүмкіндік беруі мүмкін."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Қолданбаға телефондағы сізге өзгертуге болатын шараларды, достарыңыз бен әріптестеріңіздің шараларын қоса, қосу, алу және өзгерту мүмкіндігін береді. Бұл қолданбаға күнтізбе иелерінен келген сияқты көрсетілетін хабарлар жіберу немесе иесінің хабарынсыз шараларды өзгерту мүмкіндігін береді."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"тест үшін аймақ көздеріне еліктеу"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Тексеру үшін жасанды аймақ көздерін жасақтаңыз немесе жаңа аймақ жабдықтаушы орнатыңыз. Бұл қолданбаға аймақты және/немесе GPS немесе аймақ жабдықтаушы сияқты аймақ көздерінен оралған күйлерін үстінен жазу мүмкіндігін береді."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"қосымша аймақ жабдықтаушы пәрмендеріне қол жетімділік"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Қолданбаға орын жеткізушісінің қосымша пәрмендеріне қатынасуға рұқсат береді. Бұл қолданбаға GPS немесе басқа орын көздерінің жұмысына кедергі келтіруге рұқсат беруі мүмкін."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"нақты аймақ (GPS және желі негізделген)"</string> @@ -397,7 +395,7 @@ <string name="permdesc_changeTetherState" msgid="1524441344412319780">"Қолданбаға байланысқан желілік қосылымның күйін өзгертуге рұқсат береді."</string> <string name="permlab_accessWifiState" msgid="5202012949247040011">"Wi-Fi байланыстарын көру"</string> <string name="permdesc_accessWifiState" msgid="5002798077387803726">"Қолданбаға Wi-Fi желісі туралы, мысалы, Wi-Fi байланысының қосылғаны немесе қосылған Wi-Fi құрылғыларының атаулары сияқты, ақпаратты көру мүмкіндігін береді."</string> - <string name="permlab_changeWifiState" msgid="6550641188749128035">"Wi-Fi жалғану және ажырау"</string> + <string name="permlab_changeWifiState" msgid="6550641188749128035">"Wi-Fi желісіне қосылу/ажырау"</string> <string name="permdesc_changeWifiState" msgid="7137950297386127533">"Қолданбаларға Wi-Fi нүктелеріне қосылу және ажырау және Wi-Fi желілеріне арналған құрылғы конфигурацияларына өзгерістер енгізу мүмкіндігін береді."</string> <string name="permlab_changeWifiMulticastState" msgid="1368253871483254784">"Wi-Fi бірнеше мекенжайға ақпарат тарату мүмкіндігі"</string> <string name="permdesc_changeWifiMulticastState" product="tablet" msgid="7969774021256336548">"Қолданбаға Wi-Fi желісіндегі барлық құрылғыларға мекенжайлар тобы арқылы, сіздің планшетіңіз арқылы ғана емес, жіберілген жинақтарды алу мүмкіндігін береді. Бұл мекенжайлар тобы емес режимге қарағанда қуатты көбірек тұтынуы мүмкін."</string> @@ -417,7 +415,7 @@ <string name="permdesc_bluetooth" product="tablet" msgid="3480722181852438628">"Қолданбаға планшеттегі Bluetooth конфигурациясын көру және жұпталған құрылғымен байланыс орнату немесе қабылдау мүмкіндігін береді."</string> <string name="permdesc_bluetooth" product="tv" msgid="3974124940101104206">"Қолданбаға теледидардағы Bluetooth конфигурациясын көруге және жұпталған құрылғылармен байланыстарды қабылдауға рұқсат етеді."</string> <string name="permdesc_bluetooth" product="default" msgid="3207106324452312739">"Қолданбаға телефондағы Bluetooth конфигурациясын көру және жұпталған құрылғымен байланыс орнату немесе қабылдау мүмкіндігін береді"</string> - <string name="permlab_nfc" msgid="4423351274757876953">"Жақын Өріс Байланысын басқару"</string> + <string name="permlab_nfc" msgid="4423351274757876953">"NFC функциясын басқару"</string> <string name="permdesc_nfc" msgid="7120611819401789907">"Қолданбаға NFC белгілерімен, карталармен және оқу құралдарымен байланысуға рұқсат береді."</string> <string name="permlab_disableKeyguard" msgid="3598496301486439258">"экран бекітпесін істен шығару"</string> <string name="permdesc_disableKeyguard" msgid="6034203065077122992">"Қолданбаларға кілтперне және басқа кілтсөзге қатысты қауіпсіздік шараларын өшіру мүмкіндігін береді. Мысалы, телефон кіріс қоңырауларын алғанда кілтпернені өшіреді және қоңырау аяқталғанда қайта қосады."</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Саусақ ізі операциясынан бас тартылған."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Талпыныстар тым көп. Кейінірек қайталап көріңіз."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Әрекетті қайталаңыз."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"синх параметрлерін оқу"</string> @@ -446,7 +446,7 @@ <string name="permdesc_writeSyncSettings" msgid="8956262591306369868">"Қолданбаға есептік жазбаның синхрондау параметрлерін жөндеу мүмкіндігін береді. Мысалы, бұл People қолданбасын есептік жазбамен синхрондауды қосу үшін қолданылуы мүмкін."</string> <string name="permlab_readSyncStats" msgid="7396577451360202448">"үйлестіру санақтық ақпаратын оқу"</string> <string name="permdesc_readSyncStats" msgid="1510143761757606156">"Қолданбаға есептік жазбаның синхрондалу статистикаларын, оның ішінде синхрондау шараларының тарихы және қанша дерек синхрондалғаны жайлы, оқу мүмкіндігін береді."</string> - <string name="permlab_subscribedFeedsWrite" msgid="9015246325408209296">"жазылма материалдарын жазу"</string> + <string name="permlab_subscribedFeedsWrite" msgid="9015246325408209296">"жазылған ағындарды жазу"</string> <string name="permdesc_subscribedFeedsWrite" msgid="6928930188826089413">"Қолданбаға қазіргі уақытта синхрондалған арналарды өзгертуге рұқсат береді. Зиянкес қолданбалар синхрондалған арналарды өзгертуі мүмкін."</string> <string name="permlab_readDictionary" msgid="4107101525746035718">"сөздікке сіз қосқан шарттарды оқу"</string> <string name="permdesc_readDictionary" msgid="659614600338904243">"Қолданбаға пайдаланушы сөздігінде сақталған барлық сөздер, аттар және фразаларды оқу мүмкіндігін береді."</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Егер USB жадын қоссаңыз, қолданыстағы қолданбалар тоқтайды және USB жадын қайта қосқанша қол жетімсіз болады."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB жұмысы сәтсіз"</string> <string name="dlg_ok" msgid="7376953167039865701">"Жарайды"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Медиа құралы ретінде қосылған"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Камера ретінде жалғанған"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI құрылғысы ретінде қосылу орындалды"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Орнату құрылғысына жалғанған"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB жабдығына қосылған"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Басқа USB oпцияларын түрту."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB қой. піш. к. пе?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD картасын пішімдеу керек пе?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB қоймасында сақталған бүкіл файлдар өшіріледі. Бұл әрекетті қайтару мүмкін емес!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d минут бойы (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> дейін)</item> <item quantity="one">Бір минут бойы (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> дейін)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d сағат бойы (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> дейін)</item> <item quantity="one">Бір сағат бойы (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> дейін)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d минут бойы</item> <item quantity="one">Бір минут бойы</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d сағат бойы</item> <item quantity="one">Бір сағат бойы</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> дейін"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Сіз осыны өшіргенше"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-km-rKH/strings.xml b/core/res/res/values-km-rKH/strings.xml index b3f9764..47413b7 100644 --- a/core/res/res/values-km-rKH/strings.xml +++ b/core/res/res/values-km-rKH/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ឲ្យកម្មវិធីបន្ថែម លុប ឬប្ដូរព្រឹត្តិការណ៍ដែលអ្នកអាចកែលើកុំព្យូទ័របន្ទះរបស់អ្នក រួមមានមិត្តភ័ក្ដិ ឬមិត្តរួមការងារ។ វាអាចឲ្យកម្មវិធីផ្ញើសារដែលបង្ហាញថាមកពីម្ចាស់ប្រតិទិន ឬកែព្រឹត្តិការណ៍ដោយមិនឲ្យម្ចាស់ដឹង។"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"អនុញ្ញាតឲ្យកម្មវិធីបន្ថែម យកចេញ និងផ្លាស់ប្តូរព្រឹត្តិការណ៍ដែលអ្នកបានកែសម្រួលនៅលើទូរទស្សន៍របស់អ្នក ដោយរាប់បញ្ចូលទាំងព្រឹត្តិការណ៍របស់មិត្តភ័ក្ត និងមិត្តរួមការងាររបស់អ្នក។ វាអាចអនុញ្ញតឲ្យកម្មវិធីផ្ញើសារដែលបានមកពីម្ចាស់ប្រតិទិន ឬកែសម្រួលដោយមិនមានការដឹងលឺពីម្ចាស់ទាំងនោះ។"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ឲ្យកម្មវិធីបន្ថែម លុប ឬប្ដូរព្រឹត្តិការណ៍ដែលអ្នកអាចកែប្រែលើទូរស័ព្ទរបស់អ្នក រួមមានមិត្តភ័ក្ដិ ឬមិត្តរួមការងារ។ វាអាចឲ្យកម្មវិធីផ្ញើសារដែលបង្ហាញថាមកពីម្ចាស់ប្រតិទិន ឬកែព្រឹត្តិការណ៍ដោយមិនឲ្យអ្នកដឹង។"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ក្លែងប្រភពទីតាំងសម្រាប់សាកល្បង"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"បង្កើតប្រភពទីតាំងក្លែងក្លាយសម្រាប់សាកល្បង ឬដំឡើងក្រុមហ៊ុនផ្ដល់ទីតាំងថ្មី។ វាអនុញ្ញាតឲ្យកម្មវិធីបដិសេធទីតាំង និង/ឬស្ថានភាពបានត្រឡប់ដោយប្រភពទីតាំងផ្សេងដូចជា GPS ឬក្រុមហ៊ុនផ្ដល់ទីតាំង។"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ចូលដំណើរការពាក្យបញ្ជាក្រុមហ៊ុនផ្ដល់ទីតាំង"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ឲ្យកម្មវិធីចូលដំណើរការពាក្យបញ្ជាកម្មវិធីផ្ដល់ទីតាំងបន្ថែម។ វាអាចអនុញ្ញាតឲ្យកម្មវិធីទាក់ទងជាមួយប្រតិបត្តិការជីភីអេស ឬប្រភពទីតាំងផ្សេង។"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ទីតាំងពិតប្រាកដ (GPS និងមានមូលដ្ឋានលើបណ្ដាញ)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"បានបោះបង់ប្រតិបត្តិការស្នាមម្រាមដៃ។"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ព្យាយាមចូលច្រើនពេកហើយ។ សូមព្យាយាមម្តងទៀតពេលក្រោយ។"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ព្យាយាមម្ដងទៀត។"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"អានការកំណត់ធ្វើសមកាលកម្ម"</string> @@ -1044,12 +1044,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"បើអ្នកបើកឧបករណ៍ផ្ទុកយូអេសប៊ី កម្មវិធីមួយចំនួនដែលអ្នកកំពុងប្រើនឹងបញ្ឈប់ ហើយអាចប្រើលែងបានរហូតដល់អ្នកបិទឧបករណ៍ផ្ទុកយូអេសប៊ី។"</string> <string name="dlg_error_title" msgid="7323658469626514207">"ប្រតិបត្តិការយូអេសប៊ីបរាជ័យ"</string> <string name="dlg_ok" msgid="7376953167039865701">"យល់ព្រម"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"បានតភ្ជាប់ជាឧបករណ៍ផ្ទុក"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"បានភ្ជាប់ជាម៉ាស៊ីនថត"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"បានភ្ជាប់ជាឧបករណ៍មីឌី"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"បានភ្ជាប់ជាកម្មវិធីដំឡើង"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"បានភ្ជាប់ឧបករណ៍យូអេសប៊ី"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ប៉ះ ដើម្បីមើលជម្រើសយូអេសប៊ីផ្សេង។"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"ធ្វើទ្រង់ទ្រាយឧបករណ៍ផ្ទុកយូអេសប៊ី?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"ធ្វើទ្រង់ទ្រាយកាតអេសឌី?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ឯកសារទាំងអស់ដែលបានរក្សាទុកក្នុងឧបករណ៍ផ្ទុកយូអេសប៊ីនឹងត្រូវបានលុប។ សកម្មភាពនេះមិនអាចត្រឡប់វិញបានទេ!"</string> @@ -1468,18 +1474,22 @@ <item quantity="other">រយៈពេល %1$d នាទី (រហូតដល់ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">រយៈពេលមួយនាទី (រហូតដល់ <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">រយៈពេល %1$d ម៉ោង (រហូតដល់ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">រយៈពេលមួយម៉ោង (រហូតដល់ <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">រយៈពេល %d នាទី</item> <item quantity="one">រយៈពេលមួយនាទី</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">រយៈពេល %d ម៉ោង</item> <item quantity="one">រយៈពេលមួយម៉ោង</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"រហូតដល់ <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"រហូតដល់ពេលអ្នកបិទវា"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-kn-rIN/strings.xml b/core/res/res/values-kn-rIN/strings.xml index 175b946..cd0b73c 100644 --- a/core/res/res/values-kn-rIN/strings.xml +++ b/core/res/res/values-kn-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್ನಲ್ಲಿ ನಿಮ್ಮ ಸ್ನೇಹಿತರು ಅಥವಾ ಸಹೋದ್ಯೋಗಿಗಳ ಈವೆಂಟ್ಗಳೂ ಸೇರಿದಂತೆ, ನೀವು ಮಾರ್ಪಡಿಸಬಹುದಾದ ಈವೆಂಟ್ಗಳನ್ನು ಸೇರಿಸಲು, ತೆಗೆದುಹಾಕಲು, ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ. ಇದು ಕ್ಯಾಲೆಂಡರ್ ಮಾಲೀಕರಿಂದ ಬಂದಿರುವಂತೆ ಗೋಚರಿಸುವ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಇಲ್ಲವೇ ಮಾಲೀಕರ ಗಮನಕ್ಕೆ ತರದೆಯೇ, ಈವೆಂಟ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ನಿಮ್ಮ ಟಿವಿಯಲ್ಲಿ ಮಾರ್ಪಡಿಸಬಹುದಾದ ಸ್ನೇಹಿತರು ಅಥವಾ ಸಹದ್ಯೋಗಿಗಳು ಸೇರಿದಂತೆ ಸೇರಿಸಲು, ತೆಗೆದುಹಾಕಲು, ನಿಮ್ಮ ಟಿವಿಯಲ್ಲಿ ಮಾರ್ಪಡಿಸಬಹುದಾದ ಈವೆಂಟ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅನುಮತಿಸುತ್ತದೆ. ಕ್ಯಾಲೆಂಡರ್ನ ಮಾಲೀಕರಿಂದ ಬಂದಿರಬಹುದು ಎಂದು ಪರಿಗಣಿಸಲಾಗುವಂತಹ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಅಥವಾ ಮಾಲೀಕರ ಅರಿವಿಲ್ಲದೆಯೆ ಈವೆಂಟ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಇದು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ನಿಮ್ಮ ಫೋನ್ನಲ್ಲಿ ನಿಮ್ಮ ಸ್ನೇಹಿತರು ಅಥವಾ ಸಹೋದ್ಯೋಗಿಗಳ ಈವೆಂಟ್ಗಳೂ ಸೇರಿದಂತೆ, ನೀವು ಮಾರ್ಪಡಿಸಬಹುದಾದ ಈವೆಂಟ್ಗಳನ್ನು ಸೇರಿಸಲು, ತೆಗೆದುಹಾಕಲು, ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ. ಇದು ಕ್ಯಾಲೆಂಡರ್ ಮಾಲೀಕರಿಂದ ಬಂದಿರುವಂತೆ ಗೋಚರಿಸುವ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಇಲ್ಲವೇ ಮಾಲೀಕರ ಗಮನಕ್ಕೆ ತರದೆಯೇ, ಈವೆಂಟ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ಪರೀಕ್ಷೆಗಾಗಿ ಅಣಕು ಸ್ಥಾನ ಮೂಲಗಳು"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"ಹೊಸ ಪೂರೈಕೆದಾರರನ್ನು ಪರೀಕ್ಷಿಸಲು ಅಥವಾ ಸ್ಥಾಪಿಸಲು ಅಣಕು ಸ್ಥಾನ ಮೂಲಗಳನ್ನು ರಚಿಸಿ. GPS ಅಥವಾ ಸ್ಥಾನ ಪೂರೈಕೆದಾರರಂತಹ ಇತರ ಸ್ಥಾನ ಮೂಲಗಳ ಮೂಲಕ ಹಿಂತಿರುಗಿಸಲಾದ ಸ್ಥಾನ ಮತ್ತು/ಅಥವಾ ಸ್ಥಿತಿಯನ್ನು ಅತಿಕ್ರಮಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಇದು ಅನುಮತಿಸುತ್ತದೆ."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ಹೆಚ್ಚುವರಿ ಸ್ಥಾನ ಪೂರೈಕೆದಾರರ ಆದೇಶಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ಹೆಚ್ಚಿನ ಸ್ಥಾನ ಪೂರೈಕೆದಾರ ಆದೇಶಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು GPS ಅಥವಾ ಇತರ ಸ್ಥಾನ ಮೂಲಗಳ ಕಾರ್ಯಾಚರಣೆಯಲ್ಲಿ ಮಧ್ಯ ಪ್ರವೇಶಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ನಿಖರ ಸ್ಥಳ (GPS ಮತ್ತು ನೆಟ್ವರ್ಕ್-ಆಧಾರಿತ)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಕಾರ್ಯಾಚರಣೆಯನ್ನು ರದ್ದುಮಾಡಲಾಗಿದೆ."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ಹಲವಾರು ಪ್ರಯತ್ನಗಳು. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ಸಿಂಕ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ರೀಡ್ ಮಾಡು"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"ನೀವು USB ಸಂಗ್ರಹಣೆಯನ್ನು ಆನ್ ಮಾಡಿದರೆ, ನೀವು ಬಳಸುತ್ತಿರುವ ಕೆಲವು ಅಪ್ಲಿಕೇಶನ್ಗಳು ಸ್ಥಗಿತಗೊಳ್ಳಬಹುದು ಮತ್ತು ನೀವು USB ಸಂಗ್ರಹಣೆಯನ್ನು ಆಫ್ ಮಾಡುವವರೆಗೆ ಅಲಭ್ಯವಾಗಿಯೇ ಇರಬಹುದು."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ಸರಿ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"ಮಾಧ್ಯಮ ಸಾಧನದ ರೂಪದಲ್ಲಿ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ಕ್ಯಾಮರಾದಂತೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI ಸಾಧನದಂತೆ ಸಂಪರ್ಕಪಡಿಸಲಾಗಿದೆ"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ಸ್ಥಾಪಕದಂತೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB ಪರಿಕರಕ್ಕೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ಇತರ USB ಆಯ್ಕೆಗಳಿಗಾಗಿ ಸ್ಪರ್ಶಿಸಿ."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB ಸಂಗ್ರಹಣೆಯನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡುವುದೇ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD ಕಾರ್ಡ್ ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡುವುದೇ?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ನಿಮ್ಮ USB ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ ಎಲ್ಲಾ ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಿಹಾಕಲಾಗುವುದು. ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">%1$d ನಿಮಿಷಗಳವರೆಗೆ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ವರೆಗೆ)</item> <item quantity="other">%1$d ನಿಮಿಷಗಳವರೆಗೆ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ವರೆಗೆ)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d ಗಂಟೆಗಳವರೆಗೆ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ವರೆಗೆ)</item> <item quantity="other">%1$d ಗಂಟೆಗಳವರೆಗೆ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ವರೆಗೆ)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d ನಿಮಿಷಗಳವರೆಗೆ</item> <item quantity="other">%d ನಿಮಿಷಗಳವರೆಗೆ</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d ಗಂಟೆಗಳವರೆಗೆ</item> <item quantity="other">%d ಗಂಟೆಗಳವರೆಗೆ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> ವರೆಗೆ"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ನೀವಿದನ್ನು ಆಫ್ ಮಾಡುವವರೆಗೆ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ko/strings.xml b/core/res/res/values-ko/strings.xml index 53c56af..d1e06fe 100644 --- a/core/res/res/values-ko/strings.xml +++ b/core/res/res/values-ko/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"앱이 친구나 동료의 일정을 포함하여 태블릿에서 수정할 수 있는 일정을 추가, 삭제, 변경할 수 있도록 허용합니다. 이 경우 앱이 캘린더 소유자가 보내는 것처럼 메시지를 전송하거나 소유자 모르게 일정을 수정할 수도 있습니다."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"앱이 친구나 동료의 일정을 비롯하여 TV에서 수정할 수 있는 일정을 추가, 삭제, 변경할 수 있도록 허용합니다. 이 경우 앱이 발신자가 캘린더 소유자인 메시지를 전송하거나 소유자가 모르는 사이에 일정을 수정할 수 있습니다."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"앱이 친구나 동료의 일정을 포함하여 휴대전화에서 수정할 수 있는 일정을 추가, 삭제, 변경할 수 있도록 허용합니다. 이 경우 앱이 캘린더 소유자가 보내는 것처럼 메시지를 전송하거나 소유자 모르게 일정을 수정할 수도 있습니다."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"테스트를 위해 위치 정보제공자로 가장"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"테스트용 가상 위치 소스를 만들거나 새로운 위치 정보 제공업체를 설치합니다. 이 경우 앱이 GPS 또는 위치 정보 제공업체 등 기타 위치 소스가 반환한 위치 또는 상태를 덮어쓸 수 있습니다."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"추가 위치 제공업체 명령에 액세스"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"앱이 추가 위치 정보 제공 기능의 명령에 액세스하도록 허용합니다. 이 경우 앱이 GPS 또는 기타 위치 소스의 작동을 방해할 수 있습니다."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"정확한 위치(GPS 및 네트워크 기반)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"지문 인식 작업이 취소되었습니다."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"시도 횟수가 너무 많습니다. 나중에 다시 시도하세요."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"다시 시도해 보세요."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"동기화 설정 읽기"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"USB 저장소를 사용하면 사용 중인 일부 애플리케이션이 중지되며 USB 저장소를 사용중지할 때까지 사용하지 못할 수 있습니다."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB 작업을 하지 못했습니다."</string> <string name="dlg_ok" msgid="7376953167039865701">"확인"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"미디어 기기로 연결됨"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"카메라로 연결됨"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI 기기로 연결됨"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"설치 프로그램으로 연결됨"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB 액세서리에 연결됨"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"다른 USB 옵션을 보려면 터치하세요."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB 저장소를 포맷하시겠습니까?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD 카드를 포맷하시겠습니까?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB 저장소에 저장된 파일이 모두 삭제됩니다. 이 작업은 되돌릴 수 없습니다."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d분 동안(<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>까지)</item> <item quantity="one">1분 동안(<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>까지)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d시간 동안(<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>까지)</item> <item quantity="one">1시간 동안(<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>까지)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d분 동안</item> <item quantity="one">1분 동안</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d시간 동안</item> <item quantity="one">1시간 동안</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>까지"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"이 기능을 사용 중지할 때까지"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ky-rKG/strings.xml b/core/res/res/values-ky-rKG/strings.xml index 0cebaca..1f4e835 100644 --- a/core/res/res/values-ky-rKG/strings.xml +++ b/core/res/res/values-ky-rKG/strings.xml @@ -449,9 +449,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Колдонмого сиз планшетиңизден өзгөртө ала турган, сиздин, досторуңуздун же кесиптештериңиздин күнбарак окуяларын кошуу, жок кылуу, өзгөртүү уруксатын берет. Бул, колдонмого күнбарак ээлеринен келген сыяктуу көрүнгөн билдирүүлөрдү жөнөтүү, же ээсине билгизбей окуяларды өзгөртүү уруксатын берет."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Колдонмого сыналгыңызда өзгөрүлө турган окуяларды, ошондой эле досторуңуз же кесиптештериңиздин окуяларын кошуу, алып салуу жана өзгөртүү мүмкүнчүлүгүн берет. Ушуну менен колдонмо жылнаама ээлеринен келген билдирүүлөрдү жөнөтүп же окуяларды ээсине билгизбестен өзгөртө алат."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Колдонмого сиз телефонуңуздан өзгөртө ала турган, сиздин, досторуңуздун же кесиптештериңиздин күнбарак окуяларын кошуу, жок кылуу, өзгөртүү уруксатын берет. Бул, колдонмого күнбарак ээлеринен келген сыяктуу көрүнгөн билдирүүлөрдү жөнөтүү, же ээсине билгизбей окуяларды өзгөртүү уруксатын берет."</string> - <!-- no translation found for permlab_accessMockLocation (8688334974036823330) --> - <skip /> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Сыноо максатында жайгашуунун жасалма булактарын түзүңүз же башка жайгаштыруу камсыздоочусун орнотуңуз. Бул колдонмого GPS же башка жайгашууну аныктоочу булактар кайтарган жайгашууну жана/же абалдарын кайта жазууга уруксат берет."</string> <!-- no translation found for permlab_accessLocationExtraCommands (2836308076720553837) --> <skip /> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Колдонмого жайгашкан жерди табуучу кошумча жабдуучулардын буйруктарын колдонуу мүмкүнчүлүгүн берет. Ушуну менен колдонмо GPS\'тин ишине жана башка жайгашкан жерлерди аныктоо кызматтарына кийлигише алат."</string> @@ -566,6 +563,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Манжа изи иш-аракети жокко чыгарылды."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Аракеттер өтө көп болду. Кийинчерээк кайра аракет кылыңыз."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Кайра бир аракеттениңиз."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <!-- no translation found for permlab_readSyncSettings (6201810008230503052) --> @@ -1386,15 +1385,19 @@ <string name="dlg_error_title" msgid="7323658469626514207">"USB иши ийгиликсиз болду"</string> <!-- no translation found for dlg_ok (7376953167039865701) --> <skip /> - <!-- no translation found for usb_mtp_notification_title (3699913097391550394) --> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> <skip /> - <!-- no translation found for usb_ptp_notification_title (1960817192216064833) --> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> <skip /> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI түзмөк катары туташкан"</string> <!-- no translation found for usb_cd_installer_notification_title (6774712827892090754) --> <skip /> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB аксессуарга байланышты"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Башка USB опцияларды көрүү үчүн басыңыз."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB сактагычы форматталсынбы?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD карта форматталсынбы?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB сактагычыңызда сакталган бардык файлдар тазаланып салынат. Бул аракетти артка кайтаруу мүмкүн эмес!"</string> @@ -1883,25 +1886,29 @@ <item quantity="other">%1$d мүнөткө (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> чейин)</item> <item quantity="one">Бир мүнөткө (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> чейин)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d саатка (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> чейин)</item> <item quantity="one">Бир саатка (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> чейин)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d мүнөткө</item> <item quantity="one">Бир мүнөткө</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d саатка</item> <item quantity="one">Бир саатка</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> чейин"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Бул өчүрүлгөнгө чейин"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> <string name="toolbar_collapse_description" msgid="2821479483960330739">"Жыйнап коюу"</string> <string name="zen_mode_feature_name" msgid="5254089399895895004">"Тынчымды алба"</string> <string name="zen_mode_downtime_feature_name" msgid="2626974636779860146">"Аракетсиз убакыт"</string> - <string name="zen_mode_default_weeknights_name" msgid="3081318299464998143">"Жумуш күндөрүнүн кечтери"</string> + <string name="zen_mode_default_weeknights_name" msgid="3081318299464998143">"Иш күндөрүнүн кечтери"</string> <string name="zen_mode_default_weekends_name" msgid="2786495801019345244">"Дем алыш"</string> <string name="zen_mode_default_events_name" msgid="8158334939013085363">"Иш-чара"</string> <string name="muted_by" msgid="6147073845094180001">"<xliff:g id="THIRD_PARTY">%1$s</xliff:g> тарабынан үнсүздөлдү"</string> diff --git a/core/res/res/values-lo-rLA/strings.xml b/core/res/res/values-lo-rLA/strings.xml index 4a8d964..4e560b0 100644 --- a/core/res/res/values-lo-rLA/strings.xml +++ b/core/res/res/values-lo-rLA/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ອະນຸຍາດໃຫ້ແອັບຯເພີ່ມ, ລຶບ ແລະປ່ຽນກິດຈະກຳທີ່ທ່ານສາມາດແກ້ໄຂ ໃນແທັບເລັດຂອງທ່ານໄດ້ ຮວມທັງກິດຈະກຳຂອງໝູ່ ຫຼືໝູ່ຮ່ວມເຮັດວຽກ ເຊິ່ງອາດອະນຸຍາດໃຫ້ແອັບຯສົ່ງຂໍ້ຄວາມທີ່ຄືກັບວ່າ ມາຈາກເຈົ້າຂອງປະຕິທິນ ຫຼືແກ້ໄຂການນັດໝາຍໄດ້ ໂດຍບໍ່ໃຫ້ເຈົ້າຂອງຮັບຮູ້."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ອະນຸຍາດໃຫ້ແອັບເພີ່ມ, ລຶບ, ປ່ຽນແປງເຫດການທີ່ທ່ານສາມາດແກ້ໄຂໃນໂທລະພາບຂອງທ່ານໄດ້, ລວມທັງອັນທີ່ເປັນຂອງໝູ່ ແລະຂອງເພື່ອນຮ່ວມງານ. ອັນນີ້ອາດຈະອະນຸຍາດໃຫ້ແອັບສົ່ງຂໍ້ຄວາມໃນຖານະເຈົ້າຂອງປະຕິທິນ ຫຼືປ່ຽນແປງເຫດການໂດຍທີ່ເຈົ້າຂອງບໍ່ຮູ້ໄດ້."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ອະນຸຍາດໃຫ້ແອັບຯ ເພີ່ມ, ລຶບ, ປ່ຽນແປງນັດໝາຍທີ່ທ່ານສາມາດແກ້ໄຂໄດ້ໃນໂທລະສັບຂອງທ່ານ, ຮວມທັງຂອງໝູ່ຄູ່ ຫຼືເພື່ອນຮ່ວມວຽກ. ນີ້ອາດເຮັດໃຫ້ແອັບຯສາມາດສົ່ງຂໍ້ຄວາມ ທີ່ເບິ່ງຄືວ່າມາຈາກເຈົ້າຂອງປະຕິທິນ ຫຼືແກ້ໄຂນັດໝາຍໂດຍທີ່ທ່ານບໍ່ໄດ້ຮັບຮູ້ໄດ້."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ຈຳລອງແຫລ່ງຂໍ້ມູນສະຖານທີ່ເພື່ອການທົດສອບ"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"ສ້າງແຫລ່ງຂໍ້ມູນຈຳລອງຂອງສະຖານທີ່ ເພື່ອການທົດສອບ ຫຼືຕິດຕັ້ງແຫລ່ງຂໍ້ມູນສະຖານທີ່ໃໝ່. ນີ້ຈະອະນຸຍາດໃຫ້ແອັບຯສາມາດຂຽນທັບຂໍ້ມູນຂອງສະຖານທີ່ ແລະ/ຫຼື ຂໍ້ມູນທີ່ສົ່ງກັບມາຈາກແຫລ່ງຂໍ້ມູນສະຖານທີ່ອື່ນ ເຊັ່ນ: GPS ຫຼືແຫລ່ງຂໍ້ມູນສະຖານທີ່ອື່ນໄດ້."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ເຂົ້າເຖິງຄຳສັ່ງຜູ່ໃຫ້ບໍລິການພິກັດສະຖານທີ່"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ອະນຸຍາດໃຫ້ແອັບຯເຂົ້າເຖິງຄຳສັ່ງເພີ່ມເຕີມຂອງຜູ່ໃຫ້ບໍລິການສະຖານທີ່. ນີ້ອາດຈະເປັນການເຮັດໃຫ້ແອັບຯ ລົບກວນການເຮັດວຽກຂອງ GPS ຫຼືແຫລ່ງຂໍ້ມູນສະຖານທີ່ອື່ນໆໄດ້."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ສະຖານທີ່ແນ່ນອນ (ອ້າງອີງຈາກ GPS ແລະເຄືອຂ່າຍ)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ຍົກເລີກການດຳເນີນການລາຍນີ້ວມືແລ້ວ."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ມີຄວາມພະຍາຍາມຫຼາຍຄັ້ງເກີນໄປ. ລອງໃໝ່ພາຍຫຼັງ."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ລອງໃໝ່ອີກຄັ້ງ."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ອ່ານການຕັ້ງຄ່າຊິ້ງຂໍ້ມູນ"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"ຫາກທ່ານເປີດນຳໃຊ້ບ່ອນຈັດເກັບຂໍ້ມູນ USB ຈະເຮັດໃຫ້ບາງແອັບຯທີ່ທ່ານເຮັດວຽກຢູ່ນັ້ນ ຢຸດເຮັດວຽກ ແລະອາດຈະບໍ່ສາມາດໃຊ້ໄດ້ຈົນກວ່າທ່ານປິດບ່ອນຈັດເກັບຂໍ້ມູນ USB ກ່ອນ."</string> <string name="dlg_error_title" msgid="7323658469626514207">"ປະຕິບັດການ USB ບໍ່ສຳເລັດ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ຕົກລົງ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"ເຊື່ອມຕໍ່ເປັນອຸປະກອນສື່"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ເຊື່ອມຕໍ່ເປັນກ້ອງຖ່າຍຮູບແລ້ວ"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"ເຊື່ອມຕໍ່ເປັນອຸປະກອນ MIDI ແລ້ວ"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ເຊື່ອມຕໍ່ໃນນາມຕົວຕິດຕັ້ງ"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"ເຊື່ອມຕໍ່ກັບອຸປະກອນເສີມ USB ແລ້ວ"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ແຕະເພື່ອເບິ່ງໂຕເລືອກເລືອກ USB ອື່ນໆ."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"ຟໍແມັດ ບ່ອນຈັດເກັບຂໍ້ມູນ USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"ຟໍແມັດ SD card?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ໄຟລ໌ທັງໝົດທີ່ຢູ່ໃນບ່ອນຈັດເກັບຂໍ້ມູນ USB ຂອງທ່ານຈະຖືກລຶບອອກໝົດ. ການກະທຳຈະບໍ່ສາມາດຍົກເລີກໄດ້!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">ເປັນເວລາ %1$d ນາທີ (ຈົນຮອດ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">ເປັນເວລາ 1 ນາທີ (ຈົນຮອດ <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">ເປັນເວລາ %1$d ຊົ່ວໂມງ (ຈົນຮອດ <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">ເປັນເວລາ 1 ຊົ່ວໂມງ (ຈົນຮອດ <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">ເປັນເວລາ %d ນາທີ</item> <item quantity="one">ເປັນເວລາໜຶ່ງນາທີ</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">ເປັນເວລາ %d ຊົ່ວໂມງ</item> <item quantity="one">ເປັນເວລາໜຶ່ງຊົ່ວໂມງ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"ຈົນຮອດ <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ຈົນກວ່າທ່ານຈະປິດ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-lt/strings.xml b/core/res/res/values-lt/strings.xml index e143747..12d288f 100644 --- a/core/res/res/values-lt/strings.xml +++ b/core/res/res/values-lt/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Leidžiama programai pridėti, pašalinti ir keisti įvykius, kuriuos galite keisti planšetiniame kompiuteryje, įskaitant draugų ir bendradarbių įvykius. Dėl to programa gali siųsti pranešimus, kurie atrodo lyg būtų siunčiami kalendorių savininkų, arba keisti įvykius be savininko žinios."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Programai leidžiama pridėti, pašalinti ir keisti įvykius, kuriuos galite keisti naudodami TV, įskaitant draugų arba bendradarbių įvykius. Taip programai gali būti leidžiama siųsti pranešimus, kurie atrodys kaip gauti iš kalendoriaus savininkų, arba keisti įvykius be savininko žinios."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Leidžiama programai pridėti, pašalinti ir keisti įvykius, kuriuos galite keisti telefone, įskaitant draugų ir bendradarbių įvykius. Dėl to programa gali siųsti pranešimus, kurie atrodo lyg būtų siunčiami kalendorių savininkų, arba keisti įvykius be savininko žinios."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imituoti vietos šaltinius bandymui"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Kurti bandomuosius imituojančius vietos nustatymo šaltinius arba įdiegti naują vietos nustatymo paslaugų teikėją. Programai leidžiama nepaisyti vietos ir (arba) būsenos, kurią pateikia kiti vietos nustatymo šaltiniai, pvz., GPS arba vietos nustatymo paslaugų teikėjai."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"pasiekti papildomas vietos teikimo įrankio komandas"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Programai leidžiama pasiekti papildomas vietovės nustatymo paslaugų teikėjų komandas. Dėl to programa gali trukdyti veikti GPS ar kitiems vietovės nustatymo šaltiniams."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"tiksli vieta (pagrįsta pagal GPS ir tinklą)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Kontrolinio kodo operacija atšaukta."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Per daug bandymų. Vėliau bandykite dar kartą."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Bandykite dar kartą."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"skaityti sinchronizavimo nustatymus"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Jei įjungsite USB atmintį, kai kurios naudojamos programos sustos ir gali būti negalimos, kol ją išjungsite."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Nesėkminga USB operacija"</string> <string name="dlg_ok" msgid="7376953167039865701">"Gerai"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Prij. kaip medijos įrenginys"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Prij. kaip fotoap."</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Prijungtas kaip MIDI įrenginys"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Prij. kaip diegimo programa"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Prijungta prie USB priedo"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Jei norite matyti kitas USB parinktis, palieskite."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formatuoti USB atmintį?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formatuoti SD kortelę?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Bus ištrinti visi USB atmintyje saugomi failai. Šio veiksmo negalima atšaukti!"</string> @@ -1486,24 +1492,28 @@ <item quantity="many">%1$d minutės (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d minučių (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d valandą (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d valandas (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">%1$d valandos (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d valandų (iki <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d minutę</item> <item quantity="few">%d minutes</item> <item quantity="many">%d minutės</item> <item quantity="other">%d minučių</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d valandą</item> <item quantity="few">%d valandas</item> <item quantity="many">%d valandos</item> <item quantity="other">%d valandų</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Iki <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Kol išjungsite"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-lv/strings.xml b/core/res/res/values-lv/strings.xml index 023dc74..11c2814 100644 --- a/core/res/res/values-lv/strings.xml +++ b/core/res/res/values-lv/strings.xml @@ -336,8 +336,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Ļauj lietotnei pievienot, noņemt, mainīt notikumus, kurus varat pārveidot planšetdatorā, tostarp draugu vai kolēģu notikumus. Tas var ļaut lietotnei sūtīt ziņojumus, norādot, ka tos sūta kalendāru īpašnieki, vai pārveidot notikumus bez īpašnieka atļaujas."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Ļauj lietotnei pievienot, noņemt un mainīt pasākumus, kurus jūs varat pārveidot savā televizorā, tostarp draugu un kolēģu pasākumus. Ar šo atļauju lietotne var sūtīt ziņojumus, ko šķietami sūtījuši kalendāru īpašnieki, vai pārveidot pasākumus bez īpašnieku ziņas."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Ļauj lietotnei pievienot, noņemt, mainīt notikumus, kurus varat pārveidot tālrunī, tostarp draugu vai kolēģu notikumus. Tas var ļaut lietotnei sūtīt ziņojumus, norādot, ka tos sūta kalendāru īpašnieki, vai pārveidot notikumus bez īpašnieka atļaujas."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imitēt atrašanās vietu avotus pārbaudes nolūkos"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Izveido neīstus atrašanās vietas noteikšanas avotus testēšanas nolūkiem vai instalē jaunu atrašanās vietas noteikšanas nodrošinātāju. Tas ļauj lietotnei ignorēt atrašanās vietu un/vai statusu, ko norādīja citi atrašanās vietas noteikšanas avoti, piemēram, GPS vai atrašanās vietas noteikšanas nodrošinātāji."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"piekļūt atrašanās vietas nodrošinātāja papildu komandām"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ļauj lietotnei piekļūt papildu atrašanās vietas noteikšanas nodrošinātāju komandām. Tas var ļaut lietotnei traucēt GPS vai citu atrašanās vietas noteikšanas avotu darbību."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precīza atrašanās vieta (GPS un tīklā)"</string> @@ -439,6 +437,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Nospieduma darbība neizdevās."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Pārāk daudz mēģinājumu. Vēlāk mēģiniet vēlreiz."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Mēģiniet vēlreiz."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lasīt sinhronizācijas iestatījumus"</string> @@ -1049,12 +1049,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ja ieslēgsiet USB atmiņu, dažu izmantoto lietotņu darbība tiks apturēta un tās var nebūt pieejamas līdz brīdim, kad USB atmiņa tiks izslēgta."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB atmiņas darbība neizdevās."</string> <string name="dlg_ok" msgid="7376953167039865701">"Labi"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Pievienots kā multivides ierīce"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Pievienots kā kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Ierīce tika pievienota kā MIDI ierīce."</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Pievienots kā instalēšanas programma"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Ir izveidots savienojums ar USB piederumu."</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Pieskarieties, lai skatītu citas USB opcijas."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Vai formatēt USB atmiņu?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Vai formatēt SD karti?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Visi USB atmiņā saglabātie faili tiks dzēsti. Šo darbību nevar atsaukt."</string> @@ -1476,21 +1482,25 @@ <item quantity="one">%1$d minūti (līdz <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d minūtes (līdz <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="zero">%1$d stundas (līdz <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">%1$d stundu (līdz <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d stundas (līdz <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="zero">%d minūtes</item> <item quantity="one">%d minūti</item> <item quantity="other">%d minūtes</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="zero">%d stundas</item> <item quantity="one">%d stundu</item> <item quantity="other">%d stundas</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Līdz <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Līdz brīdim, kad izslēgsiet"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-mk-rMK/strings.xml b/core/res/res/values-mk-rMK/strings.xml index 0fc4b14..855b003 100644 --- a/core/res/res/values-mk-rMK/strings.xml +++ b/core/res/res/values-mk-rMK/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Овозможува апликацијата да додава, отстранува, менува настани кои може да ги менувате на вашиот таблет, вклучувајќи ги и оние на пријатели или соработници. Ова може да овозможи апликацијата да праќа пораки за кои се чини дека доаѓаат од сопственици на календар или да менува настани без знаење на сопствениците."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Дозволува апликацијата да додава, отстранува и менува настани кои може да ги менувате на вашиот телевизор, вклучувајќи ги и оние на пријателите и соработниците. Ова може да ѝ дозволи на апликацијата да испраќа пораки кои изгледаат како да доаѓаат од сопствениците на календарот или да менува настани без знаење на сопствениците."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Овозможува апликацијата да додава, отстранува, менува настани кои може да ги менувате на вашиот телефон, вклучувајќи ги и оние на пријатели или соработници. Ова може да овозможи апликацијата да праќа пораки за кои се чини дека доаѓаат од сопственици на календар или да менува настани без знаење на сопствениците."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"извори на лажна локација за тестирање"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Создадете извори на лажна локација за тестирање или инсталирајте нов давател на локација. Ова ѝ овозможува на апликацијата да ги избегне локацијата и / или статусот вратени од друга локација извори како што се GPS или локација на даватели."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"пристапи кон наредби на давателот на дополнителна локација"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Овозможува апликацијата да пристапи кон дополнителни наредби на давател на локација. Ова може да овозможи апликацијата да го попечи функционирањето на ГПС или други извори на локација."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"прецизна локација (ГПС и базирана на мрежа)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Операцијата со отпечаток од прст се откажа."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Премногу обиди. Обидете се повторно подоцна."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Обидете се повторно."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"прочитај синхронизирани подесувања"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ако вклучите УСБ меморија, некои апликации што ги користите ќе запрат и може да се недостапни додека не ја исклучите УСБ меморијата."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Операцијата со УСБ уредот е неуспешна"</string> <string name="dlg_ok" msgid="7376953167039865701">"Во ред"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Поврзан како уред за медиуми"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Поврзан како фотоапарат"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Поврзан како уред со MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Поврзан како инсталатор"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Поврзан со УСБ додаток"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Допри за други опции на УСБ."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Форматирај УСБ-склад?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Да се форматира СД-картичката?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Сите датотеки складирани на УСБ-склад ќе се избришат. Дејството не може да се отповика."</string> @@ -1468,18 +1474,22 @@ <item quantity="one">За %1$d минута (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">За %1$d минути (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">За %1$d час (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">За %1$d часа (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">За %d минута</item> <item quantity="other">За %d минути</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">За % d час</item> <item quantity="other">За % d часа</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"До <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Додека не го исклучите"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ml-rIN/strings.xml b/core/res/res/values-ml-rIN/strings.xml index 9a5121a..77971b2 100644 --- a/core/res/res/values-ml-rIN/strings.xml +++ b/core/res/res/values-ml-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"സുഹൃത്തുക്കളുടെയും സഹപ്രവർത്തകരുടെയും ഉൾപ്പെടെ, നിങ്ങളുടെ ടാബ്ലെറ്റിൽ പരിഷ്ക്കരിക്കാനാകുന്ന ഇവന്റുകൾ ചേർക്കാനും നീക്കംചെയ്യാനും മാറ്റാനും അപ്ലിക്കേഷനെ അനുവദിക്കുന്നു. കലണ്ടർ ഉടമകളിൽ നിന്നുള്ളതായി തോന്നുന്ന സന്ദേശങ്ങൾ അയയ്ക്കാനോ ഉടമയുടെ അറിവില്ലാതെ ഇവന്റുകൾ പരിഷ്ക്കരിക്കാനോ ഇത് അപ്ലിക്കേഷനെ അനുവദിച്ചേക്കാം."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"സുഹൃത്തുക്കളുടെതോ സഹപ്രവർത്തകരുടെതോ ഉൾപ്പെടെ, നിങ്ങളുടെ ടിവിയിൽ പരിഷ്ക്കരിക്കാനാകുന്ന ഇവന്റുകൾ ചേർക്കുന്നതിനും നീക്കംചെയ്യുന്നതിനും മാറ്റുന്നതിനും അപ്ലിക്കേഷനെ അനുവദിക്കുക. ഇത്, കലണ്ടർ ഉടമകളിൽ നിന്നും വരുന്ന സന്ദേശങ്ങൾ അയയ്ക്കുന്നതിനോ ഉടമയുടെ അറിവില്ലാതെ ഇവന്റുകൾ പരിഷ്ക്കരിക്കുന്നതിനോ അപ്ലിക്കേഷനെ അനുവദിച്ചേക്കാം."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"സുഹൃത്തുക്കളുടെയും സഹപ്രവർത്തകരുടെയും ഉൾപ്പെടെ, നിങ്ങളുടെ ഫോണിൽ പരിഷ്ക്കരിക്കാനാകുന്ന ഇവന്റുകൾ ചേർക്കാനും നീക്കംചെയ്യാനും മാറ്റാനും അപ്ലിക്കേഷനെ അനുവദിക്കുന്നു. കലണ്ടർ ഉടമകളിൽ നിന്നുള്ളതായി തോന്നുന്ന സന്ദേശങ്ങൾ അയയ്ക്കാനോ ഉടമയുടെ അറിവില്ലാതെ ഇവന്റുകൾ പരിഷ്ക്കരിക്കാനോ ഇത് അപ്ലിക്കേഷനെ അനുവദിക്കാനിടയുണ്ട്."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"പരിശോധിക്കുന്നതിനായുള്ള വ്യാജ ലൊക്കേഷൻ ഉറവിടങ്ങൾ"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"പുതിയ ലൊക്കേഷൻ ദാതാവിനെ പരിശോധിക്കാനോ ഇൻസ്റ്റാളുചെയ്യാനോ യഥാർത്ഥമല്ലാത്ത ലൊക്കേഷൻ ഉറവിടങ്ങൾ സൃഷ്ടിക്കുന്നു. ഇത് GPS അല്ലെങ്കിൽ ലൊക്കേഷൻ ദാതാക്കൾ പോലുള്ള മറ്റ് ലൊക്കേഷൻ ഉറവിടങ്ങൾ നൽകുന്ന ലൊക്കേഷനോ കൂടാതെ/അല്ലെങ്കിൽ നിലയോ അസാധുവാക്കാൻ അപ്ലിക്കേഷനെ അനുവദിക്കുന്നു."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ലൊക്കേഷൻ ദാതാവിന്റെ അധിക കമാൻഡുകൾ ആക്സസ്സുചെയ്യുക"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ലൊക്കേഷൻ ദാതാവിന്റെ അധിക കമാൻഡുകൾ ആക്സസ്സുചെയ്യാൻ അപ്ലിക്കേഷനെ അനുവദിക്കുന്നു. ഇത് GPS-ന്റെയോ മറ്റ് ലൊക്കേഷൻ ഉറവിടങ്ങളുടെയോ പ്രവർത്തനത്തിൽ ഇടപെടാൻ അപ്ലിക്കേഷനെ അനുവദിക്കാനിടയുണ്ട്."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"കൃത്യമായ ലൊക്കേഷൻ (GPS-ഉം നെറ്റ്വർക്കും അടിസ്ഥാനമാക്കിയുള്ളത്)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ഫിംഗർപ്രിന്റ് പ്രവർത്തനം റദ്ദാക്കി."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"നിരവധി തവണ ശ്രമിച്ചു. പിന്നീട് വീണ്ടും ശ്രമിക്കുക."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"വീണ്ടും ശ്രമിക്കൂ."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"സമന്വയ ക്രമീകരണങ്ങൾ റീഡുചെയ്യുക"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"നിങ്ങൾ USB സംഭരണം ഓൺ ചെയ്യുകയാണെങ്കിൽ, നിങ്ങൾ ഉപയോഗിക്കുന്ന ചില അപ്ലിക്കേഷനുകൾ USB സംഭരണം ഓഫുചെയ്യുന്നതുവരെ പ്രവർത്തനം നിർത്താനും ലഭ്യമാകാതിരിക്കാനും ഇടയുണ്ട്."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB പ്രവർത്തനം പരാജയപ്പെട്ടു"</string> <string name="dlg_ok" msgid="7376953167039865701">"ശരി"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"മീഡിയ ഉപകരണമായി കണക്റ്റുചെയ്തു"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ഒരു ക്യാമറയായി കണക്റ്റുചെയ്തു"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI ഉപകരണമായി കണക്റ്റുചെയ്തു"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ഇൻസ്റ്റാളറായി കണക്റ്റുചെയ്തു"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"ഒരു USB ആക്സസ്സറി കണക്റ്റുചെയ്തു"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"മറ്റ് USB ഓപ്ഷനുകൾക്കായി സ്പർശിക്കുക."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB സംഭരണം ഫോർമാറ്റുചെയ്യണോ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD കാർഡ് ഫോർമാറ്റുചെയ്യണോ?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB സംഭരണത്തിൽ ശേഖരിച്ചിട്ടുള്ള നിങ്ങളുടെ എല്ലാ ഫയലുകളും മായ്ക്കും. ഈ പ്രവർത്തനം പഴയപടിയാക്കാനാവില്ല!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d മിനിറ്റ് സമയത്തേക്ക് (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> വരെ)</item> <item quantity="one">ഒരു മിനിറ്റ് സമയത്തേക്ക് (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> വരെ)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d മണിക്കൂർ സമയത്തേക്ക് (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> വരെ)</item> <item quantity="one">ഒരു മണിക്കൂർ സമയത്തേക്ക് (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> വരെ)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d മിനിറ്റ് സമയത്തേക്ക്</item> <item quantity="one">ഒരു മിനിറ്റ് സമയത്തേക്ക്</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d മണിക്കൂർ സമയത്തേക്ക്</item> <item quantity="one">ഒരു മണിക്കൂർ സമയത്തേക്ക്</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> വരെ"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"നിങ്ങൾ ഇത് ഓഫാക്കും വരെ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-mn-rMN/strings.xml b/core/res/res/values-mn-rMN/strings.xml index ce18c9f..bfd996c 100644 --- a/core/res/res/values-mn-rMN/strings.xml +++ b/core/res/res/values-mn-rMN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Апп нь таблет дээр та болон таны найзууд, хамтран ажиллагсдын өөрчилж чадах үйл явдлуудыг нэмэх, хасах болон солих боломжтой. Энэ нь апп-д, календарь эзэмшигчээс ирсэн мэт харагдах мессежийг илгээх эсвэл эзэмшигчд нь мэдэгдэлгүйгээр үйл явдлуудыг өөрчлөх боломжийг олгоно."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Апп-д таны телевиз дээрээ өөрчилж болох найз эсвэл хамтран ажиллагсдын үйл явдлыг нэмэх, устгах, өөрчлөхийг зөвшөөрдөг. Энэ нь апп-д хуанлийн үйл явдлын эзэд явуулсан мэт харагдах зурвасыг илгээхийг зөвшөөрдөг бөгөөд тухайн эздэд мэдэгдэлгүйгээр үйл явдлыг өөрчлөхийг зөвшөөрдөг."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Апп нь утсан дээр та болон таны найзууд, хамтран ажиллагсдын өөрчилж чадах үйл явдлуудыг нэмэх, хасах болон солих боломжтой. Энэ нь апп-д, календарь эзэмшигчээс ирсэн мэт харагдах мессежийг илгээх эсвэл эзэмшигчид нь мэдэгдэлгүйгээр үйл явдлуудыг өөрчлөх боломжийг олгоно."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"тест хийх байршлын эх үүсвэрийг үүсгэх"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Тестэд ашиглах хуурамч байршлын эх үүсвэрийг үүсгэх болон шинэ байршил өгөгчийг суулгах боломжтой. Ингэснээр апп нь GPS эсвэл байршил өгөгч зэрэг бусад байршлын эх үүсвэрээс ирсэн байршил болон статусыг өөрчлөх боломжтой."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"байршил нийлүүлэгчийн нэмэлт тушаалд хандах"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Апп нь байршил нийлүүлэгчийн нэмэлт тушаалд хандах боломжтой. Энэ нь апп-д GPS эсвэл бусад байршлын үйлчилгээний ажиллагаанд нөлөөлөх боломжийг олгоно."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"Тодорхой байршил(GPS болон сүлжээнд суурилсан)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Хурууны хээний бүртгэл амжилтгүй боллоо."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Хэтэрхий олон оролдлоо. Түр хүлээгээд дахин оролдоно уу."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Дахин оролдно уу."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"синк тохиргоог унших"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Хэрэв та USB санг асуувал таны ашиглаж байга зарим апп зогсох ба та USB сангаа унтраатал ашиглах боломжгүй байж болзошгүй."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ажиллагаа бүтэлгүйтэв"</string> <string name="dlg_ok" msgid="7376953167039865701">"Тийм"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Медиа төхөөрөмж болон холбогдов"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Камер болгон холбов"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI төхөөрөмж хэлбэрээр холбогдсон байна"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Суулгагч болгон холбогдсон"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB төхөөрөмжид холбогдов"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Бусад USB сонголт хийх бол хүрнэ үү."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB санг форматлах уу?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD картыг форматлах уу?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Таны USB санд хадгалагдсан бүх файл арилгагдана. Энэ үйлдлийг буцаах боломжгүй!"</string> @@ -1466,16 +1472,20 @@ <item quantity="other"> %1$d минутын турш ( <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> хүртэл)</item> <item quantity="one">нэг минутын турш (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> хүртэл)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d цагийн турш (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> хүртэл)</item> <item quantity="one">Нэг цагийн турш (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> хүртэл)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d минутын турш</item> <item quantity="one">Нэг минутын турш</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <!-- String.format failed for translation --> <!-- no translation found for zen_mode_duration_hours (3938821308277433854) --> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> хүртэл"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Таныг унтраах хүртэл"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-mr-rIN/strings.xml b/core/res/res/values-mr-rIN/strings.xml index 5ef773b..c7a1753 100644 --- a/core/res/res/values-mr-rIN/strings.xml +++ b/core/res/res/values-mr-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"मित्र किंवा सहकर्मी यांच्यासह, आपण आपल्या टॅब्लेटवर सुधारित करू शकता असे इव्हेंट जोडण्यासाठी, काढण्यासाठी, बदलण्यासाठी अॅप ला अनुमती देते. हे कॅलेंडर मालकांकडून येत असल्याचे दिसणारे संदेश पाठविण्यासाठी किंवा मालकांच्या माहितीशिवाय इव्हेंट सुधारित करण्यासाठी अॅप ला अनुमती देऊ शकते."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"आपल्या टीव्हीवर मित्रांसह किंवा सहकर्मींसह, आपण सुधारित करू शकता अशा इव्हेंट जोडण्यासाठी, काढण्यासाठी, बदलण्यासाठी अॅपला अनुमती देते. हे कॅलेंडर मालकांकडून येत आहे असे वाटणारे किंवा मालकांना न कळविता सुधारित करण्यासाठी अॅपला अनुमती देऊ शकते."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"मित्र किंवा सहकर्मी यांच्यासह, आपण आपल्या फोनवर सुधारित करू शकता असे इव्हेंट जोडण्यासाठी, काढण्यासाठी, बदलण्यासाठी अॅप ला अनुमती देते. हे कॅलेंडर मालकांकडून येत असल्याचे दिसणारे संदेश पाठविण्यासाठी किंवा मालकांच्या माहितीशिवाय इव्हेंट सुधारित करण्यासाठी अॅप ला अनुमती देऊ शकते."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"चाचणीसाठी बनावट स्थान स्त्रोत"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"चाचणीसाठी किंवा नवीन स्थान प्रदाता स्थापित करण्यासाठी बनावट स्थान स्त्रोत तयार करा. हे GPS किंवा स्थान प्रदात्यांसारख्या स्थान आणि/किंवा अन्य स्थान स्त्रोतांकडून मिळालेली स्थिती अधिशून्य करण्यास अॅप ला अनुमती देते."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"अतिरिक्त स्थान प्रदाता आदेशांवर प्रवेश करा"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"अॅपला अतिरिक्त स्थान प्रदाता आदेशावर प्रवेश करण्याची अनुमती देते. हे कदाचित अॅपला GPS किंवा इतर स्थान स्त्रोत च्या ऑपरेशनमध्ये हस्तक्षेप करण्याची अनुमती देऊ शकते."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"अचूक स्थान (GPS आणि नेटवर्क-आधारित)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"फिंगरप्रिंट ऑपरेशन रद्द झाले."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"खूप प्रयत्न केले. नंतर पुन्हा प्रयत्न करा."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"पुन्हा प्रयत्न करा."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"संकालन सेटिंग्ज वाचा"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"आपण USB संचयन चालू केल्यास, आपण वापरत असलेले काही अॅप्स थांबतील आणि आपण USB संचयन बंद करेपर्यंत अनुपलब्ध होऊ शकतात."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB कार्य अयशस्वी झाले"</string> <string name="dlg_ok" msgid="7376953167039865701">"ठीक"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"मीडिया हिव्हाइस म्हणून कनेक्ट केले"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"कॅमेरा म्हणून कनेक्ट केले"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"एक MIDI डिव्हाइस म्हणून कनेक्ट केले आहे"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"स्थापनकर्ता म्हणून कनेक्ट केले"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB उपसाधनावर कनेक्ट केले"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"अन्य USB पर्यायांसाठी स्पर्श करा."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB संचयनाचे स्वरूपन करायचे?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD कार्डचे स्वरूपन करायचे?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"आपल्या USB संचयनामध्ये संचयित केलेल्या सर्व फायली मिटविल्या जातील. ही क्रिया उलट करणे शक्य नाही!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">%1$d मिनिटासाठी (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> पर्यंत)</item> <item quantity="other">%1$d मिनिटांसाठी (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> पर्यंत)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d तासासाठी (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> पर्यंत)</item> <item quantity="other">%1$d तासांसाठी (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> पर्यंत)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d मिनिटासाठी</item> <item quantity="other">%d मिनिटांसाठी</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d तासासाठी</item> <item quantity="other">%d तासांसाठी</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> पर्यंत"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"आपण हे बंद करेपर्यंत"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ms-rMY/strings.xml b/core/res/res/values-ms-rMY/strings.xml index dad9c16..d73c559 100644 --- a/core/res/res/values-ms-rMY/strings.xml +++ b/core/res/res/values-ms-rMY/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Membenarkan apl menambah, mengalih keluar, mengubah acara yang anda boleh ubah suai pada tablet anda, termasuk milik rakan atau rakan sekerja. Ini boleh membenarkan apl menghantar mesej yang kelihatan seperti datang dari pemilik kalendar atau mengubah suai acara tanpa pengetahuan pemilik."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Membenarkan apl untuk menambah, mengalih keluar dan menukar acara yang boleh anda ubah suai pada TV anda, termasuk milik rakan atau rakan sekerja. Ini mungkin membenarkan apl untuk menghantar mesej yang kelihatan seperti datang daripada pemilik kalendar atau mengubah suai acara tanpa pengetahuan pemilik."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Membenarkan apl menambah, mengalih keluar, mengubah acara yang anda boleh ubah suai pada telefon anda, termasuk milik rakan atau rakan sekerja. Ini boleh membenarkan apl menghantar mesej yang kelihatan seperti datang dari pemilik kalendar atau mengubah suai acara tanpa pengetahuan pemilik."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"gunakan sumber lokasi olok-olok untuk pengujian"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Buat sumber lokasi palsu untuk menguji atau memasang pembekal lokasi baharu. Ini membenarkan apl untuk membatalkan lokasi dan/atau status yang dikembalikan oleh sumber lokasi lain seperti GPS atau pembekal lokasi."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"akses perintah tambahan pembekal lokasi"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Membenarkan apl mengakses arahan pembekal lokasi tambahan. Ini boleh membenarkan apl untuk campur tangan dengan operasi GPS atau sumber lokasi lain."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"lokasi tepat (GPS dan berasaskan rangkaian)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Pengendalian cap jari dibatalkan."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Terlalu banyak percubaan. Cuba sebentar lagi."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Cuba lagi."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"membaca tetapan penyegerakan"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Jika anda menghidupkan storan USB, sesetengah apl yang sedang anda gunakan akan terhenti dan mungkin tidak akan tersedia sehingga anda mematikan storan USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operasi USB tidak berjaya"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Disambungkan sebagai peranti media"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Disambungkan sebagai kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Disambungkan sebagai peranti MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Disambungkan sebagai pemasang"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Disambungkan kepada aksesori USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Sentuh untuk mendapatkan pilihan USB yang lain."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format storan USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Format kad SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Semua fail yang disimpan dalam storan USB anda akan dipadamkan. Tindakan ini tidak boleh diterbalikkan!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Selama %1$d minit (sehingga <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Selama satu minit (sehingga <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Selama %1$d jam (sehingga <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Selama satu jam (sehingga <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Selama %d minit</item> <item quantity="one">Selama satu minit</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Selama %d jam</item> <item quantity="one">Selama satu jam</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Sehingga <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Sehingga anda matikan"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-my-rMM/strings.xml b/core/res/res/values-my-rMM/strings.xml index 3df4a55..2bfe5cd 100644 --- a/core/res/res/values-my-rMM/strings.xml +++ b/core/res/res/values-my-rMM/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"အပလီကေးရှင်းအား သင်၏ တက်ဘလက်တွင် သူငယ်ချင်း အလုပ်ဖော်များ အပါအဝင် သင်၏ ပြောင်းလဲအဖြစ်အပျက်များအား ထည့်ခြင်း၊ ထုတ်ခြင်းအား ခွင့်ပြုရန်။ ဤခွင့်ပြုချက်သည် အပလီကေးရှင်းအား သတင်းများပို့ခြင်းကို ပြက္ခဒိန်ပိုင်ရှင်ဆီမှ လာသလို အနေဖြင့် ပေးပို့ခြင်း သို့မဟုတ် အဖြစ်အပျက်များကို ပိုင်ရှင်မသိပဲ ပြင်ဆင်နိုင်ပါသည်။"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"သင့် သူငယ်ချင်းများ သို့မဟုတ် လုပ်ဖော်ကိုင်ဖက်များ၏ လှုပ်ရှားမှုများ အပါအဝင်၊ သင့်တီဗွီရှိ လှုပ်ရှားမှုများကို ထပ်ထည့်ရန်၊ ဖယ်ထုတ်ရန်၊ ပြောင်းလဲရန် app အား ခွင့်ပြုပါ။ ဤသို့ပြုပါက ပြက္ခဒိန် ပိုင်ရှင်ဆီမှ စာတိုများ လာသကဲ့သို့ စာများပို့ရန်၊ သို့မဟုတ် ပိုင်ရှင်၏ ခွင့်ပြုချက်မရှိဘဲ လှုပ်ရှားမှုများကို ပြင်ဆင်ရန် app အား ခွင့်ပြုထားခြင်း ဖြစ်၏။"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"အပလီကေးရှင်းအား သင်၏ ဖုန်းတွင် သူငယ်ချင်း အလုပ်ဖော်များ အပါအဝင် သင်၏ ပြောင်းလဲအဖြစ်အပျက်များအား ထည့်ခြင်း၊ ထုတ်ခြင်းအား ခွင့်ပြုရန်။ ဤခွင့်ပြုချက်သည် အပလီကေးရှင်းအား သတင်းများပို့ခြင်းကို ပြက္ခဒိန်ပိုင်ရှင်ဆီမှ လာသလို အနေဖြင့် ပေးပို့ခြင်း သို့မဟုတ် အဖြစ်အပျက်များကို ပိုင်ရှင်မသိပဲ ပြင်ဆင်နိုင်ပါသည်။"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"စမ်းသပ်ရန်အတွက် တည်နေရာပုံစံတုမူရင်း"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"စမ်းသပ်ရန် သို့ နေရာပြပံ့ပို့းမှု အသစ်သွင်းရန် တည်နေရာဇစ်မြစ်အတုကို ဖန်တီးပါ။ ဤသို့လုပ်ခြင်းအားဖြင့် အပလီကေးရှင်းမှ တည်နေရာကို ကျော်ဖြတ်ပြင်ဆင်ခြင်းနှင်ူ ဂျီပီအက်စ် သို့ နေရာပြပံ့ပိုးမှုကဲ့သို့သော အခြား တည်နေရာဇစ်မြစ်များ၏ အခြေအနေကို ပြန်ပို့ပေးနိုင်မည်ဖြစ်သည်။"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"တည်နေရာပံ့ပိုးမှုညွှန်ကြားချက်အပိုအား ဝင်ရောက်ကြည့်ခြင်း"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"appအား တည်နေရာ စီမံပေးရေး ညွှန်ကြားချက် အပိုများကို ရယူခွင့်ပြုသည်။ သို့ဖြစ်၍ appသည် GPS သို့မဟုတ် အခြား တည်နေရာ ရင်းမြစ်ကို သုံးကြသူတို့၏ လုပ်ငန်းများကို ဝင်စွက်ခွင့် ပြုနိုင်သည်။"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"တည်နေရာ အတိအကျ (ဂျီပီအက်စ် နှင့် ကွန်ရက်အခြေခံ)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"လက်ဗွေရာ လုပ်ငန်း ဖျက်သိမ်းခဲ့၏။"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ကြိုးစာမှု အကြိမ်များနေ၏။ နောက်မှ ထပ်မံကြိုးစားပါ။"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ပြန်ကြိုးစားပါ"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ထပ်တူပြုအဆင်အပြင်အားဖတ်ခြင်း"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"သင် ယူအက်စ်ဘီ နဲ့ သိမ်းဆည်းမှုကို ဖွင့်လိုက်ပါက တချို့ အပလီကေးရှင်းများ က ယူအက်စ်ဘီ နဲ့ သိမ်းဆည်းမှု ပြန်ပိတ်သည်အထိ အလုပ်မလုပ် သို့ သုံးစွဲရန် ရှိနေမည် မဟုတ်ပါ"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USBဆောင်ရွက်မှုမအောင်မြင်ပါ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ကောင်းပြီ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"မီဒီယာစက်အနေဖြင့် ချိတ်ဆက်သည်"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ကင်မရာအနေဖြင့်ဆက်သွယ်ခြင်း"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI စက်ပစ္စည်းအဖြစ် ချိတ်ဆက်ထားသည်"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"installerအနေဖြင့် ချိတ်ဆက်သည်"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USBတွဲဖက်ပစ္စည်းအား ချိတ်ဆက်ထားသည်"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"အခြား USB စိတ်ကြိုက်ရွေးချယ်ခွင့်များ အတွက် တို့ထိပါ။"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB သိုလှောင်ခန်းကို ပုံစံပြန်ချမလား?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD ကဒ်ကို ပုံစံပြန်ချမလား?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"သင်၏ USB သိုလှောင်ခန်းထဲ သိုလှောင်ထားသည့် ဖိုင်အားလုံး ဖျက်ခံရမည်။ ဒီလုပ်ရပ်ကို ပြန်ပြီး ပြောင်းလဲ မရနိုင်ပါ။"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d မိနစ်တွင် (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>အထိ)</item> <item quantity="one">တစ်မိနစ်တွင် (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> အထိ)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d နာရီကြာ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>အထိ)</item> <item quantity="one">တစ်နာရီကြာ (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> အထိ)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d မိနစ်တွင်</item> <item quantity="one">တစ်မိနစ်တွင်</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d နာရီကြာ</item> <item quantity="one">တစ်နာရီကြာ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>အထိ"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"သင်က ဒါကို ပိတ်မပစ်သည့် အထိ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-nb/strings.xml b/core/res/res/values-nb/strings.xml index 5424b48..013782f 100644 --- a/core/res/res/values-nb/strings.xml +++ b/core/res/res/values-nb/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Lar appen legge til, fjerne og endre aktiviteter du kan redigere på nettbrettet ditt, inkludert aktiviteter for venner eller kolleger. Dette kan gjøre at appen sender meldinger som ser ut som om de kommer fra kalendereiere eller endre aktiviteter uten at eierne vet om det."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Gjør at appen kan legge til, fjerne eller endre aktiviteter du kan endre på TV-en, herunder aktivitetene til venner eller kollegaer. Dette kan føre til at appen kan sende meldinger som viser seg å komme fra eiere av kalendere eller at den kan moderere hendelser uten at eieren vet om det."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Lar appen legge til, fjerne og endre aktiviteter du kan redigere på telefonen din, inkludert aktiviteter for venner eller kolleger. Dette kan gjøre at appen sender meldinger som ser ut som om de kommer fra kalendereiere eller endre aktiviteter uten at eierne vet om det."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"lage simulerte posisjonskilder for testing"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Opprette fiktive posisjonskilder for testing eller installere en ny posisjonsangiver. Dette gjør at appen kan overstyre posisjonen eller statusen som rapporteres av ekte posisjonskilder, som for eksempel GPS eller posisjonsangivere."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"bruke ekstra posisjonskommandoer"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Appen gis tillatelse til å bruke ekstra kommandoer fra posisjonsleverandører. Dette kan gi appen tillatelse til å påvirke bruken av GPS eller andre posisjonskilder."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"presis posisjon (GPS- og nettverksbasert)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingeravtrykk-operasjonen ble avbrutt."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"For mange forsøk. Prøve på nytt senere."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Prøv igjen."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lese synkroniseringsinnstillinger"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Hvis du aktiverer USB-lagring, virker ikke enkelte av appene du bruker lenger, og de kan forbli utilgjengelige inntil du deaktiverer USB-lagringen."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-handling mislyktes"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Tilkoblet som medieenhet"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Tilkoblet som kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Koblet til som MIDI-enhet"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Tilkoblet som installasjonsprogram"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Koblet til et USB-tilbehør"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Trykk for få andre USB-alternativer."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formatere USB-lagr.?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Vil du formatere SD-kortet?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alle filer som er lagret på USB-lagringen blir slettet. Denne handlingen kan ikke angres."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">I %1$d minutter (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">I 1 minutt (til <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">For %1$d timer (til <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">I 1 time (til <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">I %d minutter</item> <item quantity="one">I 1 minutt</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">I %d timer</item> <item quantity="one">I 1 time</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Til <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Inntil du slår av funksjonen"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ne-rNP/strings.xml b/core/res/res/values-ne-rNP/strings.xml index c3edab1..31cb81b 100644 --- a/core/res/res/values-ne-rNP/strings.xml +++ b/core/res/res/values-ne-rNP/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ती साथीहरू वा सहकर्मीहरूसहितका घटनाहरू जसलाई तपाईँले आफ्नो ट्याब्लेटमा परिमार्जन गर्न सक्ने अनुमति अनुप्रयोगलाई दिन्छ। यसले अनुप्रयोगलाई सन्देशहरू जुन पात्राको मालिकहरूबाट आएका देखिनेलाई पठाउने वा मालिकहरूको ज्ञान बेगर घटनालाई परिमार्जन गर्ने अनुमित दिन्छ।"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"अनुप्रयोगलाई अनुमति दिन्छ थप्न, हटाउन र घटनाहरू, तपाईँका साथीहरू वा सहकर्मी लगायत, परिर्वतन गर्न, जुन तपाईँले तपाईँको TV मा परिमार्जन गर्न सक्नुहुन्छ। यसले अनुप्रयोगलाई सन्देशहरू पठाउन अनुमति दिन सक्छ जुन पात्रोको मालिकबाट आएको झैं देखिन सक्छ, वा मालिकको ज्ञान बिना घटनाहरू परिमार्जन गर्न सक्छ।"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ती साथीहरू वा सहकर्मीहरूसहित तपाईँको फोनका घटनाहरू जसलाई थप्न, हटाउन र परिवर्तन गर्न अनुप्रयोगलाई अनुमति दिन्छ। पात्रो मालिकबाट देखा परेका वा मालिकको ज्ञान बिना परिवर्तन भएका घटनाहरू सन्देश पठाउन यसले अनुप्रयोगलाई अनुमति दिन सक्छ।"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"परीक्षणको लागि स्थान स्रोतहरू मक गर्नुहोस्"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"परीक्षणको लागि मक स्थान स्रोतहरू सिर्जना गर्नुहोस् वा नयाँ स्थान प्रदायक स्थापना गर्नुहोस्। यसले अनुप्रयोगलाई स्थानमा ओभरराइड गर्दछ र/वा स्थिति अन्य स्थान स्रोतहरू जस्तै GPS वा स्थान प्रदायकबाट फर्काइएका।"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"अधिक स्थान प्रदायक आदेशहरू पहुँच गर्नुहोस्"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"अनुप्रयोगलाई अतिरिक्त स्थान प्रदायक आदेशहरू पहुँच गर्न अनुमति दिन्छ। यो अनुप्रयोगलाई GPS वा अन्य स्थान स्रोतहरूको संचालन साथै हस्तक्षेप गर्न अनुमति दिन सक्छ।"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"सटिक स्थान (GPS र नेटवर्क आधारित)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"औँठाछाप सञ्चालन रद्द गरियो।"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"धेरै प्रयासहरू। केहि समय पछि पुन: प्रयास गर्नुहोला"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"पुन: प्रयास गर्नुहोला।"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"समीकरण सेटिङहरू पढ्नुहोस्"</string> @@ -1048,12 +1048,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"यदि तपाईँले USB भण्डारण खोल्नु भयो भने तपाईँले प्रयोग गरिरहनु भएका केही अनुप्रयोगहरू रोकिने छन् र तपाईँले USB भण्डारण बन्द नगरेसम्म अनुपलब्ध हुन सक्छन्।"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB संचालन असफल"</string> <string name="dlg_ok" msgid="7376953167039865701">"ठिक छ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"मिडिया उपकरणको रूपमा जडित"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"क्यामेराको रूपमा जडान भएको"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI यन्त्रको रूपमा जडान गरियो"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"एउटा स्थापनकर्ताको रूपमा जोडिएको छ"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB सहायकमा जोडिएको छ"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"अन्य USB विकल्पहरूको लागि टच गर्नुहोस्।"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB भण्डारणलाई फर्म्याट गर्न चाहनु हुन्छ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD कार्ड फर्म्याट गर्ने?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"तपाईंको USBमा सङ्ग्रह भएका सबै फाइलहरू मेटिने छन्। यो कार्य उल्टाउन सकिँदैन!"</string> @@ -1472,18 +1478,22 @@ <item quantity="other"> %1$d मिनेटको लागि (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> सम्म)</item> <item quantity="one">एक मिनेटको लागि (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> सम्म)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other"> %1$d घण्टाको लागि (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> सम्म)</item> <item quantity="one">एक घण्टाको लागि (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> सम्म)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d मिनेटको लागि</item> <item quantity="one">एक मिनेटको लागि</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d घण्टाको लागि</item> <item quantity="one">एक घण्टाको लागि</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> सम्म"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"तपाईँले यसलाई बन्द नगरेसम्म"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-nl/strings.xml b/core/res/res/values-nl/strings.xml index af0a477..034d66c 100644 --- a/core/res/res/values-nl/strings.xml +++ b/core/res/res/values-nl/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Hiermee kan de app afspraken toevoegen, verwijderen en wijzigen die u kunt bewerken op uw tablet, inclusief afspraken van vrienden of collega\'s. Zo kan de app berichten verzenden die afkomstig lijken te zijn van agenda-eigenaren, of afspraken aanpassen zonder medeweten van de eigenaar."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Hiermee kan de app afspraken toevoegen, verwijderen en wijzigen die u op uw tv kunt aanpassen, inclusief afspraken van vrienden of collega\'s. Met deze toestemming zou de app berichten kunnen verzenden die afkomstig lijken te zijn van agenda-eigenaren of afspraken kunnen aanpassen zonder medeweten van de eigenaar."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Hiermee kan de app afspraken toevoegen, verwijderen en wijzigen die u kunt bewerken op uw telefoon, inclusief afspraken van vrienden of collega\'s. Zo kan de app berichten verzenden die afkomstig lijken te zijn van agenda-eigenaren, of afspraken aanpassen zonder medeweten van de eigenaar."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"neplocatiebronnen voor test"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Voorbeeld-locatiebronnen maken voor tests of een nieuwe locatieprovider instellen. Hiermee kan de app de locatie en/of status overschrijven van andere locatiebronnen zoals GPS of locatieproviders."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"toegang tot extra opdrachten van locatieaanbieder"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Hiermee kan de app toegang krijgen tot extra opdrachten voor de locatieprovider. De app kan hiermee de werking van GPS of andere locatiebronnen te verstoren."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"precieze locatie (GPS- en netwerkgebaseerd)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Vingerafdrukbewerking geannuleerd."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Te veel pogingen. Probeer het later opnieuw."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Probeer het opnieuw."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"synchronisatie-instellingen lezen"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Als u USB-opslag inschakelt, worden bepaalde apps die u gebruikt, gestopt en zijn deze mogelijk pas weer beschikbaar wanneer u USB-opslag uitschakelt."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-bewerking mislukt"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Gekoppeld als media-apparaat"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Gekoppeld als camera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Verbonden als MIDI-apparaat"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Gekoppeld als installatieprogramma"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Aangesloten op een USB-accessoire"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Raak aan voor andere USB-opties."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB-opslag formatteren?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD-kaart formatteren?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alle bestanden die in uw USB-opslag zijn opgeslagen, worden gewist. Deze actie kan niet ongedaan worden gemaakt."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d minuten (tot <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Eén minuut (tot <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d uur (tot <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Eén uur (tot <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d minuten</item> <item quantity="one">Eén minuut</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d uur</item> <item quantity="one">Eén uur</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Tot <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Totdat u dit uitschakelt"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-pa-rIN/strings.xml b/core/res/res/values-pa-rIN/strings.xml index 0e9658b..89799c6 100644 --- a/core/res/res/values-pa-rIN/strings.xml +++ b/core/res/res/values-pa-rIN/strings.xml @@ -129,6 +129,7 @@ <string-array name="wfcOperatorErrorNotificationMessages"> </string-array> <string name="wfcSpnFormat" msgid="8211621332478306568">"%s"</string> + <string name="wfcDataSpnFormat" msgid="1118052028767666883">"%s"</string> <string name="wifi_calling_off_summary" msgid="8720659586041656098">"ਬੰਦ"</string> <string name="wfc_mode_wifi_preferred_summary" msgid="1994113411286935263">"ਤਰਜੀਹੀ Wi-Fi"</string> <string name="wfc_mode_cellular_preferred_summary" msgid="5920549484600758786">"ਤਰਜੀਹੀ ਸੈਲਿਊਲਰ"</string> @@ -219,27 +220,27 @@ <string name="user_owner_label" msgid="6465364741001216388">"ਨਿੱਜੀ ਐਪਸ"</string> <string name="managed_profile_label" msgid="6260850669674791528">"ਕੰਮ"</string> <string name="permgrouplab_contacts" msgid="3657758145679177612">"ਸੰਪਰਕ"</string> - <string name="permgroupdesc_contacts" msgid="1437393511338346185">"ਆਪਣੇ ਸੰਪਰਕਾਂ ਤੱਕ ਪਹੁੰਚੋ ਅਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰੋ"</string> + <string name="permgroupdesc_contacts" msgid="6951499528303668046">"ਆਪਣੇ ਸੰਪਰਕਾਂ ਨੂੰ ਐਕਸੈਸ ਕਰੋ"</string> <string name="permgrouplab_location" msgid="7275582855722310164">"ਨਿਰਧਾਰਿਤ ਸਥਾਨ"</string> <string name="permgroupdesc_location" msgid="536889867433972794">"ਆਪਣੇ ਸਥਾਨ ਤੱਕ ਪਹੁੰਚੋ"</string> <string name="permgrouplab_socialInfo" msgid="5799096623412043791">"ਤੁਹਾਡੀ ਸਮਾਜਿਕ ਜਾਣਕਾਰੀ"</string> <string name="permgroupdesc_socialInfo" msgid="7129842457611643493">"ਆਪਣੇ ਸੰਪਰਕਾਂ ਅਤੇ ਸਮਾਜਿਕ ਕਨੈਕਸ਼ਨਾਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਤੱਕ ਸਿੱਧੀ ਪਹੁੰਚ।"</string> <string name="permgrouplab_calendar" msgid="5863508437783683902">"ਕੈਲੰਡਰ"</string> - <string name="permgroupdesc_calendar" msgid="2116049656685591803">"ਆਪਣੇ ਕੈਲੰਡਰ ਤੱਕ ਪਹੁੰਚੋ ਅਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰੋ"</string> + <string name="permgroupdesc_calendar" msgid="3889615280211184106">"ਆਪਣੇ ਕੈਲੰਡਰ ਦੀ ਐਕਸੈਸ ਕਰੋ"</string> <string name="permgrouplab_sms" msgid="228308803364967808">"SMS"</string> - <string name="permgroupdesc_sms" msgid="3695085582674524761">"SMS ਤੱਕ ਪਹੁੰਚੋ ਅਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰੋ"</string> + <string name="permgroupdesc_sms" msgid="3714409903876407981">"SMS ਸੁਨੇਹੇ ਵੇਖੋ ਅਤੇ ਉਹਨਾਂ ਨੂੰ ਪ੍ਰਬੰਧਿਤ ਕਰੋ"</string> <string name="permgrouplab_dictionary" msgid="8114410334955871144">"ਉਪਭੋਗਤਾ ਸ਼ਬਦਕੋਸ਼"</string> <string name="permgroupdesc_dictionary" msgid="7586787746354378335">"ਉਪਭੋਗਤਾ ਸ਼ਬਦਕੋਸ਼ ਵਿੱਚ ਸ਼ਬਦ ਪੜ੍ਹੋ ਜਾਂ ਲਿਖੋ।"</string> <string name="permgrouplab_bookmarks" msgid="1949519673103968229">"ਬੁੱਕਮਾਰਕਸ ਅਤੇ ਇਤਿਹਾਸ"</string> <string name="permgroupdesc_bookmarks" msgid="4169771606257963028">"ਬੁੁੱਕਮਾਰਕਾਂ ਅਤੇ ਬ੍ਰਾਊਜ਼ਰ ਇਤਿਹਾਸ ਤੱਕ ਸਿੱਧੀ ਪਹੁੰਚ।"</string> <string name="permgrouplab_microphone" msgid="171539900250043464">"ਮਾਈਕ੍ਰੋਫੋਨ"</string> - <string name="permgroupdesc_microphone" msgid="1296196977187629181">"ਡਿਵਾਈਸ ਮਾਈਕ੍ਰੋਫੋਨ ਵਰਤੋ"</string> + <string name="permgroupdesc_microphone" msgid="4988812113943554584">"ਔਡੀਓ ਰਿਕਾਰਡ ਕਰੋ"</string> <string name="permgrouplab_camera" msgid="4820372495894586615">"ਕੈਮਰਾ"</string> - <string name="permgroupdesc_camera" msgid="2429930670410559293">"ਡਿਵਾਈਸ ਕੈਮਰਾ ਵਰਤੋ"</string> + <string name="permgroupdesc_camera" msgid="3250611594678347720">"ਤਸਵੀਰਾਂ ਖਿੱਚੋ ਅਤੇ ਵੀਡੀਓ ਰਿਕਾਰਡ ਕਰੋ"</string> <string name="permgrouplab_phone" msgid="5229115638567440675">"ਫੋਨ"</string> - <string name="permgroupdesc_phone" msgid="2016641188146068700">"ਡਿਵਾਈਸ ਟੈਲੀਫੋਨੀ ਵਰਤੋ"</string> + <string name="permgroupdesc_phone" msgid="6234224354060641055">"ਫ਼ੋਨ ਕਾਲਾਂ ਕਰੋ ਅਤੇ ਉਹਨਾਂ ਨੂੰ ਪ੍ਰਬੰਧਿਤ ਕਰੋ"</string> <string name="permgrouplab_sensors" msgid="7416703484233940260">"ਸੰੰਵੇਦਕ"</string> - <string name="permgroupdesc_sensors" msgid="2987451839455524494">"ਸੰਵੇਦਕ ਅਤੇ ਪਹਿਨਣਯੋਗ ਤੱਕ ਪਹੁੰਚੋ"</string> + <string name="permgroupdesc_sensors" msgid="6376772456799240169">"ਸੈਂਸਰ ਅਤੇ ਪਾਉਣਯੋਗ ਡਿਵਾਈਸਾਂ ਤੋਂ ਡੇਟਾ ਨੂੰ ਐਕਸੈਸ ਕਰੋ"</string> <string name="capability_title_canRetrieveWindowContent" msgid="3901717936930170320">"ਵਿੰਡੋ ਸਮੱਗਰੀ ਮੁੜ ਪ੍ਰਾਪਤ ਕਰੋ"</string> <string name="capability_desc_canRetrieveWindowContent" msgid="3772225008605310672">"ਇੱਕ ਵਿੰਡੋ ਦੀ ਸਮੱਗਰੀ ਦੀ ਜਾਂਚ ਕਰੋ, ਜਿਸ ਨਾਲ ਤੁਸੀਂ ਇੰਟਰੈਕਟ ਕਰ ਰਹੇ ਹੋ।"</string> <string name="capability_title_canRequestTouchExploration" msgid="3108723364676667320">"ਐਕਸਪਲੋਰ ਬਾਇ ਟਚ ਚਾਲੂ ਕਰੋ"</string> @@ -334,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ਐਪ ਨੂੰ ਉਹ ਇਵੈਂਟਾਂ ਜੋੜਨ, ਹਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ, ਜਿਹਨਾਂ ਨੂੰ ਤੁਸੀਂ ਆਪਣੀ ਟੈਬਲੇਟ ਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰ ਸਕਦੇ ਹੋ, ਦੋਸਤਾਂ ਜਾਂ ਸਹਿਯੋਗੀਆਂ ਦੀਆਂ ਇਵੈਂਟਾਂ ਸਮੇਤ। ਇਹ ਐਪ ਨੂੰ ਮਾਲਕ ਦੀ ਜਾਣਕਾਰੀ ਤੋਂ ਬਿਨਾਂ ਉਹ ਸੁਨੇਹੇ, ਜੋ ਕੈਲੰਡਰ ਮਾਲਕਾਂ ਤੋਂ ਆਉਂਦੇ ਜਾਪਦੇ ਹਨ, ਭੇਜਣ ਦੀ ਜਾਂ ਇਵੈਂਟਾਂ ਸੰਸ਼ੋਧਿਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦੇ ਸਕਦਾ ਹੈ।"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ਐਪ ਨੂੰ ਉਹ ਇਵੈਂਟਾਂ ਜੋੜਨ, ਹਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ, ਜਿਹਨਾਂ ਨੂੰ ਤੁਸੀਂ ਆਪਣੇ TV ਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰ ਸਕਦੇ ਹੋ, ਦੋਸਤਾਂ ਜਾਂ ਸਹਿਯੋਗੀਆਂ ਦੀਆਂ ਇਵੈਂਟਾਂ ਸਮੇਤ। ਇਹ ਐਪ ਨੂੰ ਮਾਲਕ ਦੀ ਜਾਣਕਾਰੀ ਤੋਂ ਬਿਨਾਂ ਉਹ ਸੁਨੇਹੇ, ਜੋ ਕੈਲੰਡਰ ਮਾਲਕਾਂ ਤੋਂ ਆਉਂਦੇ ਜਾਪਦੇ ਹਨ, ਭੇਜਣ ਦੀ ਜਾਂ ਇਵੈਂਟਾਂ ਸੰਸ਼ੋਧਿਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦੇ ਸਕਦਾ ਹੈ।"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ਐਪ ਨੂੰ ਉਹ ਇਵੈਂਟਾਂ ਜੋੜਨ, ਹਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ, ਜਿਹਨਾਂ ਨੂੰ ਤੁਸੀਂ ਆਪਣੇ ਫੋਨ ਤੇ ਸੰਸ਼ੋਧਿਤ ਕਰ ਸਕਦੇ ਹੋ, ਦੋਸਤਾਂ ਜਾਂ ਸਹਿਯੋਗੀਆਂ ਦੀਆਂ ਇਵੈਂਟਾਂ ਸਮੇਤ। ਇਹ ਐਪ ਨੂੰ ਮਾਲਕ ਦੀ ਜਾਣਕਾਰੀ ਤੋਂ ਬਿਨਾਂ ਉਹ ਸੁਨੇਹੇ, ਜੋ ਕੈਲੰਡਰ ਮਾਲਕਾਂ ਤੋਂ ਆਉਂਦੇ ਜਾਪਦੇ ਹਨ, ਭੇਜਣ ਦੀ ਜਾਂ ਇਵੈਂਟਾਂ ਸੰਸ਼ੋਧਿਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦੇ ਸਕਦਾ ਹੈ।"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ਜਾਂਚ ਲਈ ਨਕਲੀ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਸ੍ਰੋਤ"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"ਜਾਂਚ ਲਈ ਜਾਂ ਇੱਕ ਨਵਾਂ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਪ੍ਰਦਾਤਾ ਇੰਸਟੌਲ ਕਰਨ ਲਈ ਨਕਲੀ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਸ੍ਰੋਤ ਬਣਾਓ। ਇਹ ਐਪ ਨੂੰ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਅਤੇ/ਜਾਂ ਹੋਰਾਂ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਸ੍ਰੋਤਾਂ ਵੱਲੋਂ ਵਾਪਸ ਕੀਤੀ ਸਥਿਤੀ ਨੂੰ ਓਵਰਰਾਈਡ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ ਜਿਵੇਂ GPS ਜਾਂ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਪ੍ਰਦਾਤਾ।"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ਵਾਧੂ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਪ੍ਰਦਾਤਾ ਕਮਾਂਡਾਂ ਤੱਕ ਪਹੁੰਚ"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ਐਪ ਨੂੰ ਵਾਧੂ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਪ੍ਰਦਾਤਾ ਕਮਾਂਡਾਂ ਤੱਕ ਪਹੁੰਚ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ। ਇਹ ਐਪ ਨੂੰ GPS ਜਾਂ ਹੋਰ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਸ੍ਰੋਤਾਂ ਦੇ ਓਪਰੇਸ਼ਨ ਵਿੱਚ ਵਿਘਨ ਪਾਉਣ ਦੀ ਆਗਿਆ ਦੇ ਸਕਦਾ ਹੈ।"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ਨਿਯਤ ਨਿਰਧਾਰਿਤ ਸਥਾਨ (GPS ਅਤੇ ਨੈਟਵਰਕ-ਆਧਾਰਿਤ)"</string> @@ -437,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ਫਿੰਗਰ"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ਬਹੁਤ ਸਾਰੀਆਂ ਕੋਸ਼ਿਸ਼ਾਂ. ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ਸਿੰਕ ਸੈਟਿੰਗਾਂ ਪੜ੍ਹੋ"</string> @@ -1041,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"ਜੇਕਰ ਤੁਸੀਂ USB ਸਟੋਰੇਜ ਚਾਲੂ ਕਰਦੇ ਹੋ, ਤਾਂ ਕੁਝ ਐਪਸ, ਜੋ ਤੁਸੀਂ ਵਰਤ ਰਹੇ ਹੋ, ਬੰਦ ਹੋ ਜਾਣਗੇ ਅਤੇ ਅਣਉਪਲਬਧ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ USB ਸਟੋਰੇਜ ਬੰਦ ਨਹੀਂ ਕਰਦੇ।"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ਓਪਰੇਸ਼ਨ ਅਸਫਲ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ਠੀਕ"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"ਇੱਕ ਮੀਡੀਆ ਡਿਵਾਈਸ ਦੇ ਤੌਰ ਤੇ ਕਨੈਕਟ ਕੀਤਾ"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ਇੱਕ ਕੈਮਰੇ ਦੇ ਤੌਰ ਤੇ ਕਨੈਕਟ ਕੀਤਾ"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"ਇੱਕ MIDI ਡਿਵਾਈਸ ਦੇ ਤੌਰ ਤੇ ਕਨੈਕਟ ਕੀਤਾ"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ਇੱਕ ਇੰਸਟੌਲਰ ਦੇ ਤੌਰ ਤੇ ਕਨੈਕਟ ਕੀਤਾ"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"ਇੱਕ USB ਐਕਸੈਸਰੀ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ਹੋਰ USB ਚੋਣਾਂ ਲਈ ਛੋਹਵੋ।"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"ਕੀ USB ਸਟੋਰੇਜ ਨੂੰ ਫੌਰਮੈਟ ਕਰਨਾ ਹੈ?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"ਕੀ SD ਕਾਰਡ ਨੂੰ ਫੌਰਮੈਟ ਕਰਨਾ ਹੈ?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ਤੁਹਾਡੀ USB ਸਟੋਰੇਜ ਵਿੱਚ ਸਟੋਰ ਕੀਤੀਆਂ ਸਾਰੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾ ਦਿੱਤੀਆਂ ਜਾਣਗੀਆਂ। ਇਹ ਕਿਰਿਆ ਉਲਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ!"</string> @@ -1078,22 +1085,14 @@ <string name="ext_media_init_action" msgid="8317198948634872507">"ਸੈੱਟਅੱਪ"</string> <string name="ext_media_unmount_action" msgid="1121883233103278199">"ਬਾਹਰ ਕੱਢੋ"</string> <string name="ext_media_browse_action" msgid="8322172381028546087">"ਐਕਸਪਲੋਰ ਕਰੋ"</string> - <!-- no translation found for ext_media_missing_title (620980315821543904) --> - <skip /> - <!-- no translation found for ext_media_missing_message (5761133583368750174) --> - <skip /> - <!-- no translation found for ext_media_move_specific_title (1471100343872375842) --> - <skip /> - <!-- no translation found for ext_media_move_title (1022809140035962662) --> - <skip /> - <!-- no translation found for ext_media_move_success_title (8575300932957954671) --> - <skip /> - <!-- no translation found for ext_media_move_success_message (4199002148206265426) --> - <skip /> - <!-- no translation found for ext_media_move_failure_title (7613189040358789908) --> - <skip /> - <!-- no translation found for ext_media_move_failure_message (1978096440816403360) --> - <skip /> + <string name="ext_media_missing_title" msgid="620980315821543904">"<xliff:g id="NAME">%s</xliff:g> ਲਾਪਤਾ"</string> + <string name="ext_media_missing_message" msgid="5761133583368750174">"ਇਸ ਡਿਵਾਈਸ ਨੂੰ ਮੁੜ ਸੰਮਿਲਿਤ ਕਰੋ"</string> + <string name="ext_media_move_specific_title" msgid="1471100343872375842">"<xliff:g id="NAME">%s</xliff:g> ਮੂਵ ਕਰ ਰਿਹਾ ਹੈ"</string> + <string name="ext_media_move_title" msgid="1022809140035962662">"ਡੇਟਾ ਮੂਵ ਕਰ ਰਿਹਾ ਹੈ"</string> + <string name="ext_media_move_success_title" msgid="8575300932957954671">"ਮੂਵ ਸੰਪੂਰਣ"</string> + <string name="ext_media_move_success_message" msgid="4199002148206265426">"ਡੇਟਾ ਨੂੰ <xliff:g id="NAME">%s</xliff:g> ਵਿੱਚ ਮੂਵ ਕੀਤਾ ਗਿਆ"</string> + <string name="ext_media_move_failure_title" msgid="7613189040358789908">"ਡੇਟਾ ਨੂੰ ਮੂਵ ਨਹੀਂ ਕਰ ਸਕਿਆ"</string> + <string name="ext_media_move_failure_message" msgid="1978096440816403360">"ਡੇਟਾ ਮੂਲ ਸਥਾਨ \'ਤੇ ਛੱਡਿਆ ਗਿਆ"</string> <string name="activity_list_empty" msgid="1675388330786841066">"ਕੋਈ ਮੇਲ ਖਾਂਦੀਆਂ ਗਤੀਵਿਧੀਆਂ ਨਹੀਂ ਮਿਲੀਆਂ।"</string> <string name="permlab_route_media_output" msgid="1642024455750414694">"ਰੂਟ ਮੀਡੀਆ ਆਊਟਪੁਟ"</string> <string name="permdesc_route_media_output" msgid="4932818749547244346">"ਇੱਕ ਐਪਲੀਕੇਸ਼ਨ ਨੂੂੰ ਹੋਰਾਂ ਬਾਹਰੀ ਡਿਵਾਈਸਾਂ ਲਈ ਮੀਡੀਆ ਆਊਟਪੁਟ ਰੂਟ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ।"</string> @@ -1466,32 +1465,38 @@ <string name="lock_to_app_unlock_pattern" msgid="4182192144797225137">"ਅਨਪਿਨ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੈਟਰਨ ਅਨਲੌਕ ਕਰਨ ਲਈ ਪੁੱਛੋ"</string> <string name="lock_to_app_unlock_password" msgid="6380979775916974414">"ਅਨਪਿਨ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪਾਸਵਰਡ ਮੰਗੋ"</string> <string name="package_installed_device_owner" msgid="8420696545959087545">"ਤੁਹਾਡੇ ਪ੍ਰਬੰਧਕ ਵੱਲੋਂ ਇੰਸਟੌਲ ਕੀਤਾ ਗਿਆ"</string> + <string name="package_updated_device_owner" msgid="8856631322440187071">"ਤੁਹਾਡੇ ਪ੍ਰਸ਼ਾਸਕ ਦੁਆਰਾ ਅਪਡੇਟ ਕੀਤਾ ਗਿਆ"</string> <string name="package_deleted_device_owner" msgid="7650577387493101353">"ਤੁਹਾਡੇ ਪ੍ਰਬੰਧਕ ਵੱਲੋਂ ਮਿਟਾਇਆ ਗਿਆ"</string> <string name="battery_saver_description" msgid="1960431123816253034">"ਬੈਟਰੀ ਸਮਰੱਥਾ ਨੂੰ ਬਿਹਤਰ ਸਹਾਇਤਾ ਕਰਨ ਲਈ, ਬੈਟਰੀ ਸੇਵਰ ਤੁਹਾਡੀ ਡਿਵਾਈਸ ਦਾ ਪ੍ਰਦਰਸ਼ਨ ਘਟਾਉਂਦਾ ਹੈ ਅਤੇ ਵਾਈਬ੍ਰੇਸ਼ਨ, ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਸੇਵਾਵਾਂ ਅਤੇ ਜ਼ਿਆਦਾਤਰ ਪਿਛੋਕੜ ਡਾਟਾ ਨੂੰ ਸੀਮਿਤ ਕਰਦਾ ਹੈ। ਈਮੇਲ, ਮੈਸੇਜਿੰਗ ਅਤੇ ਹੋਰ ਐਪਸ, ਜੋ ਸਿੰਕਿੰਗ ਤੇ ਨਿਰਭਰ ਹਨ, ਉਹ ਉਦੋਂ ਤੱਕ ਅਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕਦੇ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ ਉਹਨਾਂ ਨੂੰ ਖੋਲ੍ਹਦੇ ਨਹੀਂ।\n\nਬੈਟਰੀ ਸੇਵਰ ਆਟੋਮੈਟਿਕਲੀ ਬੰਦ ਹੁੰਦਾ ਹੈ ਜਦੋਂ ਤੁਹਾਡੀ ਡਿਵਾਈਸ ਚਾਰਜ ਹੋ ਰਹੀ ਹੁੰਦੀ ਹੈ।"</string> <plurals name="zen_mode_duration_minutes_summary" formatted="false" msgid="4367877408072000848"> <item quantity="one">%1$d ਮਿੰਟਾਂ ਤੱਕ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ਤੱਕ) </item> <item quantity="other">%1$d ਮਿੰਟਾਂ ਤੱਕ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ਤੱਕ)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d ਘੰਟਿਆਂ ਤੱਕ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ਤੱਕ)</item> <item quantity="other">%1$d ਘੰਟਿਆਂ ਤੱਕ (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> ਤੱਕ)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d ਮਿੰਟਾਂ ਤੱਕ</item> <item quantity="other">%d ਮਿੰਟਾਂ ਤੱਕ</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d ਘੰਟਿਆਂ ਤੱਕ</item> <item quantity="other">%d ਘੰਟਿਆਂ ਤੱਕ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> ਤੱਕ"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ ਇਸਨੂੰ ਬੰਦ ਨਹੀਂ ਕਰਦੇ ਹੋ"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> <string name="toolbar_collapse_description" msgid="2821479483960330739">"ਨਸ਼ਟ ਕਰੋ"</string> <string name="zen_mode_feature_name" msgid="5254089399895895004">"ਮੈਨੂੰ ਪਰੇਸ਼ਾਨ ਨਾ ਕਰੋ"</string> <string name="zen_mode_downtime_feature_name" msgid="2626974636779860146">"ਡਾਊਨਟਾਈਮ"</string> - <string name="zen_mode_default_weeknights_name" msgid="2069189413656431610">"ਵੀਕਨਾਈਟਸ"</string> - <string name="zen_mode_default_weekends_name" msgid="2377398437072017011">"ਵੀਕੈਂਡ"</string> + <string name="zen_mode_default_weeknights_name" msgid="3081318299464998143">"ਵੀਕਨਾਈਟ"</string> + <string name="zen_mode_default_weekends_name" msgid="2786495801019345244">"ਹਫ਼ਤੇ ਦਾ ਅੰਤਲਾ ਦਿਨ"</string> + <string name="zen_mode_default_events_name" msgid="8158334939013085363">"ਇਵੈਂਟ"</string> <string name="muted_by" msgid="6147073845094180001">"<xliff:g id="THIRD_PARTY">%1$s</xliff:g> ਵੱਲੋਂ ਮਿਊਟ ਕੀਤਾ ਗਿਆ"</string> <string name="system_error_wipe_data" msgid="6608165524785354962">"ਤੁਹਾਡੀ ਡਿਵਾਈਸ ਨਾਲ ਇੱਕ ਅੰਦਰੂਨੀ ਸਮੱਸਿਆ ਹੈ ਅਤੇ ਇਹ ਅਸਥਿਰ ਹੋ ਸਕਦੀ ਹੈ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ ਫੈਕਟਰੀ ਡਾਟਾ ਰੀਸੈਟ ਨਹੀਂ ਕਰਦੇ।"</string> <string name="system_error_manufacturer" msgid="8086872414744210668">"ਤੁਹਾਡੀ ਡਿਵਾਈਸ ਨਾਲ ਇੱਕ ਅੰਦਰੂਨੀ ਸਮੱਸਿਆ ਸੀ। ਵੇਰਵਿਆਂ ਲਈ ਆਪਣੇ ਨਿਰਮਾਤਾ ਨੂੰ ਸੰਪਰਕ ਕਰੋ।"</string> diff --git a/core/res/res/values-pl/strings.xml b/core/res/res/values-pl/strings.xml index f293edf..6fc75c1 100644 --- a/core/res/res/values-pl/strings.xml +++ b/core/res/res/values-pl/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Pozwala aplikacji na dodawanie, usuwanie i zmienianie zdarzeń, które możesz modyfikować na swoim tablecie, w tym pochodzących od znajomych i współpracowników. Aplikacja z tym uprawnieniem może wysyłać wiadomości, które wyglądają jak pochodzące od właścicieli kalendarza, a także modyfikować zdarzenia bez wiedzy właścicieli."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Pozwala aplikacji dodawać, usuwać i zmieniać wydarzenia, które możesz modyfikować na telewizorze, w tym wydarzenia należące do znajomych lub współpracowników. Może to pozwolić aplikacji na wysyłanie wiadomości wyglądających jak utworzone przez właścicieli kalendarza lub modyfikować wydarzenia bez wiedzy ich właścicieli."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Pozwala aplikacji na dodawanie, usuwanie i zmienianie zdarzeń, które możesz modyfikować na swoim telefonie, w tym pochodzących od znajomych i współpracowników. Aplikacja z tym uprawnieniem może wysyłać wiadomości, które wyglądają jak pochodzące od właścicieli kalendarza, a także modyfikować zdarzenia bez wiedzy właścicieli."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"udawanie źródeł położenia dla testów"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Tworzenie pozorowanych źródeł lokalizacji dla potrzeb testów lub instalacji nowego dostawcy informacji o lokalizacji. Aplikacje z tym uprawnieniem mogą zastąpić lokalizację i/lub stan zwracany przez inne źródła lokalizacji, takie jak GPS lub dostawcy danych o lokalizacji."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"dostęp do dodatkowych poleceń dostawcy informacji o lokalizacji"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Pozwala aplikacji na dostęp do dodatkowych poleceń dostawcy informacji o lokalizacji. Aplikacje z tym uprawnieniem mogą wpływać na działanie GPS-u lub innych źródeł lokalizacji."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"dokładna lokalizacja (na podstawie sygnału GPS i sieci)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Odczyt odcisku palca został anulowany."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Zbyt wiele prób. Spróbuj ponownie później."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Spróbuj ponownie."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"czytanie ustawień synchronizacji"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Po włączeniu nośnika USB niektóre używane aplikacje zostaną zatrzymane i mogą być niedostępne do chwili jego wyłączenia."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operacja USB zakończona niepowodzeniem"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Podłączono urządzenie multimedialne"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Podłączono jako aparat."</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Podłączono jako urządzenie MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Podłączono jako nośnik instalacyjny."</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Podłączono akcesorium USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Dotknij, aby wyświetlić inne opcje USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Czy sformatować nośnik USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Czy sformatować kartę SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Wszystkie pliki zapisane na nośniku USB zostaną usunięte. Tej czynności nie można cofnąć."</string> @@ -1486,24 +1492,28 @@ <item quantity="other">Przez %1$d minuty (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Przez minutę (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="few">Przez %1$d godziny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">Przez %1$d godzin (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Przez %1$d godziny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Przez godzinę (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="few">Przez %d minuty</item> <item quantity="many">Przez %d minut</item> <item quantity="other">Przez %d minuty</item> <item quantity="one">Przez minutę</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="few">Przez %d godziny</item> <item quantity="many">Przez %d godzin</item> <item quantity="other">Przez %d godziny</item> <item quantity="one">Przez godzinę</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Do <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Dopóki nie wyłączysz"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-pt-rPT/strings.xml b/core/res/res/values-pt-rPT/strings.xml index 3b19143..b30d3cf 100644 --- a/core/res/res/values-pt-rPT/strings.xml +++ b/core/res/res/values-pt-rPT/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite que a aplicação adicione, remova e altere eventos que pode modificar no tablet, incluindo eventos relacionados com amigos ou colegas de trabalho. Pode permitir que a aplicação envie mensagens que parecem ser enviadas pelos proprietários dos calendários ou modifique eventos sem o conhecimento do proprietário."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite à aplicação adicionar, remover ou alterar eventos que pode modificar na TV, incluindo os que pertencem a amigos ou a colegas de trabalho. Isto pode permitir à aplicação enviar mensagens que parecem vir de proprietários do calendário ou modificar eventos sem o conhecimento do proprietário."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite que a aplicação adicione, remova e altere eventos que pode modificar no telemóvel, incluindo eventos relacionados com amigos ou colegas de trabalho. Pode permitir que a aplicação envie mensagens que parecem ser enviadas pelos proprietários dos calendários ou modifique eventos sem o conhecimento do proprietário."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"fontes de localização fictícias para teste"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Criar fontes de localização fictícias para fins de teste ou instalar um novo fornecedor de localização. Isto permite que a aplicação substitua a localização e/ou o estado devolvido por outras fontes de localização como, por exemplo, GPS ou fornecedores de localização."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"aceder a comandos adicionais do fornecedor de localização"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite que a aplicação aceda a comandos adicionais do fornecedor de localização. Esta opção pode permitir que a aplicação interfira com o funcionamento do GPS ou de outras fontes de localização."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"localização exata (baseada no GPS e na rede)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operação de impressão digital cancelada."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Demasiadas tentativas. Tente novamente mais tarde."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Tente novamente."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ler definições de sincronização"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Se ativar a memória de armazenamento USB, algumas aplicações que estiver a utilizar serão paradas e poderão ficar indisponíveis até desativar a memória de armazenamento USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operação USB sem êxito"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Ligado como um dispositivo multimédia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Ligado como uma câmara"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Ligado como um dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Ligado como um instalador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Ligado a um acessório USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toque para ver outras opções USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formatar unidade de armazenamento USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formatar cartão SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Todos os ficheiros armazenados na sua USB de armazenamento serão apagados. Não é possível reverter a ação!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Durante %1$d minutos (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante um minuto (até às <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Durante %1$d horas (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Durante uma hora (até às <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Durante %d minutos</item> <item quantity="one">Durante um minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Durante %d horas</item> <item quantity="one">Durante uma hora</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Até às <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Até que o utilizador desative"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-pt/strings.xml b/core/res/res/values-pt/strings.xml index ce62343..b841b46 100644 --- a/core/res/res/values-pt/strings.xml +++ b/core/res/res/values-pt/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite que o app adicione, remova e altere eventos que você pode modificar em seu tablet, incluindo os de amigos e colegas de trabalho. Isso pode permitir que o app envie mensagens que parecem ser de autoria do proprietário do calendário, ou modifique eventos sem conhecimento do proprietário."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite que o app adicione, remova ou altere eventos que podem ser modificados na sua TV, incluindo eventos de amigos ou colegas de trabalho. Isso pode permitir que o app envie mensagens que parecem vir dos proprietários de agendas ou modifique eventos sem o conhecimento dos proprietários."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite que o app adicione, remova e altere eventos que você pode modificar em seu telefone, incluindo os de amigos e colegas de trabalho. Isso pode permitir que o app envie mensagens que parecem ser de autoria do proprietário do calendário, ou modifique eventos sem conhecimento do proprietário."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"fontes de locais fictícios para teste"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Criar fontes de localização simuladas para testar ou instalar um novo provedor de localização. Isso permite que o app substitua a localização e/ou o status retornado por outras fontes de localização, como o GPS ou provedores de localização."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"acessar comandos extras do provedor de localização"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite que o app acesse comandos do provedor não relacionados à localização. Isso pode permitir que o app interfira no funcionamento do GPS ou de outras fontes de localização."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"localização precisa (GPS e com base na rede)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operação de impressão digital cancelada."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Excesso de tentativas. Tente novamente mais tarde."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Tente novamente."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ler as configurações de sincronização"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Se você ativar o armazenamento USB, alguns apps que estão em uso serão interrompidos e poderão ficar indisponíveis até você desativar o armazenamento USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Falha na operação do USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Conectado como disp. de mídia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Conectado como câmera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Conectado como dispositivo MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Conectados como um instalador"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Conectado a um acessório USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Toque para obter outras opções USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formatar armaz. USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formatar cartão SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Todos os arquivos armazenados em sua unidade armazenamento USB serão apagados. Não é possível reverter essa ação."</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Por %1$d minutos (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Por %1$d minutos (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Por %1$d horas (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Por %1$d horas (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Por %d minutos</item> <item quantity="other">Por %d minutos</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Por %d horas</item> <item quantity="other">Por %d horas</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Até às <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Até você desativar"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ro/strings.xml b/core/res/res/values-ro/strings.xml index dc975ab..385b8fd 100644 --- a/core/res/res/values-ro/strings.xml +++ b/core/res/res/values-ro/strings.xml @@ -336,8 +336,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Permite aplicației să adauge, să elimine și să modifice evenimentele pe care le puteţi modifica pe tabletă, inclusiv cele ale prietenilor sau colegilor dvs. În acest fel, aplicația poate trimite mesaje care par să vină de la proprietarii calendarelor sau să modifice evenimentele fără ştirea proprietarilor."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Permite aplicației să adauge, să elimine și să modifice evenimentele pe care le puteți modifica pe televizor, inclusiv pe cele ale prietenilor sau ale colegilor. Cu această permisiune, aplicația poate să trimită mesaje care par că vin din partea proprietarilor calendarului sau să modifice evenimentele fără cunoștința acestora."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Permite aplicației să adauge, să elimine și să modifice evenimentele pe care le puteţi modifica pe telefon, inclusiv cele ale prietenilor sau colegilor dvs. În acest fel, aplicația poate trimite mesaje care par să vină de la proprietarii calendarelor sau să modifice evenimentele fără ştirea proprietarilor."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"surse de locaţii pentru testare"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Creează surse de locaţii pentru testare sau instalează un furnizor de locaţie nou. Acest lucru permite aplicației să înlocuiască locaţia și/sau starea returnate de alte surse de locaţii, cum ar fi GPS sau furnizorii de locaţii."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"accesare comenzi suplimentare ale furnizorului locaţiei"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Permite aplicației să acceseze comenzi suplimentare pentru furnizorul locației. Aplicația ar putea să utilizeze această permisiune pentru a influența operațiile GPS sau ale altor surse de locații."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"locaţia exactă (bazată pe reţea și GPS)"</string> @@ -439,6 +437,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operațiunea privind amprenta a fost anulată."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Prea multe încercări. Încercați din nou mai târziu."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Încercați din nou."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"citire setări sincronizare"</string> @@ -1049,12 +1049,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Dacă activaţi stocarea USB, unele aplicații pe care le utilizaţi în prezent se vor opri și pot să nu fie disponibile până când dezactivaţi stocarea USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operaţie USB nereuşită"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Conectat ca dispozitiv media"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Conectat ca aparat foto"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Conectat ca dispozitiv MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Conectat ca program de instalare"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Conectat la un accesoriu USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Atingeţi pentru alte opţiuni USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Format. stoc. USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formataţi cardul SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Toate fişierele stocate în stocarea USB vor fi şterse. Această acţiune nu poate fi anulată!"</string> @@ -1476,21 +1482,25 @@ <item quantity="other">Timp de %1$d de minute (până la <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Timp de un minut (până la <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="few">Timp de %1$d ore (până la <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Timp de %1$d de ore (până la <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Timp de o oră (până la <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="few">Timp de %d minute</item> <item quantity="other">Timp de %d de minute</item> <item quantity="one">Timp de un minut</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="few">Timp de %d ore</item> <item quantity="other">Timp de %d de ore</item> <item quantity="one">Timp de o oră</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Până la <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Până la dezactivare"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ru/strings.xml b/core/res/res/values-ru/strings.xml index bccb53e..8810e44 100644 --- a/core/res/res/values-ru/strings.xml +++ b/core/res/res/values-ru/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Приложение сможет добавлять, удалять и изменять мероприятия, доступные для редактирования на вашем планшетном ПК, включая мероприятия, добавленные другими людьми. Так приложение сможет рассылать сообщения от имени владельца календаря и изменять мероприятия без его ведома."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Добавление, удаление и изменение сохраненных на телевизоре мероприятий, к которым у вас есть доступ для записи, в том числе добавленных друзьями или коллегами. Приложение сможет отправлять сообщения от имени владельцев календарей, а также изменять мероприятия без ведома владельца."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Приложение сможет добавлять, удалять и изменять мероприятия, доступные для редактирования на вашем телефоне, включая мероприятия, добавленные другими людьми. Так приложение сможет рассылать сообщения от имени владельца календаря и изменять мероприятия без его ведома."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"Установка фиктивного местоположения для отладки"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Приложение сможет создавать фиктивные местоположения для тестирования или установки нового источника геоданных и переопределять местоположение и/или статус, возвращаемые другими источниками, такими как система GPS."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"Доступ к дополнительным командам управления источниками геоданных"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Доступ к дополнительным командам управления источниками геоданных и вмешательство в работу системы GPS или других источников геоданных."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"Точное местоположение (на основе сети и сигналов GPS)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Операция с отпечатком отменена."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Слишком много попыток. Повторите позже."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Повторите попытку."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"Просмотр настроек синхронизации"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"При подключении USB-накопителя некоторые приложения могут прекратить работу и оставаться недоступными до его отключения."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Ошибка при подключении USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"ОК"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Подключен как устройство хранения данных"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Подключен как камера"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Подключено как MIDI-устройство"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Подключен как установщик"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB-устройство подключено"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Нажмите, чтобы открыть список опций."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Отформатировать USB-накопитель?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Отформатировать SD-карту?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Все файлы, сохраненные на USB-накопителе, будут удалены. Это действие невозможно отменить."</string> @@ -1486,24 +1492,28 @@ <item quantity="many">%1$d минут (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d минут (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d час (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d часа (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">%1$d часов (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d часов (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d минута</item> <item quantity="few">%d минуты</item> <item quantity="many">%d минут</item> <item quantity="other">%d минут</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d час</item> <item quantity="few">%d часа</item> <item quantity="many">%d часов</item> <item quantity="other">%d часов</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"До <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Пока я не отключу"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-si-rLK/strings.xml b/core/res/res/values-si-rLK/strings.xml index d2f1dd8..9ff419d 100644 --- a/core/res/res/values-si-rLK/strings.xml +++ b/core/res/res/values-si-rLK/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"යහළුවන් හෝ එකට-වැඩකරන්නන් ඇතුළත්ව ඔබට ටැබ්ලටයේ වෙනස් කළ හැකි සිද්ධි එකතු කිරීමට, ඉවත් කිරීමට, වෙනස් කිරීමට යෙදුමට අවසර දෙන්න. මෙමඟින් දින දර්ශන හිමිකරුවන්ගෙන් පණිවිඩ යවන පරිදි මෙන් මවාපෑමට හෝ හිමිකරුගේ අනුදැනුමකින් තොරව සිද්ධි වෙනස් කිරීමට යෙදුමට අවසර ලැබේ."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"මිතුරන්ගේ හෝ එක්ව කටයුතු කරන්නන්ගේද ඇතුළුව උපාංගය මත ඔබට වෙනස් කිරීමට හැකි සිද්ධි එකතු කිරීමට, ඉවත් කිරීමට සහ වෙනස් කිරීමට යෙදුමට අවසර දේ. මෙමඟින් යෙදුම හට දින දසුන් හිමිකරු ලෙස පෙනී සිටිමින් පණිවිඩ යැවීම, හිමිකරුගේ අනුදැනුම නොමැතිව සිද්ධි වෙනස් කිරීම කළ හැක."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ඔබගේ යහළුවන් හෝ සමකාලීනයන් ඇතුළත් ඔබගේ දුරකථනයේ ඔබට වෙනස් කළ හැකි සිදු වීම් එකතු කිරීමට, ඉවත් කිරීමට, වෙනස් කිරීමට යෙදුමට අවසර දෙන්න. මෙමගින් දින දර්ශන හිමිකරුවන්ගෙන් පැමිණෙන සේ පෙනෙන පණිවිඩ යැවීමට හෝ හිමිකරුගේ දැනුමකින් තොරව සිදුවීම් වෙනස් කිරීමට යෙදුමට අවසර දෙයි."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"පරීක්ෂණ සඳහා ආදර්ශ ස්ථාන මූලාශ්ර"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"පරීක්ෂණයට ව්යාජ ස්ථාන මූලාශ්ර සාදන්න හෝ නව ස්ථාන සැපයුම්කරුවෙකු ස්ථාපනය කරන්න. GPS හෝ ස්ථාන සැපයුම්කරුවන් ආදී වෙනත් ස්ථාන මූලාශ්ර විසින් ලබා දෙන ස්ථානය සහ/හෝ තත්වය ප්රතිස්ථාපනය කිරීමට යෙදුමට මෙය අවසර දෙයි."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"අමතර ස්ථාන සැපයුම්කරු විධාන වෙත ප්රවේශ වීම"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ස්ථානය සපයන අමතර අණ වලට ප්රවේශය කිරීමට යෙදුමට අවසර දෙන්න. GPS ක්රියාවන් හෝ වෙනත් ස්ථාන මූලාශ්ර සමඟ මැදිහත් වීමට මෙයින් යෙදුමට ඉඩ ලැබේ."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"නිවැරදි ස්ථානය (GPS සහ ජාලය පදනම් කරගත්)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ඇඟිලි සලකුණු මෙහෙයුම අවලංගු කරන ලදී."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"උත්සාහයන් ඉතා වැඩි ගණනකි. කරුණාකර පසුව නැවත උත්සාහ කරන්න."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"නැවත උත්සාහ කරන්න."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"සමමුහුර්ත සැකසීම් කියවන්න"</string> @@ -1044,12 +1044,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"ඔබ USB ආචයනය සක්රිය නම්, ඔබ භාවිතා කරන සමහර යෙදුම් නැවතීම සහ ඔබ USB ආචයනය අක්රිය කරන තුරු නොතිබේවී."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB ක්රියාවලිය අසාර්ථකයි"</string> <string name="dlg_ok" msgid="7376953167039865701">"හරි"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"මාධ්ය උපාංගයක් ලෙස සම්බන්ධිතයි"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"කැමරාවක් ලෙස සම්බන්ධ කර ඇත"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI උපාංගයක් ලෙස සම්බන්ධ වන ලදි"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ස්ථාපිතයක් ලෙස සම්බන්ධයි"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB මෙවලමකට සම්බන්ධිතයි"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"අනෙක් USB විකල්පය සඳහා ස්පර්ශ කරන්න."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB ආචයනය ෆෝමැට් කරන්නද?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD පත ෆෝමැට් කරන්නද?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ඔබගේ USB ආචයනයේ ඇති සියලුම ගොනු මැකී යනු ඇත. මෙම ක්රියාව ආපසු හැරවිය නොහැක!"</string> @@ -1468,18 +1474,22 @@ <item quantity="one">මිනිත්තු %1$d ක් සඳහා (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> තෙක්)</item> <item quantity="other">මිනිත්තු %1$d ක් සඳහා (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> තෙක්)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">පැය %1$d ක් සඳහා (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> තෙක්)</item> <item quantity="other">පැය %1$d ක් සඳහා (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> තෙක්)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">මිනිත්තු %d ක් සඳහා</item> <item quantity="other">මිනිත්තු %d ක් සඳහා</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">පැය %d ක් සඳහා</item> <item quantity="other">පැය %d ක් සඳහා</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> තෙක්"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"ඔබ මෙය අක්රිය කරන තුරු"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-sk/strings.xml b/core/res/res/values-sk/strings.xml index ce58505..261701d 100644 --- a/core/res/res/values-sk/strings.xml +++ b/core/res/res/values-sk/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Umožňuje aplikácii pridávať, odstraňovať alebo meniť udalosti, ktoré môžete v tablete upravovať, a to vrátane udalostí priateľov a spolupracovníkov. Toto povolenie umožňuje aplikácii odosielať správy, ktoré budú zdanlivo prichádzať od vlastníkov kalendára, alebo upravovať udalosti bez vedomia vlastníkov."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Umožňuje aplikácii pridať, odstrániť a meniť udalosti, ktoré môžete upraviť vo svojom televízore, vrátane udalostí priateľov a spolupracovníkov. Toto povolenie môže aplikácii umožniť posielať správy, ktoré vyzerajú ako správy od vlastníkov kalendárov, alebo upravovať udalosti bez vedomia vlastníkov."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Umožňuje aplikácii pridávať, odstraňovať alebo meniť udalosti, ktoré môžete v telefóne upravovať, a to vrátane udalostí priateľov a spolupracovníkov. Toto povolenie umožňuje aplikácii odosielať správy, ktoré budú zdanlivo prichádzať od vlastníkov kalendára, alebo upravovať udalosti bez vedomia vlastníkov."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"simulácia zdrojov polohy na účely testovania"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Vytváranie simulovaných zdrojov polohy na testovanie alebo inštalácia nového poskytovateľa informácií o polohe. Aplikácii to umožní nahradiť polohu a stav, ktoré vracajú iné zdroje informácií o polohe, ako sú napríklad systém GPS alebo poskytovatelia informácií o polohe."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"prístup k ďalším príkazom poskytovateľa polohy"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Umožňuje aplikácii pristupovať k ďalším príkazom poskytovateľa informácií o polohe. Aplikácii to môže umožniť zasahovať do činnosti systému GPS alebo iných zdrojov informácií o polohe."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"zistiť presnú polohu (pomocou GPS a siete)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operácia týkajúca sa odtlačku prsta bola zrušená"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Príliš veľa pokusov. Skúste to znova neskôr."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Skúste to znova"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"čítať nastavenia synchronizácie"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ak zapnete úložisko USB, dôjde k zastaveniu niektorých používaných aplikácií. Tieto aplikácie pravdepodobne nebudú k dispozícii až do vypnutia úložiska USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operácia rozhrania USB bola neúspešná"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Pripojené ako mediálne zariadenie"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Pripojené ako fotoaparát"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Pripojené ako zariadenie MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Pripojené ako inštalátor"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Pripojené k periférnemu zariadeniu USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Dotykom zobrazíte ďalšie možnosti USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formátovať ukladací priestor USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Formátovať kartu SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Všetky súbory uložené v ukladacom priestore USB budú vymazané. Táto akcia sa nedá vrátiť späť!"</string> @@ -1486,24 +1492,28 @@ <item quantity="other">%1$d minút (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Minútu (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="few">%1$d hodiny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">%1$d hodiny (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d hodín (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Hodinu (do <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="few">%d minúty</item> <item quantity="many">%d minúty</item> <item quantity="other">%d minút</item> <item quantity="one">Minútu</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="few">%d hodiny</item> <item quantity="many">%d hodiny</item> <item quantity="other">%d hodín</item> <item quantity="one">Hodinu</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Do <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Dokým túto funkciu nevypnete"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-sl/strings.xml b/core/res/res/values-sl/strings.xml index b5ff165..13b2d16 100644 --- a/core/res/res/values-sl/strings.xml +++ b/core/res/res/values-sl/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Aplikaciji omogoča dodajanje, odstranjevanje in spreminjanje dogodkov, ki jih je mogoče spreminjati v tabličnem računalniku, vključno z dogodki prijateljev in sodelavcev. S tem lahko aplikacija pošilja sporočila, za katera je videti, da jih pošiljajo lastniki koledarjev, ali spreminjajo dogodke brez vednosti lastnikov."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Aplikaciji dovoljuje dodajanje, odstranjevanje in spreminjanje dogodkov, ki jih lahko spremenite v televizorju, vključno z dogodki prijateljev in sodelavcev. S tem lahko aplikacija pošilja sporočila, ki so videti, kot da jih pošiljajo lastniki koledarjev, ali spreminja dogodke brez vednosti lastnikov."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Aplikaciji omogoča dodajanje, odstranjevanje in spreminjanje dogodkov, ki jih je mogoče spreminjati v telefonu, vključno z dogodki prijateljev in sodelavcev. S tem lahko aplikacija pošilja sporočila, za katera je videti, da jih pošiljajo lastniki koledarjev, ali spreminjajo dogodke brez vednosti lastnikov."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"simulirani viri lokacije za preverjanje"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Ustvarjanje simuliranih virov lokacije za preverjanje ali namestitev novega ponudnika lokacije. S tem lahko aplikacija preglasi lokacijo in/ali stanje, ki ga vrnejo drugi viri lokacije, kot so GPS in ponudniki lokacij."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"dostopanje do ukazov ponudnika dodatnih lokacij"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Aplikaciji omogoča dostop do dodatnih ukazov ponudnika lokacij. S tem lahko aplikacija moti delovanje sistema GPS ali drugih virov lokacije."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"natančna lokacija (na podlagi podatkov GPS in omrežja)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Dejanje s prstnim odtisom je bilo preklicano."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Preveč poskusov. Poskusite znova pozneje."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Poskusite znova."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"branje nastavitev sinhronizacije"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Če vklopite pomnilnik USB, se bodo nekatere aplikacije, ki jih uporabljate, ustavile in ne bodo na voljo, dokler ne izklopite pomnilnika USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operacija v pomnilniku USB ni uspela"</string> <string name="dlg_ok" msgid="7376953167039865701">"V redu"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Povezan kot predstavnostna naprava"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Povezan kot fotoaparat"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Povezano kot naprava MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Povezan kot namestitveni program"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Priključen na dodatek USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Dotaknite se za prikaz drugih možnosti za USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Ali želite formatirati pomnilnik USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Želite formatirati kartico SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Vse datoteke, shranjene v v pomnilniku USB, bodo izbrisane. Tega dejanja ni mogoče razveljaviti!"</string> @@ -1486,24 +1492,28 @@ <item quantity="few">%d minute (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%d minut (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d uro (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="two">%1$d uri (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d ure (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d ur (do <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d minuto</item> <item quantity="two">%d minuti</item> <item quantity="few">%d minute</item> <item quantity="other">%d minut</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d uro</item> <item quantity="two">%d uri</item> <item quantity="few">%d ure</item> <item quantity="other">%d ur</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Do <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Dokler tega ne izklopite"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-sq-rAL/strings.xml b/core/res/res/values-sq-rAL/strings.xml index ea04ad8..627bca6 100644 --- a/core/res/res/values-sq-rAL/strings.xml +++ b/core/res/res/values-sq-rAL/strings.xml @@ -129,6 +129,7 @@ <string-array name="wfcOperatorErrorNotificationMessages"> </string-array> <string name="wfcSpnFormat" msgid="8211621332478306568">"%s"</string> + <string name="wfcDataSpnFormat" msgid="1118052028767666883">"%s"</string> <string name="wifi_calling_off_summary" msgid="8720659586041656098">"Çaktivizuar"</string> <string name="wfc_mode_wifi_preferred_summary" msgid="1994113411286935263">"Preferohet Wi-Fi"</string> <string name="wfc_mode_cellular_preferred_summary" msgid="5920549484600758786">"Preferohet rrjeti celular"</string> @@ -219,27 +220,27 @@ <string name="user_owner_label" msgid="6465364741001216388">"Aplikacione personale"</string> <string name="managed_profile_label" msgid="6260850669674791528">"Puna"</string> <string name="permgrouplab_contacts" msgid="3657758145679177612">"Kontaktet"</string> - <string name="permgroupdesc_contacts" msgid="1437393511338346185">"të qaset dhe të modifikojë kontaktet e tua"</string> + <string name="permgroupdesc_contacts" msgid="6951499528303668046">"qasu te kontaktet e tua"</string> <string name="permgrouplab_location" msgid="7275582855722310164">"Vendndodhja"</string> <string name="permgroupdesc_location" msgid="536889867433972794">"të qaset te vendondodhja jote"</string> <string name="permgrouplab_socialInfo" msgid="5799096623412043791">"Informacionet e tua sociale"</string> <string name="permgroupdesc_socialInfo" msgid="7129842457611643493">"Qasje e drejtpërdrejtë në informacionin e kontakteve të tua dhe lidhjeve sociale."</string> <string name="permgrouplab_calendar" msgid="5863508437783683902">"Kalendari"</string> - <string name="permgroupdesc_calendar" msgid="2116049656685591803">"të qaset dhe të modifikojë kalendarin tënd"</string> + <string name="permgroupdesc_calendar" msgid="3889615280211184106">"qasu te kalendari yt"</string> <string name="permgrouplab_sms" msgid="228308803364967808">"SMS"</string> - <string name="permgroupdesc_sms" msgid="3695085582674524761">"të qaset dhe të modifikojë mesazhet SMS"</string> + <string name="permgroupdesc_sms" msgid="3714409903876407981">"shiko dhe menaxho mesazhet SMS"</string> <string name="permgrouplab_dictionary" msgid="8114410334955871144">"Fjalori i përdoruesit"</string> <string name="permgroupdesc_dictionary" msgid="7586787746354378335">"Të lexojë ose të shkruajë fjalë në fjalorin e përdoruesit."</string> <string name="permgrouplab_bookmarks" msgid="1949519673103968229">"Faqeshënuesit dhe historiku"</string> <string name="permgroupdesc_bookmarks" msgid="4169771606257963028">"Qasje të drejtpërdrejtë në faqet e ruajtura si dhe historinë e shfletuesit."</string> <string name="permgrouplab_microphone" msgid="171539900250043464">"Mikrofoni"</string> - <string name="permgroupdesc_microphone" msgid="1296196977187629181">"të përdorë mikrofonin e pajisjes"</string> + <string name="permgroupdesc_microphone" msgid="4988812113943554584">"regjistro audio"</string> <string name="permgrouplab_camera" msgid="4820372495894586615">"Kamera"</string> - <string name="permgroupdesc_camera" msgid="2429930670410559293">"të përdorë kamerën e pajisjes"</string> + <string name="permgroupdesc_camera" msgid="3250611594678347720">"bëj fotografi dhe regjistro video"</string> <string name="permgrouplab_phone" msgid="5229115638567440675">"Telefoni"</string> - <string name="permgroupdesc_phone" msgid="2016641188146068700">"të përdorë telefoninë e pajisjes"</string> + <string name="permgroupdesc_phone" msgid="6234224354060641055">"kryej dhe menaxho telefonata"</string> <string name="permgrouplab_sensors" msgid="7416703484233940260">"Sensorët"</string> - <string name="permgroupdesc_sensors" msgid="2987451839455524494">"të qaset te sensorët dhe pajisjet që vishen"</string> + <string name="permgroupdesc_sensors" msgid="6376772456799240169">"qasu te të dhënat nga sensorët dhe pajisjet që vishen"</string> <string name="capability_title_canRetrieveWindowContent" msgid="3901717936930170320">"Gjej përmbajtjen e dritares"</string> <string name="capability_desc_canRetrieveWindowContent" msgid="3772225008605310672">"Inspekto përmbajtjen e dritares me të cilën po bashkëvepron."</string> <string name="capability_title_canRequestTouchExploration" msgid="3108723364676667320">"Aktivizo \"Eksploro me prekje\""</string> @@ -334,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Lejon aplikacionin të shtojë, të heqë ose të ndryshojë ngjarje që mund t\'i modifikosh në tabletin tënd, përfshirë ato të miqve apo kolegëve të punës. Kjo mund ta lejojë aplikacionin të dërgojë mesazhe që duket se vijnë nga zotëruesit e kalendarëve, ose të modifikojë ngjarje pa dijeninë e zotëruesve."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Lejon aplikacionin të shtojë, të heqë ose të ndryshojë ngjarje që mund t\'i modifikosh në televizorin tënd, përfshirë ato të miqve apo kolegëve të punës. Kjo mund ta lejojë aplikacionin të dërgojë mesazhe që duket se vijnë nga zotëruesit e kalendarëve, ose të modifikojë ngjarje pa dijeninë e zotëruesve."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Lejon aplikacionin të shtojë, heqë, ndryshojë ngjarje që mund t\'i modifikosh në telefonin tënd, përfshi ato të miqve ose kolegëve. Kjo mund ta lejojë aplikacionin të dërgojë mesazhe që duken se vijnë nga zotëruesit e kalendarëve, ose të modifikojë ngjarje pa dijeninë e zotëruesve."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"imito burimet e vendndodhjes për testim"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Krijo burime imituese të vendndodhjes për testim ose instalo një ofrues të ri për vendndodhjen. Kjo lejon aplikacionin të mos refuzojë vendndodhjen dhe/ose statusin e rezultuar nga burime të tjera të vendndodhjes si GPS-ja ose ofruesit të saj."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"qasje në komandat shtesë të ofruesit të vendndodhjes"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Lejon aplikacionin të ketë qasje në komandat shtesë të ofruesit për vendndodhjen. Kjo mund ta lejojë aplikacionin të ndërhyjë në operacionin e GPS-së apo të burimeve të tjera për vendndodhjen."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"vendndodhja e përpiktë (në bazë të GPS-së dhe rrjetit)"</string> @@ -437,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Operacioni i gjurmës së gishtit u anulua."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Keni bërë shumë tentativa. Provo përsëri më vonë."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Provo përsëri."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"lexo cilësimet e sinkronizimit"</string> @@ -1041,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Nëse aktivizon USB-në, disa aplikacione që po përdor do të ndalojnë. Ata mund të jenë të papërdorshëm derisa ta çaktivizosh sërish USB-në."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Operacioni i USB-së nuk pati sukses"</string> <string name="dlg_ok" msgid="7376953167039865701">"Në rregull!"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Lidhur si pajisje e jashtme"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Lidhur si kamerë"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"U lidh si një pajisje MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"I lidhur si instalues"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"U lidh me një ndihmës USB-je"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Prek për opsione të tjera të USB-së."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Të formatohet USB-ja?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Të formatohet karta SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Të gjithë skedarët e ruajtur në USB do të fshihen. Ky veprim nuk mund të kthehet mbrapsht!"</string> @@ -1078,22 +1085,14 @@ <string name="ext_media_init_action" msgid="8317198948634872507">"Konfigurimi"</string> <string name="ext_media_unmount_action" msgid="1121883233103278199">"Nxirr"</string> <string name="ext_media_browse_action" msgid="8322172381028546087">"Eksploro"</string> - <!-- no translation found for ext_media_missing_title (620980315821543904) --> - <skip /> - <!-- no translation found for ext_media_missing_message (5761133583368750174) --> - <skip /> - <!-- no translation found for ext_media_move_specific_title (1471100343872375842) --> - <skip /> - <!-- no translation found for ext_media_move_title (1022809140035962662) --> - <skip /> - <!-- no translation found for ext_media_move_success_title (8575300932957954671) --> - <skip /> - <!-- no translation found for ext_media_move_success_message (4199002148206265426) --> - <skip /> - <!-- no translation found for ext_media_move_failure_title (7613189040358789908) --> - <skip /> - <!-- no translation found for ext_media_move_failure_message (1978096440816403360) --> - <skip /> + <string name="ext_media_missing_title" msgid="620980315821543904">"<xliff:g id="NAME">%s</xliff:g> mungon"</string> + <string name="ext_media_missing_message" msgid="5761133583368750174">"Fute përsëri këtë pajisje"</string> + <string name="ext_media_move_specific_title" msgid="1471100343872375842">"Po zhvendos <xliff:g id="NAME">%s</xliff:g>"</string> + <string name="ext_media_move_title" msgid="1022809140035962662">"Po zhvendos të dhënat"</string> + <string name="ext_media_move_success_title" msgid="8575300932957954671">"Zhvendosja përfundoi"</string> + <string name="ext_media_move_success_message" msgid="4199002148206265426">"Të dhënat u zhvendosën te <xliff:g id="NAME">%s</xliff:g>"</string> + <string name="ext_media_move_failure_title" msgid="7613189040358789908">"Të dhënat nuk mund të zhvendoseshin"</string> + <string name="ext_media_move_failure_message" msgid="1978096440816403360">"U lanë të dhëna në vendndodhjen origjinale"</string> <string name="activity_list_empty" msgid="1675388330786841066">"Nuk u gjet asnjë aktivitet që përputhet."</string> <string name="permlab_route_media_output" msgid="1642024455750414694">"Kalo daljet e medias"</string> <string name="permdesc_route_media_output" msgid="4932818749547244346">"Lejon një aplikacion të kalojë daljet mediatike në pajisje të tjera të jashtme."</string> @@ -1466,32 +1465,38 @@ <string name="lock_to_app_unlock_pattern" msgid="4182192144797225137">"Kërko model shkyçjeje para heqjes së gozhdimit"</string> <string name="lock_to_app_unlock_password" msgid="6380979775916974414">"Kërko fjalëkalim para heqjes nga gozhdimi."</string> <string name="package_installed_device_owner" msgid="8420696545959087545">"U instalua nga administratori yt"</string> + <string name="package_updated_device_owner" msgid="8856631322440187071">"Përditësuar nga administratori"</string> <string name="package_deleted_device_owner" msgid="7650577387493101353">"U fshi nga administratori yt"</string> <string name="battery_saver_description" msgid="1960431123816253034">"Për të përmirësuar jetëgjatësinë e baterisë, opsioni i kursimit të baterisë ul rendimentin e pajisjes tënde dhe kufizon dridhjen, shërbimet e vendndodhjes dhe shumicën e të dhënave në sfond. Mail-i, mesazhet dhe aplikacione të tjera që mbështeten në sinkronizim mund të mos përditësohen pa i hapur.\n\nKursimi i baterisë çaktivizohet automatikisht kur pajisja vihet në ngarkim."</string> <plurals name="zen_mode_duration_minutes_summary" formatted="false" msgid="4367877408072000848"> <item quantity="other">Për %1$d minuta (deri në <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Për një minutë (deri në <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Për %1$d orë (deri në <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Për një orë (deri në <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Për %d minuta</item> <item quantity="one">Për një minutë</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Për %d orë</item> <item quantity="one">Për një orë</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Deri në <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Deri sa ta çaktivizosh këtë"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> <string name="toolbar_collapse_description" msgid="2821479483960330739">"Shpalos"</string> <string name="zen_mode_feature_name" msgid="5254089399895895004">"Mos shqetëso"</string> <string name="zen_mode_downtime_feature_name" msgid="2626974636779860146">"periudha joaktive"</string> - <string name="zen_mode_default_weeknights_name" msgid="2069189413656431610">"Natën gjatë javës"</string> - <string name="zen_mode_default_weekends_name" msgid="2377398437072017011">"Fundjava"</string> + <string name="zen_mode_default_weeknights_name" msgid="3081318299464998143">"Netët e javës"</string> + <string name="zen_mode_default_weekends_name" msgid="2786495801019345244">"Fundjava"</string> + <string name="zen_mode_default_events_name" msgid="8158334939013085363">"Ngjarje"</string> <string name="muted_by" msgid="6147073845094180001">"Lënë në heshtje nga <xliff:g id="THIRD_PARTY">%1$s</xliff:g>"</string> <string name="system_error_wipe_data" msgid="6608165524785354962">"Ka një problem të brendshëm me pajisjen tënde. Ajo mund të jetë e paqëndrueshme derisa të rivendosësh të dhënat në gjendje fabrike."</string> <string name="system_error_manufacturer" msgid="8086872414744210668">"Ka një problem të brendshëm me pajisjen tënde. Kontakto prodhuesin tënd për detaje."</string> diff --git a/core/res/res/values-sr/strings.xml b/core/res/res/values-sr/strings.xml index e918fb2..f799772 100644 --- a/core/res/res/values-sr/strings.xml +++ b/core/res/res/values-sr/strings.xml @@ -336,8 +336,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Дозвољава апликацији да додаје, уклања и мења догађаје које можете да измените на таблету, укључујући догађаје пријатеља и колега. Ово може да омогући апликацији да шаље поруке које изгледају као да их шаљу власници календара или мења догађаје без знања власника."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Дозвољава апликацији да додаје, уклања и мења догађаје које можете да измените на ТВ-у, укључујући догађаје пријатеља или колега. Ово може да дозволи апликацији да шаље поруке које изгледају као да их шаљу власници календара или да мења догађаје без знања власника."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Дозвољава апликацији да додаје, уклања и мења догађаје које можете да измените на телефону, укључујући догађаје пријатеља и колега. Ово може да омогући апликацији да шаље поруке које изгледају као да их шаљу власници календара или мења догађаје без знања власника."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"лажни извори локација у сврхе тестирања"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Прављење лажних извора локација у сврху тестирања или инсталирање новог добављача локације. Ово омогућава апликацији да замени локацију и/или статус који пријављују други извори локација, као што су GPS или добављачи локације."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"приступ додатним командама добављача локације"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Омогућава апликацији да приступа додатним командама даваоца услуга локације. То може да омогући апликацији да утиче на рад GPS-а или других извора локације."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"прецизна локација (заснована на GPS-у и мрежи)"</string> @@ -439,6 +437,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Радња са отиском прста је отказана."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Превише покушаја. Покушајте поново касније."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Покушајте поново."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"читање подешавања синхронизације"</string> @@ -1049,12 +1049,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ако укључите USB меморију, поједине апликације које користите ће се зауставити и могу да буду недоступне док је поново не укључите."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB радња није успела"</string> <string name="dlg_ok" msgid="7376953167039865701">"Потврди"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Повезан као медијски уређај"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Повезан као камера"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Повезано је као MIDI уређај"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Повезан као инсталациони програм"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Повезано са USB додатком"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Додирните за друге опције USB-а."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Желите да формат. USB меморију?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Желите ли да форматирате SD картицу?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Све датотеке ускладиштене на USB меморији биће избрисане. Ова радња не може да се опозове!"</string> @@ -1476,21 +1482,25 @@ <item quantity="few">%1$d минута (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d минута (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d сат (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d сата (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d сати (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d минут</item> <item quantity="few">%d минута</item> <item quantity="other">%d минута</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d сат</item> <item quantity="few">%d сата</item> <item quantity="other">%d сати</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"До <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Док не искључите"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-sv/strings.xml b/core/res/res/values-sv/strings.xml index dfee604..c446b43 100644 --- a/core/res/res/values-sv/strings.xml +++ b/core/res/res/values-sv/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Tillåter att appen lägger till, tar bort och ändrar sådana händelser som du kan ändra på surfplattan, inklusive dina vänners eller kollegors uppgifter. Detta kan innebära att appen tillåts skicka meddelanden som ser ut att komma från kalenderns ägare eller ändra händelser utan ägarens vetskap."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Tillåter att appen lägger till, tar bort och ändrar händelser som du kan ändra på tv:n, inklusive dina vänners eller kollegors uppgifter. Appen kan på så sätt skicka meddelanden som ser ut att komma från kalenderns ägare eller ändra uppgifter utan ägarens vetskap."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Tillåter att appen lägger till, tar bort och ändrar sådana händelser som du kan ändra på mobilen, inklusive dina vänners eller kollegors uppgifter. Detta kan innebära att appen tillåts skicka meddelanden som ser ut att komma från kalenderns ägare eller ändra händelser utan ägarens vetskap."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"skenplatser för att testa"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Skapa skenplatser för tester eller installera en ny platsleverantör. Detta innebär att appen tillåts åsidosätta den plats och/eller status som returneras av andra platskällor, till exempel GPS eller platsleverantörer."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"få åtkomst till extra kommandon för platsleverantör"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Tillåter att appen får åtkomst till extra kommandon för platsleverantör. Detta kan innebära att appen tillåts störa funktionen för GPS eller andra platskällor."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"exakt plats (GPS- och nätverksbaserad)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Fingeravtrycksåtgärden avbröts."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Du har gjort för många försök. Försök igen senare."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Försök igen."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"läsa synkroniseringsinställningar"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Om du aktiverar USB-lagring avbryts några av apparna som körs och de kanske inte blir tillgängliga igen förrän du inaktiverar USB-lagring."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB-åtgärd misslyckades"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Ansluten som en mediaenhet"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Ansluten som en kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Ansluten som en MIDI-enhet"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Ansluten som installationsprogram"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Ansluten till ett USB-tillbehör"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Tryck om du vill visa andra USB-alternativ."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Formatera USB-enhet?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Vill du formatera SD-kortet?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Alla filer på USB-lagringsenheten kommer att raderas. Åtgärden kan inte ångras!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">I %1$d minuter (till kl. <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">I en minut (till kl. <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">I %1$d timmar (till kl. <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">I en timme (till kl. <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">I %d minuter</item> <item quantity="one">I en minut</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">I %d timmar</item> <item quantity="one">I en timme</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Till kl. <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Tills du inaktiverar detta"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-sw/strings.xml b/core/res/res/values-sw/strings.xml index cbb2f48..73d35d0 100644 --- a/core/res/res/values-sw/strings.xml +++ b/core/res/res/values-sw/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Inaruhusu programu kuongeza, kuondoa, kubadilisha matukio ambayo unaweza kurekebisha kwenye kompyuta kibao yako, yakijumulisha yale ya marafiki na wafanyakazi wenza. Hii inaweza kuruhusu programu kutuma ujumbe unaonekana kuwa unatoka kwa mmiliki wa kalenda, au kurekebisha matukio bila mmiliki kujua."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Huruhusu programu kuongeza, kuondoa, kubadilisha matukio unayoweza kurekebisha kwenye runinga chako, ikiwa ni pamoja na yale ya marafiki au wafanyakazi wenza. Hii inaweza kuruhusu programu kutuma ujumbe unaoonekana kutoka kwa wamiliki wa kalenda, au kurekebisha matukio bila ya wamiliki kufahamu."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Inaruhusu programu kuongeza, kuondoa, kubadilisha matukio ambayo unaweza kurekebisha kwenye simu yako, yakijumulisha yale ya marafiki na wafanyakazi wenza. Hii inaweza kuruhusu programu kutuma ujumbe unaonekana kuwa unatoka kwa mmiliki wa kalenda, au kurekebisha matukio bila mmiliki kujia."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"vyanzo vya jaribio la mahali kwa lengo la majaribio"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Unda vyanzo vya majaribio ya eneo vya kujaribia au usakinishe mtoaji huduma mpya wa eneo. Hii inaruhusu programu kufuta eneo na/au hali inayorudishwa na vyanzo vingine vya eneo kama vile GPS au watoaji huduma wa eneo."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"fikia amri za ziada za mtoa huduma ya mahali"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ruhusu programu kufikia amri za ziada za mtoa huduma za mahali. Hii huenda ikaruhusu programu ikatize matumizi ya GPS au vyanzo vingine vya eneo."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"kutambua eneo sahihi (GPS na mtandao)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Utendaji wa kitambulisho imeghairiwa."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Majaribio mengi mno. Jaribu tena baadaye."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Jaribu tena."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"kusoma mipangilio ya usawazishaji"</string> @@ -1044,12 +1044,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Ukiwasha hifadhi ya USB, baadhi ya programu unazozitumia zitakoma na huenda zisipatikane hadi uzime hifadhi ya USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Uendeshaji wa USB hujafanikiwa"</string> <string name="dlg_ok" msgid="7376953167039865701">"Sawa"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Imeunganishwa kama kifaa cha midia"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Imeunganishwa kama kamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Kimeunganishwa kama kifaa cha MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Imeunganishwa kama kisakinishi"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Imeunganishwa kwa kifuasi cha USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Gusa ili uone chaguo zingine za USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Fomati hifadhi ya USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Ungependa kutayarisha kadi ya SD ili iweze kutumika?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Faili zote zilizohifadhiwa katika hifadhi yako ya USB zitafutwa. Hatua hii haiwezi kubadilishwa!"</string> @@ -1468,18 +1474,22 @@ <item quantity="other">Kwa dakika %1$d (hadi <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Kwa dakika moja (hadi <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Kwa saa %1$d (hadi <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Kwa saa moja (hadi <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Kwa dakika %d</item> <item quantity="one">Kwa dakika moja</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Kwa saa %d</item> <item quantity="one">Kwa saa moja</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Hadi <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Hadi utakapozima hili"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ta-rIN/strings.xml b/core/res/res/values-ta-rIN/strings.xml index 1b251ae..dc68bc4 100644 --- a/core/res/res/values-ta-rIN/strings.xml +++ b/core/res/res/values-ta-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"நண்பர்கள் அல்லது சகப் பணியாளர்கள் உள்பட உங்கள் டேப்லெட்டில் நீங்கள் திருத்தக்கூடிய நிகழ்வுகளைச் சேர்க்கவும், அகற்றவும், மேலும் மாற்றவும் பயன்பாட்டை அனுமதிக்கிறது. இது கேலெண்டர் உரிமையாளர்களிடமிருந்து வரும் செய்திகளை அனுப்பவும் அல்லது உரிமையாளரின் ஒப்புதல் இல்லாமல் நிகழ்வுகளைத் திருத்தவும் பயன்பாட்டை அனுமதிக்கலாம்."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"நண்பர்கள் அல்லது சகப் பணியாளர்களின் நிகழ்வுகள் உள்ளிட்ட உங்கள் டிவியில் நீங்கள் மாற்றக்கூடிய நிகழ்வுகளைச் சேர்க்க, அகற்ற மற்றும் மாற்ற, பயன்பாட்டை அனுமதிக்கிறது. இது கேலெண்டர் உரிமையாளர்கள் அனுப்புவது போன்ற செய்திகளை அனுப்ப அல்லது உரிமையாளரின் அனுமதி இல்லாமல் நிகழ்வுகளை மாற்ற, அனுமதிக்கிறது."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"நண்பர்கள் அல்லது சகப் பணியாளர்கள் உள்பட உங்கள் மொபைலில் நீங்கள் திருத்தக்கூடிய நிகழ்வுகளைச் சேர்க்கவும், அகற்றவும், மேலும் மாற்றவும் பயன்பாட்டை அனுமதிக்கிறது. இது கேலெண்டர் உரிமையாளர்களிடமிருந்து வரும் செய்திகளை அனுப்பவும் அல்லது உரிமையாளரின் ஒப்புதல் இல்லாமல் நிகழ்வுகளைத் திருத்தவும் பயன்பாட்டை அனுமதிக்கலாம்."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"சோதனைக்கான போலி இட மூலங்கள்"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"சோதனைக்காக போலி இருப்பிட மூலங்களை உருவாக்கவும் அல்லது புதிய இருப்பிட வழங்குநரை நிறுவவும். இது, இருப்பிடத்தை மற்றும்/அல்லது GPS அல்லது இருப்பிட வழங்குநர்கள் போன்ற பிற இருப்பிட மூலங்கள் மூலம் வழங்கப்பட்ட நிலையை மேலெழுதப் பயன்பாட்டை அனுமதிக்கிறது."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"கூடுதல் இட வழங்குநரின் கட்டளைகளின் அணுகல்"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"கூடுதல் இட வழங்குநர் கட்டளைகளை அணுகப் பயன்பாட்டை அனுமதிக்கிறது. இது, GPS அல்லது பிற இருப்பிட மூலங்களின் செயல்பாட்டை இடைமறிக்க பயன்பாட்டை அனுமதிக்கலாம்."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"துல்லியமான இருப்பிடம் (GPS மற்றும் நெட்வொர்க் சார்ந்தது)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"கைரேகை செயல்பாடு ரத்துசெய்யப்பட்டது."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"அதிகமான முயற்சிகள். பிறகு முயற்சிக்கவும்."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"மீண்டும் முயற்சிக்கவும்."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"ஒத்திசைவு அமைப்புகளைப் படித்தல்"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"நீங்கள் USB சேமிப்பிடத்தை இயக்கினால், நீங்கள் பயன்படுத்தும் சில பயன்பாடுகள் நின்றுவிடும், மேலும் நீங்கள் USB சேமிப்பிடத்தை முடக்கும்வரை அவை கிடைக்காமல் இருக்கலாம்."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB செயல்முறை தோல்வியடைந்தது"</string> <string name="dlg_ok" msgid="7376953167039865701">"சரி"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"மீடியா சாதனமாக இணைக்கப்பட்டது"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"கேமராவாக இணைக்கப்பட்டுள்ளது"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI சாதனமாக இணைக்கப்பட்டது"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"நிறுவியாக இணைக்கப்பட்டது"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB துணைக்கருவியுடன் இணைக்கப்பட்டுள்ளது"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"மற்ற USB விருப்பங்களுக்குத் தொடவும்."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB சேமிப்பகத்தில் உள்ளவற்றை அழிக்கவா?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD கார்டில் உள்ளவற்றை அழிக்கவா?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB சேமிப்பகத்தில் சேமித்த எல்லா கோப்புகளும் அழிக்கப்படும். இந்தச் செயலைச் செயல்தவிர்க்க முடியாது."</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d நிமிடங்களுக்கு (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> வரை)</item> <item quantity="one">ஒரு நிமிடத்திற்கு (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> வரை)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d மணிநேரத்திற்கு (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> வரை)</item> <item quantity="one">ஒரு மணிநேரத்திற்கு (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> வரை)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d நிமிடங்களுக்கு</item> <item quantity="one">ஒரு நிமிடத்திற்கு</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d மணிநேரத்திற்கு</item> <item quantity="one">ஒரு மணிநேரத்திற்கு</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> வரை"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"இதை முடக்கும்வரை"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-te-rIN/strings.xml b/core/res/res/values-te-rIN/strings.xml index 86f078a..418eab3 100644 --- a/core/res/res/values-te-rIN/strings.xml +++ b/core/res/res/values-te-rIN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"స్నేహితులు లేదా సహోద్యోగులకు సంబంధించిన ఈవెంట్లతో సహా మీరు మీ టాబ్లెట్లో సవరించగల ఈవెంట్లను జోడించడానికి, తీసివేయడానికి, మార్చడానికి అనువర్తనాన్ని అనుమతిస్తుంది. ఇది క్యాలెండర్ యజమానుల నుండి వచ్చినట్లుగా కనిపించే రీతిలో సందేశాలను పంపడానికి లేదా యజమానికి తెలియకుండానే ఈవెంట్లను సవరించడానికి అనువర్తనాన్ని అనుమతించవచ్చు."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"స్నేహితులు లేదా సహోద్యోగులకు సంబంధించిన ఈవెంట్లతో సహా మీరు మీ టీవీలో సవరించగల ఈవెంట్లను జోడించడానికి, తీసివేయడానికి, మార్చడానికి అనువర్తనాన్ని అనుమతిస్తుంది. ఇది క్యాలెండర్ యజమానుల నుండి వచ్చినట్లుగా కనిపించే సందేశాలను పంపడానికి లేదా యజమానికి తెలియకుండానే ఈవెంట్లను సవరించడానికి అనువర్తనాన్ని అనుమతించవచ్చు."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"స్నేహితులు లేదా సహోద్యోగులకు సంబంధించిన ఈవెంట్లతో సహా మీరు మీ ఫోన్లో సవరించగల ఈవెంట్లను జోడించడానికి, తీసివేయడానికి, మార్చడానికి అనువర్తనాన్ని అనుమతిస్తుంది. ఇది క్యాలెండర్ యజమానుల నుండి వచ్చినట్లుగా కనిపించే రీతిలో సందేశాలను పంపడానికి లేదా యజమానికి తెలియకుండానే ఈవెంట్లను సవరించడానికి అనువర్తనాన్ని అనుమతించవచ్చు."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"పరీక్షించడం కోసం స్థాన మూలాలను మాక్ చేయడం"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"పరీక్షించడం కోసం అనుకృత స్థాన మూలాలను సృష్టించండి లేదా కొత్త స్థాన ప్రదాతను ఇన్స్టాల్ చేయండి. ఇది GPS లేదా స్థాన ప్రదాతల వంటి ఇతర స్థాన మూలాల ద్వారా అందించబడిన స్థానం మరియు/లేదా స్థితిని భర్తీ చేయడానికి అనువర్తనాన్ని అనుమతిస్తుంది."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"అదనపు స్థాన ప్రదాత ఆదేశాలను ప్రాప్యత చేయడం"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"అదనపు స్థాన ప్రదాత ఆదేశాలను ప్రాప్యత చేయడానికి అనువర్తనాన్ని అనుమతిస్తుంది. ఇది GPS లేదా ఇతర స్థాన మూలాల నిర్వహణలో అనువర్తనం ప్రమేయం ఉండేలా అనుమతించవచ్చు."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ఖచ్చితమైన స్థానం (GPS మరియు నెట్వర్క్-ఆధారితం)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"వేలిముద్ర కార్యాచరణ రద్దయింది."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"చాలా ఎక్కువ ప్రయత్నాలు చేసారు. తర్వాత మళ్లీ ప్రయత్నించండి."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"మళ్లీ ప్రయత్నించండి."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"సమకాలీకరణ సెట్టింగ్లను చదవడం"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"మీరు USB నిల్వను ప్రారంభిస్తే, మీరు ఉపయోగిస్తున్న కొన్ని అనువర్తనాలు ఆగిపోతాయి మరియు మీరు USB నిల్వను ఆపివేసే వరకు అందుబాటులో ఉండకపోవచ్చు."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB చర్య విజయవంతం కాలేదు"</string> <string name="dlg_ok" msgid="7376953167039865701">"సరే"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"మీడియా పరికరంగా కనెక్ట్ చేయబడింది"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"కెమెరాగా కనెక్ట్ చేయబడింది"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI పరికరం వలె కనెక్ట్ చేయబడింది"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ఇన్స్టాలర్గా కనెక్ట్ చేయబడింది"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB ఉపకరణానికి కనెక్ట్ చేయబడింది"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"ఇతర USB ఎంపికల కోసం తాకండి."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB నిల్వను ఫార్మాట్ చేయాలా?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD కార్డుని ఫార్మాట్ చేయాలా?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"మీ USB నిల్వలో నిల్వ చేసిన అన్ని ఫైల్లు ఎరేజ్ చేయబడతాయి. ఈ చర్యను రద్దు చేసి పూర్వ స్థితికి తీసుకురావడం సాధ్యపడదు!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d నిమిషాల పాటు (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> వరకు)</item> <item quantity="one">ఒక నిమిషం పాటు (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> వరకు)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d గంటల పాటు (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> వరకు)</item> <item quantity="one">ఒక గంట పాటు (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> వరకు)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d నిమిషాల పాటు</item> <item quantity="one">ఒక నిమిషం పాటు</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d గంటల పాటు</item> <item quantity="one">ఒక గంట పాటు</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> వరకు"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"మీరు దీన్ని ఆఫ్ చేసే వరకు"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-th/strings.xml b/core/res/res/values-th/strings.xml index 320676c..9e6fa6c 100644 --- a/core/res/res/values-th/strings.xml +++ b/core/res/res/values-th/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"อนุญาตให้แอปพลิเคชันเพิ่ม ลบ เปลี่ยนกิจกรรมที่คุณสามารถเปลี่ยนแปลงในแท็บเล็ตได้ รวมถึงกิจกรรมของเพื่อนหรือเพื่อนร่วมงานด้วย การอนุญาตนี้อาจทำให้แอปพลิเคชันสามารถส่งข้อความที่มาจากเจ้าของปฏิทิน หรือเปลี่ยนแปลงกิจกรรมโดยที่เจ้าของไม่ทราบ"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"อนุญาตให้แอปเพิ่ม นำออก เปลี่ยนแปลงกิจกรรมที่คุณสามารถแก้ไขได้บนทีวี ซึ่งรวมถึงกิจกรรมของเพื่อนหรือเพื่อนร่วมงาน สิทธิ์นี้จะทำให้แอปสามารถส่งข้อความที่ดูเหมือนว่ามาจากเจ้าของปฏิทิน หรือแก้ไขกิจกรรมโดยที่เจ้าของไม่รู้ตัว"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"อนุญาตให้แอปพลิเคชันเพิ่ม ลบ เปลี่ยนกิจกรรมที่คุณสามารถเปลี่ยนแปลงในโทรศัพท์ได้ รวมถึงกิจกรรมของเพื่อนหรือเพื่อนร่วมงานด้วย การอนุญาตนี้อาจทำให้แอปพลิเคชันสามารถส่งข้อความที่มาจากเจ้าของปฏิทิน หรือเปลี่ยนแปลงกิจกรรมโดยที่เจ้าของไม่ทราบ"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"จำลองที่มาของตำแหน่งเพื่อทดสอบ"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"สร้างต้นทางของตำแหน่งจำลองสำหรับการทดสอบหรือติดตั้งผู้ให้บริการตำแหน่งรายใหม่ ซึ่งจะทำให้แอปพลิเคชันสามารถแทนที่ตำแหน่งและ/หรือสถานะที่ส่งกลับมาจากต้นทางของตำแหน่งอื่นๆ เช่น GPS หรือผู้ให้บริการตำแหน่งได้"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"เข้าถึงคำสั่งของโปรแกรมแจ้งตำแหน่งพิเศษ"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"อนุญาตให้แอปเข้าถึงคำสั่งของผู้ให้บริการตำแหน่งเพิ่มเติม ซึ่งอาจทำให้แอปสามารถแทรกแซงการทำงานของ GPS หรือต้นทางของตำแหน่งอื่นๆ ได้"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"ตำแหน่งที่แม่นยำ (อิงตาม GPS และเครือข่าย)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"ยกเลิกการทำงานของลายนิ้วมือ"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"ดำเนินการหลายครั้งเกินไป ลองอีกครั้งในภายหลัง"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"ลองอีกครั้ง"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"อ่านการตั้งค่าการซิงค์แล้ว"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"หากคุณเปิดที่จัดเก็บข้อมูล USB แอปพลิเคชันบางอย่างที่คุณใช้อยู่อาจหยุดทำงานและไม่สามารถใช้ได้จนกว่าจะปิดที่จัดเก็บข้อมูล USB"</string> <string name="dlg_error_title" msgid="7323658469626514207">"การทำงานของ USB ไม่สำเร็จ"</string> <string name="dlg_ok" msgid="7376953167039865701">"ตกลง"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"เชื่อมต่อเป็นอุปกรณ์สื่อ"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"เชื่อมต่อเป็นกล้องถ่ายรูป"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"เชื่อมต่อเป็นอุปกรณ์ MIDI แล้ว"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"เชื่อมต่อเป็นตัวติดตั้ง"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"เชื่อมต่อกับอุปกรณ์เสริม USB แล้ว"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"แตะสำหรับตัวเลือก USB อื่นๆ"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"ฟอร์แมต USB หรือไม่"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"ฟอร์แมตการ์ด SD หรือไม่"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"ไฟล์ทั้งหมดที่เก็บไว้ในที่จัดเก็บข้อมูล USB ของคุณจะถูกลบทิ้ง การทำงานนี้ไม่สามารถย้อนกลับได้!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">ระยะเวลา %1$d นาที (จนถึงเวลา <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">ระยะเวลา 1 นาที (จนถึงเวลา <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">ระยะเวลา %1$d ชั่วโมง (จนถึงเวลา <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">ระยะเวลา 1 ชั่วโมง (จนถึงเวลา <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">ระยะเวลา %d นาที</item> <item quantity="one">ระยะเวลา 1 นาที</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">ระยะเวลา %d ชั่วโมง</item> <item quantity="one">ระยะเวลา 1 ชั่วโมง</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"จนถึงเวลา <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"จนกว่าคุณจะปิดฟังก์ชันนี้"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-tl/strings.xml b/core/res/res/values-tl/strings.xml index 0ec0150..e7a7ebf 100644 --- a/core/res/res/values-tl/strings.xml +++ b/core/res/res/values-tl/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Pinapayagan ang app na magdagdag, mag-alis, magbago ng mga kaganapang maaari mong baguhin sa iyong tablet, kabilang iyong sa mga kaibigan o katrabaho. Maaari nitong payagan ang app na magpadala ng mga mensaheng lumililitaw na mula sa mga may-ari ng kalendaryo, o magbago ng mga kaganapan nang hindi nalalaman ng mga may-ari."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Nagbibigay-daan sa app na magdagdag, mag-alis o magbago ng mga kaganapan na maaari mong baguhin sa iyong TV, kabilang ang mga kaganapan ng iyong mga kaibigan o katrabaho. Maaari nitong bigyang-daan ang app na magpadala ng mga mensahe na mukhang nagmumula sa mga may-ari ng kalendaryo, o magbago ng mga kaganapan nang hindi alam ng may-ari."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Pinapayagan ang app na magdagdag, mag-alis, magbago ng mga kaganapang maaari mong baguhin sa iyong telepono, kabilang iyong sa mga kaibigan o katrabaho. Maaari nitong payagan ang app na magpadala ng mga mensaheng lumililitaw na mula sa mga may-ari ng kalendaryo, o magbago ng mga kaganapan nang hindi nalalaman ng mga may-ari."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"gayahin ang mga pinagmumulan ng lokasyon para sa pagsusuri"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Lumikha ng mga mock na pinagmulan ng lokasyon para sa pagsubok o mag-install ng bagong provider ng lokasyon. Pinapayagan nito ang app na i-override ang lokasyon at/o katayuan na ibinabalik ng iba pang mga pinagmulan ng lokasyon gaya ng GPS o mga provider ng lokasyon."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"i-access ang mga dagdag na command ng provider ng lokasyon"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Nagbibigay-daan sa app na mag-access ng mga karagdagang command ng provider ng lokasyon. Maaari nitong bigyang-daan ang app na gambalain ang pagpapatakbo ng GPS o ng iba pang mga pinagmulan ng lokasyon."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"tumpak na lokasyon (batay sa GPS at network)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Nakansela ang operasyong ginagamitan ng fingerprint."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Masyadong maraming beses sumubok. Subukang muli sa ibang pagkakataon."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Subukang muli."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"basahin ang mga setting ng sync"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Kung i-on mo ang USB storage, hihinto ang ilang apps na iyong ginagamit at maaaring maging hindi available hanggang sa i-off mo ang USB storage."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Hindi matagumpay ang USB operation"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Nakakonekta bilang isang media device"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Nakakonekta bilang isang camera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Nakakonekta bilang isang MIDI device"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Nakakonekta bilang isang installer"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Nakakonekta sa isang accessory ng USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Pindutin para sa iba pang mga pagpipilian sa USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Iformat USB storage?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"I-format ang SD card?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Mabubura ang lahat ng file na nakaimbak sa iyong USB storage. Hindi mababawi ang pagkilos na ito!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Sa loob ng %1$d minuto (hanggang <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Sa loob ng %1$d na minuto (hanggang <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Sa loob ng %1$d oras (hanggang <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Sa loob ng %1$d na oras (hanggang <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Sa loob ng %d minuto</item> <item quantity="other">Sa loob ng %d na minuto</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Sa loob ng %d oras</item> <item quantity="other">Sa loob ng %d na oras</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Hanggang <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Hanggang sa i-off mo ito"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-tr/strings.xml b/core/res/res/values-tr/strings.xml index 1ae1351..f9e291b 100644 --- a/core/res/res/values-tr/strings.xml +++ b/core/res/res/values-tr/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Uygulamaya, arkadaşlarınızın veya iş arkadaşlarınızın etkinlikleri de dahil olmak üzere tabletinizde değiştirebileceğiniz etkinlikleri ekleme, kaldırma ve değiştirme izni verir. Bu izin, uygulamanın takvim sahiplerinden geliyormuş gibi görünen iletiler göndermesine veya etkinlikleri sahibinden habersiz olarak değiştirmesine olanak sağlar."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Uygulamaya, arkadaşlarınızın veya iş arkadaşlarınızın etkinlikleri de dahil olmak üzere cihazınızda değiştirebileceğiniz etkinlikleri ekleme, kaldırma ve değiştirme izni verir. Bu izin, uygulamanın, takvim sahiplerinden gelmiş gibi görünen iletiler göndermesine veya takvim sahiplerinin bilgisi olmadan etkinlikleri değiştirmesine olanak sağlayabilir."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Uygulamaya, arkadaşlarınızın veya iş arkadaşlarınızın etkinlikleri de dahil olmak üzere telefonunuzda değiştirebileceğiniz etkinlikleri ekleme, kaldırma ve değiştirme izni verir. Bu izin, uygulamanın takvim sahiplerinden geliyormuş gibi görünen iletiler göndermesine veya etkinlikleri sahibinden habersiz olarak değiştirmesine olanak sağlar."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"test için sahte konum kaynakları"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Test amacıyla veya yeni bir konum sağlayıcı yüklemek için sahte konum kaynakları oluşturma. Bu izin, uygulamanın GPS veya konum sağlayıcıları gibi diğer konum kaynakları tarafından döndürülen konum ve/veya durum bilgisini geçersiz kılmasına olanak sağlar."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"ek konum sağlayıcı komutlarına eriş"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Uygulamanın, ekstra konum sağlayıcı komutlarına erişmesine izin verir. Bu izin, uygulamanın GPS veya diğer konum kaynaklarının çalışmasını kesmesine olanak sağlayabilir."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"hassas konum (GPS ve ağ tabanlı)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Parmak izi işlemi iptal edildi."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Çok fazla deneme yapıldı. Daha sonra tekrar deneyin."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Tekrar deneyin."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"senk. ayarlarını okuma"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"USB belleği açarsanız, kullanmakta olduğunuz bazı uygulamalar durur ve USB bellek kapatılıncaya kadar kullanılamayabilir."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB işlemi başarısız oldu"</string> <string name="dlg_ok" msgid="7376953167039865701">"Tamam"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Medya cihazı olarak bağlandı"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Kamera olarak bağlandı"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI cihazı olarak bağlandı"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Yükleyici olarak bağlandı"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB aksesuarına bağlandı"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Diğer USB seçenekleri için dokunun."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB bellek biçimlendirilsin mi?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD kart biçimlendirilsin mi?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB belleğinizdeki tüm dosyalar silinecek. Bu işlem geri alınamaz!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d dakika için (şu saate kadar: <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Bir dakika için (şu saate kadar: <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d saat için (şu saate kadar: <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Bir saat için (şu saate kadar: <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d dakika süreyle</item> <item quantity="one">Bir dakika süreyle</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d saat için</item> <item quantity="one">Bir saat için</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Şu saate kadar: <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Siz bunu kapatana kadar"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-uk/strings.xml b/core/res/res/values-uk/strings.xml index c036cb0..96ac721 100644 --- a/core/res/res/values-uk/strings.xml +++ b/core/res/res/values-uk/strings.xml @@ -337,8 +337,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Дозволяє програмі додавати, видаляти та змінювати події, які можна редагувати на планшетному ПК, включно з подіями друзів або співробітників. Це може дозволити програмі надсилати повідомлення, які надходитимуть ніби від власників календарів, або змінювати події без відома власників."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Додаток може додавати, видаляти та змінювати події, які можна редагувати в телевізорі, зокрема події друзів або співробітників. Завдяки цьому додаток зможе надсилати повідомлення, які надходитимуть ніби від власників календарів, або змінювати події без відома власників."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Дозволяє програмі додавати, видаляти та змінювати події, які можна редагувати на телефоні, включно з подіями друзів або співробітників. Це може дозволити програмі надсилати повідомлення, які надходитимуть ніби від власників календарів, або змінювати події без відома власників."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"фіктивні джер. місцезн. для тестув."</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Створювати фіктивні джерела місцезнаходження для тестування або встановлювати нового постачальника даних місцезнаходження. Це може дозволити програмі замінювати місцезнаходження та/чи статус, отриманий від інших джерел даних про місцезнаходження, як-от постачальників послуг GPS або постачальників даних місцезнаходження."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"отр. дост. до додат. команд пров. місцезн."</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Додаток отримуватиме доступ до додаткових команд постачальника геоданих. Можливе втручання додатка в роботу GPS чи інших джерел геоданих."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"точне місцезнаходження (на основі GPS і мережі)"</string> @@ -440,6 +438,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Дію з відбитком скасовано."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Забагато спроб. Спробуйте пізніше."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Повторіть спробу."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"читати налаштування синхронізації"</string> @@ -1056,12 +1056,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Якщо ввімкнути носій USB, робота деяких програм, якими ви користуєтеся, припиниться, і вони можуть стати недоступними до вимкнення носія USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Помилка операції з USB"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Під’єднано як носій"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Під’єднано як камеру"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Підключено як пристрій MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Під’єднано як програму встановлення"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Під’єднано до аксесуара USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Торкніться, щоб побачити інші параметри USB."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Форматув. носій USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Форматувати карту SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Усі файли, збережені у вашому носії USB, буде стерто. Цю дію не можна скасувати!"</string> @@ -1486,24 +1492,28 @@ <item quantity="many">%1$d хвилин (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d хвилини (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">%1$d годину (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="few">%1$d години (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="many">%1$d годин (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">%1$d години (до <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">%d хвилину</item> <item quantity="few">%d хвилини</item> <item quantity="many">%d хвилин</item> <item quantity="other">%d хвилини</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">%d годину</item> <item quantity="few">%d години</item> <item quantity="many">%d годин</item> <item quantity="other">%d години</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"До <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Доки ви не вимкнете"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-ur-rPK/strings.xml b/core/res/res/values-ur-rPK/strings.xml index ff5f182..a69b73d 100644 --- a/core/res/res/values-ur-rPK/strings.xml +++ b/core/res/res/values-ur-rPK/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"ایپ کو وہ ایونٹس جن میں آپ اپنے ٹیبلٹ پر ترمیم کرسکتے ہیں، بشمول دوسروں یا ساتھی کارکنوں کے ایونٹس شامل کرنے، ہٹانے، تبدیل کرنے کی اجازت دیتا ہے۔ یہ ایپ کو ایسے پیغامات بھیجنے کی جو کیلنڈر مالکان کی جانب سے آنے والے معلوم پڑتے ہیں یا مالکان کی جانکاری کے بغیر ایونٹس میں ترمیم کرنے کی اجازت دے سکتا ہے۔"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"ایپ کو وہ ایونٹس جن میں آپ TV پر ترمیم کر سکتے ہیں بشمول دوستوں یا ساتھی کارکنان کے ایونٹس شامل کرنے، ہٹانے، تبدیل کرنے کی اجازت دیتا ہے۔ یہ ایپ کو ایسے پیغامات بھیجنے کی جو کیلنڈر مالکان کی جانب سے آئے ہوئے معلوم پڑتے ہیں، یا مالکان کی جانکاری کے بغیر ایونٹس میں ترمیم کرنے کی اجازت دے سکتا ہے۔"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"ایپ کو وہ ایونٹس جن میں آپ اپنے فون پر ترمیم کرسکتے ہیں، بشمول دوسروں یا ساتھی کارکنوں کے ایونٹس شامل کرنے، ہٹانے، تبدیل کرنے کی اجازت دیتا ہے۔ یہ ایپ کو ایسے پیغامات بھیجنے کی جو کیلنڈر مالکان کی جانب سے آئے ہوئے معلوم پڑتے ہیں یا مالکان کی جانکاری کے بغیر ایونٹس میں ترمیم کرنے کی اجازت دے سکتا ہے۔"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"ٹیسٹنگ کیلئے فرضی مقام کے ذرائع"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"ٹیسٹ کرنے کیلئے فرضی مقام کے مآخذ بنائیں یا ایک نیا مقام فراہم کنندہ انسٹال کریں۔ یہ ایپ کو مقام کے دوسرے مآخذ جیسے GPS یا مقام فراہم کنندگان کے ذریعہ واپس کردہ مقام اور/یا اسٹیٹس کو اوور رائیڈ کرنے کی اجازت دیتا ہے۔"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"اضافی مقام فراہم کنندہ کی کمانڈز تک رسائی حاصل کریں"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"ایپ کو اضافی مقام فراہم کنندہ کی کمانڈز تک رسائی حاصل کرنے کی اجازت دیتی ہے۔ یہ ایپ کو GPS یا دوسرے مقام کے مآخذ کے عمل کے ساتھ مداخلت کرنے کی اجازت دے سکتی ہے۔"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"قطعی مقام (GPS اور نیٹ ورک پر مبنی)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"فنگر پرنٹ کی کارروائی منسوخ ہوگئی۔"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"کافی زیادہ کوششیں کی گئیں۔ بعد میں دوباہ کوشش کریں۔"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"دوبارہ کوشش کریں۔"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"مطابقت پذیری کی ترتیبات پڑھیں"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"اگر آپ USB اسٹوریج کو آن کرتے ہیں تو آپ کے زیر استعمال کچھ ایپس بند ہو جائیں گے اور جب تک آپ USB اسٹوریج آف نہ کر دیں تب تک غیر دستیاب رہ سکتی ہیں۔"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB کارروائی ناکام رہی"</string> <string name="dlg_ok" msgid="7376953167039865701">"ٹھیک ہے"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"ایک میڈیا آلہ کے بطور مربوط کر دیا گیا"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"ایک کیمرہ کے بطور مربوط ہے"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI آلہ کے بطور منسلک"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"ایک انسٹالر کے بطور مربوط ہے"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"ایک USB لوازم سے مربوط ہے"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"USB کے دوسرے اختیارات کیلئے چھوئیں۔"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB اسٹوریج فارمیٹ کریں؟"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD کارڈ فارمیٹ کریں؟"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"آپ کی USB اسٹوریج میں اسٹور کردہ سبھی فائلوں کو ہٹا دیا جائے گا۔ اس کارروائی کو لوٹایا نہیں جا سکتا ہے!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d منٹ کیلئے (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> تک)</item> <item quantity="one">ایک منٹ کیلئے (تک <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d گھنٹے کیلئے (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> تک)</item> <item quantity="one">ایک گھنٹہ کیلئے (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> تک)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d منٹ کیلئے</item> <item quantity="one">ایک منٹ کیلئے</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d گھنٹے کیلئے</item> <item quantity="one">ایک گھنٹہ کیلئے</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"<xliff:g id="FORMATTEDTIME">%1$s</xliff:g> تک"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"جب تک آپ اسے آف نہ کر دیں"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-uz-rUZ/strings.xml b/core/res/res/values-uz-rUZ/strings.xml index b3c4d93..683b688 100644 --- a/core/res/res/values-uz-rUZ/strings.xml +++ b/core/res/res/values-uz-rUZ/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Ilovaga planshetingizda o‘zgartirishingiz mumkin bo‘lgan, shuningdek, do‘stlaringiz va hamkasblaringizning tadbirlarini qo‘shish, o‘chirish va o‘zgartirish uchun ruxsat beradi. Bu ilovaga go‘yoki taqvim egalari nomidan kelgan xabarlarni jo‘natishga yoki egasiga bildirmasdan tadbirlarni o‘zgartirishga ruxsat berishi mumkin."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Ilovaga televizordagi siz o‘zgartirishingiz mumkin bo‘lgan, jumladan, do‘stlar yoki oila a’zolaringizning tadbirlarini qo‘shish, o‘chirish, o‘zgartirish huquqini beradi. Uning yordamida ilova xabarlarni taqvim egalari nomidan yuborishi yoki tadbirlarni egasidan beruxsat tahrirlashi mumkin bo‘ladi."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Ilovaga telefoningizda o‘zgartirishingiz mumkin bo‘lgan, shuningdek, do‘stlaringiz va hamkasblaringizning tadbirlarini qo‘shish, o‘chirish va o‘zgartirish uchun ruxsat beradi. Bu ilovaga go‘yoki taqvim egalari nomidan kelgan xabarlarni jo‘natishga yoki egasiga bildirmasdan tadbirlarni o‘zgartirishga ruxsat berishi mumkin."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"sinash uchun maska manzillari manbalari"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Sinash uchun joylashuv emulyatsiyasi manbalarini yarating yoki yangi joylashuvni aniqlovchi tizimni o‘rnating. Bu ilovaga GPS yoki joylashuvni aniqlovchi tizimlar kabi boshqa joylashuv manbalari tomonidan qaytarilgan joylashuv ma‘lumotlari/yoki holatlarini o‘zgartirishga ruxsat beradi."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"qo‘shimcha manzillarga kirish buyruqlari"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ilovaga qo‘shimcha joylashuv xizmati buyruqlaridan foydalanishga ruxsat beradi. Uning yordamida ilova GPS yoki boshqa joylashuv ma’lumoti manbalarining ishlashiga xalaqit qilishi mumkin."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"aniq joylashuv (GPS va tarmoqqa asoslanib)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Barmoq izi tekshiruvi bekor qilindi."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Urinishlar soni ko‘payib ketdi. Keyinroq qayta urinib ko‘ring."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Qayta urinib ko‘ring."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"sinx-sh sozlamalarini o‘qish"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Agar USB xotirani ulasangiz, ba‘zi ishlab turgan ilovalar to‘xtab qolishi hamda USB xotira uzilmaguncha ishlamay qolishi mumkin."</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB jarayoni muvaffaqiyatsiz yakunlandi"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Media qurilma sifatida ulangan"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Kamera sifatida ulandi"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"MIDI qurilma sifatida ulandi"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"O‘rnatgich sifatida ulandi"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"USB jihozga ulangan"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Boshqa USB sozlamalarini ko‘rish uchun bosing."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"USB xotira formatlansinmi?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"SD karta formatlansinmi?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB xotiradagi barcha fayllar o‘chirib tashlanadi. Ushbu amalni ortga qaytarib bo‘lmaydi!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d daqiqa (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> gacha)</item> <item quantity="one">Bir daqiqa (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> gacha)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d soat (<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g> gacha)</item> <item quantity="one">Bir soat (<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g> gacha)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d daqiqa</item> <item quantity="one">Bir daqiqa</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d soat</item> <item quantity="one">Bir soat</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Ushbu vaqtgacha: <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Men o‘chirmaguncha"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-vi/strings.xml b/core/res/res/values-vi/strings.xml index 38d22a5..84995a3 100644 --- a/core/res/res/values-vi/strings.xml +++ b/core/res/res/values-vi/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Cho phép ứng dụng thêm, xóa, thay đổi các sự kiện mà bạn có thể sửa đổi trên máy tính bảng của mình, bao gồm những sự kiện của bạn bè hoặc đồng nghiệp. Việc này có thể cho phép ứng dụng gửi tin nhắn dường như đến từ chủ sở hữu lịch hoặc sửa đổi các sự kiện mà chủ sở hữu không biết."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Cho phép ứng dụng thêm, xóa, thay đổi các sự kiện mà bạn có thể sửa đổi trên TV của mình, bao gồm những sự kiện của bạn bè hoặc đồng nghiệp. Việc này có thể cho phép ứng dụng gửi tin nhắn mà dường như đến từ chủ sở hữu lịch hoặc sửa đổi các sự kiện mà chủ sở hữu không biết."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Cho phép ứng dụng thêm, xóa, thay đổi các sự kiện mà bạn có thể sửa đổi trên điện thoại của mình, bao gồm những sự kiện của bạn bè hoặc đồng nghiệp. Việc này có thể cho phép ứng dụng gửi tin nhắn dường như đến từ chủ sở hữu lịch hoặc sửa đổi các sự kiện mà chủ sở hữu không biết."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"các nguồn vị trí mô phỏng cho thử nghiệm"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Tạo nguồn vị trí mô phỏng cho thử nghiệm hoặc cài đặt nhà cung cấp vị trí mới. Việc này cho phép ứng dụng ghi đè vị trí và/hoặc trạng thái được trả về bởi các nguồn vị trí khác như GPS hoặc nhà cung cấp vị trí."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"truy cập vào các lệnh của nhà cung cấp vị trí bổ sung"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Cho phép ứng dụng truy cập vào các lệnh của nhà cung cấp vị trí bổ sung. Điều này có thể cho phép ứng dụng can thiệp vào hoạt động của Hệ thống định vị toàn cầu (GPS) hoặc các nguồn vị trí khác."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"vị trí chính xác (dựa vào mạng và GPS)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Thao tác dùng dấu vân tay bị hủy."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Quá nhiều lần thử. Hãy thử lại sau."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Thử lại."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"đọc cài đặt đồng bộ hóa"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Nếu bạn bật bộ lưu trữ USB, một số ứng dụng bạn đang sử dụng sẽ dừng và có thể không khả dụng cho tới khi bạn tắt bộ lưu trữ USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Thao tác USB không thành công"</string> <string name="dlg_ok" msgid="7376953167039865701">"OK"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Được kết nối là thiết bị truyền thông"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Được kết nối là máy ảnh"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Đã kết nối dưới dạng thiết bị MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Được kết nối như trình cài đặt"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Đã kết nối với phụ kiện USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Chạm để có các tùy chọn USB khác."</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Định dạng USB?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Định dạng thẻ SD?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Tất cả các tệp được lưu trữ trong bộ lưu trữ USB sẽ bị xóa. Không thể hoàn nguyên tác vụ này!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">Trong %1$d phút (cho đến <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Trong một phút (cho đến <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">Trong %1$d giờ (cho đến <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">Trong một giờ (cho đến <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">Trong %d phút</item> <item quantity="one">Trong một phút</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">Trong %d giờ</item> <item quantity="one">Trong một giờ</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Cho đến <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Cho đến khi bạn tắt tính năng này"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-zh-rCN/strings.xml b/core/res/res/values-zh-rCN/strings.xml index fce3d4a0..6d660e2 100644 --- a/core/res/res/values-zh-rCN/strings.xml +++ b/core/res/res/values-zh-rCN/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"允许该应用添加、删除、更改您可在平板电脑上修改的活动,包括朋友或同事的活动。此权限可让该应用冒充日历所有者发送消息,或在所有者不知情的情况下修改活动。"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"允许应用添加、移除和更改您可在电视上修改的活动,包括朋友或同事的活动。此权限可让应用冒充日历所有者来发送消息,或在所有者不知情的情况下修改活动。"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"允许该应用添加、删除、更改您可在手机上修改的活动,包括朋友或同事的活动。此权限可让该应用冒充日历所有者发送消息,或在所有者不知情的情况下修改活动。"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"使用模拟地点来源进行测试"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"创建用于测试的模拟位置源或安装新的位置提供程序。此权限可让该应用覆盖由其他位置源(如GPS)或位置提供程序返回的位置和/或状态信息。"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"获取额外的位置信息提供程序命令"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"允许该应用使用其他的位置信息提供程序命令。此权限使该应用可以干扰GPS或其他位置信息源的运作。"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"精确位置(基于GPS和网络)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"指纹操作已取消。"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"尝试次数过多,请稍后重试。"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"请重试。"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"读取同步设置"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"如果您打开USB存储设备,您正在使用的某些应用将会停止,并且在您关闭USB存储设备前都将无法使用。"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB操作失败"</string> <string name="dlg_ok" msgid="7376953167039865701">"确定"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"已作为媒体设备连接"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"作为相机连接"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"已作为 MIDI 设备连接"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"作为安装程序连接"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"已连接到USB配件"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"触摸可显示其他USB选项。"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"格式化USB存储设备吗?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"要格式化SD卡吗?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"您的USB存储设备中存储的所有文件都将清除。该操作无法撤消!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">%1$d 分钟(到<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">1 分钟(到<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">%1$d 小时(到<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">1 小时(到<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">%d 分钟</item> <item quantity="one">1 分钟</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">%d 小时</item> <item quantity="one">1 小时</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"到<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"直到您将其关闭"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-zh-rHK/strings.xml b/core/res/res/values-zh-rHK/strings.xml index e06a32d..c27013a 100644 --- a/core/res/res/values-zh-rHK/strings.xml +++ b/core/res/res/values-zh-rHK/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"允許應用程式新增、移除及更改您可以在平板電腦上修改的活動,包括好友或同事的活動。如此一來,應用程式或可偽裝日曆擁有者傳送訊息,或在擁有者不知情下擅自修改活動。"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"允許應用程式新增、移除和更改您可以在電視上修改的活動,包括好友或同事的活動。這可能會讓應用程式冒認日曆擁有者傳送訊息,或擅自修改活動。"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"允許應用程式新增、移除及更改您可以在手機上修改的活動,包括好友或同事的活動。如此一來,應用程式或可偽裝日曆擁有者傳送訊息,或在擁有者不知情下擅自修改活動。"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"用於測試的模擬位置源"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"建立虛構的位置資訊來源以供測試,或安裝新的位置資訊提供程式。這項權限允許應用程式覆寫 GPS 或位置資訊提供程式等其他位置資訊來源所傳回的位置資訊和/或狀態。"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"接收額外的位置提供者指令"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"允許應用程式存取額外的位置提供者指令。這項設定可能會使應用程式干擾 GPS 或其他位置來源的運作。"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"精確位置 (以 GPS 和網絡為基準)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"指紋操作已取消。"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"嘗試次數過多,請稍後再試。"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"再試一次。"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"讀取同步處理設定"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"如果您開啟 USB 儲存裝置,則某些正在使用中的應用程式會停止運作,而且可能無法使用,直到關閉 USB 儲存裝置後才會恢復正常。"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB 操作失敗"</string> <string name="dlg_ok" msgid="7376953167039865701">"確定"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"已作為媒體裝置連線"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"已作為相機連線"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"已連接為 MIDI 裝置"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"已作為安裝程式連線"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"已連接到一個 USB 配件"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"輕觸即可顯示其他 USB 選項。"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"格式化 USB 儲存裝置?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"格式化 SD 記憶卡?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"即將清除所有儲存在 USB 儲存裝置上的檔案。這項操作無法復原!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">需時 %1$d 分鐘 (完成時間:<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">需時 1 分鐘 (完成時間:<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">需時 %1$d 小時 (完成時間:<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">需時 1 小時 (完成時間:<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">需時 %d 分鐘</item> <item quantity="one">需時 1 分鐘</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">需時 %d 小時</item> <item quantity="one">需時 1 小時</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"完成時間:<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"直至您關閉這項設定"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-zh-rTW/strings.xml b/core/res/res/values-zh-rTW/strings.xml index ea405e7..5eb9789 100644 --- a/core/res/res/values-zh-rTW/strings.xml +++ b/core/res/res/values-zh-rTW/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"允許應用程式新增、移除、變更您可以在平板電腦上修改的活動,包括好友或同事的活動。這項設定可能會讓應用程式偽裝日曆擁有者傳送訊息,或私自修改活動。"</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"允許應用程式新增、移除、變更您可以在電視上修改的活動,包括好友或同事的活動。應用程式可能會藉此偽裝日曆擁有者傳送訊息,或逕自修改活動。"</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"允許應用程式新增、移除、變更您可以在手機上修改的活動,包括好友或同事的活動。這項設定可能會讓應用程式偽裝日曆擁有者傳送訊息,或私自修改活動。"</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"模擬位置來源以供測試"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"建立虛構的位置資訊來源以供測試,或安裝新的位置資訊提供者。這項設定可讓應用程式覆寫 GPS 或位置資訊提供者等其他位置資訊來源所傳回的位置資訊和/或狀態。"</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"接收額外的位置提供者指令"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"允許應用程式存取額外位置資訊提供者指令。這項設定可能會造成應用程式干擾 GPS 或其他位置資訊來源的運作。"</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"精確位置 (以 GPS 和網路為基準)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"指紋作業已取消。"</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"嘗試次數過多,請稍後再試。"</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"請再試一次。"</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"讀取同步處理設定"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"如果您開啟 USB 儲存裝置,則某些正在使用中的應用程式會停止運作,而且可能無法使用,直到關閉 USB 儲存裝置後才會恢復正常。"</string> <string name="dlg_error_title" msgid="7323658469626514207">"USB 操作失敗"</string> <string name="dlg_ok" msgid="7376953167039865701">"確定"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"已視為媒體裝置連線"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"已視為相機連線"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"已採用 MIDI 模式連接到電腦"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"已視為安裝程式連線"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"已連接 USB 配件"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"輕觸即可顯示其他 USB 選項。"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"將 USB 儲存裝置格式化?"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"將 SD 卡格式化?"</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"USB 儲存裝置上儲存的所有檔案即將遭到清除。這項動作無法復原!"</string> @@ -1466,18 +1472,22 @@ <item quantity="other">持續 %1$d 分鐘 (結束時間:<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">持續 1 分鐘 (結束時間:<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="other">持續 %1$d 小時 (結束時間:<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="one">持續 1 小時 (結束時間:<xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="other">持續 %d 分鐘</item> <item quantity="one">持續 1 分鐘</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="other">持續 %d 小時</item> <item quantity="one">持續 1 小時</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"結束時間:<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"手動關閉這項設定前一律啟用"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g>/<xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values-zu/strings.xml b/core/res/res/values-zu/strings.xml index 1bb2115..d5dff4b 100644 --- a/core/res/res/values-zu/strings.xml +++ b/core/res/res/values-zu/strings.xml @@ -335,8 +335,6 @@ <string name="permdesc_writeCalendar" product="tablet" msgid="6679035520113668528">"Ivumela uhlelo lokusebenza ukungeza, ukususa, ukushintsha izehlakalo ongazishintsha kuthebhulethi yakho, kufaka phakathi nalezo zabangani noma labo osebenza nabo. Lokhu kungavumela uhlelo lokusebenza ukuthumela imilayezo ebonakala ngathi ivela kubanikazi bekhalenda, noma lishintshe izehlakalo ngaphandle kolwazi labanikazi."</string> <string name="permdesc_writeCalendar" product="tv" msgid="1273290605500902507">"Ivumela uhlelo lokusebenza ukuthi lungeze, lususe, luguqule imicimbi ongayiguqula ku-TV yakho, okufaka leyo yabangani noma osebenza nabo. Lokhu kungavumela uhlelo lokusebenza ukuthi lithumele imilayezo ebonakala ivela kubanikazi bekhalenda, noma liguqule imicimbi ngaphandle kolwazi lomnikazi."</string> <string name="permdesc_writeCalendar" product="default" msgid="2324469496327249376">"Ivumela uhlelo lokusebenza ukungeza, ukususa, ukushintsha izehlakalo ongazishintsha efonini yakho, kufaka phakathi nalezo zabangani noma labo osebenza nabo. Lokhu kungavumela uhlelo lokusebenza ukuthumela imilayezo ebonakala ngathi ivela kubanikazi bekhalenda, noma lishintshe izehlakalo ngaphandle kolwazi labanikazi."</string> - <string name="permlab_accessMockLocation" msgid="8688334974036823330">"lungisela imithombo yendawo ukuhlolwa"</string> - <string name="permdesc_accessMockLocation" msgid="5808711039482051824">"Dala imithombo yendawo ye-mock ngokuhlola noma ukufaka umnikeli wendawo omusha. Lokhu kuvumela uhlelo lokusebenza ukubhala ngaphezulu indawo kanye/noma isimo esibuyiswe eminye imithombo yendawo njenge-GPS noma abanikeli bendawo."</string> <string name="permlab_accessLocationExtraCommands" msgid="2836308076720553837">"finyelela kweminye imiyalo yokunikeza indawo"</string> <string name="permdesc_accessLocationExtraCommands" msgid="6078307221056649927">"Ivumela uhlelo lokusebenza ukufinyelela imiyalo eyengeziwe yabahlinzeki bendawo. Lokhu kungase kuvumele uhlelo lokusebenza ukuthi liphazamisane nomsebenzi we-GPS noma eminye imithombo yendawo."</string> <string name="permlab_accessFineLocation" msgid="1191898061965273372">"indawo eqondile (kususelwe ku-GPS nakunethiwekhi)"</string> @@ -438,6 +436,8 @@ <string name="fingerprint_error_canceled" msgid="4402024612660774395">"Ukusebenza kwezingxivizo zeminwe kukhanseliwe."</string> <string name="fingerprint_error_lockout" msgid="5536934748136933450">"Imizamo eminingi kakhulu. Zama futhi emuva kwesikhathi."</string> <string name="fingerprint_error_unable_to_process" msgid="6107816084103552441">"Zama futhi."</string> + <!-- no translation found for fingerprint_name_template (5870957565512716938) --> + <skip /> <string-array name="fingerprint_error_vendor"> </string-array> <string name="permlab_readSyncSettings" msgid="6201810008230503052">"funda izilungiselelo zokuvumelanisa"</string> @@ -1042,12 +1042,18 @@ <string name="dlg_confirm_kill_storage_users_text" msgid="5100428757107469454">"Uma uvula okokulondoloza kwe-USB, ezinye izinhlelo zokusebenza ozisebenzisayo ziyoma futhi kungenzeka zingatholakali kuze kube ucisha ukulondoloza kwe-USB."</string> <string name="dlg_error_title" msgid="7323658469626514207">"Ukusebenza kwe-USB kwehlulekile"</string> <string name="dlg_ok" msgid="7376953167039865701">"KULUNGILE"</string> - <string name="usb_mtp_notification_title" msgid="3699913097391550394">"Ixhunyiwe njengedivayisi yemidiya"</string> - <string name="usb_ptp_notification_title" msgid="1960817192216064833">"Ixhunywe njengekhamera"</string> - <string name="usb_midi_notification_title" msgid="1399152904227676460">"Kuxhunywe njengedivayisi ye-MIDI"</string> + <!-- no translation found for usb_charging_notification_title (4004114449249406402) --> + <skip /> + <!-- no translation found for usb_mtp_notification_title (8396264943589760855) --> + <skip /> + <!-- no translation found for usb_ptp_notification_title (1347328437083192112) --> + <skip /> + <!-- no translation found for usb_midi_notification_title (4850904915889144654) --> + <skip /> <string name="usb_cd_installer_notification_title" msgid="6774712827892090754">"Ixhunywe njengesifaki"</string> <string name="usb_accessory_notification_title" msgid="7848236974087653666">"Ixhunywe ku-accessory ye-USB"</string> - <string name="usb_notification_message" msgid="2290859399983720271">"Cindezela ukuze ubone ezinye izinketho ze-USB"</string> + <!-- no translation found for usb_notification_message (7347368030849048437) --> + <skip /> <string name="extmedia_format_title" product="nosdcard" msgid="9020092196061007262">"Fometha isitoreji se-USB"</string> <string name="extmedia_format_title" product="default" msgid="3648415921526526069">"Fometha ikhadi le-SD."</string> <string name="extmedia_format_message" product="nosdcard" msgid="3934016853425761078">"Onke amafayela agcinwe kwi-USB yakho ayosuswa. Lesi senzo ngeke siququleke!"</string> @@ -1466,18 +1472,22 @@ <item quantity="one">Okwamaminithi angu-%1$d (kuze kube ngo-<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Okwamaminithi angu-%1$d (kuze kube ngo-<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_summary_short (6830154222366042597) --> <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> <item quantity="one">Kwamahora angu-%1$d (kuze kube ngo-<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> <item quantity="other">Kwamahora angu-%1$d (kuze kube ngo-<xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_summary_short (4787552595253082371) --> <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> <item quantity="one">Amaminithi angu-%d</item> <item quantity="other">Amaminithi angu-%d</item> </plurals> + <!-- no translation found for zen_mode_duration_minutes_short (2199350154433426128) --> <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> <item quantity="one">Amahora angu-%d</item> <item quantity="other">Amahora angu-%d</item> </plurals> + <!-- no translation found for zen_mode_duration_hours_short (6748277774662434217) --> <string name="zen_mode_until" msgid="7336308492289875088">"Kuze kube ngu-<xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> <string name="zen_mode_forever" msgid="7420011936770086993">"Uze uvale lokhu"</string> <string name="zen_mode_rule_name_combination" msgid="191109939968076477">"<xliff:g id="FIRST">%1$s</xliff:g> / <xliff:g id="REST">%2$s</xliff:g>"</string> diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 690fd28..84e4ca9 100755 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -2144,4 +2144,11 @@ <!-- Whether device supports double tap to wake --> <bool name="config_supportDoubleTapWake">false</bool> + + <!-- The RadioAccessFamilies supported by the device. + Empty is viewed as "all". Only used on devices which + don't support RIL_REQUEST_GET_RADIO_CAPABILITY + format is UMTS|LTE|... --> + <string translatable="false" name="config_radio_access_family"></string> + </resources> diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 5b564e1..1c0122d 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -946,14 +946,6 @@ <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permlab_accessMockLocation">mock location sources for testing</string> - <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permdesc_accessMockLocation">Create mock location sources for - testing or install a new location provider. This allows the app to - override the location and/or status returned by other location sources - such as GPS or location providers.</string> - - <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permlab_accessLocationExtraCommands">access extra location provider commands</string> <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permdesc_accessLocationExtraCommands">Allows the app to access @@ -1255,6 +1247,9 @@ <!-- Generic error message shown when the fingerprint hardware can't recognize the fingerprint --> <string name="fingerprint_error_unable_to_process">Try again.</string> + <!-- Template to be used to name enrolled fingerprints by default. --> + <string name="fingerprint_name_template">Finger <xliff:g id="fingerId" example="1">%d</xliff:g></string> + <!-- Array containing custom error messages from vendor. Vendor is expected to add and translate these strings --> <string-array name="fingerprint_error_vendor"> </string-array> @@ -2916,18 +2911,20 @@ <!-- USB_STORAGE_ERROR dialog ok button--> <string name="dlg_ok">OK</string> + <!-- USB_PREFERENCES: Notification for when the user connected to the charger only. This is the title --> + <string name="usb_charging_notification_title">USB for charging</string> <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MTP mode. This is the title --> - <string name="usb_mtp_notification_title">Connected as a media device</string> + <string name="usb_mtp_notification_title">USB for file transfer</string> <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in PTP mode. This is the title --> - <string name="usb_ptp_notification_title">Connected as a camera</string> + <string name="usb_ptp_notification_title">USB for photo transfer</string> <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MIDI mode. This is the title --> - <string name="usb_midi_notification_title">Connected as a MIDI device</string> + <string name="usb_midi_notification_title">USB for MIDI</string> <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in mass storage mode (for installer CD image). This is the title --> <string name="usb_cd_installer_notification_title">Connected as an installer</string> <!-- USB_PREFERENCES: Notification for when a USB accessory is attached. This is the title --> <string name="usb_accessory_notification_title">Connected to a USB accessory</string> <!-- See USB_PREFERENCES. This is the message. --> - <string name="usb_notification_message">Touch for other USB options.</string> + <string name="usb_notification_message">Touch for more options.</string> <!-- External media format dialog strings --> <!-- This is the label for the activity, and should never be visible to the user. --> @@ -4031,24 +4028,48 @@ <item quantity="other">For %1$d minutes (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> </plurals> + <!-- Zen mode condition - summary: time duration in minutes (short version). [CHAR LIMIT=NONE] --> + <plurals name="zen_mode_duration_minutes_summary_short"> + <item quantity="one">For 1 min (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> + <item quantity="other">For %1$d min (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> + </plurals> + <!-- Zen mode condition - summary: time duration in hours. [CHAR LIMIT=NONE] --> <plurals name="zen_mode_duration_hours_summary"> <item quantity="one">For one hour (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> <item quantity="other">For %1$d hours (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> </plurals> + <!-- Zen mode condition - summary: time duration in hours (short version). [CHAR LIMIT=NONE] --> + <plurals name="zen_mode_duration_hours_summary_short"> + <item quantity="one">For 1 hr (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> + <item quantity="other">For %1$d hr (until <xliff:g id="formattedTime" example="10:00 PM">%2$s</xliff:g>)</item> + </plurals> + <!-- Zen mode condition - line one: time duration in minutes. [CHAR LIMIT=NONE] --> <plurals name="zen_mode_duration_minutes"> <item quantity="one">For one minute</item> <item quantity="other">For %d minutes</item> </plurals> + <!-- Zen mode condition - line one: time duration in minutes (short version). [CHAR LIMIT=NONE] --> + <plurals name="zen_mode_duration_minutes_short"> + <item quantity="one">For 1 min</item> + <item quantity="other">For %d min</item> + </plurals> + <!-- Zen mode condition - line one: time duration in hours. [CHAR LIMIT=NONE] --> <plurals name="zen_mode_duration_hours"> <item quantity="one">For one hour</item> <item quantity="other">For %d hours</item> </plurals> + <!-- Zen mode condition - line one: time duration in hours (short version). [CHAR LIMIT=NONE] --> + <plurals name="zen_mode_duration_hours_short"> + <item quantity="one">For 1 hr</item> + <item quantity="other">For %d hr</item> + </plurals> + <!-- Zen mode condition - line two: ending time. [CHAR LIMIT=NONE] --> <string name="zen_mode_until">Until <xliff:g id="formattedTime" example="10:00 PM">%1$s</xliff:g></string> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 8f949e1..0d306c6 100755 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -1790,6 +1790,7 @@ <java-symbol type="string" name="usb_accessory_notification_title" /> <java-symbol type="string" name="usb_cd_installer_notification_title" /> <java-symbol type="string" name="usb_mtp_notification_title" /> + <java-symbol type="string" name="usb_charging_notification_title" /> <java-symbol type="string" name="usb_notification_message" /> <java-symbol type="string" name="use_physical_keyboard" /> <java-symbol type="string" name="usb_ptp_notification_title" /> @@ -2060,6 +2061,10 @@ <java-symbol type="plurals" name="zen_mode_duration_hours" /> <java-symbol type="plurals" name="zen_mode_duration_minutes_summary" /> <java-symbol type="plurals" name="zen_mode_duration_hours_summary" /> + <java-symbol type="plurals" name="zen_mode_duration_minutes_short" /> + <java-symbol type="plurals" name="zen_mode_duration_hours_short" /> + <java-symbol type="plurals" name="zen_mode_duration_minutes_summary_short" /> + <java-symbol type="plurals" name="zen_mode_duration_hours_summary_short" /> <java-symbol type="string" name="zen_mode_until" /> <java-symbol type="string" name="zen_mode_feature_name" /> <java-symbol type="string" name="zen_mode_downtime_feature_name" /> @@ -2108,6 +2113,7 @@ <java-symbol type="array" name="fingerprint_acquired_vendor" /> <java-symbol type="string" name="fingerprint_error_canceled" /> <java-symbol type="string" name="fingerprint_error_lockout" /> + <java-symbol type="string" name="fingerprint_name_template" /> <!-- From various Material changes --> <java-symbol type="attr" name="titleTextAppearance" /> @@ -2230,6 +2236,13 @@ <java-symbol type="string" name="storage_usb_drive_label" /> <java-symbol type="string" name="storage_usb" /> + <java-symbol type="drawable" name="ic_eject_24dp" /> + <java-symbol type="drawable" name="ic_folder_24dp" /> + <java-symbol type="drawable" name="ic_sd_card_48dp" /> + <java-symbol type="drawable" name="ic_settings_24dp" /> + <java-symbol type="drawable" name="ic_storage_48dp" /> + <java-symbol type="drawable" name="ic_usb_48dp" /> + <!-- Floating toolbar --> <java-symbol type="layout" name="floating_popup_container" /> <java-symbol type="layout" name="floating_popup_menu_button" /> @@ -2262,4 +2275,6 @@ <java-symbol type="color" name="chooser_service_row_background_color" /> <java-symbol type="id" name="target_badge" /> <java-symbol type="bool" name="config_supportDoubleTapWake" /> + <java-symbol type="drawable" name="ic_perm_device_info" /> + <java-symbol type="string" name="config_radio_access_family" /> </resources> diff --git a/core/tests/coretests/AndroidManifest.xml b/core/tests/coretests/AndroidManifest.xml index b07d338..1043b6f 100644 --- a/core/tests/coretests/AndroidManifest.xml +++ b/core/tests/coretests/AndroidManifest.xml @@ -1117,6 +1117,8 @@ </activity> <activity android:name="android.app.activity.LaunchpadTabActivity" android:multiprocess="true"> </activity> + <activity android:name="com.android.internal.app.WindowDecorActionBarTestActivity"> + </activity> <receiver android:name="android.app.activity.AbortReceiver"> <intent-filter android:priority="1"> diff --git a/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTest.java b/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTest.java new file mode 100644 index 0000000..57881af --- /dev/null +++ b/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTest.java @@ -0,0 +1,98 @@ +/* + * Copyright (C) 2015 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. + */ + +package com.android.internal.app; + +import android.test.ActivityInstrumentationTestCase2; +import android.test.UiThreadTest; +import android.view.ActionMode; +import android.view.Menu; +import android.view.MenuItem; + +/** + * Tests for {@link WindowDecorActionBar}. + */ +public class WindowDecorActionBarTest + extends ActivityInstrumentationTestCase2<WindowDecorActionBarTestActivity> { + private WindowDecorActionBar mWindowDecorActionBar; + private MockActionModeCallback mCallback; + + public WindowDecorActionBarTest() { + super(WindowDecorActionBarTestActivity.class); + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + mWindowDecorActionBar = (WindowDecorActionBar) getActivity().getActionBar(); + mCallback = new MockActionModeCallback(); + } + + @UiThreadTest + public void testStartActionMode() { + ActionMode mode = mWindowDecorActionBar.startActionMode(mCallback); + + assertNotNull(mode); + assertTrue(mCallback.mIsCreateActionModeCalled); + } + + @UiThreadTest + public void testStartActionModeWhenCreateReturnsFalse() { + mCallback.mShouldCreateActionMode = false; + + ActionMode mode = mWindowDecorActionBar.startActionMode(mCallback); + + assertNull(mode); + assertTrue(mCallback.mIsCreateActionModeCalled); + } + + @UiThreadTest + public void testStartActionModeFinishesPreviousMode() { + ActionMode mode1 = mWindowDecorActionBar.startActionMode(mCallback); + ActionMode mode2 = mWindowDecorActionBar.startActionMode(new MockActionModeCallback()); + + assertNotNull(mode1); + assertNotNull(mode2); + assertTrue(mCallback.mIsDestroyActionModeCalled); + } + + private static final class MockActionModeCallback implements ActionMode.Callback { + private boolean mShouldCreateActionMode = true; + private boolean mIsCreateActionModeCalled = false; + private boolean mIsDestroyActionModeCalled = false; + + @Override + public boolean onPrepareActionMode(ActionMode mode, Menu menu) { + return true; + } + + @Override + public void onDestroyActionMode(ActionMode mode) { + mIsDestroyActionModeCalled = true; + } + + @Override + public boolean onCreateActionMode(ActionMode mode, Menu menu) { + mIsCreateActionModeCalled = true; + return mShouldCreateActionMode; + } + + @Override + public boolean onActionItemClicked(ActionMode mode, MenuItem item) { + return false; + } + } +} diff --git a/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTestActivity.java b/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTestActivity.java new file mode 100644 index 0000000..52bb38b --- /dev/null +++ b/core/tests/coretests/src/com/android/internal/app/WindowDecorActionBarTestActivity.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2015 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. + */ + +package com.android.internal.app; + +import android.app.Activity; +import android.os.Bundle; +import android.view.View; +import android.view.Window; + +public class WindowDecorActionBarTestActivity extends Activity { + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + getWindow().requestFeature(Window.FEATURE_ACTION_BAR); + setContentView(new View(this)); + } +} diff --git a/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java b/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java new file mode 100644 index 0000000..4a8e18d --- /dev/null +++ b/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java @@ -0,0 +1,93 @@ +/* + * Copyright (C) 2015 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. + */ + +package com.android.internal.widget; + +import android.content.Context; +import android.test.AndroidTestCase; +import android.view.ActionMode; +import android.view.View; +import android.view.ViewGroup; + +/** + * Tests for {@link ActionBarContainer}. + */ +public class ActionBarContainerTest extends AndroidTestCase { + private ActionBarContainer mActionBarContainer; + + @Override + protected void setUp() throws Exception { + super.setUp(); + mActionBarContainer = new ActionBarContainer(mContext); + } + + public void testPrimaryActionModesAreStopped() { + TestViewGroup viewGroup = new TestViewGroup(mContext); + viewGroup.addView(mActionBarContainer); + + ActionMode mode = mActionBarContainer.startActionModeForChild( + null, null, ActionMode.TYPE_PRIMARY); + + assertNull(mode); + // Should not bubble up. + assertFalse(viewGroup.isStartActionModeForChildTypedCalled); + assertFalse(viewGroup.isStartActionModeForChildTypelessCalled); + + mode = mActionBarContainer.startActionModeForChild(null, null); + + assertNull(mode); + // Should not bubble up. + assertFalse(viewGroup.isStartActionModeForChildTypedCalled); + assertFalse(viewGroup.isStartActionModeForChildTypelessCalled); + } + + public void testFloatingActionModesAreBubbledUp() { + TestViewGroup viewGroup = new TestViewGroup(mContext); + viewGroup.addView(mActionBarContainer); + + ActionMode mode = mActionBarContainer.startActionModeForChild( + null, null, ActionMode.TYPE_FLOATING); + + // Should bubble up. + assertNotNull(mode); + assertTrue(viewGroup.isStartActionModeForChildTypedCalled); + } + + private static class TestViewGroup extends ViewGroup { + boolean isStartActionModeForChildTypedCalled = false; + boolean isStartActionModeForChildTypelessCalled = false; + + public TestViewGroup(Context context) { + super(context); + } + + @Override + public ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback) { + isStartActionModeForChildTypelessCalled = true; + return super.startActionModeForChild(originalView, callback); + } + + @Override + public ActionMode startActionModeForChild( + View originalView, ActionMode.Callback callback, int type) { + isStartActionModeForChildTypedCalled = true; + return super.startActionModeForChild(originalView, callback, type); + } + + @Override + protected void onLayout(boolean changed, int l, int t, int r, int b) {} + } +} |
