emojiSets) {
+ super.onPostExecute(emojiSets);
+ SwitcherActivity.this.emojiSets.clear();
+ SwitcherActivity.this.emojiSets.addAll(emojiSets);
+ emojiSetsAdapter.notifyDataSetChanged();
+ try {
+ FileUtils.write(doneCopyingFile, String.valueOf(finalVersionCode));
+ } catch (IOException e) {
+ Toast.makeText(SwitcherActivity.this, "Error: Writing DC", Toast.LENGTH_LONG).show();
+ e.printStackTrace();
+ }
+ }
+ }.execute(this);
+ }
+ } catch (IOException e) {
+ Toast.makeText(this, "Error: If copy", Toast.LENGTH_LONG).show();
+ e.printStackTrace();
+ }
+ }
+
+ private void setupBilling() {
+ billingHelper = new IabHelper(this, EmojiSwitcherUtils.PLAY_LICENSING_KEY);
+ billingHelper.startSetup(new IabHelper.OnIabSetupFinishedListener() {
+ @Override
+ public void onIabSetupFinished(IabResult result) {
+ if (result.isSuccess()) {
+ checkAds();
+ } else {
+ Log.d("asdf", "Problem setting up in-app billing: " + result);
+ }
+ }
+ });
+ }
+
+ private void checkAds() {
+ List additionalSkuList = new ArrayList();
+ additionalSkuList.add(EmojiSwitcherUtils.SKU_REMOVEADS);
+ billingHelper.queryInventoryAsync(true, additionalSkuList,
+ new IabHelper.QueryInventoryFinishedListener() {
+ @Override
+ public void onQueryInventoryFinished(IabResult result, Inventory inv) {
+ if (result.isSuccess()) {
+ purchasedRemoveAds = inv.hasPurchase(EmojiSwitcherUtils.SKU_REMOVEADS);
+ final View removeAdsButton = findViewById(R.id.button_removeads);
+ if (!purchasedRemoveAds) {
+ AdRequest adRequest = new AdRequest.Builder().build();
+
+ adView = new AdView(SwitcherActivity.this);
+ adView.setAdSize(AdSize.SMART_BANNER);
+ adView.setAdUnitId(EmojiSwitcherUtils.GOOGLE_ADS_UNITID);
+ FrameLayout adHolder = (FrameLayout) findViewById(R.id.holder_ad);
+ adHolder.addView(adView);
+ adView.loadAd(adRequest);
+
+ removeAdsButton.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ billingHelper.launchPurchaseFlow(SwitcherActivity.this,
+ EmojiSwitcherUtils.SKU_REMOVEADS, 0, new IabHelper.OnIabPurchaseFinishedListener() {
+ @Override
+ public void onIabPurchaseFinished(IabResult result, Purchase info) {
+ checkAds();
+ }
+ });
+ }
+ });
+ removeAdsButton.setAlpha(0);
+ removeAdsButton.setVisibility(View.VISIBLE);
+ removeAdsButton.animate().alpha(0.75f);
+ } else {
+ removeAdsButton.animate().alpha(0).withEndAction(new Runnable() {
+ @Override
+ public void run() {
+ removeAdsButton.setVisibility(View.GONE);
+ }
+ });
+ }
+ }
+ }
+ });
+ }
+
+ @Override
+ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+ super.onActivityResult(requestCode, resultCode, data);
+
+ if (billingHelper != null) {
+ billingHelper.handleActivityResult(requestCode, resultCode, data);
+ }
+ }
+
+ @Override
+ public boolean onCreateOptionsMenu(Menu menu) {
+ getMenuInflater().inflate(R.menu.emojiswitcher, menu);
+ return true;
+ }
+
+ @Override
+ public boolean onOptionsItemSelected(MenuItem item) {
+ int id = item.getItemId();
+ if (id == R.id.action_settings) {
+ return true;
+ }
+ return super.onOptionsItemSelected(item);
+ }
+
+ @Override
+ protected void onResume() {
+ super.onResume();
+
+ if (adView != null) adView.resume();
+ }
+
+ @Override
+ protected void onPause() {
+ super.onPause();
+
+ if (adView != null) adView.pause();
+ }
+
+ @Override
+ protected void onDestroy() {
+ super.onDestroy();
+
+ if (billingHelper != null) billingHelper.dispose();
+ billingHelper = null;
+
+ if (adView != null) adView.destroy();
+ }
+}
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64.java
new file mode 100644
index 0000000..53601d0
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64.java
@@ -0,0 +1,570 @@
+// Portions copyright 2002, Google, Inc.
+//
+// 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.stevenschoen.emojiswitcher.billing;
+
+// This code was converted from code at http://iharder.sourceforge.net/base64/
+// Lots of extraneous features were removed.
+/* The original code said:
+ *
+ * I am placing this code in the Public Domain. Do with it as you will.
+ * This software comes with no guarantees or warranties but with
+ * plenty of well-wishing instead!
+ * Please visit
+ * http://iharder.net/xmlizable
+ * periodically to check for updates or to contribute improvements.
+ *
+ *
+ * @author Robert Harder
+ * @author rharder@usa.net
+ * @version 1.3
+ */
+
+/**
+ * Base64 converter class. This code is not a complete MIME encoder;
+ * it simply converts binary data to base64 data and back.
+ *
+ * Note {@link CharBase64} is a GWT-compatible implementation of this
+ * class.
+ */
+public class Base64 {
+ /** Specify encoding (value is {@code true}). */
+ public final static boolean ENCODE = true;
+
+ /** Specify decoding (value is {@code false}). */
+ public final static boolean DECODE = false;
+
+ /** The equals sign (=) as a byte. */
+ private final static byte EQUALS_SIGN = (byte) '=';
+
+ /** The new line character (\n) as a byte. */
+ private final static byte NEW_LINE = (byte) '\n';
+
+ /**
+ * The 64 valid Base64 values.
+ */
+ private final static byte[] ALPHABET =
+ {(byte) 'A', (byte) 'B', (byte) 'C', (byte) 'D', (byte) 'E', (byte) 'F',
+ (byte) 'G', (byte) 'H', (byte) 'I', (byte) 'J', (byte) 'K',
+ (byte) 'L', (byte) 'M', (byte) 'N', (byte) 'O', (byte) 'P',
+ (byte) 'Q', (byte) 'R', (byte) 'S', (byte) 'T', (byte) 'U',
+ (byte) 'V', (byte) 'W', (byte) 'X', (byte) 'Y', (byte) 'Z',
+ (byte) 'a', (byte) 'b', (byte) 'c', (byte) 'd', (byte) 'e',
+ (byte) 'f', (byte) 'g', (byte) 'h', (byte) 'i', (byte) 'j',
+ (byte) 'k', (byte) 'l', (byte) 'm', (byte) 'n', (byte) 'o',
+ (byte) 'p', (byte) 'q', (byte) 'r', (byte) 's', (byte) 't',
+ (byte) 'u', (byte) 'v', (byte) 'w', (byte) 'x', (byte) 'y',
+ (byte) 'z', (byte) '0', (byte) '1', (byte) '2', (byte) '3',
+ (byte) '4', (byte) '5', (byte) '6', (byte) '7', (byte) '8',
+ (byte) '9', (byte) '+', (byte) '/'};
+
+ /**
+ * The 64 valid web safe Base64 values.
+ */
+ private final static byte[] WEBSAFE_ALPHABET =
+ {(byte) 'A', (byte) 'B', (byte) 'C', (byte) 'D', (byte) 'E', (byte) 'F',
+ (byte) 'G', (byte) 'H', (byte) 'I', (byte) 'J', (byte) 'K',
+ (byte) 'L', (byte) 'M', (byte) 'N', (byte) 'O', (byte) 'P',
+ (byte) 'Q', (byte) 'R', (byte) 'S', (byte) 'T', (byte) 'U',
+ (byte) 'V', (byte) 'W', (byte) 'X', (byte) 'Y', (byte) 'Z',
+ (byte) 'a', (byte) 'b', (byte) 'c', (byte) 'd', (byte) 'e',
+ (byte) 'f', (byte) 'g', (byte) 'h', (byte) 'i', (byte) 'j',
+ (byte) 'k', (byte) 'l', (byte) 'm', (byte) 'n', (byte) 'o',
+ (byte) 'p', (byte) 'q', (byte) 'r', (byte) 's', (byte) 't',
+ (byte) 'u', (byte) 'v', (byte) 'w', (byte) 'x', (byte) 'y',
+ (byte) 'z', (byte) '0', (byte) '1', (byte) '2', (byte) '3',
+ (byte) '4', (byte) '5', (byte) '6', (byte) '7', (byte) '8',
+ (byte) '9', (byte) '-', (byte) '_'};
+
+ /**
+ * Translates a Base64 value to either its 6-bit reconstruction value
+ * or a negative number indicating some other meaning.
+ **/
+ private final static byte[] DECODABET = {-9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 0 - 8
+ -5, -5, // Whitespace: Tab and Linefeed
+ -9, -9, // Decimal 11 - 12
+ -5, // Whitespace: Carriage Return
+ -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 14 - 26
+ -9, -9, -9, -9, -9, // Decimal 27 - 31
+ -5, // Whitespace: Space
+ -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 33 - 42
+ 62, // Plus sign at decimal 43
+ -9, -9, -9, // Decimal 44 - 46
+ 63, // Slash at decimal 47
+ 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, // Numbers zero through nine
+ -9, -9, -9, // Decimal 58 - 60
+ -1, // Equals sign at decimal 61
+ -9, -9, -9, // Decimal 62 - 64
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, // Letters 'A' through 'N'
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, // Letters 'O' through 'Z'
+ -9, -9, -9, -9, -9, -9, // Decimal 91 - 96
+ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, // Letters 'a' through 'm'
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, // Letters 'n' through 'z'
+ -9, -9, -9, -9, -9 // Decimal 123 - 127
+ /* ,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 128 - 139
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 140 - 152
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 153 - 165
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 166 - 178
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 179 - 191
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 192 - 204
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 205 - 217
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 218 - 230
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 231 - 243
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9 // Decimal 244 - 255 */
+ };
+
+ /** The web safe decodabet */
+ private final static byte[] WEBSAFE_DECODABET =
+ {-9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 0 - 8
+ -5, -5, // Whitespace: Tab and Linefeed
+ -9, -9, // Decimal 11 - 12
+ -5, // Whitespace: Carriage Return
+ -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 14 - 26
+ -9, -9, -9, -9, -9, // Decimal 27 - 31
+ -5, // Whitespace: Space
+ -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, -9, // Decimal 33 - 44
+ 62, // Dash '-' sign at decimal 45
+ -9, -9, // Decimal 46-47
+ 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, // Numbers zero through nine
+ -9, -9, -9, // Decimal 58 - 60
+ -1, // Equals sign at decimal 61
+ -9, -9, -9, // Decimal 62 - 64
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, // Letters 'A' through 'N'
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, // Letters 'O' through 'Z'
+ -9, -9, -9, -9, // Decimal 91-94
+ 63, // Underscore '_' at decimal 95
+ -9, // Decimal 96
+ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, // Letters 'a' through 'm'
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, // Letters 'n' through 'z'
+ -9, -9, -9, -9, -9 // Decimal 123 - 127
+ /* ,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 128 - 139
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 140 - 152
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 153 - 165
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 166 - 178
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 179 - 191
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 192 - 204
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 205 - 217
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 218 - 230
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9, // Decimal 231 - 243
+ -9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9 // Decimal 244 - 255 */
+ };
+
+ // Indicates white space in encoding
+ private final static byte WHITE_SPACE_ENC = -5;
+ // Indicates equals sign in encoding
+ private final static byte EQUALS_SIGN_ENC = -1;
+
+ /** Defeats instantiation. */
+ private Base64() {
+ }
+
+ /* ******** E N C O D I N G M E T H O D S ******** */
+
+ /**
+ * Encodes up to three bytes of the array source
+ * and writes the resulting four Base64 bytes to destination .
+ * The source and destination arrays can be manipulated
+ * anywhere along their length by specifying
+ * srcOffset and destOffset .
+ * This method does not check to make sure your arrays
+ * are large enough to accommodate srcOffset + 3 for
+ * the source array or destOffset + 4 for
+ * the destination array.
+ * The actual number of significant bytes in your array is
+ * given by numSigBytes .
+ *
+ * @param source the array to convert
+ * @param srcOffset the index where conversion begins
+ * @param numSigBytes the number of significant bytes in your array
+ * @param destination the array to hold the conversion
+ * @param destOffset the index where output will be put
+ * @param alphabet is the encoding alphabet
+ * @return the destination array
+ * @since 1.3
+ */
+ private static byte[] encode3to4(byte[] source, int srcOffset,
+ int numSigBytes, byte[] destination, int destOffset, byte[] alphabet) {
+ // 1 2 3
+ // 01234567890123456789012345678901 Bit position
+ // --------000000001111111122222222 Array position from threeBytes
+ // --------| || || || | Six bit groups to index alphabet
+ // >>18 >>12 >> 6 >> 0 Right shift necessary
+ // 0x3f 0x3f 0x3f Additional AND
+
+ // Create buffer with zero-padding if there are only one or two
+ // significant bytes passed in the array.
+ // We have to shift left 24 in order to flush out the 1's that appear
+ // when Java treats a value as negative that is cast from a byte to an int.
+ int inBuff =
+ (numSigBytes > 0 ? ((source[srcOffset] << 24) >>> 8) : 0)
+ | (numSigBytes > 1 ? ((source[srcOffset + 1] << 24) >>> 16) : 0)
+ | (numSigBytes > 2 ? ((source[srcOffset + 2] << 24) >>> 24) : 0);
+
+ switch (numSigBytes) {
+ case 3:
+ destination[destOffset] = alphabet[(inBuff >>> 18)];
+ destination[destOffset + 1] = alphabet[(inBuff >>> 12) & 0x3f];
+ destination[destOffset + 2] = alphabet[(inBuff >>> 6) & 0x3f];
+ destination[destOffset + 3] = alphabet[(inBuff) & 0x3f];
+ return destination;
+ case 2:
+ destination[destOffset] = alphabet[(inBuff >>> 18)];
+ destination[destOffset + 1] = alphabet[(inBuff >>> 12) & 0x3f];
+ destination[destOffset + 2] = alphabet[(inBuff >>> 6) & 0x3f];
+ destination[destOffset + 3] = EQUALS_SIGN;
+ return destination;
+ case 1:
+ destination[destOffset] = alphabet[(inBuff >>> 18)];
+ destination[destOffset + 1] = alphabet[(inBuff >>> 12) & 0x3f];
+ destination[destOffset + 2] = EQUALS_SIGN;
+ destination[destOffset + 3] = EQUALS_SIGN;
+ return destination;
+ default:
+ return destination;
+ } // end switch
+ } // end encode3to4
+
+ /**
+ * Encodes a byte array into Base64 notation.
+ * Equivalent to calling
+ * {@code encodeBytes(source, 0, source.length)}
+ *
+ * @param source The data to convert
+ * @since 1.4
+ */
+ public static String encode(byte[] source) {
+ return encode(source, 0, source.length, ALPHABET, true);
+ }
+
+ /**
+ * Encodes a byte array into web safe Base64 notation.
+ *
+ * @param source The data to convert
+ * @param doPadding is {@code true} to pad result with '=' chars
+ * if it does not fall on 3 byte boundaries
+ */
+ public static String encodeWebSafe(byte[] source, boolean doPadding) {
+ return encode(source, 0, source.length, WEBSAFE_ALPHABET, doPadding);
+ }
+
+ /**
+ * Encodes a byte array into Base64 notation.
+ *
+ * @param source the data to convert
+ * @param off offset in array where conversion should begin
+ * @param len length of data to convert
+ * @param alphabet the encoding alphabet
+ * @param doPadding is {@code true} to pad result with '=' chars
+ * if it does not fall on 3 byte boundaries
+ * @since 1.4
+ */
+ public static String encode(byte[] source, int off, int len, byte[] alphabet,
+ boolean doPadding) {
+ byte[] outBuff = encode(source, off, len, alphabet, Integer.MAX_VALUE);
+ int outLen = outBuff.length;
+
+ // If doPadding is false, set length to truncate '='
+ // padding characters
+ while (doPadding == false && outLen > 0) {
+ if (outBuff[outLen - 1] != '=') {
+ break;
+ }
+ outLen -= 1;
+ }
+
+ return new String(outBuff, 0, outLen);
+ }
+
+ /**
+ * Encodes a byte array into Base64 notation.
+ *
+ * @param source the data to convert
+ * @param off offset in array where conversion should begin
+ * @param len length of data to convert
+ * @param alphabet is the encoding alphabet
+ * @param maxLineLength maximum length of one line.
+ * @return the BASE64-encoded byte array
+ */
+ public static byte[] encode(byte[] source, int off, int len, byte[] alphabet,
+ int maxLineLength) {
+ int lenDiv3 = (len + 2) / 3; // ceil(len / 3)
+ int len43 = lenDiv3 * 4;
+ byte[] outBuff = new byte[len43 // Main 4:3
+ + (len43 / maxLineLength)]; // New lines
+
+ int d = 0;
+ int e = 0;
+ int len2 = len - 2;
+ int lineLength = 0;
+ for (; d < len2; d += 3, e += 4) {
+
+ // The following block of code is the same as
+ // encode3to4( source, d + off, 3, outBuff, e, alphabet );
+ // but inlined for faster encoding (~20% improvement)
+ int inBuff =
+ ((source[d + off] << 24) >>> 8)
+ | ((source[d + 1 + off] << 24) >>> 16)
+ | ((source[d + 2 + off] << 24) >>> 24);
+ outBuff[e] = alphabet[(inBuff >>> 18)];
+ outBuff[e + 1] = alphabet[(inBuff >>> 12) & 0x3f];
+ outBuff[e + 2] = alphabet[(inBuff >>> 6) & 0x3f];
+ outBuff[e + 3] = alphabet[(inBuff) & 0x3f];
+
+ lineLength += 4;
+ if (lineLength == maxLineLength) {
+ outBuff[e + 4] = NEW_LINE;
+ e++;
+ lineLength = 0;
+ } // end if: end of line
+ } // end for: each piece of array
+
+ if (d < len) {
+ encode3to4(source, d + off, len - d, outBuff, e, alphabet);
+
+ lineLength += 4;
+ if (lineLength == maxLineLength) {
+ // Add a last newline
+ outBuff[e + 4] = NEW_LINE;
+ e++;
+ }
+ e += 4;
+ }
+
+ assert (e == outBuff.length);
+ return outBuff;
+ }
+
+
+ /* ******** D E C O D I N G M E T H O D S ******** */
+
+
+ /**
+ * Decodes four bytes from array source
+ * and writes the resulting bytes (up to three of them)
+ * to destination .
+ * The source and destination arrays can be manipulated
+ * anywhere along their length by specifying
+ * srcOffset and destOffset .
+ * This method does not check to make sure your arrays
+ * are large enough to accommodate srcOffset + 4 for
+ * the source array or destOffset + 3 for
+ * the destination array.
+ * This method returns the actual number of bytes that
+ * were converted from the Base64 encoding.
+ *
+ *
+ * @param source the array to convert
+ * @param srcOffset the index where conversion begins
+ * @param destination the array to hold the conversion
+ * @param destOffset the index where output will be put
+ * @param decodabet the decodabet for decoding Base64 content
+ * @return the number of decoded bytes converted
+ * @since 1.3
+ */
+ private static int decode4to3(byte[] source, int srcOffset,
+ byte[] destination, int destOffset, byte[] decodabet) {
+ // Example: Dk==
+ if (source[srcOffset + 2] == EQUALS_SIGN) {
+ int outBuff =
+ ((decodabet[source[srcOffset]] << 24) >>> 6)
+ | ((decodabet[source[srcOffset + 1]] << 24) >>> 12);
+
+ destination[destOffset] = (byte) (outBuff >>> 16);
+ return 1;
+ } else if (source[srcOffset + 3] == EQUALS_SIGN) {
+ // Example: DkL=
+ int outBuff =
+ ((decodabet[source[srcOffset]] << 24) >>> 6)
+ | ((decodabet[source[srcOffset + 1]] << 24) >>> 12)
+ | ((decodabet[source[srcOffset + 2]] << 24) >>> 18);
+
+ destination[destOffset] = (byte) (outBuff >>> 16);
+ destination[destOffset + 1] = (byte) (outBuff >>> 8);
+ return 2;
+ } else {
+ // Example: DkLE
+ int outBuff =
+ ((decodabet[source[srcOffset]] << 24) >>> 6)
+ | ((decodabet[source[srcOffset + 1]] << 24) >>> 12)
+ | ((decodabet[source[srcOffset + 2]] << 24) >>> 18)
+ | ((decodabet[source[srcOffset + 3]] << 24) >>> 24);
+
+ destination[destOffset] = (byte) (outBuff >> 16);
+ destination[destOffset + 1] = (byte) (outBuff >> 8);
+ destination[destOffset + 2] = (byte) (outBuff);
+ return 3;
+ }
+ } // end decodeToBytes
+
+
+ /**
+ * Decodes data from Base64 notation.
+ *
+ * @param s the string to decode (decoded in default encoding)
+ * @return the decoded data
+ * @since 1.4
+ */
+ public static byte[] decode(String s) throws Base64DecoderException {
+ byte[] bytes = s.getBytes();
+ return decode(bytes, 0, bytes.length);
+ }
+
+ /**
+ * Decodes data from web safe Base64 notation.
+ * Web safe encoding uses '-' instead of '+', '_' instead of '/'
+ *
+ * @param s the string to decode (decoded in default encoding)
+ * @return the decoded data
+ */
+ public static byte[] decodeWebSafe(String s) throws Base64DecoderException {
+ byte[] bytes = s.getBytes();
+ return decodeWebSafe(bytes, 0, bytes.length);
+ }
+
+ /**
+ * Decodes Base64 content in byte array format and returns
+ * the decoded byte array.
+ *
+ * @param source The Base64 encoded data
+ * @return decoded data
+ * @since 1.3
+ * @throws Base64DecoderException
+ */
+ public static byte[] decode(byte[] source) throws Base64DecoderException {
+ return decode(source, 0, source.length);
+ }
+
+ /**
+ * Decodes web safe Base64 content in byte array format and returns
+ * the decoded data.
+ * Web safe encoding uses '-' instead of '+', '_' instead of '/'
+ *
+ * @param source the string to decode (decoded in default encoding)
+ * @return the decoded data
+ */
+ public static byte[] decodeWebSafe(byte[] source)
+ throws Base64DecoderException {
+ return decodeWebSafe(source, 0, source.length);
+ }
+
+ /**
+ * Decodes Base64 content in byte array format and returns
+ * the decoded byte array.
+ *
+ * @param source the Base64 encoded data
+ * @param off the offset of where to begin decoding
+ * @param len the length of characters to decode
+ * @return decoded data
+ * @since 1.3
+ * @throws Base64DecoderException
+ */
+ public static byte[] decode(byte[] source, int off, int len)
+ throws Base64DecoderException {
+ return decode(source, off, len, DECODABET);
+ }
+
+ /**
+ * Decodes web safe Base64 content in byte array format and returns
+ * the decoded byte array.
+ * Web safe encoding uses '-' instead of '+', '_' instead of '/'
+ *
+ * @param source the Base64 encoded data
+ * @param off the offset of where to begin decoding
+ * @param len the length of characters to decode
+ * @return decoded data
+ */
+ public static byte[] decodeWebSafe(byte[] source, int off, int len)
+ throws Base64DecoderException {
+ return decode(source, off, len, WEBSAFE_DECODABET);
+ }
+
+ /**
+ * Decodes Base64 content using the supplied decodabet and returns
+ * the decoded byte array.
+ *
+ * @param source the Base64 encoded data
+ * @param off the offset of where to begin decoding
+ * @param len the length of characters to decode
+ * @param decodabet the decodabet for decoding Base64 content
+ * @return decoded data
+ */
+ public static byte[] decode(byte[] source, int off, int len, byte[] decodabet)
+ throws Base64DecoderException {
+ int len34 = len * 3 / 4;
+ byte[] outBuff = new byte[2 + len34]; // Upper limit on size of output
+ int outBuffPosn = 0;
+
+ byte[] b4 = new byte[4];
+ int b4Posn = 0;
+ int i = 0;
+ byte sbiCrop = 0;
+ byte sbiDecode = 0;
+ for (i = 0; i < len; i++) {
+ sbiCrop = (byte) (source[i + off] & 0x7f); // Only the low seven bits
+ sbiDecode = decodabet[sbiCrop];
+
+ if (sbiDecode >= WHITE_SPACE_ENC) { // White space Equals sign or better
+ if (sbiDecode >= EQUALS_SIGN_ENC) {
+ // An equals sign (for padding) must not occur at position 0 or 1
+ // and must be the last byte[s] in the encoded value
+ if (sbiCrop == EQUALS_SIGN) {
+ int bytesLeft = len - i;
+ byte lastByte = (byte) (source[len - 1 + off] & 0x7f);
+ if (b4Posn == 0 || b4Posn == 1) {
+ throw new Base64DecoderException(
+ "invalid padding byte '=' at byte offset " + i);
+ } else if ((b4Posn == 3 && bytesLeft > 2)
+ || (b4Posn == 4 && bytesLeft > 1)) {
+ throw new Base64DecoderException(
+ "padding byte '=' falsely signals end of encoded value "
+ + "at offset " + i);
+ } else if (lastByte != EQUALS_SIGN && lastByte != NEW_LINE) {
+ throw new Base64DecoderException(
+ "encoded value has invalid trailing byte");
+ }
+ break;
+ }
+
+ b4[b4Posn++] = sbiCrop;
+ if (b4Posn == 4) {
+ outBuffPosn += decode4to3(b4, 0, outBuff, outBuffPosn, decodabet);
+ b4Posn = 0;
+ }
+ }
+ } else {
+ throw new Base64DecoderException("Bad Base64 input character at " + i
+ + ": " + source[i + off] + "(decimal)");
+ }
+ }
+
+ // Because web safe encoding allows non padding base64 encodes, we
+ // need to pad the rest of the b4 buffer with equal signs when
+ // b4Posn != 0. There can be at most 2 equal signs at the end of
+ // four characters, so the b4 buffer must have two or three
+ // characters. This also catches the case where the input is
+ // padded with EQUALS_SIGN
+ if (b4Posn != 0) {
+ if (b4Posn == 1) {
+ throw new Base64DecoderException("single trailing character at offset "
+ + (len - 1));
+ }
+ b4[b4Posn++] = EQUALS_SIGN;
+ outBuffPosn += decode4to3(b4, 0, outBuff, outBuffPosn, decodabet);
+ }
+
+ byte[] out = new byte[outBuffPosn];
+ System.arraycopy(outBuff, 0, out, 0, outBuffPosn);
+ return out;
+ }
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64DecoderException.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64DecoderException.java
new file mode 100644
index 0000000..90efc04
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Base64DecoderException.java
@@ -0,0 +1,32 @@
+// Copyright 2002, Google, Inc.
+//
+// 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.stevenschoen.emojiswitcher.billing;
+
+/**
+ * Exception thrown when encountering an invalid Base64 input character.
+ *
+ * @author nelson
+ */
+public class Base64DecoderException extends Exception {
+ public Base64DecoderException() {
+ super();
+ }
+
+ public Base64DecoderException(String s) {
+ super(s);
+ }
+
+ private static final long serialVersionUID = 1L;
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabException.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabException.java
new file mode 100644
index 0000000..1cd1e70
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabException.java
@@ -0,0 +1,43 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+/**
+ * Exception thrown when something went wrong with in-app billing.
+ * An IabException has an associated IabResult (an error).
+ * To get the IAB result that caused this exception to be thrown,
+ * call {@link #getResult()}.
+ */
+public class IabException extends Exception {
+ IabResult mResult;
+
+ public IabException(IabResult r) {
+ this(r, null);
+ }
+ public IabException(int response, String message) {
+ this(new IabResult(response, message));
+ }
+ public IabException(IabResult r, Exception cause) {
+ super(r.getMessage(), cause);
+ mResult = r;
+ }
+ public IabException(int response, String message, Exception cause) {
+ this(new IabResult(response, message), cause);
+ }
+
+ /** Returns the IAB result (error) that this exception signals. */
+ public IabResult getResult() { return mResult; }
+}
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabHelper.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabHelper.java
new file mode 100644
index 0000000..7573262
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabHelper.java
@@ -0,0 +1,991 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+import android.app.Activity;
+import android.app.PendingIntent;
+import android.content.ComponentName;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentSender.SendIntentException;
+import android.content.ServiceConnection;
+import android.os.Bundle;
+import android.os.Handler;
+import android.os.IBinder;
+import android.os.RemoteException;
+import android.text.TextUtils;
+import android.util.Log;
+
+import com.android.vending.billing.IInAppBillingService;
+
+import org.json.JSONException;
+
+import java.util.ArrayList;
+import java.util.List;
+
+
+/**
+ * Provides convenience methods for in-app billing. You can create one instance of this
+ * class for your application and use it to process in-app billing operations.
+ * It provides synchronous (blocking) and asynchronous (non-blocking) methods for
+ * many common in-app billing operations, as well as automatic signature
+ * verification.
+ *
+ * After instantiating, you must perform setup in order to start using the object.
+ * To perform setup, call the {@link #startSetup} method and provide a listener;
+ * that listener will be notified when setup is complete, after which (and not before)
+ * you may call other methods.
+ *
+ * After setup is complete, you will typically want to request an inventory of owned
+ * items and subscriptions. See {@link #queryInventory}, {@link #queryInventoryAsync}
+ * and related methods.
+ *
+ * When you are done with this object, don't forget to call {@link #dispose}
+ * to ensure proper cleanup. This object holds a binding to the in-app billing
+ * service, which will leak unless you dispose of it correctly. If you created
+ * the object on an Activity's onCreate method, then the recommended
+ * place to dispose of it is the Activity's onDestroy method.
+ *
+ * A note about threading: When using this object from a background thread, you may
+ * call the blocking versions of methods; when using from a UI thread, call
+ * only the asynchronous versions and handle the results via callbacks.
+ * Also, notice that you can only call one asynchronous operation at a time;
+ * attempting to start a second asynchronous operation while the first one
+ * has not yet completed will result in an exception being thrown.
+ *
+ * @author Bruno Oliveira (Google)
+ *
+ */
+public class IabHelper {
+ // Is debug logging enabled?
+ boolean mDebugLog = false;
+ String mDebugTag = "IabHelper";
+
+ // Is setup done?
+ boolean mSetupDone = false;
+
+ // Has this object been disposed of? (If so, we should ignore callbacks, etc)
+ boolean mDisposed = false;
+
+ // Are subscriptions supported?
+ boolean mSubscriptionsSupported = false;
+
+ // Is an asynchronous operation in progress?
+ // (only one at a time can be in progress)
+ boolean mAsyncInProgress = false;
+
+ // (for logging/debugging)
+ // if mAsyncInProgress == true, what asynchronous operation is in progress?
+ String mAsyncOperation = "";
+
+ // Context we were passed during initialization
+ Context mContext;
+
+ // Connection to the service
+ IInAppBillingService mService;
+ ServiceConnection mServiceConn;
+
+ // The request code used to launch purchase flow
+ int mRequestCode;
+
+ // The item type of the current purchase flow
+ String mPurchasingItemType;
+
+ // Public key for verifying signature, in base64 encoding
+ String mSignatureBase64 = null;
+
+ // Billing response codes
+ public static final int BILLING_RESPONSE_RESULT_OK = 0;
+ public static final int BILLING_RESPONSE_RESULT_USER_CANCELED = 1;
+ public static final int BILLING_RESPONSE_RESULT_BILLING_UNAVAILABLE = 3;
+ public static final int BILLING_RESPONSE_RESULT_ITEM_UNAVAILABLE = 4;
+ public static final int BILLING_RESPONSE_RESULT_DEVELOPER_ERROR = 5;
+ public static final int BILLING_RESPONSE_RESULT_ERROR = 6;
+ public static final int BILLING_RESPONSE_RESULT_ITEM_ALREADY_OWNED = 7;
+ public static final int BILLING_RESPONSE_RESULT_ITEM_NOT_OWNED = 8;
+
+ // IAB Helper error codes
+ public static final int IABHELPER_ERROR_BASE = -1000;
+ public static final int IABHELPER_REMOTE_EXCEPTION = -1001;
+ public static final int IABHELPER_BAD_RESPONSE = -1002;
+ public static final int IABHELPER_VERIFICATION_FAILED = -1003;
+ public static final int IABHELPER_SEND_INTENT_FAILED = -1004;
+ public static final int IABHELPER_USER_CANCELLED = -1005;
+ public static final int IABHELPER_UNKNOWN_PURCHASE_RESPONSE = -1006;
+ public static final int IABHELPER_MISSING_TOKEN = -1007;
+ public static final int IABHELPER_UNKNOWN_ERROR = -1008;
+ public static final int IABHELPER_SUBSCRIPTIONS_NOT_AVAILABLE = -1009;
+ public static final int IABHELPER_INVALID_CONSUMPTION = -1010;
+
+ // Keys for the responses from InAppBillingService
+ public static final String RESPONSE_CODE = "RESPONSE_CODE";
+ public static final String RESPONSE_GET_SKU_DETAILS_LIST = "DETAILS_LIST";
+ public static final String RESPONSE_BUY_INTENT = "BUY_INTENT";
+ public static final String RESPONSE_INAPP_PURCHASE_DATA = "INAPP_PURCHASE_DATA";
+ public static final String RESPONSE_INAPP_SIGNATURE = "INAPP_DATA_SIGNATURE";
+ public static final String RESPONSE_INAPP_ITEM_LIST = "INAPP_PURCHASE_ITEM_LIST";
+ public static final String RESPONSE_INAPP_PURCHASE_DATA_LIST = "INAPP_PURCHASE_DATA_LIST";
+ public static final String RESPONSE_INAPP_SIGNATURE_LIST = "INAPP_DATA_SIGNATURE_LIST";
+ public static final String INAPP_CONTINUATION_TOKEN = "INAPP_CONTINUATION_TOKEN";
+
+ // Item types
+ public static final String ITEM_TYPE_INAPP = "inapp";
+ public static final String ITEM_TYPE_SUBS = "subs";
+
+ // some fields on the getSkuDetails response bundle
+ public static final String GET_SKU_DETAILS_ITEM_LIST = "ITEM_ID_LIST";
+ public static final String GET_SKU_DETAILS_ITEM_TYPE_LIST = "ITEM_TYPE_LIST";
+
+ /**
+ * Creates an instance. After creation, it will not yet be ready to use. You must perform
+ * setup by calling {@link #startSetup} and wait for setup to complete. This constructor does not
+ * block and is safe to call from a UI thread.
+ *
+ * @param ctx Your application or Activity context. Needed to bind to the in-app billing service.
+ * @param base64PublicKey Your application's public key, encoded in base64.
+ * This is used for verification of purchase signatures. You can find your app's base64-encoded
+ * public key in your application's page on Google Play Developer Console. Note that this
+ * is NOT your "developer public key".
+ */
+ public IabHelper(Context ctx, String base64PublicKey) {
+ mContext = ctx.getApplicationContext();
+ mSignatureBase64 = base64PublicKey;
+ logDebug("IAB helper created.");
+ }
+
+ /**
+ * Enables or disable debug logging through LogCat.
+ */
+ public void enableDebugLogging(boolean enable, String tag) {
+ checkNotDisposed();
+ mDebugLog = enable;
+ mDebugTag = tag;
+ }
+
+ public void enableDebugLogging(boolean enable) {
+ checkNotDisposed();
+ mDebugLog = enable;
+ }
+
+ /**
+ * Callback for setup process. This listener's {@link #onIabSetupFinished} method is called
+ * when the setup process is complete.
+ */
+ public interface OnIabSetupFinishedListener {
+ /**
+ * Called to notify that setup is complete.
+ *
+ * @param result The result of the setup process.
+ */
+ public void onIabSetupFinished(IabResult result);
+ }
+
+ /**
+ * Starts the setup process. This will start up the setup process asynchronously.
+ * You will be notified through the listener when the setup process is complete.
+ * This method is safe to call from a UI thread.
+ *
+ * @param listener The listener to notify when the setup process is complete.
+ */
+ public void startSetup(final OnIabSetupFinishedListener listener) {
+ // If already set up, can't do it again.
+ checkNotDisposed();
+ if (mSetupDone) throw new IllegalStateException("IAB helper is already set up.");
+
+ // Connection to IAB service
+ logDebug("Starting in-app billing setup.");
+ mServiceConn = new ServiceConnection() {
+ @Override
+ public void onServiceDisconnected(ComponentName name) {
+ logDebug("Billing service disconnected.");
+ mService = null;
+ }
+
+ @Override
+ public void onServiceConnected(ComponentName name, IBinder service) {
+ if (mDisposed) return;
+ logDebug("Billing service connected.");
+ mService = IInAppBillingService.Stub.asInterface(service);
+ String packageName = mContext.getPackageName();
+ try {
+ logDebug("Checking for in-app billing 3 support.");
+
+ // check for in-app billing v3 support
+ int response = mService.isBillingSupported(3, packageName, ITEM_TYPE_INAPP);
+ if (response != BILLING_RESPONSE_RESULT_OK) {
+ if (listener != null) listener.onIabSetupFinished(new IabResult(response,
+ "Error checking for billing v3 support."));
+
+ // if in-app purchases aren't supported, neither are subscriptions.
+ mSubscriptionsSupported = false;
+ return;
+ }
+ logDebug("In-app billing version 3 supported for " + packageName);
+
+ // check for v3 subscriptions support
+ response = mService.isBillingSupported(3, packageName, ITEM_TYPE_SUBS);
+ if (response == BILLING_RESPONSE_RESULT_OK) {
+ logDebug("Subscriptions AVAILABLE.");
+ mSubscriptionsSupported = true;
+ }
+ else {
+ logDebug("Subscriptions NOT AVAILABLE. Response: " + response);
+ }
+
+ mSetupDone = true;
+ }
+ catch (RemoteException e) {
+ if (listener != null) {
+ listener.onIabSetupFinished(new IabResult(IABHELPER_REMOTE_EXCEPTION,
+ "RemoteException while setting up in-app billing."));
+ }
+ e.printStackTrace();
+ return;
+ }
+
+ if (listener != null) {
+ listener.onIabSetupFinished(new IabResult(BILLING_RESPONSE_RESULT_OK, "Setup successful."));
+ }
+ }
+ };
+
+ Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
+ serviceIntent.setPackage("com.android.vending");
+ if (!mContext.getPackageManager().queryIntentServices(serviceIntent, 0).isEmpty()) {
+ // service available to handle that Intent
+ mContext.bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);
+ }
+ else {
+ // no service available to handle that Intent
+ if (listener != null) {
+ listener.onIabSetupFinished(
+ new IabResult(BILLING_RESPONSE_RESULT_BILLING_UNAVAILABLE,
+ "Billing service unavailable on device."));
+ }
+ }
+ }
+
+ /**
+ * Dispose of object, releasing resources. It's very important to call this
+ * method when you are done with this object. It will release any resources
+ * used by it such as service connections. Naturally, once the object is
+ * disposed of, it can't be used again.
+ */
+ public void dispose() {
+ logDebug("Disposing.");
+ mSetupDone = false;
+ if (mServiceConn != null) {
+ logDebug("Unbinding from service.");
+ if (mContext != null) mContext.unbindService(mServiceConn);
+ }
+ mDisposed = true;
+ mContext = null;
+ mServiceConn = null;
+ mService = null;
+ mPurchaseListener = null;
+ }
+
+ private void checkNotDisposed() {
+ if (mDisposed) throw new IllegalStateException("IabHelper was disposed of, so it cannot be used.");
+ }
+
+ /** Returns whether subscriptions are supported. */
+ public boolean subscriptionsSupported() {
+ checkNotDisposed();
+ return mSubscriptionsSupported;
+ }
+
+
+ /**
+ * Callback that notifies when a purchase is finished.
+ */
+ public interface OnIabPurchaseFinishedListener {
+ /**
+ * Called to notify that an in-app purchase finished. If the purchase was successful,
+ * then the sku parameter specifies which item was purchased. If the purchase failed,
+ * the sku and extraData parameters may or may not be null, depending on how far the purchase
+ * process went.
+ *
+ * @param result The result of the purchase.
+ * @param info The purchase information (null if purchase failed)
+ */
+ public void onIabPurchaseFinished(IabResult result, Purchase info);
+ }
+
+ // The listener registered on launchPurchaseFlow, which we have to call back when
+ // the purchase finishes
+ OnIabPurchaseFinishedListener mPurchaseListener;
+
+ public void launchPurchaseFlow(Activity act, String sku, int requestCode, OnIabPurchaseFinishedListener listener) {
+ launchPurchaseFlow(act, sku, requestCode, listener, "");
+ }
+
+ public void launchPurchaseFlow(Activity act, String sku, int requestCode,
+ OnIabPurchaseFinishedListener listener, String extraData) {
+ launchPurchaseFlow(act, sku, ITEM_TYPE_INAPP, requestCode, listener, extraData);
+ }
+
+ public void launchSubscriptionPurchaseFlow(Activity act, String sku, int requestCode,
+ OnIabPurchaseFinishedListener listener) {
+ launchSubscriptionPurchaseFlow(act, sku, requestCode, listener, "");
+ }
+
+ public void launchSubscriptionPurchaseFlow(Activity act, String sku, int requestCode,
+ OnIabPurchaseFinishedListener listener, String extraData) {
+ launchPurchaseFlow(act, sku, ITEM_TYPE_SUBS, requestCode, listener, extraData);
+ }
+
+ /**
+ * Initiate the UI flow for an in-app purchase. Call this method to initiate an in-app purchase,
+ * which will involve bringing up the Google Play screen. The calling activity will be paused while
+ * the user interacts with Google Play, and the result will be delivered via the activity's
+ * {@link android.app.Activity#onActivityResult} method, at which point you must call
+ * this object's {@link #handleActivityResult} method to continue the purchase flow. This method
+ * MUST be called from the UI thread of the Activity.
+ *
+ * @param act The calling activity.
+ * @param sku The sku of the item to purchase.
+ * @param itemType indicates if it's a product or a subscription (ITEM_TYPE_INAPP or ITEM_TYPE_SUBS)
+ * @param requestCode A request code (to differentiate from other responses --
+ * as in {@link android.app.Activity#startActivityForResult}).
+ * @param listener The listener to notify when the purchase process finishes
+ * @param extraData Extra data (developer payload), which will be returned with the purchase data
+ * when the purchase completes. This extra data will be permanently bound to that purchase
+ * and will always be returned when the purchase is queried.
+ */
+ public void launchPurchaseFlow(Activity act, String sku, String itemType, int requestCode,
+ OnIabPurchaseFinishedListener listener, String extraData) {
+ checkNotDisposed();
+ checkSetupDone("launchPurchaseFlow");
+ flagStartAsync("launchPurchaseFlow");
+ IabResult result;
+
+ if (itemType.equals(ITEM_TYPE_SUBS) && !mSubscriptionsSupported) {
+ IabResult r = new IabResult(IABHELPER_SUBSCRIPTIONS_NOT_AVAILABLE,
+ "Subscriptions are not available.");
+ flagEndAsync();
+ if (listener != null) listener.onIabPurchaseFinished(r, null);
+ return;
+ }
+
+ try {
+ logDebug("Constructing buy intent for " + sku + ", item type: " + itemType);
+ Bundle buyIntentBundle = mService.getBuyIntent(3, mContext.getPackageName(), sku, itemType, extraData);
+ int response = getResponseCodeFromBundle(buyIntentBundle);
+ if (response != BILLING_RESPONSE_RESULT_OK) {
+ logError("Unable to buy item, Error response: " + getResponseDesc(response));
+ flagEndAsync();
+ result = new IabResult(response, "Unable to buy item");
+ if (listener != null) listener.onIabPurchaseFinished(result, null);
+ return;
+ }
+
+ PendingIntent pendingIntent = buyIntentBundle.getParcelable(RESPONSE_BUY_INTENT);
+ logDebug("Launching buy intent for " + sku + ". Request code: " + requestCode);
+ mRequestCode = requestCode;
+ mPurchaseListener = listener;
+ mPurchasingItemType = itemType;
+ act.startIntentSenderForResult(pendingIntent.getIntentSender(),
+ requestCode, new Intent(),
+ Integer.valueOf(0), Integer.valueOf(0),
+ Integer.valueOf(0));
+ }
+ catch (SendIntentException e) {
+ logError("SendIntentException while launching purchase flow for sku " + sku);
+ e.printStackTrace();
+ flagEndAsync();
+
+ result = new IabResult(IABHELPER_SEND_INTENT_FAILED, "Failed to send intent.");
+ if (listener != null) listener.onIabPurchaseFinished(result, null);
+ }
+ catch (RemoteException e) {
+ logError("RemoteException while launching purchase flow for sku " + sku);
+ e.printStackTrace();
+ flagEndAsync();
+
+ result = new IabResult(IABHELPER_REMOTE_EXCEPTION, "Remote exception while starting purchase flow");
+ if (listener != null) listener.onIabPurchaseFinished(result, null);
+ }
+ }
+
+ /**
+ * Handles an activity result that's part of the purchase flow in in-app billing. If you
+ * are calling {@link #launchPurchaseFlow}, then you must call this method from your
+ * Activity's {@link android.app.Activity@onActivityResult} method. This method
+ * MUST be called from the UI thread of the Activity.
+ *
+ * @param requestCode The requestCode as you received it.
+ * @param resultCode The resultCode as you received it.
+ * @param data The data (Intent) as you received it.
+ * @return Returns true if the result was related to a purchase flow and was handled;
+ * false if the result was not related to a purchase, in which case you should
+ * handle it normally.
+ */
+ public boolean handleActivityResult(int requestCode, int resultCode, Intent data) {
+ IabResult result;
+ if (requestCode != mRequestCode) return false;
+
+ checkNotDisposed();
+ checkSetupDone("handleActivityResult");
+
+ // end of async purchase operation that started on launchPurchaseFlow
+ flagEndAsync();
+
+ if (data == null) {
+ logError("Null data in IAB activity result.");
+ result = new IabResult(IABHELPER_BAD_RESPONSE, "Null data in IAB result");
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
+ return true;
+ }
+
+ int responseCode = getResponseCodeFromIntent(data);
+ String purchaseData = data.getStringExtra(RESPONSE_INAPP_PURCHASE_DATA);
+ String dataSignature = data.getStringExtra(RESPONSE_INAPP_SIGNATURE);
+
+ if (resultCode == Activity.RESULT_OK && responseCode == BILLING_RESPONSE_RESULT_OK) {
+ logDebug("Successful resultcode from purchase activity.");
+ logDebug("Purchase data: " + purchaseData);
+ logDebug("Data signature: " + dataSignature);
+ logDebug("Extras: " + data.getExtras());
+ logDebug("Expected item type: " + mPurchasingItemType);
+
+ if (purchaseData == null || dataSignature == null) {
+ logError("BUG: either purchaseData or dataSignature is null.");
+ logDebug("Extras: " + data.getExtras().toString());
+ result = new IabResult(IABHELPER_UNKNOWN_ERROR, "IAB returned null purchaseData or dataSignature");
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
+ return true;
+ }
+
+ Purchase purchase = null;
+ try {
+ purchase = new Purchase(mPurchasingItemType, purchaseData, dataSignature);
+ String sku = purchase.getSku();
+
+ // Verify signature
+ if (!Security.verifyPurchase(mSignatureBase64, purchaseData, dataSignature)) {
+ logError("Purchase signature verification FAILED for sku " + sku);
+ result = new IabResult(IABHELPER_VERIFICATION_FAILED, "Signature verification failed for sku " + sku);
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, purchase);
+ return true;
+ }
+ logDebug("Purchase signature successfully verified.");
+ }
+ catch (JSONException e) {
+ logError("Failed to parse purchase data.");
+ e.printStackTrace();
+ result = new IabResult(IABHELPER_BAD_RESPONSE, "Failed to parse purchase data.");
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
+ return true;
+ }
+
+ if (mPurchaseListener != null) {
+ mPurchaseListener.onIabPurchaseFinished(new IabResult(BILLING_RESPONSE_RESULT_OK, "Success"), purchase);
+ }
+ }
+ else if (resultCode == Activity.RESULT_OK) {
+ // result code was OK, but in-app billing response was not OK.
+ logDebug("Result code was OK but in-app billing response was not OK: " + getResponseDesc(responseCode));
+ if (mPurchaseListener != null) {
+ result = new IabResult(responseCode, "Problem purchashing item.");
+ mPurchaseListener.onIabPurchaseFinished(result, null);
+ }
+ }
+ else if (resultCode == Activity.RESULT_CANCELED) {
+ logDebug("Purchase canceled - Response: " + getResponseDesc(responseCode));
+ result = new IabResult(IABHELPER_USER_CANCELLED, "User canceled.");
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
+ }
+ else {
+ logError("Purchase failed. Result code: " + Integer.toString(resultCode)
+ + ". Response: " + getResponseDesc(responseCode));
+ result = new IabResult(IABHELPER_UNKNOWN_PURCHASE_RESPONSE, "Unknown purchase response.");
+ if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
+ }
+ return true;
+ }
+
+ public Inventory queryInventory(boolean querySkuDetails, List moreSkus) throws IabException {
+ return queryInventory(querySkuDetails, moreSkus, null);
+ }
+
+ /**
+ * Queries the inventory. This will query all owned items from the server, as well as
+ * information on additional skus, if specified. This method may block or take long to execute.
+ * Do not call from a UI thread. For that, use the non-blocking version {@link #refreshInventoryAsync}.
+ *
+ * @param querySkuDetails if true, SKU details (price, description, etc) will be queried as well
+ * as purchase information.
+ * @param moreItemSkus additional PRODUCT skus to query information on, regardless of ownership.
+ * Ignored if null or if querySkuDetails is false.
+ * @param moreSubsSkus additional SUBSCRIPTIONS skus to query information on, regardless of ownership.
+ * Ignored if null or if querySkuDetails is false.
+ * @throws IabException if a problem occurs while refreshing the inventory.
+ */
+ public Inventory queryInventory(boolean querySkuDetails, List moreItemSkus,
+ List moreSubsSkus) throws IabException {
+ checkNotDisposed();
+ checkSetupDone("queryInventory");
+ try {
+ Inventory inv = new Inventory();
+ int r = queryPurchases(inv, ITEM_TYPE_INAPP);
+ if (r != BILLING_RESPONSE_RESULT_OK) {
+ throw new IabException(r, "Error refreshing inventory (querying owned items).");
+ }
+
+ if (querySkuDetails) {
+ r = querySkuDetails(ITEM_TYPE_INAPP, inv, moreItemSkus);
+ if (r != BILLING_RESPONSE_RESULT_OK) {
+ throw new IabException(r, "Error refreshing inventory (querying prices of items).");
+ }
+ }
+
+ // if subscriptions are supported, then also query for subscriptions
+ if (mSubscriptionsSupported) {
+ r = queryPurchases(inv, ITEM_TYPE_SUBS);
+ if (r != BILLING_RESPONSE_RESULT_OK) {
+ throw new IabException(r, "Error refreshing inventory (querying owned subscriptions).");
+ }
+
+ if (querySkuDetails) {
+ r = querySkuDetails(ITEM_TYPE_SUBS, inv, moreItemSkus);
+ if (r != BILLING_RESPONSE_RESULT_OK) {
+ throw new IabException(r, "Error refreshing inventory (querying prices of subscriptions).");
+ }
+ }
+ }
+
+ return inv;
+ }
+ catch (RemoteException e) {
+ throw new IabException(IABHELPER_REMOTE_EXCEPTION, "Remote exception while refreshing inventory.", e);
+ }
+ catch (JSONException e) {
+ throw new IabException(IABHELPER_BAD_RESPONSE, "Error parsing JSON response while refreshing inventory.", e);
+ }
+ }
+
+ /**
+ * Listener that notifies when an inventory query operation completes.
+ */
+ public interface QueryInventoryFinishedListener {
+ /**
+ * Called to notify that an inventory query operation completed.
+ *
+ * @param result The result of the operation.
+ * @param inv The inventory.
+ */
+ public void onQueryInventoryFinished(IabResult result, Inventory inv);
+ }
+
+
+ /**
+ * Asynchronous wrapper for inventory query. This will perform an inventory
+ * query as described in {@link #queryInventory}, but will do so asynchronously
+ * and call back the specified listener upon completion. This method is safe to
+ * call from a UI thread.
+ *
+ * @param querySkuDetails as in {@link #queryInventory}
+ * @param moreSkus as in {@link #queryInventory}
+ * @param listener The listener to notify when the refresh operation completes.
+ */
+ public void queryInventoryAsync(final boolean querySkuDetails,
+ final List moreSkus,
+ final QueryInventoryFinishedListener listener) {
+ final Handler handler = new Handler();
+ checkNotDisposed();
+ checkSetupDone("queryInventory");
+ flagStartAsync("refresh inventory");
+ (new Thread(new Runnable() {
+ public void run() {
+ IabResult result = new IabResult(BILLING_RESPONSE_RESULT_OK, "Inventory refresh successful.");
+ Inventory inv = null;
+ try {
+ inv = queryInventory(querySkuDetails, moreSkus);
+ }
+ catch (IabException ex) {
+ result = ex.getResult();
+ }
+
+ flagEndAsync();
+
+ final IabResult result_f = result;
+ final Inventory inv_f = inv;
+ if (!mDisposed && listener != null) {
+ handler.post(new Runnable() {
+ public void run() {
+ listener.onQueryInventoryFinished(result_f, inv_f);
+ }
+ });
+ }
+ }
+ })).start();
+ }
+
+ public void queryInventoryAsync(QueryInventoryFinishedListener listener) {
+ queryInventoryAsync(true, null, listener);
+ }
+
+ public void queryInventoryAsync(boolean querySkuDetails, QueryInventoryFinishedListener listener) {
+ queryInventoryAsync(querySkuDetails, null, listener);
+ }
+
+
+ /**
+ * Consumes a given in-app product. Consuming can only be done on an item
+ * that's owned, and as a result of consumption, the user will no longer own it.
+ * This method may block or take long to return. Do not call from the UI thread.
+ * For that, see {@link #consumeAsync}.
+ *
+ * @param itemInfo The PurchaseInfo that represents the item to consume.
+ * @throws IabException if there is a problem during consumption.
+ */
+ void consume(Purchase itemInfo) throws IabException {
+ checkNotDisposed();
+ checkSetupDone("consume");
+
+ if (!itemInfo.mItemType.equals(ITEM_TYPE_INAPP)) {
+ throw new IabException(IABHELPER_INVALID_CONSUMPTION,
+ "Items of type '" + itemInfo.mItemType + "' can't be consumed.");
+ }
+
+ try {
+ String token = itemInfo.getToken();
+ String sku = itemInfo.getSku();
+ if (token == null || token.equals("")) {
+ logError("Can't consume "+ sku + ". No token.");
+ throw new IabException(IABHELPER_MISSING_TOKEN, "PurchaseInfo is missing token for sku: "
+ + sku + " " + itemInfo);
+ }
+
+ logDebug("Consuming sku: " + sku + ", token: " + token);
+ int response = mService.consumePurchase(3, mContext.getPackageName(), token);
+ if (response == BILLING_RESPONSE_RESULT_OK) {
+ logDebug("Successfully consumed sku: " + sku);
+ }
+ else {
+ logDebug("Error consuming consuming sku " + sku + ". " + getResponseDesc(response));
+ throw new IabException(response, "Error consuming sku " + sku);
+ }
+ }
+ catch (RemoteException e) {
+ throw new IabException(IABHELPER_REMOTE_EXCEPTION, "Remote exception while consuming. PurchaseInfo: " + itemInfo, e);
+ }
+ }
+
+ /**
+ * Callback that notifies when a consumption operation finishes.
+ */
+ public interface OnConsumeFinishedListener {
+ /**
+ * Called to notify that a consumption has finished.
+ *
+ * @param purchase The purchase that was (or was to be) consumed.
+ * @param result The result of the consumption operation.
+ */
+ public void onConsumeFinished(Purchase purchase, IabResult result);
+ }
+
+ /**
+ * Callback that notifies when a multi-item consumption operation finishes.
+ */
+ public interface OnConsumeMultiFinishedListener {
+ /**
+ * Called to notify that a consumption of multiple items has finished.
+ *
+ * @param purchases The purchases that were (or were to be) consumed.
+ * @param results The results of each consumption operation, corresponding to each
+ * sku.
+ */
+ public void onConsumeMultiFinished(List purchases, List results);
+ }
+
+ /**
+ * Asynchronous wrapper to item consumption. Works like {@link #consume}, but
+ * performs the consumption in the background and notifies completion through
+ * the provided listener. This method is safe to call from a UI thread.
+ *
+ * @param purchase The purchase to be consumed.
+ * @param listener The listener to notify when the consumption operation finishes.
+ */
+ public void consumeAsync(Purchase purchase, OnConsumeFinishedListener listener) {
+ checkNotDisposed();
+ checkSetupDone("consume");
+ List purchases = new ArrayList();
+ purchases.add(purchase);
+ consumeAsyncInternal(purchases, listener, null);
+ }
+
+ /**
+ * Same as {@link consumeAsync}, but for multiple items at once.
+ * @param purchases The list of PurchaseInfo objects representing the purchases to consume.
+ * @param listener The listener to notify when the consumption operation finishes.
+ */
+ public void consumeAsync(List purchases, OnConsumeMultiFinishedListener listener) {
+ checkNotDisposed();
+ checkSetupDone("consume");
+ consumeAsyncInternal(purchases, null, listener);
+ }
+
+ /**
+ * Returns a human-readable description for the given response code.
+ *
+ * @param code The response code
+ * @return A human-readable string explaining the result code.
+ * It also includes the result code numerically.
+ */
+ public static String getResponseDesc(int code) {
+ String[] iab_msgs = ("0:OK/1:User Canceled/2:Unknown/" +
+ "3:Billing Unavailable/4:Item unavailable/" +
+ "5:Developer Error/6:Error/7:Item Already Owned/" +
+ "8:Item not owned").split("/");
+ String[] iabhelper_msgs = ("0:OK/-1001:Remote exception during initialization/" +
+ "-1002:Bad response received/" +
+ "-1003:Purchase signature verification failed/" +
+ "-1004:Send intent failed/" +
+ "-1005:User cancelled/" +
+ "-1006:Unknown purchase response/" +
+ "-1007:Missing token/" +
+ "-1008:Unknown error/" +
+ "-1009:Subscriptions not available/" +
+ "-1010:Invalid consumption attempt").split("/");
+
+ if (code <= IABHELPER_ERROR_BASE) {
+ int index = IABHELPER_ERROR_BASE - code;
+ if (index >= 0 && index < iabhelper_msgs.length) return iabhelper_msgs[index];
+ else return String.valueOf(code) + ":Unknown IAB Helper Error";
+ }
+ else if (code < 0 || code >= iab_msgs.length)
+ return String.valueOf(code) + ":Unknown";
+ else
+ return iab_msgs[code];
+ }
+
+
+ // Checks that setup was done; if not, throws an exception.
+ void checkSetupDone(String operation) {
+ if (!mSetupDone) {
+ logError("Illegal state for operation (" + operation + "): IAB helper is not set up.");
+ throw new IllegalStateException("IAB helper is not set up. Can't perform operation: " + operation);
+ }
+ }
+
+ // Workaround to bug where sometimes response codes come as Long instead of Integer
+ int getResponseCodeFromBundle(Bundle b) {
+ Object o = b.get(RESPONSE_CODE);
+ if (o == null) {
+ logDebug("Bundle with null response code, assuming OK (known issue)");
+ return BILLING_RESPONSE_RESULT_OK;
+ }
+ else if (o instanceof Integer) return ((Integer)o).intValue();
+ else if (o instanceof Long) return (int)((Long)o).longValue();
+ else {
+ logError("Unexpected type for bundle response code.");
+ logError(o.getClass().getName());
+ throw new RuntimeException("Unexpected type for bundle response code: " + o.getClass().getName());
+ }
+ }
+
+ // Workaround to bug where sometimes response codes come as Long instead of Integer
+ int getResponseCodeFromIntent(Intent i) {
+ Object o = i.getExtras().get(RESPONSE_CODE);
+ if (o == null) {
+ logError("Intent with no response code, assuming OK (known issue)");
+ return BILLING_RESPONSE_RESULT_OK;
+ }
+ else if (o instanceof Integer) return ((Integer)o).intValue();
+ else if (o instanceof Long) return (int)((Long)o).longValue();
+ else {
+ logError("Unexpected type for intent response code.");
+ logError(o.getClass().getName());
+ throw new RuntimeException("Unexpected type for intent response code: " + o.getClass().getName());
+ }
+ }
+
+ void flagStartAsync(String operation) {
+ if (mAsyncInProgress) throw new IllegalStateException("Can't start async operation (" +
+ operation + ") because another async operation(" + mAsyncOperation + ") is in progress.");
+ mAsyncOperation = operation;
+ mAsyncInProgress = true;
+ logDebug("Starting async operation: " + operation);
+ }
+
+ void flagEndAsync() {
+ logDebug("Ending async operation: " + mAsyncOperation);
+ mAsyncOperation = "";
+ mAsyncInProgress = false;
+ }
+
+
+ int queryPurchases(Inventory inv, String itemType) throws JSONException, RemoteException {
+ // Query purchases
+ logDebug("Querying owned items, item type: " + itemType);
+ logDebug("Package name: " + mContext.getPackageName());
+ boolean verificationFailed = false;
+ String continueToken = null;
+
+ do {
+ logDebug("Calling getPurchases with continuation token: " + continueToken);
+ Bundle ownedItems = mService.getPurchases(3, mContext.getPackageName(),
+ itemType, continueToken);
+
+ int response = getResponseCodeFromBundle(ownedItems);
+ logDebug("Owned items response: " + String.valueOf(response));
+ if (response != BILLING_RESPONSE_RESULT_OK) {
+ logDebug("getPurchases() failed: " + getResponseDesc(response));
+ return response;
+ }
+ if (!ownedItems.containsKey(RESPONSE_INAPP_ITEM_LIST)
+ || !ownedItems.containsKey(RESPONSE_INAPP_PURCHASE_DATA_LIST)
+ || !ownedItems.containsKey(RESPONSE_INAPP_SIGNATURE_LIST)) {
+ logError("Bundle returned from getPurchases() doesn't contain required fields.");
+ return IABHELPER_BAD_RESPONSE;
+ }
+
+ ArrayList ownedSkus = ownedItems.getStringArrayList(
+ RESPONSE_INAPP_ITEM_LIST);
+ ArrayList purchaseDataList = ownedItems.getStringArrayList(
+ RESPONSE_INAPP_PURCHASE_DATA_LIST);
+ ArrayList signatureList = ownedItems.getStringArrayList(
+ RESPONSE_INAPP_SIGNATURE_LIST);
+
+ for (int i = 0; i < purchaseDataList.size(); ++i) {
+ String purchaseData = purchaseDataList.get(i);
+ String signature = signatureList.get(i);
+ String sku = ownedSkus.get(i);
+ if (Security.verifyPurchase(mSignatureBase64, purchaseData, signature)) {
+ logDebug("Sku is owned: " + sku);
+ Purchase purchase = new Purchase(itemType, purchaseData, signature);
+
+ if (TextUtils.isEmpty(purchase.getToken())) {
+ logWarn("BUG: empty/null token!");
+ logDebug("Purchase data: " + purchaseData);
+ }
+
+ // Record ownership and token
+ inv.addPurchase(purchase);
+ }
+ else {
+ logWarn("Purchase signature verification **FAILED**. Not adding item.");
+ logDebug(" Purchase data: " + purchaseData);
+ logDebug(" Signature: " + signature);
+ verificationFailed = true;
+ }
+ }
+
+ continueToken = ownedItems.getString(INAPP_CONTINUATION_TOKEN);
+ logDebug("Continuation token: " + continueToken);
+ } while (!TextUtils.isEmpty(continueToken));
+
+ return verificationFailed ? IABHELPER_VERIFICATION_FAILED : BILLING_RESPONSE_RESULT_OK;
+ }
+
+ int querySkuDetails(String itemType, Inventory inv, List moreSkus)
+ throws RemoteException, JSONException {
+ logDebug("Querying SKU details.");
+ ArrayList skuList = new ArrayList();
+ skuList.addAll(inv.getAllOwnedSkus(itemType));
+ if (moreSkus != null) {
+ for (String sku : moreSkus) {
+ if (!skuList.contains(sku)) {
+ skuList.add(sku);
+ }
+ }
+ }
+
+ if (skuList.size() == 0) {
+ logDebug("queryPrices: nothing to do because there are no SKUs.");
+ return BILLING_RESPONSE_RESULT_OK;
+ }
+
+ Bundle querySkus = new Bundle();
+ querySkus.putStringArrayList(GET_SKU_DETAILS_ITEM_LIST, skuList);
+ Bundle skuDetails = mService.getSkuDetails(3, mContext.getPackageName(),
+ itemType, querySkus);
+
+ if (!skuDetails.containsKey(RESPONSE_GET_SKU_DETAILS_LIST)) {
+ int response = getResponseCodeFromBundle(skuDetails);
+ if (response != BILLING_RESPONSE_RESULT_OK) {
+ logDebug("getSkuDetails() failed: " + getResponseDesc(response));
+ return response;
+ }
+ else {
+ logError("getSkuDetails() returned a bundle with neither an error nor a detail list.");
+ return IABHELPER_BAD_RESPONSE;
+ }
+ }
+
+ ArrayList responseList = skuDetails.getStringArrayList(
+ RESPONSE_GET_SKU_DETAILS_LIST);
+
+ for (String thisResponse : responseList) {
+ SkuDetails d = new SkuDetails(itemType, thisResponse);
+ logDebug("Got sku details: " + d);
+ inv.addSkuDetails(d);
+ }
+ return BILLING_RESPONSE_RESULT_OK;
+ }
+
+
+ void consumeAsyncInternal(final List purchases,
+ final OnConsumeFinishedListener singleListener,
+ final OnConsumeMultiFinishedListener multiListener) {
+ final Handler handler = new Handler();
+ flagStartAsync("consume");
+ (new Thread(new Runnable() {
+ public void run() {
+ final List results = new ArrayList();
+ for (Purchase purchase : purchases) {
+ try {
+ consume(purchase);
+ results.add(new IabResult(BILLING_RESPONSE_RESULT_OK, "Successful consume of sku " + purchase.getSku()));
+ }
+ catch (IabException ex) {
+ results.add(ex.getResult());
+ }
+ }
+
+ flagEndAsync();
+ if (!mDisposed && singleListener != null) {
+ handler.post(new Runnable() {
+ public void run() {
+ singleListener.onConsumeFinished(purchases.get(0), results.get(0));
+ }
+ });
+ }
+ if (!mDisposed && multiListener != null) {
+ handler.post(new Runnable() {
+ public void run() {
+ multiListener.onConsumeMultiFinished(purchases, results);
+ }
+ });
+ }
+ }
+ })).start();
+ }
+
+ void logDebug(String msg) {
+ if (mDebugLog) Log.d(mDebugTag, msg);
+ }
+
+ void logError(String msg) {
+ Log.e(mDebugTag, "In-app billing error: " + msg);
+ }
+
+ void logWarn(String msg) {
+ Log.w(mDebugTag, "In-app billing warning: " + msg);
+ }
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabResult.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabResult.java
new file mode 100644
index 0000000..c2be9bd
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/IabResult.java
@@ -0,0 +1,45 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+/**
+ * Represents the result of an in-app billing operation.
+ * A result is composed of a response code (an integer) and possibly a
+ * message (String). You can get those by calling
+ * {@link #getResponse} and {@link #getMessage()}, respectively. You
+ * can also inquire whether a result is a success or a failure by
+ * calling {@link #isSuccess()} and {@link #isFailure()}.
+ */
+public class IabResult {
+ int mResponse;
+ String mMessage;
+
+ public IabResult(int response, String message) {
+ mResponse = response;
+ if (message == null || message.trim().length() == 0) {
+ mMessage = IabHelper.getResponseDesc(response);
+ }
+ else {
+ mMessage = message + " (response: " + IabHelper.getResponseDesc(response) + ")";
+ }
+ }
+ public int getResponse() { return mResponse; }
+ public String getMessage() { return mMessage; }
+ public boolean isSuccess() { return mResponse == IabHelper.BILLING_RESPONSE_RESULT_OK; }
+ public boolean isFailure() { return !isSuccess(); }
+ public String toString() { return "IabResult: " + getMessage(); }
+}
+
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Inventory.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Inventory.java
new file mode 100644
index 0000000..23261e3
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Inventory.java
@@ -0,0 +1,91 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Represents a block of information about in-app items.
+ * An Inventory is returned by such methods as {@link IabHelper#queryInventory}.
+ */
+public class Inventory {
+ Map mSkuMap = new HashMap();
+ Map mPurchaseMap = new HashMap();
+
+ Inventory() { }
+
+ /** Returns the listing details for an in-app product. */
+ public SkuDetails getSkuDetails(String sku) {
+ return mSkuMap.get(sku);
+ }
+
+ /** Returns purchase information for a given product, or null if there is no purchase. */
+ public Purchase getPurchase(String sku) {
+ return mPurchaseMap.get(sku);
+ }
+
+ /** Returns whether or not there exists a purchase of the given product. */
+ public boolean hasPurchase(String sku) {
+ return mPurchaseMap.containsKey(sku);
+ }
+
+ /** Return whether or not details about the given product are available. */
+ public boolean hasDetails(String sku) {
+ return mSkuMap.containsKey(sku);
+ }
+
+ /**
+ * Erase a purchase (locally) from the inventory, given its product ID. This just
+ * modifies the Inventory object locally and has no effect on the server! This is
+ * useful when you have an existing Inventory object which you know to be up to date,
+ * and you have just consumed an item successfully, which means that erasing its
+ * purchase data from the Inventory you already have is quicker than querying for
+ * a new Inventory.
+ */
+ public void erasePurchase(String sku) {
+ if (mPurchaseMap.containsKey(sku)) mPurchaseMap.remove(sku);
+ }
+
+ /** Returns a list of all owned product IDs. */
+ List getAllOwnedSkus() {
+ return new ArrayList(mPurchaseMap.keySet());
+ }
+
+ /** Returns a list of all owned product IDs of a given type */
+ List getAllOwnedSkus(String itemType) {
+ List result = new ArrayList();
+ for (Purchase p : mPurchaseMap.values()) {
+ if (p.getItemType().equals(itemType)) result.add(p.getSku());
+ }
+ return result;
+ }
+
+ /** Returns a list of all purchases. */
+ List getAllPurchases() {
+ return new ArrayList(mPurchaseMap.values());
+ }
+
+ void addSkuDetails(SkuDetails d) {
+ mSkuMap.put(d.getSku(), d);
+ }
+
+ void addPurchase(Purchase p) {
+ mPurchaseMap.put(p.getSku(), p);
+ }
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Purchase.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Purchase.java
new file mode 100644
index 0000000..9ad3890
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Purchase.java
@@ -0,0 +1,63 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+import org.json.JSONException;
+import org.json.JSONObject;
+
+/**
+ * Represents an in-app billing purchase.
+ */
+public class Purchase {
+ String mItemType; // ITEM_TYPE_INAPP or ITEM_TYPE_SUBS
+ String mOrderId;
+ String mPackageName;
+ String mSku;
+ long mPurchaseTime;
+ int mPurchaseState;
+ String mDeveloperPayload;
+ String mToken;
+ String mOriginalJson;
+ String mSignature;
+
+ public Purchase(String itemType, String jsonPurchaseInfo, String signature) throws JSONException {
+ mItemType = itemType;
+ mOriginalJson = jsonPurchaseInfo;
+ JSONObject o = new JSONObject(mOriginalJson);
+ mOrderId = o.optString("orderId");
+ mPackageName = o.optString("packageName");
+ mSku = o.optString("productId");
+ mPurchaseTime = o.optLong("purchaseTime");
+ mPurchaseState = o.optInt("purchaseState");
+ mDeveloperPayload = o.optString("developerPayload");
+ mToken = o.optString("token", o.optString("purchaseToken"));
+ mSignature = signature;
+ }
+
+ public String getItemType() { return mItemType; }
+ public String getOrderId() { return mOrderId; }
+ public String getPackageName() { return mPackageName; }
+ public String getSku() { return mSku; }
+ public long getPurchaseTime() { return mPurchaseTime; }
+ public int getPurchaseState() { return mPurchaseState; }
+ public String getDeveloperPayload() { return mDeveloperPayload; }
+ public String getToken() { return mToken; }
+ public String getOriginalJson() { return mOriginalJson; }
+ public String getSignature() { return mSignature; }
+
+ @Override
+ public String toString() { return "PurchaseInfo(type:" + mItemType + "):" + mOriginalJson; }
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Security.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Security.java
new file mode 100644
index 0000000..0839887
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/Security.java
@@ -0,0 +1,119 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+import android.text.TextUtils;
+import android.util.Log;
+
+import java.security.InvalidKeyException;
+import java.security.KeyFactory;
+import java.security.NoSuchAlgorithmException;
+import java.security.PublicKey;
+import java.security.Signature;
+import java.security.SignatureException;
+import java.security.spec.InvalidKeySpecException;
+import java.security.spec.X509EncodedKeySpec;
+
+/**
+ * Security-related methods. For a secure implementation, all of this code
+ * should be implemented on a server that communicates with the
+ * application on the device. For the sake of simplicity and clarity of this
+ * example, this code is included here and is executed on the device. If you
+ * must verify the purchases on the phone, you should obfuscate this code to
+ * make it harder for an attacker to replace the code with stubs that treat all
+ * purchases as verified.
+ */
+public class Security {
+ private static final String TAG = "IABUtil/Security";
+
+ private static final String KEY_FACTORY_ALGORITHM = "RSA";
+ private static final String SIGNATURE_ALGORITHM = "SHA1withRSA";
+
+ /**
+ * Verifies that the data was signed with the given signature, and returns
+ * the verified purchase. The data is in JSON format and signed
+ * with a private key. The data also contains the {@link PurchaseState}
+ * and product ID of the purchase.
+ * @param base64PublicKey the base64-encoded public key to use for verifying.
+ * @param signedData the signed JSON string (signed, not encrypted)
+ * @param signature the signature for the data, signed with the private key
+ */
+ public static boolean verifyPurchase(String base64PublicKey, String signedData, String signature) {
+ if (TextUtils.isEmpty(signedData) || TextUtils.isEmpty(base64PublicKey) ||
+ TextUtils.isEmpty(signature)) {
+ Log.e(TAG, "Purchase verification failed: missing data.");
+ return false;
+ }
+
+ PublicKey key = Security.generatePublicKey(base64PublicKey);
+ return Security.verify(key, signedData, signature);
+ }
+
+ /**
+ * Generates a PublicKey instance from a string containing the
+ * Base64-encoded public key.
+ *
+ * @param encodedPublicKey Base64-encoded public key
+ * @throws IllegalArgumentException if encodedPublicKey is invalid
+ */
+ public static PublicKey generatePublicKey(String encodedPublicKey) {
+ try {
+ byte[] decodedKey = Base64.decode(encodedPublicKey);
+ KeyFactory keyFactory = KeyFactory.getInstance(KEY_FACTORY_ALGORITHM);
+ return keyFactory.generatePublic(new X509EncodedKeySpec(decodedKey));
+ } catch (NoSuchAlgorithmException e) {
+ throw new RuntimeException(e);
+ } catch (InvalidKeySpecException e) {
+ Log.e(TAG, "Invalid key specification.");
+ throw new IllegalArgumentException(e);
+ } catch (Base64DecoderException e) {
+ Log.e(TAG, "Base64 decoding failed.");
+ throw new IllegalArgumentException(e);
+ }
+ }
+
+ /**
+ * Verifies that the signature from the server matches the computed
+ * signature on the data. Returns true if the data is correctly signed.
+ *
+ * @param publicKey public key associated with the developer account
+ * @param signedData signed data from server
+ * @param signature server signature
+ * @return true if the data and signature match
+ */
+ public static boolean verify(PublicKey publicKey, String signedData, String signature) {
+ Signature sig;
+ try {
+ sig = Signature.getInstance(SIGNATURE_ALGORITHM);
+ sig.initVerify(publicKey);
+ sig.update(signedData.getBytes());
+ if (!sig.verify(Base64.decode(signature))) {
+ Log.e(TAG, "Signature verification failed.");
+ return false;
+ }
+ return true;
+ } catch (NoSuchAlgorithmException e) {
+ Log.e(TAG, "NoSuchAlgorithmException.");
+ } catch (InvalidKeyException e) {
+ Log.e(TAG, "Invalid key specification.");
+ } catch (SignatureException e) {
+ Log.e(TAG, "Signature exception.");
+ } catch (Base64DecoderException e) {
+ Log.e(TAG, "Base64 decoding failed.");
+ }
+ return false;
+ }
+}
diff --git a/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/SkuDetails.java b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/SkuDetails.java
new file mode 100644
index 0000000..7d18ae0
--- /dev/null
+++ b/Emoji Switcher/src/main/java/com/stevenschoen/emojiswitcher/billing/SkuDetails.java
@@ -0,0 +1,58 @@
+/* Copyright (c) 2012 Google Inc.
+ *
+ * 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.stevenschoen.emojiswitcher.billing;
+
+import org.json.JSONException;
+import org.json.JSONObject;
+
+/**
+ * Represents an in-app product's listing details.
+ */
+public class SkuDetails {
+ String mItemType;
+ String mSku;
+ String mType;
+ String mPrice;
+ String mTitle;
+ String mDescription;
+ String mJson;
+
+ public SkuDetails(String jsonSkuDetails) throws JSONException {
+ this(IabHelper.ITEM_TYPE_INAPP, jsonSkuDetails);
+ }
+
+ public SkuDetails(String itemType, String jsonSkuDetails) throws JSONException {
+ mItemType = itemType;
+ mJson = jsonSkuDetails;
+ JSONObject o = new JSONObject(mJson);
+ mSku = o.optString("productId");
+ mType = o.optString("type");
+ mPrice = o.optString("price");
+ mTitle = o.optString("title");
+ mDescription = o.optString("description");
+ }
+
+ public String getSku() { return mSku; }
+ public String getType() { return mType; }
+ public String getPrice() { return mPrice; }
+ public String getTitle() { return mTitle; }
+ public String getDescription() { return mDescription; }
+
+ @Override
+ public String toString() {
+ return "SkuDetails:" + mJson;
+ }
+}
diff --git a/Emoji Switcher/src/main/java/de/ankri/views/AutoScaleTextView.java b/Emoji Switcher/src/main/java/de/ankri/views/AutoScaleTextView.java
new file mode 100644
index 0000000..95db5a7
--- /dev/null
+++ b/Emoji Switcher/src/main/java/de/ankri/views/AutoScaleTextView.java
@@ -0,0 +1,109 @@
+package de.ankri.views;
+
+import android.content.Context;
+import android.content.res.TypedArray;
+import android.graphics.Paint;
+import android.util.AttributeSet;
+import android.util.TypedValue;
+import android.widget.TextView;
+
+import com.stevenschoen.emojiswitcher.R;
+
+/**
+ * A custom Text View that lowers the text size when the text is to big for the TextView. Modified version of one found on stackoverflow
+ *
+ * @author Andreas Krings - www.ankri.de
+ * @version 1.0
+ *
+ */
+public class AutoScaleTextView extends TextView
+{
+ private Paint textPaint;
+
+ private float preferredTextSize;
+ private float minTextSize;
+
+ public AutoScaleTextView(Context context)
+ {
+ this(context, null);
+ }
+
+ public AutoScaleTextView(Context context, AttributeSet attrs)
+ {
+ this(context, attrs, R.attr.autoScaleTextViewStyle);
+
+ // Use this constructor, if you do not want use the default style
+ // super(context, attrs);
+ }
+
+ public AutoScaleTextView(Context context, AttributeSet attrs, int defStyle)
+ {
+ super(context, attrs, defStyle);
+
+ this.textPaint = new Paint();
+
+ TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AutoScaleTextView, defStyle, 0);
+ this.minTextSize = a.getDimension(R.styleable.AutoScaleTextView_minTextSize, 10f);
+ a.recycle();
+
+ this.preferredTextSize = this.getTextSize();
+ }
+
+ /**
+ * Set the minimum text size for this view
+ *
+ * @param minTextSize
+ * The minimum text size
+ */
+ public void setMinTextSize(float minTextSize)
+ {
+ this.minTextSize = minTextSize;
+ }
+
+ /**
+ * Resize the text so that it fits
+ *
+ * @param text
+ * The text. Neither null
nor empty.
+ * @param textWidth
+ * The width of the TextView. > 0
+ */
+ private void refitText(String text, int textWidth)
+ {
+ if (textWidth <= 0 || text == null || text.length() == 0)
+ return;
+
+ // the width
+ int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
+
+ final float threshold = 0.5f; // How close we have to be
+
+ this.textPaint.set(this.getPaint());
+
+ while ((this.preferredTextSize - this.minTextSize) > threshold)
+ {
+ float size = (this.preferredTextSize + this.minTextSize) / 2;
+ this.textPaint.setTextSize(size);
+ if (this.textPaint.measureText(text) >= targetWidth)
+ this.preferredTextSize = size; // too big
+ else
+ this.minTextSize = size; // too small
+ }
+ // Use min size so that we undershoot rather than overshoot
+ this.setTextSize(TypedValue.COMPLEX_UNIT_PX, this.minTextSize);
+ }
+
+ @Override
+ protected void onTextChanged(final CharSequence text, final int start, final int before, final int after)
+ {
+ this.refitText(text.toString(), this.getWidth());
+ }
+
+ @Override
+ protected void onSizeChanged(int width, int height, int oldwidth, int oldheight)
+ {
+ if (width != oldwidth)
+ this.refitText(this.getText().toString(), width);
+ }
+
+}
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable-hdpi/card_bg.9.png b/Emoji Switcher/src/main/res/drawable-hdpi/card_bg.9.png
new file mode 100644
index 0000000..42c0c47
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-hdpi/card_bg.9.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-hdpi/emoji_bg.png b/Emoji Switcher/src/main/res/drawable-hdpi/emoji_bg.png
new file mode 100644
index 0000000..aa94574
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-hdpi/emoji_bg.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-hdpi/ic_launcher.png b/Emoji Switcher/src/main/res/drawable-hdpi/ic_launcher.png
new file mode 100644
index 0000000..1285bff
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-hdpi/ic_launcher.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-hdpi/ic_refresh.png b/Emoji Switcher/src/main/res/drawable-hdpi/ic_refresh.png
new file mode 100644
index 0000000..bd586f8
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-hdpi/ic_refresh.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-hdpi/ic_remove.png b/Emoji Switcher/src/main/res/drawable-hdpi/ic_remove.png
new file mode 100644
index 0000000..e1c53a9
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-hdpi/ic_remove.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-mdpi/card_bg.9.png b/Emoji Switcher/src/main/res/drawable-mdpi/card_bg.9.png
new file mode 100644
index 0000000..45862e6
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-mdpi/card_bg.9.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-mdpi/emoji_bg.png b/Emoji Switcher/src/main/res/drawable-mdpi/emoji_bg.png
new file mode 100644
index 0000000..30d935e
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-mdpi/emoji_bg.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-mdpi/ic_launcher.png b/Emoji Switcher/src/main/res/drawable-mdpi/ic_launcher.png
new file mode 100644
index 0000000..fc69509
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-mdpi/ic_launcher.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-mdpi/ic_refresh.png b/Emoji Switcher/src/main/res/drawable-mdpi/ic_refresh.png
new file mode 100644
index 0000000..65cf578
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-mdpi/ic_refresh.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-mdpi/ic_remove.png b/Emoji Switcher/src/main/res/drawable-mdpi/ic_remove.png
new file mode 100644
index 0000000..b4abd97
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-mdpi/ic_remove.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xhdpi/card_bg.9.png b/Emoji Switcher/src/main/res/drawable-xhdpi/card_bg.9.png
new file mode 100644
index 0000000..500355f
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xhdpi/card_bg.9.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xhdpi/emoji_bg.png b/Emoji Switcher/src/main/res/drawable-xhdpi/emoji_bg.png
new file mode 100644
index 0000000..885c8a9
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xhdpi/emoji_bg.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xhdpi/ic_launcher.png b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..21f3296
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_launcher.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xhdpi/ic_refresh.png b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_refresh.png
new file mode 100644
index 0000000..38742d0
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_refresh.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xhdpi/ic_remove.png b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_remove.png
new file mode 100644
index 0000000..c864eac
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xhdpi/ic_remove.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxhdpi/emoji_bg.png b/Emoji Switcher/src/main/res/drawable-xxhdpi/emoji_bg.png
new file mode 100644
index 0000000..953682e
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxhdpi/emoji_bg.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_launcher.png b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4031e4e
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_launcher.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_refresh.png b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_refresh.png
new file mode 100644
index 0000000..851f958
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_refresh.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_remove.png b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_remove.png
new file mode 100644
index 0000000..4acf0c2
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxhdpi/ic_remove.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxxhdpi/emoji_bg.png b/Emoji Switcher/src/main/res/drawable-xxxhdpi/emoji_bg.png
new file mode 100644
index 0000000..8409441
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxxhdpi/emoji_bg.png differ
diff --git a/Emoji Switcher/src/main/res/drawable-xxxhdpi/ic_launcher.png b/Emoji Switcher/src/main/res/drawable-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..b2a515c
Binary files /dev/null and b/Emoji Switcher/src/main/res/drawable-xxxhdpi/ic_launcher.png differ
diff --git a/Emoji Switcher/src/main/res/drawable/button.xml b/Emoji Switcher/src/main/res/drawable/button.xml
new file mode 100644
index 0000000..2997a67
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/button.xml
@@ -0,0 +1,35 @@
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable/button_green.xml b/Emoji Switcher/src/main/res/drawable/button_green.xml
new file mode 100644
index 0000000..99a2e94
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/button_green.xml
@@ -0,0 +1,35 @@
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable/button_round.xml b/Emoji Switcher/src/main/res/drawable/button_round.xml
new file mode 100644
index 0000000..fc24969
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/button_round.xml
@@ -0,0 +1,35 @@
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable/button_transparent.xml b/Emoji Switcher/src/main/res/drawable/button_transparent.xml
new file mode 100644
index 0000000..e67a9e2
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/button_transparent.xml
@@ -0,0 +1,35 @@
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable/divider.xml b/Emoji Switcher/src/main/res/drawable/divider.xml
new file mode 100644
index 0000000..5aefc0e
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/divider.xml
@@ -0,0 +1,5 @@
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/drawable/gradient_orange.xml b/Emoji Switcher/src/main/res/drawable/gradient_orange.xml
new file mode 100644
index 0000000..8d08537
--- /dev/null
+++ b/Emoji Switcher/src/main/res/drawable/gradient_orange.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/layout/activity_checkroot.xml b/Emoji Switcher/src/main/res/layout/activity_checkroot.xml
new file mode 100644
index 0000000..29fc857
--- /dev/null
+++ b/Emoji Switcher/src/main/res/layout/activity_checkroot.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
diff --git a/Emoji Switcher/src/main/res/layout/activity_emojiswitcher.xml b/Emoji Switcher/src/main/res/layout/activity_emojiswitcher.xml
new file mode 100644
index 0000000..3809933
--- /dev/null
+++ b/Emoji Switcher/src/main/res/layout/activity_emojiswitcher.xml
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/menu/emojiswitcher.xml b/Emoji Switcher/src/main/res/menu/emojiswitcher.xml
new file mode 100644
index 0000000..216e7f4
--- /dev/null
+++ b/Emoji Switcher/src/main/res/menu/emojiswitcher.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/Emoji Switcher/src/main/res/values-w820dp/dimens.xml b/Emoji Switcher/src/main/res/values-w820dp/dimens.xml
new file mode 100644
index 0000000..63fc816
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values-w820dp/dimens.xml
@@ -0,0 +1,6 @@
+
+
+ 64dp
+
diff --git a/Emoji Switcher/src/main/res/values/attrs.xml b/Emoji Switcher/src/main/res/values/attrs.xml
new file mode 100644
index 0000000..393e12e
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values/attrs.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/values/colors.xml b/Emoji Switcher/src/main/res/values/colors.xml
new file mode 100644
index 0000000..44a6a37
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values/colors.xml
@@ -0,0 +1,19 @@
+
+
+ #FFA42C
+ #E0FFA42C
+ #ffd685
+ #ffe8ba
+
+ #20D020
+ #D02020
+
+ #B0f2e2c2
+ #60f2e2c2
+ @color/emojiswitcher_orange_transparent
+ #B0ccbaa3
+ #60ccbaa3
+
+ #C0C0C0
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/values/dimens.xml b/Emoji Switcher/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..a0171a7
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values/dimens.xml
@@ -0,0 +1,6 @@
+
+
+ 16dp
+ 16dp
+
+
diff --git a/Emoji Switcher/src/main/res/values/strings.xml b/Emoji Switcher/src/main/res/values/strings.xml
new file mode 100644
index 0000000..6134c31
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values/strings.xml
@@ -0,0 +1,20 @@
+
+
+
+ Emoji Switcher
+ Settings
+ Current emojis detected:
+ Unknown
+ Set
+ Refresh
+ Try again
+ Check root
+ There was a problem getting root access, which is needed to modify the built-in emoji data.\n\nDoes this app have root permissions?
+ Are you rooted?
+ Failed to get root!
+ Switch emojis to…
+ Set emojis to
+ Fonts provided by gonsa from XDA. App by Steven Schoen.
+ Reboot
+
+
\ No newline at end of file
diff --git a/Emoji Switcher/src/main/res/values/styles.xml b/Emoji Switcher/src/main/res/values/styles.xml
new file mode 100644
index 0000000..83a7964
--- /dev/null
+++ b/Emoji Switcher/src/main/res/values/styles.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/EmojiSwitcher.iml b/EmojiSwitcher.iml
new file mode 100644
index 0000000..0bb6048
--- /dev/null
+++ b/EmojiSwitcher.iml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..e33f142
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,16 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:0.12.+'
+ }
+}
+
+allprojects {
+ repositories {
+ mavenCentral()
+ }
+}
diff --git a/build/intermediates/dex-cache/cache.xml b/build/intermediates/dex-cache/cache.xml
new file mode 100644
index 0000000..895807f
--- /dev/null
+++ b/build/intermediates/dex-cache/cache.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/AndroidManifest.xml b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/AndroidManifest.xml
new file mode 100644
index 0000000..6bb5555
--- /dev/null
+++ b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/AndroidManifest.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/R.txt b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/R.txt
new file mode 100644
index 0000000..61f2e90
--- /dev/null
+++ b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/R.txt
@@ -0,0 +1,2 @@
+int drawable ic_launcher 0x7f020000
+int string app_name 0x7f030000
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/classes.jar b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/classes.jar
new file mode 100644
index 0000000..9a5909a
Binary files /dev/null and b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/classes.jar differ
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-hdpi-v4/ic_launcher.png b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-hdpi-v4/ic_launcher.png
new file mode 100644
index 0000000..96a442e
Binary files /dev/null and b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-hdpi-v4/ic_launcher.png differ
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-mdpi-v4/ic_launcher.png b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-mdpi-v4/ic_launcher.png
new file mode 100644
index 0000000..359047d
Binary files /dev/null and b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-mdpi-v4/ic_launcher.png differ
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xhdpi-v4/ic_launcher.png b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xhdpi-v4/ic_launcher.png
new file mode 100644
index 0000000..71c6d76
Binary files /dev/null and b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xhdpi-v4/ic_launcher.png differ
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xxhdpi-v4/ic_launcher.png b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xxhdpi-v4/ic_launcher.png
new file mode 100644
index 0000000..4df1894
Binary files /dev/null and b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/drawable-xxhdpi-v4/ic_launcher.png differ
diff --git a/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/values/values.xml b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/values/values.xml
new file mode 100644
index 0000000..9d85663
--- /dev/null
+++ b/build/intermediates/exploded-aar/EmojiSwitcher.libraries.RootTools.RootTools/RootTools/unspecified/res/values/values.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+ RootTools
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/AndroidManifest.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/AndroidManifest.xml
new file mode 100644
index 0000000..6fd7e74
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/AndroidManifest.xml
@@ -0,0 +1,17 @@
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/R.txt b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/R.txt
new file mode 100644
index 0000000..efb38ac
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/R.txt
@@ -0,0 +1,273 @@
+int attr adSize 0x7f010000
+int attr adSizes 0x7f010001
+int attr adUnitId 0x7f010002
+int attr allowShortcuts 0x7f010010
+int attr buyButtonAppearance 0x7f010036
+int attr buyButtonHeight 0x7f010033
+int attr buyButtonText 0x7f010035
+int attr buyButtonWidth 0x7f010034
+int attr cameraBearing 0x7f01001a
+int attr cameraTargetLat 0x7f01001b
+int attr cameraTargetLng 0x7f01001c
+int attr cameraTilt 0x7f01001d
+int attr cameraZoom 0x7f01001e
+int attr contentProviderUri 0x7f010005
+int attr corpusId 0x7f010003
+int attr corpusVersion 0x7f010004
+int attr defaultIntentAction 0x7f01000d
+int attr defaultIntentActivity 0x7f01000f
+int attr defaultIntentData 0x7f01000e
+int attr environment 0x7f010030
+int attr featureType 0x7f01002e
+int attr fragmentMode 0x7f010032
+int attr fragmentStyle 0x7f010031
+int attr indexPrefixes 0x7f01002b
+int attr inputEnabled 0x7f010013
+int attr mapType 0x7f010019
+int attr maskedWalletDetailsBackground 0x7f010039
+int attr maskedWalletDetailsButtonBackground 0x7f01003b
+int attr maskedWalletDetailsButtonTextAppearance 0x7f01003a
+int attr maskedWalletDetailsHeaderTextAppearance 0x7f010038
+int attr maskedWalletDetailsLogoImageType 0x7f01003d
+int attr maskedWalletDetailsLogoTextColor 0x7f01003c
+int attr maskedWalletDetailsTextAppearance 0x7f010037
+int attr noIndex 0x7f010029
+int attr paramName 0x7f010008
+int attr paramValue 0x7f010009
+int attr schemaOrgProperty 0x7f01002d
+int attr schemaOrgType 0x7f010007
+int attr searchEnabled 0x7f01000a
+int attr searchLabel 0x7f01000b
+int attr sectionContent 0x7f010012
+int attr sectionFormat 0x7f010028
+int attr sectionId 0x7f010027
+int attr sectionType 0x7f010011
+int attr sectionWeight 0x7f01002a
+int attr settingsDescription 0x7f01000c
+int attr sourceClass 0x7f010014
+int attr subsectionSeparator 0x7f01002c
+int attr theme 0x7f01002f
+int attr toAddressesSection 0x7f010018
+int attr trimmable 0x7f010006
+int attr uiCompass 0x7f01001f
+int attr uiRotateGestures 0x7f010020
+int attr uiScrollGestures 0x7f010021
+int attr uiTiltGestures 0x7f010022
+int attr uiZoomControls 0x7f010023
+int attr uiZoomGestures 0x7f010024
+int attr useViewLifecycle 0x7f010025
+int attr userInputSection 0x7f010016
+int attr userInputTag 0x7f010015
+int attr userInputValue 0x7f010017
+int attr zOrderOnTop 0x7f010026
+int color common_action_bar_splitter 0x7f030000
+int color common_signin_btn_dark_text_default 0x7f030001
+int color common_signin_btn_dark_text_disabled 0x7f030002
+int color common_signin_btn_dark_text_focused 0x7f030003
+int color common_signin_btn_dark_text_pressed 0x7f030004
+int color common_signin_btn_default_background 0x7f030005
+int color common_signin_btn_light_text_default 0x7f030006
+int color common_signin_btn_light_text_disabled 0x7f030007
+int color common_signin_btn_light_text_focused 0x7f030008
+int color common_signin_btn_light_text_pressed 0x7f030009
+int color common_signin_btn_text_dark 0x7f030017
+int color common_signin_btn_text_light 0x7f030018
+int color wallet_bright_foreground_disabled_holo_light 0x7f03000a
+int color wallet_bright_foreground_holo_dark 0x7f03000b
+int color wallet_bright_foreground_holo_light 0x7f03000c
+int color wallet_dim_foreground_disabled_holo_dark 0x7f03000d
+int color wallet_dim_foreground_holo_dark 0x7f03000e
+int color wallet_dim_foreground_inverse_disabled_holo_dark 0x7f03000f
+int color wallet_dim_foreground_inverse_holo_dark 0x7f030010
+int color wallet_highlighted_text_holo_dark 0x7f030011
+int color wallet_highlighted_text_holo_light 0x7f030012
+int color wallet_hint_foreground_holo_dark 0x7f030013
+int color wallet_hint_foreground_holo_light 0x7f030014
+int color wallet_holo_blue_light 0x7f030015
+int color wallet_link_text_light 0x7f030016
+int color wallet_primary_text_holo_light 0x7f030019
+int color wallet_secondary_text_holo_dark 0x7f03001a
+int drawable common_signin_btn_icon_dark 0x7f020000
+int drawable common_signin_btn_icon_disabled_dark 0x7f020001
+int drawable common_signin_btn_icon_disabled_focus_dark 0x7f020002
+int drawable common_signin_btn_icon_disabled_focus_light 0x7f020003
+int drawable common_signin_btn_icon_disabled_light 0x7f020004
+int drawable common_signin_btn_icon_focus_dark 0x7f020005
+int drawable common_signin_btn_icon_focus_light 0x7f020006
+int drawable common_signin_btn_icon_light 0x7f020007
+int drawable common_signin_btn_icon_normal_dark 0x7f020008
+int drawable common_signin_btn_icon_normal_light 0x7f020009
+int drawable common_signin_btn_icon_pressed_dark 0x7f02000a
+int drawable common_signin_btn_icon_pressed_light 0x7f02000b
+int drawable common_signin_btn_text_dark 0x7f02000c
+int drawable common_signin_btn_text_disabled_dark 0x7f02000d
+int drawable common_signin_btn_text_disabled_focus_dark 0x7f02000e
+int drawable common_signin_btn_text_disabled_focus_light 0x7f02000f
+int drawable common_signin_btn_text_disabled_light 0x7f020010
+int drawable common_signin_btn_text_focus_dark 0x7f020011
+int drawable common_signin_btn_text_focus_light 0x7f020012
+int drawable common_signin_btn_text_light 0x7f020013
+int drawable common_signin_btn_text_normal_dark 0x7f020014
+int drawable common_signin_btn_text_normal_light 0x7f020015
+int drawable common_signin_btn_text_pressed_dark 0x7f020016
+int drawable common_signin_btn_text_pressed_light 0x7f020017
+int drawable ic_plusone_medium_off_client 0x7f020018
+int drawable ic_plusone_small_off_client 0x7f020019
+int drawable ic_plusone_standard_off_client 0x7f02001a
+int drawable ic_plusone_tall_off_client 0x7f02001b
+int drawable powered_by_google_dark 0x7f02001c
+int drawable powered_by_google_light 0x7f02001d
+int id book_now 0x7f040025
+int id buyButton 0x7f04001f
+int id buy_now 0x7f040024
+int id buy_with_google 0x7f040023
+int id classic 0x7f040026
+int id contact 0x7f04000a
+int id demote_common_words 0x7f040016
+int id demote_rfc822_hostnames 0x7f040017
+int id email 0x7f040009
+int id grayscale 0x7f040027
+int id holo_dark 0x7f04001a
+int id holo_light 0x7f04001b
+int id html 0x7f040012
+int id hybrid 0x7f040010
+int id icon_uri 0x7f040002
+int id instant_message 0x7f04000b
+int id intent_action 0x7f040003
+int id intent_activity 0x7f040008
+int id intent_data 0x7f040004
+int id intent_data_id 0x7f040005
+int id intent_extra_data 0x7f040006
+int id large_icon_uri 0x7f040007
+int id match_global_nicknames 0x7f040015
+int id match_parent 0x7f040021
+int id monochrome 0x7f040028
+int id none 0x7f04000c
+int id normal 0x7f04000d
+int id omnibox_title_section 0x7f040019
+int id omnibox_url_section 0x7f040018
+int id plain 0x7f040011
+int id production 0x7f04001c
+int id rfc822 0x7f040013
+int id sandbox 0x7f04001d
+int id satellite 0x7f04000e
+int id selectionDetails 0x7f040020
+int id strict_sandbox 0x7f04001e
+int id terrain 0x7f04000f
+int id text1 0x7f040000
+int id text2 0x7f040001
+int id url 0x7f040014
+int id wrap_content 0x7f040022
+int integer google_play_services_version 0x7f050000
+int string auth_client_needs_enabling_title 0x7f06001a
+int string auth_client_needs_installation_title 0x7f06001b
+int string auth_client_needs_update_title 0x7f06001c
+int string auth_client_play_services_err_notification_msg 0x7f06001d
+int string auth_client_requested_by_msg 0x7f06001e
+int string auth_client_using_bad_version_title 0x7f06001f
+int string common_google_play_services_enable_button 0x7f060000
+int string common_google_play_services_enable_text 0x7f060001
+int string common_google_play_services_enable_title 0x7f060002
+int string common_google_play_services_error_notification_requested_by_msg 0x7f060003
+int string common_google_play_services_install_button 0x7f060004
+int string common_google_play_services_install_text_phone 0x7f060005
+int string common_google_play_services_install_text_tablet 0x7f060006
+int string common_google_play_services_install_title 0x7f060007
+int string common_google_play_services_invalid_account_text 0x7f060008
+int string common_google_play_services_invalid_account_title 0x7f060009
+int string common_google_play_services_needs_enabling_title 0x7f06000a
+int string common_google_play_services_network_error_text 0x7f06000b
+int string common_google_play_services_network_error_title 0x7f06000c
+int string common_google_play_services_notification_needs_installation_title 0x7f06000d
+int string common_google_play_services_notification_needs_update_title 0x7f06000e
+int string common_google_play_services_notification_ticker 0x7f06000f
+int string common_google_play_services_unknown_issue 0x7f060010
+int string common_google_play_services_unsupported_date_text 0x7f060011
+int string common_google_play_services_unsupported_text 0x7f060012
+int string common_google_play_services_unsupported_title 0x7f060013
+int string common_google_play_services_update_button 0x7f060014
+int string common_google_play_services_update_text 0x7f060015
+int string common_google_play_services_update_title 0x7f060016
+int string common_signin_button_text 0x7f060017
+int string common_signin_button_text_long 0x7f060018
+int string wallet_buy_button_place_holder 0x7f060019
+int style Theme_IAPTheme 0x7f070000
+int style WalletFragmentDefaultButtonTextAppearance 0x7f070001
+int style WalletFragmentDefaultDetailsHeaderTextAppearance 0x7f070002
+int style WalletFragmentDefaultDetailsTextAppearance 0x7f070003
+int style WalletFragmentDefaultStyle 0x7f070004
+int[] styleable AdsAttrs { 0x7f010000, 0x7f010001, 0x7f010002 }
+int styleable AdsAttrs_adSize 0
+int styleable AdsAttrs_adSizes 1
+int styleable AdsAttrs_adUnitId 2
+int[] styleable AppDataSearch { }
+int[] styleable Corpus { 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007 }
+int styleable Corpus_contentProviderUri 2
+int styleable Corpus_corpusId 0
+int styleable Corpus_corpusVersion 1
+int styleable Corpus_schemaOrgType 4
+int styleable Corpus_trimmable 3
+int[] styleable FeatureParam { 0x7f010008, 0x7f010009 }
+int styleable FeatureParam_paramName 0
+int styleable FeatureParam_paramValue 1
+int[] styleable GlobalSearch { 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f }
+int styleable GlobalSearch_defaultIntentAction 3
+int styleable GlobalSearch_defaultIntentActivity 5
+int styleable GlobalSearch_defaultIntentData 4
+int styleable GlobalSearch_searchEnabled 0
+int styleable GlobalSearch_searchLabel 1
+int styleable GlobalSearch_settingsDescription 2
+int[] styleable GlobalSearchCorpus { 0x7f010010 }
+int styleable GlobalSearchCorpus_allowShortcuts 0
+int[] styleable GlobalSearchSection { 0x7f010011, 0x7f010012 }
+int styleable GlobalSearchSection_sectionContent 1
+int styleable GlobalSearchSection_sectionType 0
+int[] styleable IMECorpus { 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018 }
+int styleable IMECorpus_inputEnabled 0
+int styleable IMECorpus_sourceClass 1
+int styleable IMECorpus_toAddressesSection 5
+int styleable IMECorpus_userInputSection 3
+int styleable IMECorpus_userInputTag 2
+int styleable IMECorpus_userInputValue 4
+int[] styleable MapAttrs { 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026 }
+int styleable MapAttrs_cameraBearing 1
+int styleable MapAttrs_cameraTargetLat 2
+int styleable MapAttrs_cameraTargetLng 3
+int styleable MapAttrs_cameraTilt 4
+int styleable MapAttrs_cameraZoom 5
+int styleable MapAttrs_mapType 0
+int styleable MapAttrs_uiCompass 6
+int styleable MapAttrs_uiRotateGestures 7
+int styleable MapAttrs_uiScrollGestures 8
+int styleable MapAttrs_uiTiltGestures 9
+int styleable MapAttrs_uiZoomControls 10
+int styleable MapAttrs_uiZoomGestures 11
+int styleable MapAttrs_useViewLifecycle 12
+int styleable MapAttrs_zOrderOnTop 13
+int[] styleable Section { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d }
+int styleable Section_indexPrefixes 4
+int styleable Section_noIndex 2
+int styleable Section_schemaOrgProperty 6
+int styleable Section_sectionFormat 1
+int styleable Section_sectionId 0
+int styleable Section_sectionWeight 3
+int styleable Section_subsectionSeparator 5
+int[] styleable SectionFeature { 0x7f01002e }
+int styleable SectionFeature_featureType 0
+int[] styleable WalletFragmentOptions { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032 }
+int styleable WalletFragmentOptions_environment 1
+int styleable WalletFragmentOptions_fragmentMode 3
+int styleable WalletFragmentOptions_fragmentStyle 2
+int styleable WalletFragmentOptions_theme 0
+int[] styleable WalletFragmentStyle { 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d }
+int styleable WalletFragmentStyle_buyButtonAppearance 3
+int styleable WalletFragmentStyle_buyButtonHeight 0
+int styleable WalletFragmentStyle_buyButtonText 2
+int styleable WalletFragmentStyle_buyButtonWidth 1
+int styleable WalletFragmentStyle_maskedWalletDetailsBackground 6
+int styleable WalletFragmentStyle_maskedWalletDetailsButtonBackground 8
+int styleable WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance 7
+int styleable WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance 5
+int styleable WalletFragmentStyle_maskedWalletDetailsLogoImageType 10
+int styleable WalletFragmentStyle_maskedWalletDetailsLogoTextColor 9
+int styleable WalletFragmentStyle_maskedWalletDetailsTextAppearance 4
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/classes.jar b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/classes.jar
new file mode 100644
index 0000000..0c7ba08
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/classes.jar differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/proguard.txt b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/proguard.txt
new file mode 100644
index 0000000..0c9693a
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/proguard.txt
@@ -0,0 +1,20 @@
+-keep class * extends java.util.ListResourceBundle {
+ protected Object[][] getContents();
+}
+
+# Keep SafeParcelable value, needed for reflection. This is required to support backwards
+# compatibility of some classes.
+-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
+ public static final *** NULL;
+}
+
+# Keep the names of classes/members we need for client functionality.
+-keepnames @com.google.android.gms.common.annotation.KeepName class *
+-keepclassmembernames class * {
+ @com.google.android.gms.common.annotation.KeepName *;
+}
+
+# Needed for Parcelable/SafeParcelable Creators to not get stripped
+-keepnames class * implements android.os.Parcelable {
+ public static final ** CREATOR;
+}
\ No newline at end of file
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_dark.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_dark.xml
new file mode 100644
index 0000000..a615ba2
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_dark.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_light.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_light.xml
new file mode 100644
index 0000000..6620668
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/common_signin_btn_text_light.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_primary_text_holo_light.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_primary_text_holo_light.xml
new file mode 100644
index 0000000..9c2c0fb
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_primary_text_holo_light.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_secondary_text_holo_dark.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_secondary_text_holo_dark.xml
new file mode 100644
index 0000000..0fa1a76
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/color/wallet_secondary_text_holo_dark.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_dark.9.png
new file mode 100644
index 0000000..0f9e791
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_dark.9.png
new file mode 100644
index 0000000..570e432
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_light.9.png
new file mode 100644
index 0000000..570e432
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_light.9.png
new file mode 100644
index 0000000..0f9e791
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_dark.9.png
new file mode 100644
index 0000000..f507b9f
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_light.9.png
new file mode 100644
index 0000000..d5625e5
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_dark.9.png
new file mode 100644
index 0000000..aea3c0d
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_light.9.png
new file mode 100644
index 0000000..849e89f
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_dark.9.png
new file mode 100644
index 0000000..f4ab2f2
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_light.9.png
new file mode 100644
index 0000000..9fe611d
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_icon_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_dark.9.png
new file mode 100644
index 0000000..bbcde39
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_dark.9.png
new file mode 100644
index 0000000..53957b6
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_light.9.png
new file mode 100644
index 0000000..53957b6
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_light.9.png
new file mode 100644
index 0000000..bbcde39
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_dark.9.png
new file mode 100644
index 0000000..000d12e
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_light.9.png
new file mode 100644
index 0000000..d927940
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_dark.9.png
new file mode 100644
index 0000000..67f263c
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_light.9.png
new file mode 100644
index 0000000..96324c5
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_dark.9.png
new file mode 100644
index 0000000..e450312
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_light.9.png
new file mode 100644
index 0000000..fb94b77
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/common_signin_btn_text_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_medium_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_medium_off_client.png
new file mode 100644
index 0000000..894f1b9
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_medium_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_small_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_small_off_client.png
new file mode 100644
index 0000000..ac77761
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_small_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_standard_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_standard_off_client.png
new file mode 100644
index 0000000..f1c32d3
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_standard_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_tall_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_tall_off_client.png
new file mode 100644
index 0000000..08a4670
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/ic_plusone_tall_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_dark.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_dark.png
new file mode 100644
index 0000000..721905c
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_dark.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_light.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_light.png
new file mode 100644
index 0000000..53328af
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-hdpi/powered_by_google_light.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_dark.9.png
new file mode 100644
index 0000000..dddcbeb
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_dark.9.png
new file mode 100644
index 0000000..58b75bd
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_light.9.png
new file mode 100644
index 0000000..58b75bd
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_light.9.png
new file mode 100644
index 0000000..dddcbeb
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_dark.9.png
new file mode 100644
index 0000000..7d9ed78
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_light.9.png
new file mode 100644
index 0000000..0ca401d
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_dark.9.png
new file mode 100644
index 0000000..f2c3f55
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_light.9.png
new file mode 100644
index 0000000..83b4fc9
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_dark.9.png
new file mode 100644
index 0000000..dd74fe8
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_light.9.png
new file mode 100644
index 0000000..b7dc7aa
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_icon_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_dark.9.png
new file mode 100644
index 0000000..efdfe2e
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_dark.9.png
new file mode 100644
index 0000000..c7650b0
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_light.9.png
new file mode 100644
index 0000000..c7650b0
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_light.9.png
new file mode 100644
index 0000000..efdfe2e
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_dark.9.png
new file mode 100644
index 0000000..8c76283
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_light.9.png
new file mode 100644
index 0000000..abd26bc
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_dark.9.png
new file mode 100644
index 0000000..28181c3
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_light.9.png
new file mode 100644
index 0000000..34957fa
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_dark.9.png
new file mode 100644
index 0000000..e923ee9
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_light.9.png
new file mode 100644
index 0000000..34cf6bb
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/common_signin_btn_text_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_medium_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_medium_off_client.png
new file mode 100644
index 0000000..d7e5777
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_medium_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_small_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_small_off_client.png
new file mode 100644
index 0000000..af301c2
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_small_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_standard_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_standard_off_client.png
new file mode 100644
index 0000000..f43e965
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_standard_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_tall_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_tall_off_client.png
new file mode 100644
index 0000000..0b2b5c9
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/ic_plusone_tall_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_dark.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_dark.png
new file mode 100644
index 0000000..a152807
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_dark.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_light.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_light.png
new file mode 100644
index 0000000..015a0ad
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-mdpi/powered_by_google_light.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_dark.9.png
new file mode 100644
index 0000000..9044a11
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_dark.9.png
new file mode 100644
index 0000000..e94a49b
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_light.9.png
new file mode 100644
index 0000000..e94a49b
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_light.9.png
new file mode 100644
index 0000000..9044a11
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_dark.9.png
new file mode 100644
index 0000000..bfe4f04
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_light.9.png
new file mode 100644
index 0000000..876884f
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_dark.9.png
new file mode 100644
index 0000000..b3e6dd5
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_light.9.png
new file mode 100644
index 0000000..5a888f2
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_dark.9.png
new file mode 100644
index 0000000..d0f7b4c
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_light.9.png
new file mode 100644
index 0000000..0db6b06
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_icon_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_dark.9.png
new file mode 100644
index 0000000..d182b5e
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_dark.9.png
new file mode 100644
index 0000000..47e2aea
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_light.9.png
new file mode 100644
index 0000000..47e2aea
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_light.9.png
new file mode 100644
index 0000000..d182b5e
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_dark.9.png
new file mode 100644
index 0000000..64e9706
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_light.9.png
new file mode 100644
index 0000000..0fd8cdd
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_dark.9.png
new file mode 100644
index 0000000..3427b47
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_light.9.png
new file mode 100644
index 0000000..31e38c4
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_dark.9.png
new file mode 100644
index 0000000..e6a7880
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_light.9.png
new file mode 100644
index 0000000..972962d
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/common_signin_btn_text_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_medium_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_medium_off_client.png
new file mode 100644
index 0000000..bb93309
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_medium_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_small_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_small_off_client.png
new file mode 100644
index 0000000..6174fcd
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_small_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_standard_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_standard_off_client.png
new file mode 100644
index 0000000..6a4c298
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_standard_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_tall_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_tall_off_client.png
new file mode 100644
index 0000000..f68e913
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/ic_plusone_tall_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_dark.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_dark.png
new file mode 100644
index 0000000..ffd9126
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_dark.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_light.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_light.png
new file mode 100644
index 0000000..d9f0593
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xhdpi/powered_by_google_light.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_dark.9.png
new file mode 100644
index 0000000..c97f349
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_dark.9.png
new file mode 100644
index 0000000..34cbff1
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_light.9.png
new file mode 100644
index 0000000..34cbff1
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_light.9.png
new file mode 100644
index 0000000..c97f349
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_dark.9.png
new file mode 100644
index 0000000..702c49b
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_light.9.png
new file mode 100644
index 0000000..06ad5a5
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_dark.9.png
new file mode 100644
index 0000000..af160fc
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_light.9.png
new file mode 100644
index 0000000..c647fb4
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_dark.9.png
new file mode 100644
index 0000000..fd0a431
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_light.9.png
new file mode 100644
index 0000000..f8ce5a6
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_icon_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_dark.9.png
new file mode 100644
index 0000000..b491f62
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_dark.9.png
new file mode 100644
index 0000000..777c8d6
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_light.9.png
new file mode 100644
index 0000000..777c8d6
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_light.9.png
new file mode 100644
index 0000000..b491f62
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_disabled_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_dark.9.png
new file mode 100644
index 0000000..c8a8f1c
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_light.9.png
new file mode 100644
index 0000000..bcd0d0c
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_focus_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_dark.9.png
new file mode 100644
index 0000000..ac75dad
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_light.9.png
new file mode 100644
index 0000000..c19afad
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_normal_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_dark.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_dark.9.png
new file mode 100644
index 0000000..c490441
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_dark.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_light.9.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_light.9.png
new file mode 100644
index 0000000..c52be74
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/common_signin_btn_text_pressed_light.9.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_medium_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_medium_off_client.png
new file mode 100644
index 0000000..4f23739
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_medium_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_small_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_small_off_client.png
new file mode 100644
index 0000000..8ffa1d7
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_small_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_standard_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_standard_off_client.png
new file mode 100644
index 0000000..4d81cf4
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_standard_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_tall_off_client.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_tall_off_client.png
new file mode 100644
index 0000000..fab5a79
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/ic_plusone_tall_off_client.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_dark.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_dark.png
new file mode 100644
index 0000000..0165a01
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_dark.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_light.png b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_light.png
new file mode 100644
index 0000000..aa6b6db
Binary files /dev/null and b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable-xxhdpi/powered_by_google_light.png differ
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_dark.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_dark.xml
new file mode 100644
index 0000000..dd1cf67
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_dark.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_light.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_light.xml
new file mode 100644
index 0000000..abf412b
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_icon_light.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_dark.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_dark.xml
new file mode 100644
index 0000000..2d92217
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_dark.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_light.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_light.xml
new file mode 100644
index 0000000..810c021
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/drawable/common_signin_btn_text_light.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/auth_strings.xml
new file mode 100644
index 0000000..809dcea
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "\'n Program het probeer om \'n slegte weergawe van Google Play-dienste te gebruik."
+ "\'n Program vereis dat Google Play-dienste geaktiveer word."
+ "\'n Program vereis dat Google Play-dienste geïnstalleer word."
+ "\'n Program vereis \'n opdatering vir Google Play-dienste."
+ "Google Play-dienstefout"
+ "Versoek deur %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/common_strings.xml
new file mode 100644
index 0000000..3a388b0
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-af/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play Services-fout"
+ "\'n Program vereis dat Google Play Services geïnstalleer word."
+ "\'n Program vereis dat Google Play Services opgedateer word."
+ "\'n Program vereis dat Google Play Services geaktiveer word."
+ "Versoek deur %1$s "
+ "Kry Google Play-dienste"
+ "Hierdie program sal nie loop sonder Google Play-dienste nie, wat nie op jou foon is nie."
+ "Hierdie program sal nie loop sonder Google Play-dienste nie, wat nie op jou tablet is nie."
+ "Kry Google Play-dienste"
+ "Aktiveer Google Play-dienste"
+ "Hierdie program sal nie werk tensy jy Google Play-dienste aktiveer nie."
+ "Aktiveer Google Play-dienste"
+ "Dateer Google Play-dienste op"
+ "Hierdie program sal nie loop nie, tensy jy Google Play-dienste opdateer."
+ "Netwerkfout"
+ "\'n Dataverbinding is nodig om aan Google Play-dienste te koppel."
+ "Ongeldige rekening"
+ "Die gespesifiseerde rekening bestaan nie op hierdie toestel nie. Kies asseblief \'n ander rekening."
+ "Onbekende probleem met Google Play-dienste."
+ "Google Play-dienste"
+ "Google Play-dienste, waarop sommige van jou programme staatmaak, werk nie met jou toestel nie. Kontak asseblief die vervaardiger vir bystand."
+ "Dit lyk of die datum op die toestel verkeerd is. Gaan asseblief die datum op die toestel na."
+ "Dateer op"
+ "Meld aan"
+ "Meld aan met Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/auth_strings.xml
new file mode 100644
index 0000000..9f41228
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "መተግበሪያው የGoogle Play አገልግሎቶችን መጥፎ ስሪት ለመጠቀም ሞክሯል።"
+ "መተግበሪያው Google Play አገልግሎቶች እንዲነቁ ይፈልጋል።"
+ "መተግበሪያው Google Play አገልግሎቶች እንዲጫኑ ይፈልጋል።"
+ "መተግበሪያው Google Play አገልግሎቶች እንዲዘምን ይፈልጋል።"
+ "የGoogle Play አገልግሎቶች ስህተት"
+ "በ%1$s የተጠየቀ"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/common_strings.xml
new file mode 100644
index 0000000..1c5df4f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-am/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "የGoogle Play አገልግሎቶች ስህተት"
+ "አንድ መተግበሪያ የGoogle Play አገልግሎቶች እንዲጫኑ ይፈልጋል።"
+ "አንድ መተግበሪያ የGoogle Play አገልግሎቶች እንዲዘምኑ ይፈልጋል።"
+ "አንድ መተግበሪያ የGoogle Play አገልግሎቶች እንዲነቁ ይፈልጋል።"
+ "በ%1$s የተጠየቀ"
+ "Google Play አገልግሎቶችን አግኝ"
+ "ይህ መተግበሪያ ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ ስልክዎ ላይ የሉም።"
+ "ይህ መተግበሪያ ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ ጡባዊዎ ላይ የሉም።"
+ "Google Play አገልግሎቶችን አግኝ"
+ "Google Play አገልግሎቶችን አንቃ"
+ "Google Play አገልግሎቶችን እስካላነቁ ድረስ ይህ መተግበሪያ አይሰራም።"
+ "Google Play አገልግሎቶችን አንቃ"
+ "Google Play አገልግሎቶችን ያዘምኑ"
+ "Google Play አገልግሎቶችን እስኪያዘምኑ ድረስ ይህ መተግበሪያ አይሰራም።"
+ "የአውታረ መረብ ስህተት"
+ "ከGoogle Play አገልግሎቶች ጋር ለመገናኘት የውሂብ ግንኙነት ያስፈልጋል።"
+ "ልክ ያልሆነ መለያ"
+ "የተገለጸው መለያ በዚህ መሣሪያ ላይ የለም። እባክው የተለየ መለያ ይምረጡ።"
+ "በGoogle Play አገልግሎቶች ላይ ያልታወቀ ችግር።"
+ "Google Play አገልግሎቶች"
+ "የGoogle Play አገልግሎቶች፣ አንዳንድ መተግበሪያዎችዎ በእሱ ላይ ጥገኛ የሆኑት፣ በመሣሪያዎ አይደገፍም። እባክዎ ለእርዳታ አምራቹን ያግኙ።"
+ "በመሣሪያው ላይ ያለው ቀን ትክክል አይመስልም። እባክዎ በመሣሪያው ላይ ያለውን ቀን ያረጋግጡ።"
+ "ያዘምኑ"
+ "ግባ"
+ "በGoogle ይግቡ"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/auth_strings.xml
new file mode 100644
index 0000000..e578843
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "يحاول أحد التطبيقات استخدام إصدار غير صالح من خدمات Google Play."
+ "يتطلب أحد التطبيقات تمكين خدمات Google Play."
+ "يتطلب أحد التطبيقات تثبيت خدمات Google Play."
+ "يتطلب أحد التطبيقات تحديث خدمات Google Play."
+ "خطأ في خدمات Google Play"
+ "تم الطلب عن طريق %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/common_strings.xml
new file mode 100644
index 0000000..357ca9f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ar/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "خطأ في خدمات Google Play"
+ "يتطلب أحد التطبيقات تثبيت خدمات Google Play."
+ "يتطلب أحد التطبيقات تحديث خدمات Google Play."
+ "يتطلب أحد التطبيقات تمكين خدمات Google Play."
+ "تم الطلب عن طريق %1$s "
+ "الحصول على خدمات Google Play"
+ "لن يتم تشغيل هذا التطبيق بدون خدمات Google Play، والتي لا تتوفر في هاتفك."
+ "لن يتم تشغيل هذا التطبيق بدون خدمات Google Play، والتي لا تتوفر في جهازك اللوحي."
+ "الحصول على خدمات Google Play"
+ "تمكين خدمات Google Play"
+ "لن يعمل هذا التطبيق ما لم يتم تمكين خدمات Google Play."
+ "تمكين خدمات Google Play"
+ "تحديث خدمات Google Play"
+ "لن يتم تشغيل هذا التطبيق ما لم تحدِّث خدمات Google Play."
+ "خطأ في الشبكة"
+ "يتطلب الاتصال بخدمات Google Play وجود اتصال بيانات."
+ "حساب غير صالح"
+ "الحساب الذي تمّ تحديده غير موجود على الجهاز. يُرجى اختيار حساب آخر."
+ "حدثت مشكلة غير معروفة في خدمات Google Play."
+ "خدمات Google Play"
+ "خدمات Google Play التي تستجيب لها بعض تطبيقاتك لا تعمل على جهازك. يُرجى الاتصال بجهة التصنيع للحصول على المساعدة."
+ "يبدو أن التاريخ على الجهاز غير صحيح. الرجاء التحقق من التاريخ على الجهاز."
+ "تحديث"
+ "تسجيل الدخول"
+ "تسجيل الدخول باستخدام Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/auth_strings.xml
new file mode 100644
index 0000000..38b8469
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Прыкладанне паспрабавала скарыстацца сапсаванай версіяй службаў Google Play."
+ "Прыкладанне патрабуе ўключэння службаў Google Play."
+ "Прыкладанне патрабуе ўсталявання службаў Google Play."
+ "Прыкладанне патрабуе абнаўлення службаў Google Play."
+ "Памылка службаў Google Play"
+ "Запытана прыкладаннем %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/common_strings.xml
new file mode 100644
index 0000000..03c0cdd
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-be/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Атрымаць службы Google Play"
+ "Гэта прыкладанне не будзе працаваць без службаў Google Play, якіх няма ў вашым тэлефоне."
+ "Гэта прыкладанне не будзе працаваць без службаў Google Play, якіх няма на вашым планшэце."
+ "Атрымаць службы Google Play"
+ "Уключыць службы Google Play"
+ "Гэта прыкладанне не будзе працаваць, пакуль вы не ўключыце службы Google Play."
+ "Уключыць службы Google Play"
+ "Абнаўленне службаў Google Play"
+ "Гэта прыкладанне не будзе працаваць падчас абнаўлення службаў Google Play."
+
+
+
+
+
+
+
+
+ "Невядомая праблема са службамі Google Play."
+ "Службы Google Play"
+ "Службы Google Play, да якiх прывязаны некаторыя прыкладаннi, не падтрымлiваюцца на вашай прыладзе. Па дапамогу звярнiцеся да вытворцы."
+
+
+ "Абнавіць"
+ "Увайсцi"
+ "Увайсці ў Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/auth_strings.xml
new file mode 100644
index 0000000..87aba25
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Приложение опита да ползва неправилна версия на услуг. за Google Play."
+ "Приложение изисква активирането на услугите за Google Play."
+ "Приложение изисква инсталирането на услугите за Google Play."
+ "Приложение изисква актуализирането на услугите за Google Play."
+ "Грешка в услугите за Google Play"
+ "Заявено от %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/common_strings.xml
new file mode 100644
index 0000000..4aa01ec
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-bg/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Грешка в услугите за Google Play"
+ "Приложение изисква инсталирането на услугите за Google Play."
+ "Приложение изисква актуализирането на услугите за Google Play."
+ "Приложение изисква активирането на услугите за Google Play."
+ "Заявено от %1$s "
+ "Изтегляне на услугите за Google Play"
+ "Това приложение няма да се изпълнява без услугите за Google Play, които липсват в телефона ви."
+ "Това приложение няма да се изпълнява без услугите за Google Play, които липсват в таблета ви."
+ "Услуги за Google Play: Изтегл."
+ "Активиране на услугите за Google Play"
+ "Това приложение няма да работи, освен ако не активирате услугите за Google Play."
+ "Услуги за Google Play: Актив."
+ "Актуализиране на услугите за Google Play"
+ "Това приложение няма да се изпълнява, освен ако не актуализирате услугите за Google Play."
+ "Грешка в мрежата"
+ "За свързване с услугите за Google Play се изисква връзка за данни."
+ "Невалиден профил"
+ "Посоченият профил не съществува на това устройство. Моля, изберете друг."
+ "Неизвестен проблем с услугите за Google Play."
+ "Услуги за Google Play"
+ "Услугите за Google Play, на които разчитат някои от приложенията ви, не се поддържат от устройството ви. Моля, свържете се с производителя за помощ."
+ "Изглежда, че датата на устройството е неправилна. Моля, проверете я."
+ "Актуализиране"
+ "Вход"
+ "Вход с Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/auth_strings.xml
new file mode 100644
index 0000000..66de55f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Una aplic. ha intentat utilitzar una versió errònia de serveis de Play."
+ "Una aplicació requereix que s\'activin els serveis de Google Play."
+ "Una aplicació requereix que s\'instal·lin els serveis de Google Play."
+ "Una aplicació requereix que s\'actualitzin els serveis de Google Play."
+ "Error dels serveis de Google Play"
+ "Sol·licitada per %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/common_strings.xml
new file mode 100644
index 0000000..d9ebc7f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ca/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Error dels serveis de Google Play"
+ "Una aplicació requereix que s\'instal·lin els serveis de Google Play."
+ "Una aplicació requereix que s\'actualitzin els serveis de Google Play."
+ "Una aplicació requereix que s\'activin els serveis de Google Play."
+ "Sol·licitada per %1$s "
+ "Baixa els serveis de Google Play"
+ "Aquesta aplicació no s\'executarà si el telèfon no té instal·lats els serveis de Google Play."
+ "Aquesta aplicació no funcionarà si la tauleta no té instal·lats els serveis de Google Play."
+ "Baixa els serveis de Google Play"
+ "Activa els serveis de Google Play"
+ "Aquesta aplicació no funcionarà si no actives els serveis de Google Play."
+ "Activa els serveis de Google Play"
+ "Actualitza els serveis de Google Play"
+ "Aquesta aplicació no s\'executarà si no actualitzes els serveis de Google Play."
+ "Error de xarxa"
+ "Es requereix una connexió de dades per connectar amb els serveis de Google Play."
+ "Compte no vàlid"
+ "El compte especificat no existeix en aquest dispositiu. Tria un compte diferent."
+ "Error desconegut relacionat amb els serveis de Google Play."
+ "Serveis de Google Play"
+ "El teu dispositiu no és compatible amb els serveis de Google Play, en què es basen les teves aplicacions. Per obtenir assistència, contacta amb el fabricant."
+ "Sembla que la data del dispositiu no és correcta. Comprova-la."
+ "Actualitza"
+ "Inicia sessió"
+ "Inicia sessió amb Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/auth_strings.xml
new file mode 100644
index 0000000..bb19af1
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikace se pokusila použít nesprávnou verzi Služeb Google Play."
+ "Aplikace vyžaduje aktivované Služby Google Play."
+ "Aplikace vyžaduje instalaci Služeb Google Play."
+ "Aplikace vyžaduje aktualizaci Služeb Google Play."
+ "Chyba služeb Google Play"
+ "Požadováno aplikací %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/common_strings.xml
new file mode 100644
index 0000000..669d2a2
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-cs/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Chyba služeb Google Play"
+ "Aplikace vyžaduje instalaci služeb Google Play."
+ "Aplikace vyžaduje aktualizaci služeb Google Play."
+ "Aplikace vyžaduje aktivaci služeb Google Play."
+ "Požadováno aplikací %1$s "
+ "Instalovat služby Google Play"
+ "Ke spuštění této aplikace jsou potřeba služby Google Play, které v telefonu nemáte."
+ "Ke spuštění této aplikace jsou potřeba služby Google Play, které v tabletu nemáte."
+ "Instalovat služby Google Play"
+ "Aktivovat služby Google Play"
+ "Ke spuštění této aplikace je třeba aktivovat služby Google Play."
+ "Aktivovat služby Google Play"
+ "Aktualizace služeb Google Play"
+ "Ke spuštění této aplikace je třeba aktualizovat služby Google Play."
+ "Chyba sítě"
+ "Připojení ke službám Google Play vyžaduje datové připojení."
+ "Neplatný účet"
+ "Zadaný účet v tomto zařízení neexistuje. Zvolte prosím jiný účet."
+ "Nastal neznámý problém se službami Google Play."
+ "Služby Google Play"
+ "Některé vaše aplikace vyžadují služby Google Play, které ve vašem zařízení nejsou podporovány. S žádostí o pomoc se prosím obraťte na výrobce."
+ "Datum v zařízení není správně nastaveno. Zkontrolujte prosím datum."
+ "Aktualizovat"
+ "Přihlásit se"
+ "Přihlásit se účtem Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/auth_strings.xml
new file mode 100644
index 0000000..fdd18da
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "En applikation forsøgte at bruge en defekt version af Google Play."
+ "En applikation kræver, at Google Play er aktiveret."
+ "En applikation kræver, at Google Play er installeret."
+ "En applikation kræver en opdatering af Google Play."
+ "Fejl i Google Play-tjenester"
+ "Anmodning fra %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/common_strings.xml
new file mode 100644
index 0000000..79c3c64
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-da/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Fejl i Google Play-tjenester"
+ "En applikation kræver, at Google Play-tjenester installeres."
+ "En applikation kræver, at Google Play-tjenester opdateres."
+ "En applikation kræver, at Google Play-tjenester aktiveres."
+ "Anmodning fra %1$s "
+ "Hent Google Play-tjenester"
+ "Denne app kan ikke køre uden Google Play-tjenester, som mangler på din telefon."
+ "Denne app kan ikke køre uden Google Play-tjenester, som mangler på din tablet."
+ "Hent Google Play-tjenester"
+ "Aktivér Google Play-tjenester"
+ "Denne app virker ikke, medmindre du aktiverer Google Play-tjenester."
+ "Aktivér Google Play-tjenester"
+ "Opdater Google Play-tjenester"
+ "Denne app kan ikke køre, medmindre du opdaterer Google Play-tjenester."
+ "Netværksfejl"
+ "Der kræves en dataforbindelse for at oprette forbindelse til Google Play-tjenester."
+ "Ugyldig konto"
+ "Den angivne konto findes ikke på denne enhed. Vælg en anden konto."
+ "Ukendt problem med Google Play-tjenester."
+ "Google Play-tjenester"
+ "Google Play-tjenester, som nogle af dine applikationer er afhængige af, understøttes ikke af din enhed. Kontakt producenten for at få hjælp."
+ "Datoen på enheden ser ud til at være forkert. Husk at kontrollere datoen på enheden."
+ "Opdater"
+ "Log ind"
+ "Log ind med Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/auth_strings.xml
new file mode 100644
index 0000000..90731c4
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "App versuchte, defekte Google Play-Dienste-Version zu verwenden"
+ "App erfordert aktivierte Google Play-Dienste"
+ "App erfordert die Installation von Google Play-Diensten"
+ "App erfordert ein Update für Google Play-Dienste"
+ "Fehler bei Google Play-Diensten"
+ "Angefordert von %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/common_strings.xml
new file mode 100644
index 0000000..30c49d6
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-de/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Fehler bei Zugriff auf Google Play-Dienste"
+ "App erfordert die Installation der Google Play-Dienste"
+ "App erfordert ein Update der Google Play-Dienste"
+ "App erfordert die Aktivierung der Google Play-Dienste"
+ "Angefordert von %1$s "
+ "Google Play-Dienste installieren"
+ "Zur Nutzung dieser App sind Google Play-Dienste erforderlich, die auf Ihrem Telefon nicht installiert sind."
+ "Zur Nutzung dieser App sind Google Play-Dienste erforderlich, die auf Ihrem Tablet nicht installiert sind."
+ "Google Play-Dienste installieren"
+ "Google Play-Dienste aktivieren"
+ "Diese App funktioniert nur, wenn Sie die Google Play-Dienste aktivieren."
+ "Google Play-Dienste aktivieren"
+ "Google Play-Dienste aktualisieren"
+ "Diese App wird nur ausgeführt, wenn Sie die Google Play-Dienste aktualisieren."
+ "Netzwerkfehler"
+ "Um eine Verbindung zu den Google Play-Diensten herzustellen, ist eine Datenverbindung erforderlich."
+ "Ungültiges Konto"
+ "Das angegebene Konto ist auf diesem Gerät nicht vorhanden. Bitte wählen Sie ein anderes Konto aus."
+ "Unbekanntes Problem mit Google Play-Diensten"
+ "Google Play-Dienste"
+ "Google Play-Dienste, auf denen einige Ihrer Apps basieren, werden von diesem Gerät nicht unterstützt. Wenden Sie sich für weitere Informationen an den Hersteller."
+ "Das Datum auf dem Gerät scheint falsch zu sein. Bitte überprüfen Sie das Datum auf dem Gerät."
+ "Aktualisieren"
+ "Anmelden"
+ "Über Google anmelden"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/auth_strings.xml
new file mode 100644
index 0000000..fdd7573
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Απόπειρα χρήσης ακατάλληλης έκδοσης Υπηρεσιών Google Play από εφαρμογή"
+ "Μια εφαρμογή απαιτεί τις Υπηρεσίες Google Play για ενεργοποίηση."
+ "Μια εφαρμογή απαιτεί την εγκατάσταση των Υπηρεσιών Google Play."
+ "Μια εφαρμογή απαιτεί μια ενημέρωση για τις Υπηρεσίες Google Play."
+ "Σφάλμα υπηρεσιών Google Play"
+ "Υποβλήθηκε αίτημα από την εφαρμογή %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/common_strings.xml
new file mode 100644
index 0000000..0ea141e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-el/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Σφάλμα Υπηρεσιών Google Play"
+ "Μια εφαρμογή απαιτεί την εγκατάσταση των Υπηρεσιών Google Play."
+ "Μια εφαρμογή απαιτεί την ενημέρωση των Υπηρεσιών Google Play."
+ "Μια εφαρμογή απαιτεί την ενεργοποίηση των Υπηρεσιών Google Play."
+ "Υποβλήθηκε αίτημα από την εφαρμογή %1$s "
+ "Λήψη υπηρεσιών Google Play"
+ "Αυτή η εφαρμογή δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες λείπουν από το τηλέφωνό σας."
+ "Αυτή η εφαρμογή δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες λείπουν από το tablet σας."
+ "Λήψη υπηρεσιών Google Play"
+ "Ενεργοποίηση υπηρεσιών Google Play"
+ "Αυτή η εφαρμογή δεν θα λειτουργήσει εάν δεν έχετε ενεργοποιήσει τις υπηρεσίες Google Play."
+ "Ενεργοπ. υπηρεσιών Google Play"
+ "Ενημέρωση υπηρεσιών Google Play"
+ "Αυτή η εφαρμογή θα εκτελεστεί αφού ενημερώσετε τις υπηρεσίες Google Play."
+ "Σφάλμα δικτύου"
+ "Απαιτείται σύνδεση δεδομένων για να συνδεθείτε με τις Υπηρεσίες Google Play."
+ "Μη έγκυρος λογαριασμός"
+ "Ο συγκεκριμένος λογαριασμός δεν υπάρχει σε αυτήν τη συσκευή. Επιλέξτε έναν διαφορετικό λογαριασμό."
+ "Άγνωστο πρόβλημα με τις υπηρεσίες Google Play."
+ "Υπηρεσίες Google Play"
+ "Οι υπηρεσίες Google Play, στις οποίες βασίζονται ορισμένες από τις εφαρμογές σας, δεν υποστηρίζονται στη συσκευή σας. Επικοινωνήστε με τον κατασκευαστή για υποστήριξη."
+ "Η ημερομηνία στη συσκευή φαίνεται λανθασμένη. Ελέγξτε την ημερομηνία στη συσκευή."
+ "Ενημέρωση"
+ "Σύνδεση"
+ "Συνδεθείτε στο Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/auth_strings.xml
new file mode 100644
index 0000000..c4b432e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "An application attempted to use a bad version of Google Play Services."
+ "An application requires Google Play Services to be enabled."
+ "An application requires installation of Google Play Services."
+ "An application requires an update for Google Play Services."
+ "Google Play services error"
+ "Requested by %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/common_strings.xml
new file mode 100644
index 0000000..b32a51e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rGB/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play services error"
+ "An application requires installation of Google Play services."
+ "An application requires an update for Google Play Services."
+ "An application requires Google Play services to be enabled."
+ "Requested by %1$s "
+ "Get Google Play services"
+ "This app won\'t run without Google Play services, which are missing from your phone."
+ "This app won\'t run without Google Play services, which are missing from your tablet."
+ "Get Google Play services"
+ "Enable Google Play services"
+ "This app won\'t work unless you enable Google Play services."
+ "Enable Google Play services"
+ "Update Google Play services"
+ "This app won\'t run unless you update Google Play services."
+ "Network Error"
+ "A data connection is required to connect to Google Play services."
+ "Invalid Account"
+ "The specified account does not exist on this device. Please choose a different account."
+ "Unknown issue with Google Play services."
+ "Google Play services"
+ "Google Play services, which some of your applications rely on, is not supported by your device. Please contact the manufacturer for assistance."
+ "The date on the device appears to be incorrect. Please check the date on the device."
+ "Update"
+ "Sign in"
+ "Sign in with Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/auth_strings.xml
new file mode 100644
index 0000000..c4b432e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "An application attempted to use a bad version of Google Play Services."
+ "An application requires Google Play Services to be enabled."
+ "An application requires installation of Google Play Services."
+ "An application requires an update for Google Play Services."
+ "Google Play services error"
+ "Requested by %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/common_strings.xml
new file mode 100644
index 0000000..b32a51e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-en-rIN/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play services error"
+ "An application requires installation of Google Play services."
+ "An application requires an update for Google Play Services."
+ "An application requires Google Play services to be enabled."
+ "Requested by %1$s "
+ "Get Google Play services"
+ "This app won\'t run without Google Play services, which are missing from your phone."
+ "This app won\'t run without Google Play services, which are missing from your tablet."
+ "Get Google Play services"
+ "Enable Google Play services"
+ "This app won\'t work unless you enable Google Play services."
+ "Enable Google Play services"
+ "Update Google Play services"
+ "This app won\'t run unless you update Google Play services."
+ "Network Error"
+ "A data connection is required to connect to Google Play services."
+ "Invalid Account"
+ "The specified account does not exist on this device. Please choose a different account."
+ "Unknown issue with Google Play services."
+ "Google Play services"
+ "Google Play services, which some of your applications rely on, is not supported by your device. Please contact the manufacturer for assistance."
+ "The date on the device appears to be incorrect. Please check the date on the device."
+ "Update"
+ "Sign in"
+ "Sign in with Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/auth_strings.xml
new file mode 100644
index 0000000..b47bf29
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Una aplic. intentó usar una versión no válida de Google Play Services"
+ "Una aplicación requiere que se active Google Play Services"
+ "Una aplicación requiere que se instale Google Play Services"
+ "Una aplicación requiere que se actualice Google Play Services"
+ "Error de Google Play Services"
+ "Solicitada por %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/common_strings.xml
new file mode 100644
index 0000000..541ea96
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es-rUS/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Error de Google Play Services"
+ "Una aplicación requiere que se instale Google Play Services"
+ "Una aplicación requiere que se actualice Google Play Services"
+ "Una aplicación requiere que se habilite Google Play Services"
+ "Solicitada por %1$s "
+ "Obtener Google Play Services"
+ "Esta aplicación no se ejecutará si no instalasGoogle Play Services en tu dispositivo."
+ "Esta aplicación no se ejecutará si no instalas Google Play Services en tu tablet."
+ "Descargar Google Play Services"
+ "Activar Google Play Services"
+ "Esta aplicación no funcionará si no activas Google Play Services."
+ "Activar Google Play Services"
+ "Actualizar Google Play Services"
+ "Esta aplicación no se ejecutará si no actualizas Google Play Services."
+ "Error de red"
+ "Se necesita una conexión de datos para establecer conexión con Google Play Services."
+ "Cuenta no válida"
+ "La cuenta especificada no existe en este dispositivo. Elige otra cuenta."
+ "Error desconocido relacionado con Google Play Services"
+ "Google Play Services"
+ "Google Play Services, del cual dependen algunas de tus aplicaciones, no es compatible con tu dispositivo. Comunícate con el fabricante para obtener ayuda."
+ "Parece que la fecha del dispositivo es incorrecta. ¿Puedes revisarla?"
+ "Actualizar"
+ "Acceder"
+ "Acceder con Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/auth_strings.xml
new file mode 100644
index 0000000..792b155
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Una aplicación intentó usar versión incorrecta de servicios de Google Play."
+ "Una aplicación requiere que se habiliten los servicios de Play."
+ "Una aplicación requiere que se instalen los servicios de Google Play."
+ "Una aplicación requiere que se actualicen los servicios de Google Play."
+ "Error de los servicios de Google Play"
+ "Solicitada por %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/common_strings.xml
new file mode 100644
index 0000000..a96c717
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Error de servicios de Google Play"
+ "Una aplicación requiere la instalación de servicios de Google Play."
+ "Una aplicación requiere una actualización de servicios de Google Play."
+ "Una aplicación requiere que se habiliten los servicios de Google Play."
+ "Solicitada por %1$s "
+ "Descargar servicios de Google Play"
+ "Esta aplicación no se ejecutará si tu teléfono no tiene instalados los servicios de Google Play."
+ "Esta aplicación no se ejecutará si tu tablet no tiene instalados los servicios de Google Play."
+ "Descargar servicios de Google Play"
+ "Habilitar servicios de Google Play"
+ "Esta aplicación no funcionará si no habilitas los servicios de Google Play."
+ "Habilitar servicios de Google Play"
+ "Actualizar servicios de Google Play"
+ "Esta aplicación no se ejecutará si no actualizas los servicios de Google Play."
+ "Error de red"
+ "Se necesita una conexión de datos para establecer conexión con los servicios de Google Play."
+ "Cuenta no válida"
+ "La cuenta especificada no existe en este dispositivo. Selecciona otra cuenta."
+ "Error desconocido relacionado con los servicios de Google Play"
+ "Servicios de Google Play"
+ "Tu dispositivo no es compatible con los servicios de Google Play, de los cuales dependen tus aplicaciones. Para obtener asistencia, ponte en contacto el fabricante."
+ "Parece que la fecha del dispositivo es incorrecta. Compruébala."
+ "Actualizar"
+ "Iniciar sesión"
+ "Iniciar sesión con Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/wallet_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/wallet_strings.xml
new file mode 100644
index 0000000..345f2cf
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-es/wallet_strings.xml
@@ -0,0 +1,4 @@
+
+
+ Comprar con Google
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/auth_strings.xml
new file mode 100644
index 0000000..8d0019f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Rakendus püüdis kasutada Google Play teenuste sobimatut versiooni."
+ "Rakenduse kasutamiseks peavad olema lubatud Google Play teenused."
+ "Rakenduse kasutamiseks peavad olema installitud Google Play teenused."
+ "Rakenduse kasutamiseks tuleb värskendada Google Play teenuseid."
+ "Viga Google Play teenustes"
+ "Päringu esitas: %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/common_strings.xml
new file mode 100644
index 0000000..262340f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-et-rEE/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Viga Google Play teenustes"
+ "Rakenduse kasutamiseks peavad olema installitud Google Play teenused."
+ "Rakenduse kasutamiseks tuleb värskendada Google Play teenuseid."
+ "Rakenduse kasutamiseks peavad olema lubatud Google Play teenused."
+ "Taotluse esitas %1$s "
+ "Hankige Google Play teenused"
+ "Selle rakenduse käitamiseks on vaja Google Play teenuseid, mida teie telefonis pole."
+ "Selle rakenduse käitamiseks on vaja Google Play teenuseid, mida teie tahvelarvutis pole."
+ "Hankige Google Play teenused"
+ "Lubage Google Play teenused"
+ "See rakendus ei tööta, kui te ei luba Google Play teenuseid."
+ "Lubage Google Play teenused"
+ "Värskendage Google Play teenuseid"
+ "Seda rakendust ei saa käitada, kui te ei värskenda Google Play teenuseid."
+ "Võrgu viga"
+ "Google Play teenustega ühenduse loomiseks on vajalik andmesideühendus."
+ "Vale konto"
+ "Määratud kontot pole selles seadmes olemas. Valige muu konto."
+ "Google Play teenuste tundmatu probleem."
+ "Google Play teenused"
+ "Teie seade ei toeta Google Play teenuseid, millele mõni teie rakendustest toetub. Abi saamiseks võtke ühendust tootjaga."
+ "Seadme kuupäev paistab olevat vale. Kontrollige seadme kuupäeva."
+ "Värskenda"
+ "Logi sisse"
+ "Logi sisse Google\'iga"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/auth_strings.xml
new file mode 100644
index 0000000..52fd99c
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "برنامهای تلاش کرد از نسخه نادرستی از خدمات Google Play استفاده کند."
+ "برنامهای به فعال کردن خدمات Google Play نیاز دارد."
+ "برنامهای به نصب خدمات Google Play نیاز دارد."
+ "برنامهای به بهروزرسانی خدمات Google Play نیاز دارد."
+ "خطا در خدمات Google Play"
+ "درخواست توسط %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/common_strings.xml
new file mode 100644
index 0000000..17a4e43
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fa/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "خطا در خدمات Google Play"
+ "برنامهای نیاز به نصب خدمات Google Play دارد."
+ "برنامهای نیاز به یک بهروزرسانی برای خدمات Google Play دارد."
+ "برنامهای نیاز به فعال شدن خدمات Google Play دارد."
+ "درخواست توسط %1$s "
+ "دریافت خدمات Google Play"
+ "این برنامه بدون خدمات Google Play اجرا نمیشود، این خدمات در تلفن شما وجود ندارد."
+ "این برنامه بدون خدمات Google Play اجرا نمیشود، این خدمات در رایانهٔ لوحی شما وجود ندارد."
+ "دریافت خدمات Google Play"
+ "فعال کردن خدمات Google Play"
+ "تا زمانیکه خدمات Google Play را فعال نکنید این برنامه کار نمیکند."
+ "فعال کردن خدمات Google Play"
+ "بهروزرسانی خدمات Google Play"
+ "تا زمانیکه خدمات Google Play را بهروز نکنید این برنامه کار نمیکند."
+ "خطای شبکه"
+ "برای اتصال به خدمات Google Play اتصال داده لازم است."
+ "حساب نامعتبر"
+ "حسابی که تعیین کردید در این دستگاه وجود ندارد. لطفاً حساب دیگری را انتخاب کنید."
+ "مشکل نامشخص در خدمات Google Play."
+ "خدمات Google Play"
+ "خدمات Google Play، که برخی از برنامههای شما به آن وابسته است، توسط دستگاه شما پشتیبانی نمیشود. لطفاً برای دریافت کمک با سازنده تماس بگیرید."
+ "تاریخ روی دستگاه ظاهراً اشتباه است. لطفاً تاریخ روی دستگاه را بررسی کنید."
+ "بهروزرسانی"
+ "ورود به سیستم"
+ "ورود به سیستم با Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/auth_strings.xml
new file mode 100644
index 0000000..fb6e8a0
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Sovellus yritti käyttää virheellistä Google Play -palveluiden versiota"
+ "Ota käyttöön Google Play -palvelut, jotta sovellus toimii."
+ "Asenna Google Play -palvelut, jotta sovellus toimii."
+ "Päivitä Google Play -palvelut, jotta sovellus toimii."
+ "Virhe Google Play -palveluissa"
+ "Pyynnön teki %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/common_strings.xml
new file mode 100644
index 0000000..ccf1a10
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fi/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Virhe Google Play -palveluissa"
+ "Asenna Google Play -palvelut, jotta sovellus toimii."
+ "Päivitä Google Play -palvelut, jotta sovellus toimii."
+ "Ota käyttöön Google Play -palvelut, jotta sovellus toimii."
+ "Pyynnön teki %1$s "
+ "Asenna Google Play -palvelut"
+ "Tämä sovellus ei toimi ilman Google Play -palveluita, jotka puuttuvat puhelimesta."
+ "Tämä sovellus ei toimi ilman Google Play -palveluita, jotka puuttuvat tablet-laitteesta."
+ "Asenna Google Play -palvelut"
+ "Ota Google Play -palvelut käyttöön"
+ "Tämä sovellus ei toimi, ellet ota Google Play -palveluita käyttöön."
+ "Ota Google Play -palv. käyttöön"
+ "Päivitä Google Play -palvelut"
+ "Tämä sovellus ei toimi, ellet päivitä Google Play -palveluita."
+ "Verkkovirhe"
+ "Google Play -palveluiden käyttöön tarvitaan tietoliikenneyhteys."
+ "Tili ei kelpaa"
+ "Kyseistä tiliä ei ole tällä laitteella. Valitse toinen tili."
+ "Tuntematon ongelma käytettäessä Google Play -palveluita."
+ "Google Play -palvelut"
+ "Google Play -palveluita, joita osa sovelluksistasi käyttää, ei tueta laitteellasi. Pyydä ohjeita laitteen valmistajalta."
+ "Laitteen päivämäärä vaikuttaa virheelliseltä. Tarkista laitteen päivämäärä."
+ "Päivitä"
+ "Kirjaudu"
+ "Kirjaudu Google-tiliin"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/auth_strings.xml
new file mode 100644
index 0000000..48269d3
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Une application requiert une version valide des services Google Play"
+ "Une application requiert l\'activation des services Google Play"
+ "Une application requiert l\'installation des services Google Play"
+ "Une application requiert la mise à jour des services Google Play"
+ "Erreur liée aux services Google Play"
+ "Demandée par %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/common_strings.xml
new file mode 100644
index 0000000..cd4150e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr-rCA/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Erreur liée aux services Google Play"
+ "Une application demande l\'installation des services Google Play."
+ "Une application requiert la mise à jour des services Google Play."
+ "Une application requiert l\'activation des services Google Play."
+ "Demandée par %1$s "
+ "Installer les services Google Play"
+ "Cette application ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre téléphone."
+ "Cette application ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre tablette."
+ "Installer les services Google Play"
+ "Activer les services Google Play"
+ "Cette application ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."
+ "Activer les services Google Play"
+ "Mettre à jour les services Google Play"
+ "Cette application ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."
+ "Erreur réseau"
+ "Vous devez disposer d\'une connexion de données pour utiliser les services Google Play."
+ "Compte erroné"
+ "Le compte indiqué n\'existe pas sur cet appareil. Veuillez sélectionner un autre compte."
+ "Problème inconnu avec les services Google Play."
+ "Services Google Play"
+ "Les services Google Play, dont dépendent certaines de vos applications, ne sont pas compatibles avec votre appareil. Veuillez contacter le fabricant pour obtenir de l\'aide."
+ "La date sur l\'appareil semble incorrecte. Veuillez la vérifier."
+ "Mettre à jour"
+ "Connexion"
+ "Se connecter via Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/auth_strings.xml
new file mode 100644
index 0000000..48269d3
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Une application requiert une version valide des services Google Play"
+ "Une application requiert l\'activation des services Google Play"
+ "Une application requiert l\'installation des services Google Play"
+ "Une application requiert la mise à jour des services Google Play"
+ "Erreur liée aux services Google Play"
+ "Demandée par %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/common_strings.xml
new file mode 100644
index 0000000..1d62961
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-fr/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Erreur liée aux services Google Play"
+ "Une application demande l\'installation des services Google Play."
+ "Une application demande la mise à jour des services Google Play."
+ "Une application demande l\'activation des services Google Play."
+ "Notification issue de l\'application \"%1$s \""
+ "Installer les services Google Play"
+ "Cette application ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre téléphone."
+ "Cette application ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre tablette."
+ "Installer services Google Play"
+ "Activer les services Google Play"
+ "Cette application ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."
+ "Activer services Google Play"
+ "Mettre à jour les services Google Play"
+ "Cette application ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."
+ "Erreur réseau"
+ "Vous devez disposer d\'une connexion de données pour utiliser les services Google Play."
+ "Compte erroné"
+ "Le compte indiqué n\'existe pas sur cet appareil. Veuillez sélectionner un autre compte."
+ "Problème inconnu avec les services Google Play."
+ "Services Google Play"
+ "Les services Google Play, dont dépendent certaines de vos applications, ne sont pas compatibles avec votre appareil. Veuillez contacter le fabricant pour obtenir de l\'aide."
+ "La date sur l\'appareil semble incorrecte. Veuillez la vérifier."
+ "Mettre à jour"
+ "Connexion"
+ "Se connecter avec Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/auth_strings.xml
new file mode 100644
index 0000000..8664b0f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "ऐप्स ने Google Play सेवाओं के खराब संस्करण के उपयोग का प्रयास किया."
+ "ऐप्स के लिए Google Play सेवाओं को सक्षम किए जाने की आवश्यकता है."
+ "ऐप्स के लिए Google Play सेवाओं के इंस्टॉलेशन की आवश्यकता है."
+ "ऐप्स के लिए Google Play सेवाओं में Google Play से नई जानकारी की आवश्यकता है."
+ "Google Play सेवाएं त्रुटि"
+ "%1$s द्वारा अनुरोधित"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/common_strings.xml
new file mode 100644
index 0000000..66d9c54
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hi/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play सेवाएं त्रुटि"
+ "एप्लिकेशन के लिए Google Play सेवाएं इंस्टॉल किए जाने की आवश्यकता है."
+ "एप्लिकेशन के लिए Google Play सेवाओं में नई जानकारी की आवश्यकता है."
+ "एप्लिकेशन के लिए Google Play सेवाएं सक्षम किए जाने की आवश्यकता है."
+ "%1$s के द्वारा अनुरोधित"
+ "Google Play सेवाएं पाएं"
+ "यह ऐप्स Google Play सेवाओं के बिना नहीं चलेगा, जो आपके फ़ोन में नहीं हैं."
+ "यह ऐप्स Google Play सेवाओं के बिना नहीं चलेगा, जो आपके टेबलेट में नहीं हैं."
+ "Google Play सेवाएं पाएं"
+ "Google Play सेवाएं सक्षम करें"
+ "जब तक आप Google Play सेवाएं सक्षम नहीं करते, तब तक यह ऐप्स कार्य नहीं करेगा."
+ "Google Play सेवाएं सक्षम करें"
+ "Google Play सेवाएं से नई जानकारी"
+ "जब तक आप Google Play सेवाओं से नई जानकारी नहीं लेते हैं, तब तक यह ऐप्स नहीं चलेगा."
+ "नेटवर्क त्रुटि"
+ "Google Play सेवाओं से कनेक्ट करने के लिए डेटा कनेक्शन की आवश्यकता है."
+ "अमान्य खाता"
+ "निर्दिष्ट खाता इस उपकरण पर मौजूद नहीं है. कृपया कोई भिन्न खाता चुनें."
+ "Google Play सेवाओं के साथ अज्ञात समस्या."
+ "Google Play सेवाएं"
+ "Google Play सेवाएं, जिन पर आपके कुछ ऐप्स निर्भर करते हैं, आपके उपकरण द्वारा समर्थित नहीं हैं. कृपया सहायता के लिए निर्माता से संपर्क करें."
+ "उपकरण का दिनांक गलत प्रतीत हो रहा है. कृपया उपकरण का दिनांक जांचें."
+ "नई जानकारी पाएं"
+ "प्रवेश करें"
+ "Google से प्रवेश करें"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/auth_strings.xml
new file mode 100644
index 0000000..e3b9dbc
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikacija je pokušala upotrijebiti lošu verziju Usluga za Google Play."
+ "Aplikacija zahtijeva omogućavanje Usluga za Google Play."
+ "Aplikacija zahtijeva instaliranje Usluga za Google Play."
+ "Aplikacija zahtijeva ažuriranje Usluga za Google Play."
+ "Pogreška usluga za Google Play"
+ "Zahtijeva aplikacija %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/common_strings.xml
new file mode 100644
index 0000000..f8f72c7
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hr/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Pogreška Usluga za Google Play"
+ "Aplikacija zahtijeva instaliranje Usluga za Google Play."
+ "Aplikacija zahtijeva ažuriranje Usluga za Google Play."
+ "Aplikacija zahtijeva da Usluge za Google Play budu omogućene."
+ "Zahtijeva aplikacija %1$s "
+ "Preuzmi usluge za Google Play"
+ "Ova aplikacija neće funkcionirati bez usluga za Google Play, koje nisu instalirane na vašem telefonu."
+ "Ova aplikacija neće funkcionirati bez usluga za Google Play, koje nisu instalirane na vašem tabletnom računalu."
+ "Preuzmi usluge za Google Play"
+ "Omogući usluge za Google Play"
+ "Ova aplikacija neće raditi ako ne omogućite usluge za Google Play."
+ "Omogući usluge za Google Play"
+ "Ažuriraj usluge za Google Play"
+ "Ova se aplikacija neće pokrenuti ako ne ažurirate usluge za Google Play."
+ "Mrežna pogreška"
+ "Potrebna je podatkovna veza za povezivanje s uslugama Google Play."
+ "Nevažeći račun"
+ "Navedeni račun ne postoji na ovom uređaju. Odaberite neki drugi račun."
+ "Nepoznata poteškoća s uslugama za Google Play."
+ "Usluge za Google Play"
+ "Usluge za Google Play, koje su potrebne za funkcioniranje nekih vaših aplikacija, nisu podržane na vašem uređaju. Pomoć potražite od proizvođača."
+ "Čini se da datum na uređaju nije točan. Provjerite datum na uređaju."
+ "Ažuriranje"
+ "Prijava"
+ "Prijava uslugom Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/auth_strings.xml
new file mode 100644
index 0000000..fd434f4
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Egy alkalmazás a Play Szolgáltatások rossz verzióját akarta használni."
+ "Egy alkalmazás kéri a Google Play Szolgáltatások engedélyezését."
+ "Egy alkalmazás kéri a Google Play Szolgáltatások telepítését."
+ "Egy alkalmazás kéri a Google Play Szolgáltatások frissítését."
+ "Google Play szolgáltatási hiba"
+ "Igénylő: %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/common_strings.xml
new file mode 100644
index 0000000..8c429e4
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hu/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play szolgáltatások – hiba"
+ "Egy alkalmazás Google Play-szolgáltatások telepítését kéri."
+ "Egy alkalmazás Google Play-szolgáltatások frissítését kéri."
+ "Egy alkalmazás Google Play-szolgáltatások engedélyezését kéri."
+ "A(z) %1$s kérésére"
+ "Play Szolgáltatások telepítése"
+ "Az alkalmazás működéséhez a Google Play Szolgáltatások szükségesek, ezek nincsenek telepítve a telefonon."
+ "Az alkalmazás működéséhez a Google Play Szolgáltatások szükségesek, ezek nincsenek telepítve a táblagépen."
+ "Play Szolgáltatások telepítése"
+ "Google Play Szolgáltatások aktiválása"
+ "Az alkalmazás csak akkor fog működni, ha engedélyezi a Google Play Szolgáltatásokat."
+ "Play Szolgáltatások aktiválása"
+ "Play Szolgáltatások frissítése"
+ "Az alkalmazás csak akkor fog működni, ha frissíti a Google Play Szolgáltatásokat."
+ "Hálózati hiba"
+ "A Google Play Szolgáltatásokhoz történő kapcsolódáshoz adatkapcsolat szükséges."
+ "Érvénytelen fiók"
+ "A megadott fiók nem létezik ezen az eszközön. Kérjük, válasszon másik fiókot."
+ "Ismeretlen hiba a Google Play Szolgáltatásokban."
+ "Google Play Szolgáltatások"
+ "A Google Play Szolgáltatásokat, amelyre egyes alkalmazások támaszkodnak, nem támogatja az eszköz. Segítségért forduljon az eszköz gyártójához."
+ "Az eszközön beállított dátum helytelen. Kérjük, ellenőrizze azt."
+ "Frissítés"
+ "Belépés"
+ "Google-bejelentkezés"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/auth_strings.xml
new file mode 100644
index 0000000..bec72e4
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Հավելվածը փորձել է կիրառել Google Play ծառայությունների վատ տարբերակը:"
+ "Հավելվածը պահանջում է միացնել Google Play ծառայությունները:"
+ "Հավելվածը պահանջում է տեղադրել Google Play ծառայությունները:"
+ "Հավելվածը պահանջում է թարմացնել Google Play ծառայությունները:"
+ "Google Play ծառայությունների սխալ"
+ "%1$s -ի հարցմամբ"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/common_strings.xml
new file mode 100644
index 0000000..ea5d130
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-hy-rAM/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play ծառայությունների սխալ կա"
+ "Ինչ-որ հավելված պահանջում է տեղադրել Google Play ծառայությունները:"
+ "Ինչ-որ հավելված պահանջում է թարմացնել Google Play ծառայությունները:"
+ "Ինչ-որ հավելված պահանջում է միացնել Google Play ծառայությունները:"
+ "%1$s -ի հարցմամբ"
+ "Տեղադրեք Google Play ծառայությունները"
+ "Այս հավելվածը չի գործարկվի առանց Google Play ծառայությունների, որոնք բացակայում են ձեր հեռախոսում:"
+ "Այս հավելվածը չի գործարկվի առանց Google Play ծառայությունների, որոնք բացակայում են ձեր գրասալիկում:"
+ "Տեղադրել Google Play ծառայությունները"
+ "Միացնել Google Play ծառայությունները"
+ "Այս ծրագիրը չի աշխատի, եթե դուք չմիացնեք Google Play ծառայությունները:"
+ "Միացնել Google Play ծառայությունները"
+ "Նորացրեք Google Play ծառայությունները"
+ "Այս ծրագիրը չի գործարկվի, եթե դուք չնորացնեք Google Play ծառայությունները:"
+ "Ցանցի սխալ կա"
+ "Պահանջվում է տվյալների կապ` Google Play ծառայություններին միանալու համար:"
+ "Հաշիվն անվավեր է"
+ "Նշված հաշիվը գոյություն չունի այս սարքում: Ընտրեք այլ հաշիվ:"
+ "Անհայտ խնդիր՝ Google Play ծառայություններում:"
+ "Google Play ծառայություններ"
+ "Google Play ծառայությունները, որոնց ապավինում են ձեր ծրագրերից որոշները, չեն աջակցվում ձեր սարքի կողմից: Խնդրում ենք կապվել արտադրողի հետ օգնության համար:"
+ "Սարքի ամսաթիվը կարծես սխալ է: Ստուգեք սարքի ամսաթիվը:"
+ "Նորացնել"
+ "Մուտք գործել"
+ "Մուտք գործեք Google-ով"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/auth_strings.xml
new file mode 100644
index 0000000..2871067
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikasi mencoba menggunakan versi Layanan Google Play yang rusak."
+ "Aplikasi membutuhkan Layanan Google Play untuk dapat diaktifkan."
+ "Aplikasi membutuhkan pemasangan Layanan Google Play."
+ "Aplikasi membutuhkan pembaruan untuk Layanan Google Play."
+ "Kesalahan layanan Google Play"
+ "Diminta oleh %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/common_strings.xml
new file mode 100644
index 0000000..d13356a
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-in/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Kesalahan layanan Google Play"
+ "Aplikasi mewajibkan pemasangan layanan Google Play."
+ "Aplikasi mewajibkan pembaruan untuk layanan Google Play."
+ "Aplikasi mewajibkan agar layanan Google Play diaktifkan."
+ "Diminta oleh %1$s "
+ "Dapatkan layanan Google Play"
+ "Aplikasi ini tidak akan berjalan tanpa layanan Google Play, yang tidak ada di ponsel Anda."
+ "Aplikasi ini tidak akan berjalan tanpa layanan Google Play, yang tidak ada di tablet Anda."
+ "Dapatkan layanan Google Play"
+ "Aktifkan layanan Google Play"
+ "Aplikasi ini tidak akan bekerja sampai Anda mengaktifkan layanan Google Play."
+ "Aktifkan layanan Google Play"
+ "Perbarui layanan Google Play"
+ "Aplikasi ini tidak akan berjalan sampai Anda memperbarui layanan Google Play."
+ "Kesalahan Jaringan"
+ "Sambungan data diperlukan untuk tersambung ke layanan Google Play."
+ "Akun Tidak Valid"
+ "Akun yang ditentukan tidak ada di perangkat ini. Pilih akun lain."
+ "Masalah tidak diketahui pada layanan Google Play."
+ "Layanan Google Play"
+ "Layanan Google Play, yang diandalkan oleh beberapa aplikasi Anda, tidak didukung oleh perangkat Anda. Hubungi pabrikan untuk mendapatkan bantuan."
+ "Tampaknya tanggal di perangkat salah. Periksa tanggal di perangkat."
+ "Perbarui"
+ "Masuk"
+ "Masuk dengan Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/auth_strings.xml
new file mode 100644
index 0000000..077845c
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Un\'app ha tentato di usare una versione non valida di Play Services."
+ "Un\'applicazione richiede l\'attivazione di Google Play Services."
+ "Un\'applicazione richiede l\'installazione di Google Play Services."
+ "Un\'applicazione richiede un aggiornamento di Google Play Services."
+ "Errore Google Play Services"
+ "Richiesta da %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/common_strings.xml
new file mode 100644
index 0000000..213127d
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-it/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Errore Google Play Services"
+ "Un\'applicazione richiede l\'installazione di Google Play Services."
+ "Un\'applicazione richiede un aggiornamento di Google Play Services."
+ "Un\'applicazione richiede l\'attivazione di Google Play Services."
+ "Richiesta da %1$s "
+ "Installa Google Play Services"
+ "L\'app non funzionerà senza Google Play Services, non presente sul tuo telefono."
+ "L\'app non funzionerà senza Google Play Services, non presente sul tuo tablet."
+ "Installa Google Play Services"
+ "Attiva Google Play Services"
+ "L\'app non funzionerà se non attivi Google Play Services."
+ "Attiva Google Play Services"
+ "Aggiorna Google Play Services"
+ "L\'app non funzionerà se non aggiorni Google Play Services."
+ "Errore di rete"
+ "È necessaria una connessione dati per connettersi a Google Play Services."
+ "Account non valido"
+ "L\'account specificato non esiste su questo dispositivo. Scegli un altro account."
+ "Problema sconosciuto con Google Play Services."
+ "Google Play Services"
+ "La piattaforma Google Play Services, su cui sono basate alcune delle tue applicazioni, non è supportata dal dispositivo in uso. Per assistenza, contatta il produttore."
+ "La data sul dispositivo sembra sbagliata. Controllala."
+ "Aggiorna"
+ "Accedi"
+ "Accedi con Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/auth_strings.xml
new file mode 100644
index 0000000..17d6483
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "יש אפליקציה שניסתה להשתמש בגרסה שגויה של שירותי Google Play."
+ "יש אפליקציה המחייבת הפעלה של שירותי Google Play."
+ "יש אפליקציה המחייבת התקנה של שירותי Google Play."
+ "יש אפליקציה המחייבת עדכון של שירותי Google Play."
+ "שגיאה בשירותי Google Play"
+ "התבקשה על ידי %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/common_strings.xml
new file mode 100644
index 0000000..0ee6661
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-iw/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "שגיאה בשירותי Google Play"
+ "קיימת אפליקציה המחייבת התקנה של שירותי Google Play."
+ "קיימת אפליקציה המחייבת עדכון עבור שירותי Google Play."
+ "קיימת אפליקציה המחייבת הפעלה של שירותי Google Play."
+ "התבקשה על ידי %1$s "
+ "קבל את שירותי Google Play"
+ "אפליקציה זו לא תפעל ללא שירותי Google Play, החסרים בטלפון שלך."
+ "אפליקציה זו לא תפעל ללא שירותי Google Play, החסרים בטאבלט שלך."
+ "קבל את שירותי Google Play"
+ "הפעלת שירותי Google Play"
+ "אפליקציה זו לא תעבוד אם לא תפעיל את שירותי Google Play."
+ "הפעל את שירותי Google Play"
+ "עדכון שירותי Google Play"
+ "אפליקציה זו לא תפעל אם לא תעדכן את שירותי Google Play."
+ "שגיאת רשת."
+ "דרוש חיבור נתונים כדי להתחבר לשירותי Google Play."
+ "חשבון לא חוקי"
+ "החשבון שצוין לא קיים במכשיר זה. בחר חשבון אחר."
+ "בעיה לא ידועה בשירותי Google Play."
+ "שירותי Google Play"
+ "שירותי Google Play, שחלק מהאפליקציות שלך מתבססות עליהם, אינם נתמכים על ידי המכשיר שברשותך. צור קשר עם היצרן לקבלת סיוע."
+ "נראה שהתאריך במכשיר שגוי. בדוק את התאריך במכשיר."
+ "עדכן"
+ "היכנס"
+ "היכנס באמצעות Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/auth_strings.xml
new file mode 100644
index 0000000..bc7b7af
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "アプリはGoogle Play開発者サービスの不適切なバージョンを使用しようとしました。"
+ "アプリではGoogle Play開発者サービスを有効にする必要があります。"
+ "アプリではGoogle Play開発者サービスをインストールする必要があります。"
+ "アプリではGoogle Play開発者サービスをアップデートする必要があります。"
+ "Google Play開発者サービスのエラー"
+ "%1$s によるリクエスト"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/common_strings.xml
new file mode 100644
index 0000000..d2e1c6a
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ja/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play開発者サービスのエラー"
+ "アプリではGoogle Play開発者サービスをインストールする必要があります"
+ "アプリではGoogle Play開発者サービスを更新する必要があります"
+ "アプリではGoogle Play開発者サービスを有効にする必要があります"
+ "%1$s によるリクエスト"
+ "Play開発者サービスの入手"
+ "このアプリの実行にはGoogle Play開発者サービスが必要ですが、お使いの携帯端末にはインストールされていません。"
+ "このアプリの実行にはGoogle Play開発者サービスが必要ですが、お使いのタブレットにはインストールされていません。"
+ "Play開発者サービスの入手"
+ "Play開発者サービスの有効化"
+ "このアプリの実行には、Google Play開発者サービスの有効化が必要です。"
+ "Play開発者サービスの有効化"
+ "Play開発者サービスの更新"
+ "このアプリの実行には、Google Play開発者サービスの更新が必要です。"
+ "ネットワークエラー"
+ "Google Play開発者サービスに接続するには、データ接続が必要です。"
+ "無効なアカウント"
+ "指定したアカウントはこの端末上に存在しません。別のアカウントを選択してください。"
+ "Google Play開発者サービスで原因不明の問題が発生しました。"
+ "Google Play開発者サービス"
+ "一部のアプリが使用しているGoogle Play開発者サービスは、お使いの端末ではサポートされていません。詳しくは、端末メーカーまでお問い合わせください。"
+ "端末上の日付が正しくないようです。端末上の日付をご確認ください。"
+ "更新"
+ "ログイン"
+ "Googleでログイン"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/auth_strings.xml
new file mode 100644
index 0000000..53f8947
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "აპლიკაცია შეეცადა გამოეყენებინა Google Play სერვისების არასწორი ვერსია."
+ "აპლიკაცია საჭიროებს გააქტიურებულ Google Play Services."
+ "აპლიკაცია საჭიროებს Google Play Services-ის ინსტალაციას."
+ "აპლიკაცია საჭიროებს Google Play Services-ის განახლებას."
+ "Google Play სერვისების შეცდომა"
+ "მომთხოვნი: %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/common_strings.xml
new file mode 100644
index 0000000..a7faf54
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ka-rGE/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play Services-ის შეცდომა"
+ "აპლიკაცია საჭიროება Google Play Services-ის ინსტალაციას."
+ "აპლიკაცია საჭიროებს Google Play Services-ის განახლებას."
+ "აპლიკაცია საჭიროებს გააქტიურებულ Google Play Services."
+ "მომთხოვნი: %1$s "
+ "Google Play სერვისების მიღება"
+ "ეს აპი ვერ გაეშვება Google Play სერვისების გარეშე, რაც თქვენს ტელეფონზე ვერ იძებნება."
+ "ეს აპი ვერ გაეშვება Google Play სერვისების გარეშე, რაც თქვენს ტელეფონზე ვერ იძებნება."
+ "Google Play სერვისების მიღება"
+ "Google Play სერვისების გააქტიურება"
+ "ეს აპი არ იმუშავებს, თუ არ გაააქტიურებთ Google Play სერვისებს."
+ "Google Play სერვისების გააქტიურება"
+ "Google Play სერვისების განახლება"
+ "ეს აპი ვერ გაეშვება, თუ Google Play სერვისებს არ განაახლებთ."
+ "ქსელის შეცდომა"
+ "Google Play Services-თან დასაკავშირებლად მონაცემთა გადაცემა აუცილებელია."
+ "ანგარიში არასწორია"
+ "მითითებული ანგარიში ამ მოწყობილობაზე არ არსებობს. გთხოვთ, აირჩიოთ სხვა ანგარიში."
+ "Google Play სერვისებთან დაკავშირებით უცნობი შეფერხება წარმოიშვა."
+ "Google Play სერვისები"
+ "Google Play სერვისები, რაც თქვენს ზოგიერთ აპს ჭირდება, თქვენს მოწყობილობაზე მხარდაჭერილი არ არის. გთხოვთ, დაუკავშირდეთ მწარმოებელს დახმარებისათვის."
+ "როგორც ჩანს, მოწყობილობის თარიღი არასწორია. გთხოვთ, შეამოწმოთ მოწყობილობის თარიღი."
+ "განახლება"
+ "შესვლა"
+ "Google-ით შესვლა"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/auth_strings.xml
new file mode 100644
index 0000000..49fe0f5
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "កម្មវិធីព្យាយាមប្រើកំណែមិនល្អរបស់សេវាកម្មឃ្លាំកម្មវិធី។"
+ "កម្មវិធីទាមទារបើកសេវាកម្មឃ្លាំងកម្មវិធី។"
+ "កម្មវិធីទាមទារការដំឡើងសេវាកម្មឃ្លាំងកម្មវិធី។"
+ "កម្មវិធីទាមទារធ្វើបច្ចុប្បន្នភាពសេវាកម្មឃ្លាំងកម្មវិធី។"
+ "កំហុសសេវាកម្មកម្សាន្ត Google"
+ "បានស្នើដោយ %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/common_strings.xml
new file mode 100644
index 0000000..b047edd
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-km-rKH/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "កំហុសសេវាកម្ម Google កម្សាន្ត"
+ "កម្មវិធីទាមទារឲ្យដំឡើងសេវាកម្ម Google កម្សាន្ត។"
+ "កម្មវិធីទាមទារធ្វើបច្ចុប្បន្នភាពសេវាកម្ម Google កម្សាន្ត។"
+ "កម្មវិធីទាមទារឲ្យបើកសេវាកម្ម Google កម្សាន្ត។"
+ "បានស្នើដោយ %1$s "
+ "ទទួលសេវាកម្មកម្សាន្ត Google"
+ "កម្មវិធីនេះនឹងមិនដំណើរការទេបើគ្មានសេវាកម្មកម្សាន្ត Google ដែលទូរស័ព្ទរបស់អ្នកមិនមាន។"
+ "កម្មវិធីនេះនឹងមិនដំណើរការទេបើគ្មានសេវាកម្មកម្សាន្ត Google ដែលកុំព្យូទ័របន្ទះរបស់អ្នកមិនមាន។"
+ "ទទួលសេវាកម្មកម្សាន្ត Google"
+ "បើកសេវាកម្មកម្សាន្ត Google"
+ "កម្មវិធីនេះនឹងមិនដំណើរការទេ លុះត្រាតែអ្នកបើកសេវាកម្មកម្សាន្ត Google ។"
+ "បើកសេវាកម្មកម្សាន្ត Google"
+ "ធ្វើបច្ចុប្បន្នភាពសេវាកម្មកម្សាន្ត Google"
+ "កម្មវិធីនេះនឹងមិនដំណើរការទេ លុះត្រាតែអ្នកធ្វើបច្ចុប្បន្នភាពសេវាកម្មកម្សាន្ត Google ។"
+ "កំហុសបណ្ដាញ"
+ "បានទាមទារការតភ្ជាប់ទិន្នន័យ ដើម្បីភ្ជាប់សេវាកម្មឃ្លាំងកម្មវិធី។"
+ "គណនីមិនត្រឹមត្រូវ"
+ "គណនីដែលបានបញ្ជាក់មិនមាននៅលើឧបករណ៍នេះទេ។ សូមជ្រើសគណនីផ្សេង។"
+ "មិនស្គាល់បញ្ហាជាមួយសេវាកម្មកម្សាន្ត Google ។"
+ "សេវាកម្មកម្សាន្ត Google"
+ "សេវាកម្មកម្សាន្ត Google អាស្រ័យលើកម្មវិធីរបស់អ្នក មិនត្រូវបានគាំទ្រដោយឧបករណ៍របស់អ្នក។ សូមទាក់ទងក្រុមហ៊ុនផលិតសម្រាប់ជំនួយ។"
+ "កាលបរិច្ឆេទលើឧបករណ៍បង្ហាញថាមិនត្រឹមត្រូវ។ សូមពិនិត្យកាលបរិច្ឆេទលើឧបករណ៍។"
+ "ធ្វើបច្ចុប្បន្នភាព"
+ "ចូល"
+ "ចូលដោយប្រើ Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/auth_strings.xml
new file mode 100644
index 0000000..28c22e0
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "애플리케이션에서 잘못된 버전의 Google Play 서비스를 사용하려고 했습니다."
+ "Google Play 서비스를 사용하도록 설정해야 하는 애플리케이션입니다."
+ "Google Play 서비스를 설치해야 하는 애플리케이션입니다."
+ "Google Play 서비스를 업데이트해야 하는 애플리케이션입니다."
+ "Google Play 서비스 오류"
+ "%1$s 에서 요청"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/common_strings.xml
new file mode 100644
index 0000000..045c6f5
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ko/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play 서비스 오류"
+ "Google Play 서비스를 설치해야 하는 애플리케이션입니다."
+ "Google Play 서비스를 업데이트해야 하는 애플리케이션입니다."
+ "Google Play 서비스를 사용 설정해야 하는 애플리케이션입니다."
+ "%1$s 에서 요청"
+ "Google Play 서비스 설치"
+ "휴대전화에 Google Play 서비스가 설치되어 있어야 이 앱이 실행됩니다."
+ "태블릿에 Google Play 서비스가 설치되어 있어야 이 앱이 실행됩니다."
+ "Google Play 서비스 설치"
+ "Google Play 서비스 사용"
+ "Google Play 서비스를 사용하도록 설정해야 이 앱이 작동합니다."
+ "Google Play 서비스 사용"
+ "Google Play 서비스 업데이트"
+ "Google Play 서비스를 업데이트해야만 이 앱이 실행됩니다."
+ "네트워크 오류"
+ "Google Play 서비스에 연결하려면 데이터 연결이 필요합니다."
+ "올바르지 않은 계정"
+ "지정한 계정이 이 기기에 존재하지 않습니다. 다른 계정을 선택하세요."
+ "Google Play 서비스에 알 수 없는 문제가 발생했습니다."
+ "Google Play 서비스"
+ "일부 사용자 애플리케이션에 필요한 Google Play 서비스가 사용자 기기에서 지원되지 않습니다. 기기 제조업체에 문의하시기 바랍니다."
+ "기기의 날짜가 잘못된 것 같습니다. 기기의 날짜를 확인해 주세요."
+ "업데이트"
+ "로그인"
+ "Google 계정으로 로그인"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/auth_strings.xml
new file mode 100644
index 0000000..11f29ee
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "ແອັບພລິເຄຊັນໄດ້ພະຍາຍາມໃຊ້ Google Play Services ເວີຊັນທີ່ບໍ່ສາມາດໃຊ້ໄດ້."
+ "ແອັບພລິເຄຊັນຕ້ອງການເປີດນຳໃຊ້ Google Play Services."
+ "ແອັບພລິເຄຊັນຕ້ອງການໃຫ້ຕິດຕັ້ງ Google Play Services."
+ "ແອັບພລິເຄຊັນຕ້ອງການອັບເດດ Google Play Services."
+ "ບໍລິການ Google Play ຜິດພາດ"
+ "ຮ້ອງຂໍໂດຍ %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/common_strings.xml
new file mode 100644
index 0000000..395cb92
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lo-rLA/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play Services ເກີດຄວາມຜິດພາດ"
+ "ແອັບພລິເຄຊັນຕ້ອງການໃຫ້ຕິດຕັ້ງບໍລິການ Google Play ກ່ອນ."
+ "ແອັບພລິເຄຊັນຕ້ອງການໃຫ້ອັບເດດບໍລິການ Google Play ກ່ອນ."
+ "ແອັບພລິເຄຊັນຕ້ອງການນຳໃຊ້ Google Play Services."
+ "ຮ້ອງຂໍໂດຍ %1$s "
+ "ຕິດຕັ້ງບໍລິການ Google Play"
+ "ແອັບຯນີ້ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ໂດຍທີ່ບໍ່ມີບໍລິການ Google Play ເຊິ່ງຂາດຫາຍໄປໃນໂທລະສັບຂອງທ່ານ."
+ "ແອັບຯນີ້ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ໂດຍທີ່ບໍ່ມີບໍລິການ Google Play ເຊິ່ງຂາດຫາຍໄປໃນແທັບເລັດຂອງທ່ານ."
+ "ຕິດຕັ້ງບໍລິການ Google Play"
+ "ເປີດໃຊ້ບໍລິການ Google Play"
+ "ແອັບຯນີ້ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ຈົນກວ່າທ່ານຈະເປີດໃຊ້ບໍລິການ Google Play"
+ "ເປີດໃຊ້ບໍລິການ Google Play"
+ "ອັບເດດບໍລິການ Google Play"
+ "ແອັບຯນີ້ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ຈົນກວ່າທ່ານຈະອັບເດດບໍລິການ Google Play."
+ "ເຄືອຂ່າຍຜິດພາດ"
+ "ຕ້ອງໃຊ້ການເຊື່ອມຕໍ່ອິນເຕີເນັດເພື່ອໃຊ້ Google Play Services."
+ "ບັນຊີບໍ່ຖືກຕ້ອງ"
+ "ບັນຊີທີ່ເລືອກບໍ່ມີໃນອຸປະກອນນີ້. ກະລຸນາເລືອກບັນຊີອື່ນ."
+ "ມີປັນຫາທີ່ບໍ່ຄາດຄິດໃນບໍລິການ Google Play."
+ "ບໍລິການ Google Play"
+ "ບໍລິການ Google Play ທີ່ບາງແອັບພລິເຄຊັນຂອງທ່ານຕ້ອງອາໄສນັ້ນ ບໍ່ຖືກຮອງຮັບໃນອຸປະກອນຂອງທ່ານ. ກະລຸນາຕິດຕໍ່ຜູ້ຜະລິດສຳລັບການແນະນຳ."
+ "ວັນທີຂອງອຸປະກອນບໍ່ຖືກຕ້ອງ. ກະລຸນາກວດສອບວັນທີຂອງອຸປະກອນຂອງທ່ານ."
+ "ອັບເດດ"
+ "ເຂົ້າສູ່ລະບົບ"
+ "ເຂົ້າສູ່ລະບົບດ້ວຍ Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/auth_strings.xml
new file mode 100644
index 0000000..ab9e334
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Programa bandė naudotis netinkama „Google Play“ paslaugų versija."
+ "Norint naudoti programą būtina įgalinti „Google Play“ paslaugas."
+ "Norint naudoti programą būtina įdiegti „Google Play“ paslaugas."
+ "Norint naudoti programą būtina atnaujinti „Google Play“ paslaugas."
+ "„Google Play“ paslaugų klaida"
+ "Užklausą pateikė „%1$s “"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/common_strings.xml
new file mode 100644
index 0000000..593ff35
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lt/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "„Google Play“ paslaugų klaida"
+ "Norint naudoti programą būtina įdiegti „Google Play“ paslaugas."
+ "Norint naudoti programą būtina atnaujinti „Google Play“ paslaugas."
+ "Norint naudoti programą būtina įgalinti „Google Play“ paslaugas."
+ "Užklausą pateikė „%1$s “"
+ "Gauti „Google Play“ paslaugų"
+ "Ši programa neveiks be „Google Play“ paslaugų, kurios neįdiegtos telefone."
+ "Ši programa neveiks be „Google Play“ paslaugų, kurios neįdiegtos planšetiniame kompiuteryje."
+ "Gauti „Google Play“ paslaugų"
+ "Įgalinti „Google Play“ paslaugas"
+ "Ši programa neveiks, jei neįgalinsite „Google Play“ paslaugų."
+ "Įgal. „Google Play“ paslaugas"
+ "Atnaujinti „Google Play“ paslaugas"
+ "Ši programa neveiks, jei neatnaujinsite „Google Play“ paslaugų."
+ "Tinklo klaida"
+ "Norint prisijungti prie „Google Play“ paslaugų reikia duomenų ryšio."
+ "Netinkama paskyra"
+ "Nurodytos paskyros šiame įrenginyje nėra. Pasirinkite kitą paskyrą."
+ "Nežinoma „Google Play“ paslaugų problema."
+ "„Google Play“ paslaugos"
+ "Jūsų įrenginys nepalaiko „Google Play“ paslaugų, kuriomis remiasi kai kurios programos. Jei reikia pagalbos, susisiekite su gamintoju."
+ "Įrenginyje nurodyta data neteisinga. Patikrinkite įrenginyje nurodytą datą."
+ "Atnaujinti"
+ "Prisij."
+ "Prisij. naud. „Google“"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/auth_strings.xml
new file mode 100644
index 0000000..f159270
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Lietojumpr. mēģināja izmantot nederīgu Google Play pakalp. versiju."
+ "Lai lietojumprogramma darbotos, ir jāiespējo Google Play pakalpojumi."
+ "Lai lietojumprogramma darbotos, ir jāinstalē Google Play pakalpojumi."
+ "Lai lietojumprogramma darbotos, jāatjaunina Google Play pakalpojumi."
+ "Google Play pakalpojumu kļūda"
+ "Pieprasījums no lietotnes %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/common_strings.xml
new file mode 100644
index 0000000..c0abaec
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-lv/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play pakalpojumu kļūda"
+ "Lai lietojumprogramma darbotos, jāinstalē Google Play pakalpojumi."
+ "Lai lietojumprogramma darbotos, jāatjaunina Google Play pakalpojumi."
+ "Lai lietojumprogramma darbotos, jāiespējo Google Play pakalpojumi."
+ "Pieprasījums no lietotnes %1$s "
+ "Google Play pakalpojumu iegūšana"
+ "Lai šī lietotne darbotos, tālrunī ir jāinstalē Google Play pakalpojumi."
+ "Lai šī lietotne darbotos, planšetdatorā ir jāinstalē Google Play pakalpojumi."
+ "Iegūt Google Play pakalpojumus"
+ "Google Play pakalpojumu iespējošana"
+ "Lai šī lietotne darbotos, iespējojiet Google Play pakalpojumus."
+ "Iespējot Google Play pakalpojumus"
+ "Google Play pakalpojumu atjaunināšana"
+ "Lai šī lietotne darbotos, atjauniniet Google Play pakalpojumus."
+ "Tīkla kļūda"
+ "Lai izveidotu savienojumu ar Google Play pakalpojumiem, ir nepieciešams datu savienojums."
+ "Nederīgs konts"
+ "Norādītais konts šajā ierīcē nepastāv. Lūdzu, izvēlieties citu kontu."
+ "Nezināma problēma ar Google Play pakalpojumiem."
+ "Google Play pakalpojumi"
+ "Jūsu ierīce neatbalsta Google Play pakalpojumus, kuri nepieciešami dažu jūsu lietojumprogrammu darbībai. Lūdzu, sazinieties ar ražotāju, lai saņemtu palīdzību."
+ "Šķiet, ka ierīcē ir iestatīts nepareizs datums. Lūdzu, pārbaudiet ierīces datumu."
+ "Atjaunināt"
+ "Pierakst."
+ "Pierakstīties Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/auth_strings.xml
new file mode 100644
index 0000000..1734ecc
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Аппликешн Google Play Үйлчилгээний муу хувилбарыг ашиглахыг оролдлоо."
+ "Аппликешн Google Play Үйлчилгээг идэвхжүүлсэн байхыг шаардана."
+ "Аппликешн Google Play Үйлчилгээг суулгахыг шаардана."
+ "Аппликешн Google Play Үйлчилгээг шинэчлэхийг шаардана."
+ "Google Play үйлчилгээний алдаа"
+ "Хүсэлт гаргасан %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/common_strings.xml
new file mode 100644
index 0000000..bb1f101
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-mn-rMN/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Наадаан үйлчилгээний алдаа"
+ "Аппликешн Google Наадаан Үйлчилгээг суулгахыг шаардана."
+ "Аппликешн Google Наадаан Үйлчилгээг шинэчлэхийг шаардана."
+ "Аппликешн Google Наадаан Үйлчилгээг идэвхжүүлсэн байхыг шаардана."
+ "%1$s хүсэлт гаргасан"
+ "Google Play үйлчилгээ авах"
+ "Таны утсанд байхгүй байгаа Google Play үйлчилгээг идэвхжүүлж байж энэ апп-г ажиллуулах боломжтой."
+ "Таны таблетэд байхгүй Google Play үйлчилгээг идэвхжүүлж байж энэ апп-г ажиллуулах боломжтой."
+ "Google Play үйлчилгээ авах"
+ "Google Play үйлчилгээг идэвхжүүлэх"
+ "Та Google Play үйлчилгээг идэвхжүүлж байж энэ апп-г ажиллуулах боломжтой."
+ "Google Play үйлчилгээг идэвхжүүлэх"
+ "Google Play үйлчилгээг шинэчлэх"
+ "Та Google Play үйлчилгээг шинэчлэхгүй бол энэ апп ажиллах боломжгүй."
+ "Сүлжээний алдаа"
+ "Google Play үйлчилгээнд холбогдохын тулд дата холболт шаардлагатай."
+ "Буруу акаунт"
+ "Заасан акаунт энэ төхөөрөмж дээр байхгүй байна. Өөр акаунт сонгоно уу."
+ "Google Play үйлчилгээтэй холбоотой тодорхойгүй алдаа."
+ "Google Play үйлчилгээ"
+ "Таны зарим аппликешнүүдийн хамаардаг Google Play үйлчилгээ таны төхөөрөмжид дэмжигдэхгүй байна. Тусламж авахын тулд үйлдвэрлэгчтэй холбоо барина уу."
+ "Төхөөрөмжийн огноо буруу байгаа бололтой. Төхөөрөмжийн огноог шалгана уу."
+ "Шинэчлэх"
+ "Нэвтрэх"
+ "Google-р нэвтрэх:"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/auth_strings.xml
new file mode 100644
index 0000000..ef97e4e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikasi cuba menggunakan versi Perkhidmatan Google Play yang rosak."
+ "Perkhidmatan Google Play perlu didayakan untuk menggunakan aplikasi."
+ "Perkhidmatan Google Play perlu dipasang untuk mengguankan aplikasi."
+ "Perkhidmatan Google Play perlu dikemas kini untuk menggunakan aplikasi."
+ "Ralat perkhidmatan Google Play"
+ "Diminta oleh %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/common_strings.xml
new file mode 100644
index 0000000..28dec3c
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ms-rMY/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Ralat perkhidmatan Google Play"
+ "Perkhidmatan Google Play perlu dipasang utk menggunakan aplikasi."
+ "Perkhidmatan Google Play perlu dikemas kini utk menggunakan aplikasi."
+ "Perkhidmatan Google Play perlu didayakan untuk menggunakan aplikasi."
+ "Diminta oleh %1$s "
+ "Dapatkan perkhidmatan Google Play"
+ "Apl ini tidak akan berfungsi tanpa perkhidmatan Google Play dan apl ini tiada pada telefon anda."
+ "Apl ini tidak akan berfungsi tanpa perkhidmatan Google Play dan apl ini tiada pada tablet anda."
+ "Dapatkan perkhidmatan Google Play"
+ "Dayakan perkhidmatan Google Play"
+ "Apl ini tidak akan berfungsi kecuali anda mendayakan perkhidmatan Google Play."
+ "Dayakan perkhidmatan Google Play"
+ "Kemas kini perkhidmatan Google Play"
+ "Apl ini tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play."
+ "Ralat Rangkaian"
+ "Sambungan data diperlukan untuk menyambung ke perkhidmatan Google Play."
+ "Akaun Tidak Sah"
+ "Akaun yang dinyatakan tidak wujud pada peranti ini. Sila pilih akaun yang lain."
+ "Isu tidak diketahui dengan perkhidmatan Google Play."
+ "Perkhidmatan Google Play"
+ "Peranti anda tidak menyokong perkhidmatan Google Play, sedangkan sesetengah aplikasi anda memerlukannya. Sila hubungi pengilang untuk bantuan."
+ "Tarikh pada peranti kelihatan tidak betul. Sila semak tarikh pada peranti."
+ "Kemas kini"
+ "Log masuk"
+ "Log masuk dengan Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/auth_strings.xml
new file mode 100644
index 0000000..8393e43
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "En app prøvde å bruke en skadet versjon av Google Play Tjenester."
+ "En app krever Google Play Tjenester for å aktiveres."
+ "En app krever at Google Play Tjenester installeres."
+ "En app krever at Google Play Tjenester oppdateres."
+ "Google Play Tjenester-feil"
+ "Forespurt av %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/common_strings.xml
new file mode 100644
index 0000000..e8eb375
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nb/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play Tjenester-feil"
+ "En app krever installasjon av Google Play Tjenester."
+ "En app krever at Google Play Tjenester oppdateres."
+ "En app krever Google Play Tjenester for å aktiveres."
+ "Forespurt av %1$s "
+ "Installer Google Play Tjenester"
+ "Denne appen kan ikke kjøres uten Google Play Tjenester, som ikke er installert på telefonen din."
+ "Denne appen kan ikke kjøres uten Google Play Tjenester, som ikke er installert på nettbrettet ditt."
+ "Installer Google Play Tjenester"
+ "Aktiver Google Play Tjenester"
+ "Denne appen fungerer ikke med mindre du aktiverer Google Play Tjenester."
+ "Aktiver Google Play Tjenester"
+ "Oppdater Google Play Tjenester"
+ "Denne appen kan ikke kjøres før du oppdaterer Google Play Tjenester."
+ "Nettverksfeil"
+ "Du må ha datatilkobling for å koble deg til Google Play-tjenester."
+ "Ugyldig konto"
+ "Den angitte kontoen finnes ikke på enheten. Velg en annen konto."
+ "Det oppsto et ukjent problem med Google Play Tjenester."
+ "Google Play-tjenester"
+ "Google Play Tjenester, som noen av appene er avhengige av, støttes ikke av enheten. Ta kontakt med produsenten for å få hjelp."
+ "Datoen på enheten ser ut til å være feil. Sjekk datoen på enheten."
+ "Oppdater"
+ "Logg på"
+ "Logg inn med Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/auth_strings.xml
new file mode 100644
index 0000000..38d77ba
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Onjuiste versie van Google Play-services wordt gebruikt."
+ "Google Play-services moet zijn ingeschakeld voor een applicatie."
+ "Google Play-services moet zijn geïnstalleerd voor een applicatie."
+ "Google Play-services moet worden geüpdatet voor een applicatie."
+ "Fout met Google Play-services"
+ "Aangevraagd door %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/common_strings.xml
new file mode 100644
index 0000000..4295986
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-nl/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Fout met Google Play-services"
+ "Google Play-services moet zijn geïnstalleerd voor een app."
+ "Google Play-services moet worden bijgewerkt voor een app."
+ "Google Play-services moet zijn ingeschakeld voor een app."
+ "Aangevraagd door %1$s "
+ "Google Play-services ophalen"
+ "Deze app kan niet worden uitgevoerd zonder Google Play-services die ontbreken op uw telefoon."
+ "Deze app kan niet worden uitgevoerd zonder Google Play-services die ontbreken op uw tablet."
+ "Google Play-services ophalen"
+ "Google Play-services inschakelen"
+ "Deze app werkt niet, tenzij u Google Play-services inschakelt."
+ "Google Play-services inschak."
+ "Google Play-services bijwerken"
+ "Deze app kan niet worden uitgevoerd, tenzij u Google Play-services bijwerkt."
+ "Netwerkfout"
+ "Er is een gegevensverbinding nodig om verbinding te kunnen maken met Google Play-services."
+ "Ongeldig account"
+ "Het gespecificeerde account bestaat niet op dit apparaat. Kies een ander account."
+ "Onbekend probleem met Google Play-services."
+ "Google Play-services"
+ "Google Play-services, dat vereist is voor een aantal van uw applicaties, wordt niet ondersteund door uw apparaat. Neem contact op met de fabrikant voor ondersteuning."
+ "De datum op het apparaat lijkt onjuist. Controleer de datum op het apparaat."
+ "Bijwerken"
+ "Inloggen"
+ "Inloggen met Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/auth_strings.xml
new file mode 100644
index 0000000..0cf55e5
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikacja próbowała skorzystać z nieprawidłowej wersji Usług Google Play."
+ "Aplikacja wymaga włączenia Usług Google Play."
+ "Aplikacja wymaga zainstalowania Usług Google Play."
+ "Aplikacja wymaga aktualizacji Usług Google Play."
+ "Błąd usług Google Play"
+ "Żądanie z aplikacji %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/common_strings.xml
new file mode 100644
index 0000000..201b4b7
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pl/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Błąd Usług Google Play"
+ "Aplikacja wymaga zainstalowania Usług Google Play."
+ "Aplikacja wymaga zaktualizowania Usług Google Play."
+ "Aplikacja wymaga włączenia Usług Google Play."
+ "Żądanie z aplikacji %1$s "
+ "Pobierz Usługi Google Play"
+ "Ta aplikacja nie będzie działać bez Usług Google Play, których nie masz na telefonie."
+ "Ta aplikacja nie będzie działać bez Usług Google Play, których nie masz na tablecie."
+ "Pobierz Usługi Google Play"
+ "Włącz Usługi Google Play"
+ "Ta aplikacja nie będzie działać, jeśli nie włączysz Usług Google Play."
+ "Włącz Usługi Google Play"
+ "Aktualizuj Usługi Google Play"
+ "Ta aplikacja nie będzie działać, jeśli nie zaktualizujesz Usług Google Play."
+ "Błąd sieci"
+ "Korzystanie z usług Google Play wymaga połączenia z internetem."
+ "Nieprawidłowe konto"
+ "Podanego konta nie ma na tym urządzeniu. Wybierz inne konto."
+ "Nieznany problem z Usługami Google Play."
+ "Usługi Google Play"
+ "Usługi Google Play, od których zależy działanie niektórych aplikacji, nie są obsługiwane na Twoim urządzeniu. Skontaktuj się z producentem, by uzyskać pomoc."
+ "Data ustawiona na urządzeniu wydaje się nieprawidłowa. Sprawdź datę ustawioną na urządzeniu."
+ "Aktualizuj"
+ "Zaloguj się"
+ "Zaloguj się przez Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/auth_strings.xml
new file mode 100644
index 0000000..4f06cad
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Um aplicativo tentou usar uma versão errada do Google Play Services."
+ "Um aplicativo requer a ativação do Google Play Services."
+ "Um aplicativo requer a instalação do Google Play Services."
+ "Um aplicativo requer a atualização do Google Play Services."
+ "Ocorreu um erro no Google Play Services"
+ "Solicitado por %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/common_strings.xml
new file mode 100644
index 0000000..5d129fb
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rBR/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Erro do Google Play Services"
+ "Um aplicativo requer a instalação do Google Play Services."
+ "Um aplicativo requer a atualização do Google Play Services."
+ "Um aplicativo requer a ativação do Google Play Services."
+ "Solicitado por %1$s "
+ "Instale o Google Play Services"
+ "Este aplicativo não funciona sem o Google Play Services, que não está instalado em seu telefone."
+ "Este aplicativo não funciona sem o Google Play Services, que não está instalado em seu tablet."
+ "Instalar o Google Play Services"
+ "Ative o Google Play Services"
+ "Este aplicativo só funciona com o Google Play Services ativado."
+ "Ativar o Google Play Services"
+ "Atualize o Google Play Services"
+ "Este aplicativo só funciona com uma versão atualizada do Google Play Services."
+ "Erro na rede"
+ "É necessária uma conexão de dados para conectar ao Google Play Services."
+ "Conta inválida"
+ "A conta especificada não existe no dispositivo. Escolha outra conta."
+ "Problema desconhecido com o Google Play Services."
+ "Play Services"
+ "O Google Play Services, necessário para alguns dos aplicativos, não é compatível com seu dispositivo. Entre em contato com o fabricante para obter assistência."
+ "A data no dispositivo parece incorreta. Verifique a data no dispositivo."
+ "Atualizar"
+ "Login"
+ "Fazer login com o Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/auth_strings.xml
new file mode 100644
index 0000000..4e1874b
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplicação tentou utiliz. versão incorreta dos Serviços do Google Play."
+ "Uma aplicação necessita da ativação dos Serviços do Google Play."
+ "Uma aplicação necessita da instalação dos Serviços do Google Play."
+ "Uma aplicação necessita da atualização dos Serviços do Google Play."
+ "Erro dos serviços do Google Play"
+ "Solicitado por %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/common_strings.xml
new file mode 100644
index 0000000..11dc641
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt-rPT/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Erro dos Serviços do Google Play"
+ "Uma aplicação necessita da instalação dos Serviços do Google Play."
+ "Uma aplicação necessita da atualização dos Serviços do Google Play."
+ "Uma aplicação necessita da ativação dos Serviços do Google Play."
+ "Pedida por %1$s "
+ "Obter serviços do Google Play"
+ "Esta aplicação não será executada sem os serviços do Google Play, que estão em falta no seu telemóvel."
+ "Esta aplicação não será executada sem os serviços do Google Play, que estão em falta no seu tablet."
+ "Obter serviços do Google Play"
+ "Ativar serviços do Google Play"
+ "Esta aplicação não funcionará enquanto não ativar os serviços do Google Play."
+ "Ativar serviços do Google Play"
+ "Atualizar serviços do Google Play"
+ "Esta aplicação não será executada enquanto não atualizar os serviços do Google Play."
+ "Erro de Rede"
+ "É necessária uma ligação de dados para se ligar aos Serviços do Google Play."
+ "Conta Inválida"
+ "A conta especificada não existe neste dispositivo. Escolha uma conta diferente."
+ "Problema desconhecido nos serviços do Google Play."
+ "Serviços do Google Play"
+ "Os serviços do Google Play, dos quais dependem algumas das suas aplicações, não são suportados pelo seu dispositivo. Contacte o fabricante para obter assistência."
+ "A data no dispositivo parece estar incorreta. Verifique a data no dispositivo."
+ "Atualizar"
+ "Inic. ses."
+ "Inic. sessão com o Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/auth_strings.xml
new file mode 100644
index 0000000..4f06cad
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Um aplicativo tentou usar uma versão errada do Google Play Services."
+ "Um aplicativo requer a ativação do Google Play Services."
+ "Um aplicativo requer a instalação do Google Play Services."
+ "Um aplicativo requer a atualização do Google Play Services."
+ "Ocorreu um erro no Google Play Services"
+ "Solicitado por %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/common_strings.xml
new file mode 100644
index 0000000..5d129fb
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-pt/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Erro do Google Play Services"
+ "Um aplicativo requer a instalação do Google Play Services."
+ "Um aplicativo requer a atualização do Google Play Services."
+ "Um aplicativo requer a ativação do Google Play Services."
+ "Solicitado por %1$s "
+ "Instale o Google Play Services"
+ "Este aplicativo não funciona sem o Google Play Services, que não está instalado em seu telefone."
+ "Este aplicativo não funciona sem o Google Play Services, que não está instalado em seu tablet."
+ "Instalar o Google Play Services"
+ "Ative o Google Play Services"
+ "Este aplicativo só funciona com o Google Play Services ativado."
+ "Ativar o Google Play Services"
+ "Atualize o Google Play Services"
+ "Este aplicativo só funciona com uma versão atualizada do Google Play Services."
+ "Erro na rede"
+ "É necessária uma conexão de dados para conectar ao Google Play Services."
+ "Conta inválida"
+ "A conta especificada não existe no dispositivo. Escolha outra conta."
+ "Problema desconhecido com o Google Play Services."
+ "Play Services"
+ "O Google Play Services, necessário para alguns dos aplicativos, não é compatível com seu dispositivo. Entre em contato com o fabricante para obter assistência."
+ "A data no dispositivo parece incorreta. Verifique a data no dispositivo."
+ "Atualizar"
+ "Login"
+ "Fazer login com o Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/auth_strings.xml
new file mode 100644
index 0000000..03cbac9
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplicația a încercat să utilizeze o vers. Servicii Google Play greșită"
+ "O aplicație necesită activarea Serviciilor Google Play."
+ "O aplicație necesită instalarea Serviciilor Google Play."
+ "O aplicație necesită o actualizare pentru Servicii Google Play."
+ "Eroare Servicii Google Play"
+ "Solicitată de %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/common_strings.xml
new file mode 100644
index 0000000..ae3c157
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ro/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Eroare a serviciilor Google Play"
+ "O aplicație necesită instalarea serviciilor Google Play."
+ "O aplicație necesită o actualizare pentru serviciile Google Play."
+ "O aplicație necesită activarea serviciilor Google Play."
+ "Solicitată de %1$s "
+ "Descărcaţi Servicii Google Play"
+ "Această aplicaţie nu poate rula fără Servicii Google Play, care lipsesc de pe telefon."
+ "Această aplicaţie nu poate rula fără Servicii Google Play, care lipsesc de pe tabletă."
+ "Obţineţi Servicii Google Play"
+ "Activaţi Servicii Google Play"
+ "Această aplicaţie nu va funcţiona decât dacă activaţi Servicii Google Play."
+ "Activaţi Servicii Google Play"
+ "Actualizaţi Servicii Google Play"
+ "Această aplicaţie nu poate rula decât dacă actualizaţi Servicii Google Play."
+ "Eroare de reţea"
+ "Este necesară o conexiune de date pentru a vă conecta la serviciile Google Play."
+ "Cont nevalid"
+ "Contul menționat nu există pe acest dispozitiv. Alegeți alt cont."
+ "Problemă necunoscută privind Servicii Google Play."
+ "Servicii Google Play"
+ "Gadgetul nu acceptă serviciile Google Play, pe care se bazează unele dintre aplicații. Pentru asistență, contactați producătorul gadgetului."
+ "Data de pe dispozitiv pare să fie incorectă. Verificați data de pe dispozitiv."
+ "Actualizaţi"
+ "Conectați"
+ "Conectați-vă cu Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/auth_strings.xml
new file mode 100644
index 0000000..2299abd
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Версия сервисов Google Play неисправна"
+ "Для работы приложения требуется включить сервисы Google Play"
+ "Для работы приложения требуется установить сервисы Google Play"
+ "Для работы приложения требуется обновить сервисы Google Play"
+ "Ошибка сервисов Google Play"
+ "Запрос от приложения \"%1$s \""
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/common_strings.xml
new file mode 100644
index 0000000..8ec20f0
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-ru/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Ошибка сервисов Google Play"
+ "Для работы приложения требуется установить сервисы Google Play"
+ "Для работы приложения требуется обновить сервисы Google Play"
+ "Для работы приложения требуется включить сервисы Google Play"
+ "Источник запроса: %1$s "
+ "Установите Сервисы Google Play"
+ "Для работы этого приложения требуется установить Сервисы Google Play."
+ "Для работы этого приложения требуется установить Сервисы Google Play."
+ "Установить"
+ "Включите Сервисы Google Play"
+ "Для работы этого приложения требуется включить Сервисы Google Play."
+ "Включить"
+ "Обновите Сервисы Google Play"
+ "Для работы этого приложения требуется обновить Сервисы Google Play."
+ "Ошибка сети"
+ "Для работы с Google Play требуется подключение к сети."
+ "Недействительный аккаунт"
+ "Этого аккаунта нет на устройстве. Выберите другой."
+ "Неизвестная ошибка с Сервисами Google Play."
+ "Сервисы Google Play"
+ "Сервисы Google Play, необходимые для работы некоторых приложений, не поддерживаются на вашем устройстве. Обратитесь к производителю."
+ "Проверьте правильность даты, указанной на устройстве."
+ "Обновить"
+ "Войти"
+ "Войти в аккаунт Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/auth_strings.xml
new file mode 100644
index 0000000..2c6d5cb
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikácia sa pokúsila použiť nesprávnu verziu služieb Google Play."
+ "Aplikácia vyžaduje povolenie služieb Google Play."
+ "Aplikácia vyžaduje inštaláciu služieb Google Play."
+ "Aplikácia vyžaduje aktualizáciu služieb Google Play."
+ "Chyba služieb Google Play"
+ "Vyžiadané aplikáciou %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/common_strings.xml
new file mode 100644
index 0000000..fc41ae7
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sk/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Chyba služieb Google Play"
+ "Aplikácia vyžaduje inštaláciu služieb Google Play."
+ "Aplikácia vyžaduje aktualizáciu služieb Google Play."
+ "Aplikácia vyžaduje povolenie služieb Google Play."
+ "Vyžiadané aplikáciou %1$s "
+ "Inštalovať služby Google Play"
+ "Na spustenie tejto aplikácie sa vyžadujú služby Google Play, ktoré v telefóne nemáte."
+ "Na spustenie tejto aplikácie sa vyžadujú služby Google Play, ktoré v tablete nemáte."
+ "Inštalovať služby Google Play"
+ "Povoliť služby Google Play"
+ "Táto aplikácia bude fungovať až po povolení služieb Google Play."
+ "Povoliť služby Google Play"
+ "Aktualizovať služby Google Play"
+ "Túto aplikáciu bude možné spustiť až po aktualizácii služieb Google Play."
+ "Chyba siete"
+ "Pripojenie k službám Google Play si vyžaduje dátové pripojenie."
+ "Neplatný účet"
+ "Zadaný účet v tomto zariadení neexistuje. Vyberte iný účet."
+ "Neznámy problém so službami Google Play."
+ "Služby Google Play"
+ "Niektoré vaše aplikácie vyžadujú služby Google Play, ktoré vo vašom zariadení nie sú podporované. Ak potrebujete pomoc, kontaktujte výrobcu."
+ "Dátum nastavený v zariadení sa zdá byť nesprávny. Skontrolujte ho."
+ "Aktualizovať"
+ "Prihlásiť sa"
+ "Prihlásiť sa do účtu Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/auth_strings.xml
new file mode 100644
index 0000000..667c670
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Aplikacija je poskusila uporabiti napačno različico Storitev Google Play."
+ "Za delovanje aplikacije morate omogočiti Storitve Google Play."
+ "Za delovanje aplikacije morate namestiti Storitve Google Play."
+ "Za delovanje aplikacije morate posodobiti Storitve Google Play."
+ "Napaka storitev Google Play"
+ "Zahtevala aplikacija %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/common_strings.xml
new file mode 100644
index 0000000..175abd1
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sl/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Napaka storitev Google Play"
+ "Za delovanje aplikacije morate namestiti storitve Google Play."
+ "Za delovanje aplikacije morate posodobiti storitve Google Play."
+ "Za delovanje aplikacije morate omogočiti storitve Google Play."
+ "Zahteva aplikacije %1$s "
+ "Namestite storitve Google Play"
+ "Ta aplikacija ne deluje brez storitev Google Play, ki jih ni v telefonu."
+ "Ta aplikacija ne deluje brez storitev Google Play, ki jih ni v tabličnem računalniku."
+ "Namestite storitve Google Play"
+ "Omogočite storitve Google Play"
+ "Aplikacija ne bo delovala, če ne omogočite storitev Google Play."
+ "Omogočite storitve Google Play"
+ "Posodobite storitve Google Play"
+ "Ta aplikacija ne deluje, če ne posodobite storitev Google Play."
+ "Omrežna napaka"
+ "Za povezavo s storitvami Google Play potrebujete internetno povezavo."
+ "Neveljaven račun"
+ "V tej napravi ne obstaja navedeni račun. Izberite drugega."
+ "Neznana težava s storitvami Google Play."
+ "Storitve Google Play"
+ "Vaša naprava na podpira storitev Google Play, ki jih potrebujejo nekatere od vaših aplikacij. Za pomoč se obrnite na izdelovalca."
+ "Videti je, da je datum v napravi napačen. Preverite ga."
+ "Posodobi"
+ "Prijava"
+ "Prijavite se v Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/auth_strings.xml
new file mode 100644
index 0000000..4394175
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Апликација је покушала да користи лошу верзију Google Play услуга."
+ "Апликација захтева да Google Play услуге буду омогућене."
+ "Апликација захтева инсталирање Google Play услуга."
+ "Апликација захтева ажурирање Google Play услуга."
+ "Грешка Google Play услуга"
+ "Захтева %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/common_strings.xml
new file mode 100644
index 0000000..db89318
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sr/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Грешка Google Play услуга"
+ "Апликација захтева инсталацију Google Play услуга."
+ "Апликација захтева ажурирање Google Play услуга."
+ "Апликација захтева да Google Play услуге буду омогућене."
+ "Захтева %1$s "
+ "Преузимање Google Play услуга"
+ "Ова апликација не може да се покрене без Google Play услуга, које недостају на телефону."
+ "Ова апликација не може да се покрене без Google Play услуга, које недостају на таблету."
+ "Преузми Google Play услуге"
+ "Омогућавање Google Play услуга"
+ "Ова апликација неће функционисати ако не омогућите Google Play услуге."
+ "Омогући Google Play услуге"
+ "Ажурирање Google Play услуга"
+ "Ова апликација не може да се покрене ако не ажурирате Google Play услуге."
+ "Грешка на мрежи"
+ "За повезивање са Google Play услугама потребна је веза за пренос података."
+ "Неважећи налог"
+ "Наведени налог не постоји на овом уређају. Одаберите други налог."
+ "Непознат проблем са Google Play услугама."
+ "Google Play услуге"
+ "Google Play услуге, које су потребне за функционисање неких од апликација, нису подржане на уређају. Контактирајте произвођача да бисте добили помоћ."
+ "Изгледа да су подаци на уређају нетачни. Проверите датум на уређају."
+ "Ажурирај"
+ "Пријави ме"
+ "Пријави ме преко Google-а"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/auth_strings.xml
new file mode 100644
index 0000000..975108a
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "En olämplig version av Google Play Tjänster anropades av en app."
+ "Google Play Tjänster måste aktiveras för en att app ska fungera."
+ "Google Play Tjänster måste installeras för att en app ska fungera."
+ "Google Play Tjänster måste uppdateras för en app ska fungera."
+ "Fel på Google Play Tjänster"
+ "Begärdes av %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/common_strings.xml
new file mode 100644
index 0000000..5092a5d
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sv/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Fel på Google Play-tjänster"
+ "Google Play-tjänster måste installeras för att en app ska fungera."
+ "Google Play-tjänster måste uppdateras för en app ska fungera."
+ "Google Play-tjänster måste aktiveras för att en app ska fungera."
+ "Begärdes av %1$s "
+ "Hämta Google Play Tjänster"
+ "Den här appen kan inte köras utan Google Play Tjänster, som saknas på mobilen."
+ "Den här appen kan inte köras utan Google Play Tjänster, som saknas på surfplattan."
+ "Hämta Google Play Tjänster"
+ "Aktivera Google Play Tjänster"
+ "Du måste aktivera Google Play Tjänster för att den här appen ska fungera."
+ "Aktivera Google Play Tjänster"
+ "Uppdatera Google Play Tjänster"
+ "Du måste uppdatera Google Play Tjänster innan du kan köra den här appen."
+ "Nätverksfel"
+ "En dataanslutning krävs för att ansluta till Google Plays tjänster."
+ "Ogiltigt konto"
+ "Det angivna kontot finns inte på den här enheten. Välj ett annat konto."
+ "Okänt problem med Google Play Tjänster"
+ "Google Play-tjänster"
+ "Några av dina appar använder Google Play-tjänster som inte stöds av din enhet. Kontakta tillverkaren om du vill ha hjälp."
+ "Datumet på enheten verkar inte vara rätt. Kontrollera datumet på enheten."
+ "Uppdatera"
+ "Logga in"
+ "Logga in med Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/auth_strings.xml
new file mode 100644
index 0000000..1872624
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Programu ilijaribu kutumia toleo baya la Huduma za Google Play."
+ "Programu inahitaji Huduma za Google Play ili kuwashwa."
+ "Programu inahitaji usakinishaji wa Huduma za Google Play."
+ "Programu inahitaji sasisho la Huduma za Google Play."
+ "Hitilafu kwenye Huduma za Google Play"
+ "Imeombwa na %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/common_strings.xml
new file mode 100644
index 0000000..9fc6808
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-sw/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Hitilafu kwenye huduma za Google Play"
+ "Programu inahitaji usakinishaji wa huduma za Google Play."
+ "Programu inahitaji toleo jipya la huduma za Google Play."
+ "Programu inahitaji huduma za Google Play ili iwashwe."
+ "Imeombwa na %1$s "
+ "Pata huduma za Google Play"
+ "Programu hii haiwezi kuendeshwa bila huduma za Google Play, ambazo hazipo kwenye simu yako."
+ "Programu hii haiwezi kufanya kazi bila huduma za Google Play, ambazo hazipatikani kwenye kompyuta kibao yako."
+ "Pata huduma za Google Play"
+ "Wezesha huduma za Google Play"
+ "Programu hii haitafanya kazi mpaka utakapowezesha huduma za Google Play."
+ "Wezesha huduma za Google Play"
+ "Sasisha huduma za Google Play"
+ "Programu hii haiwezi kuendeshwa mpaka utakaposasisha huduma za Google Play."
+ "Hitilafu ya Mtandao"
+ "Muunganisho wa data unahitajika ili kuunganisha kwenye huduma za Google Play."
+ "Akaunti Batili"
+ "Akaunti iliyobainishwa haipo kwenye kifaa hiki. Tafadhali chagua akaunti tofauti."
+ "Suala lisilojulikana na huduma za Google Play."
+ "Huduma za Google Play"
+ "Huduma za Google Play, ambazo baadhi ya programu zako zinategemea, si linganifu na kifaa chako. Tafadhali wasiliana na mtengenezaji kwa usaidizi."
+ "Inaeonekana tarehe ya kifaa sio sahihi. Tafadhali angalia tarehe ya kifaa."
+ "Sasisha"
+ "Ingia"
+ "Ingia ukitumia Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/auth_strings.xml
new file mode 100644
index 0000000..58675cb
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "แอปพลิเคชันหนึ่งพยายามใช้เวอร์ชันที่ไม่เหมาะสมของบริการ Google Play"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีบริการ Google Play เพื่อเปิดใช้งาน"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีการติดตั้งบริการ Google Play"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีการอัปเดตสำหรับบริการ Google Play"
+ "ข้อผิดพลาดของบริการ Google Play"
+ "ขอโดย %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/common_strings.xml
new file mode 100644
index 0000000..06ab727
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-th/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "ข้อผิดพลาดของบริการ Google Play"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีการติดตั้งบริการ Google Play"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีการอัปเดตสำหรับบริการ Google Play"
+ "แอปพลิเคชันหนึ่งจำเป็นต้องมีบริการ Google Play เพื่อเปิดใช้งาน"
+ "ขอโดย %1$s "
+ "รับบริการ Google Play"
+ "แอปพลิเคชันนี้จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งไม่มีในโทรศัพท์ของคุณ"
+ "แอปพลิเคชันนี้จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งไม่มีในแท็บเล็ตของคุณ"
+ "รับบริการ Google Play"
+ "เปิดใช้งานบริการ Google Play"
+ "แอปพลิเคชันนี้จะไม่ทำงานจนกว่าคุณจะเปิดใช้งานบริการ Google Play"
+ "เปิดใช้งานบริการ Google Play"
+ "อัปเดตบริการ Google Play"
+ "แอปพลิเคชันนี้จะไม่ทำงานจนกว่าคุณจะอัปเดตบริการ Google Play"
+ "ข้อผิดพลาดของเครือข่าย"
+ "ต้องมีการเขื่อมต่อข้อมูลเพื่อเชื่อมต่อกับบริการ Google Play"
+ "บัญชีไม่ถูกต้อง"
+ "บัญชีที่ระบุไม่มีอยู่บนอุปกรณ์นี้ โปรดเลือกบัญชีอื่น"
+ "ปัญหาที่ไม่รู้จักของบริการ Google Play"
+ "บริการ Google Play"
+ "บริการ Google Play ซึ่งใช้งานในบางแอปพลิเคชัน ไม่ได้รับการสนับสนุนโดยอุปกรณ์ของคุณ โปรดติดต่อผู้ผลิตเพื่อขอรับความช่วยเหลือ"
+ "วันที่บนอุปกรณ์ไม่ถูกต้อง โปรดตรวจสอบวันที่บนอุปกรณ์"
+ "อัปเดต"
+ "ลงชื่อใช้"
+ "ลงชื่อเข้าใช้ด้วย Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/auth_strings.xml
new file mode 100644
index 0000000..814b951
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "May app na sumubok ng maling bersyon ng Mga Serbisyo ng Google Play."
+ "Kailangan ng application na na-enable ang Mga Serbisyo ng Google Play."
+ "Kailangan ng application na ma-install ang Serbisyo ng Google Play."
+ "Kailangan ng application na i-update ang Mga Serbisyo ng Google Play."
+ "Error sa mga serbisyo ng Google Play"
+ "Hiniling ng %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/common_strings.xml
new file mode 100644
index 0000000..be5c90e
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tl/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Error sa Mga Serbisyo ng Google Play"
+ "Kailangan ng application na i-install ang Mga Serbisyo ng Google Play."
+ "Kailangan ng application ng update sa Mga Serbisyo ng Google Play."
+ "Kailangan ng application na na-enable ang Mga Serbisyo ng Google Play."
+ "Hiniling ng %1$s "
+ "Kumuha ng mga serbisyo ng Google Play"
+ "Hindi tatakbo ang app na ito nang wala ang mga serbisyo ng Google Play, na wala sa iyong telepono."
+ "Hindi gagana ang app na ito nang wala ang mga serbisyo ng Google Play, na wala sa iyong tablet."
+ "Kumuha ng Google Play services"
+ "Paganahin ang Google Play services"
+ "Hindi gagana ang app na ito maliban kung papaganahin mo ang mga serbisyo ng Google Play."
+ "Enable Google Play services"
+ "I-update ang mga serbisyo ng Google Play"
+ "Hindi gagana ang app na ito maliban kung i-a-update mo ang mga serbisyo ng Google Play."
+ "May Error sa Network"
+ "Kailangan ng koneksyon ng data upang makakonekta sa mga serbisyo ng Google Play."
+ "Di-wasto ang Account"
+ "Hindi umiiral ang tinukoy na account sa device na ito. Mangyaring pumili ng ibang account."
+ "May hindi alam na isyu sa mga serbisyo ng Google Play."
+ "Mga serbisyo ng Google Play"
+ "Ang mga serbisyo ng Google Play, kung saan nakadepende ang ilan sa iyong mga application, ay hindi sinusuportahan ng iyong device. Mangyaring makipag-ugnay sa manufacturer para sa tulong."
+ "Mukhang hindi tama ang petsa sa device. Pakisuri ang petsa sa device."
+ "I-update"
+ "Sign in"
+ "Mag-sign in sa Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/auth_strings.xml
new file mode 100644
index 0000000..cba8165
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Bir uygulama, Google Play Hizmetleri\'nin bozuk bir sürümünü kullanmayı denedi."
+ "Bir uygulama, Google Play Hizmetleri\'nin etkin olmasını gerektiriyor."
+ "Bir uygulama, Google Play Hizmetleri\'nin yüklenmesini gerektiriyor."
+ "Bir uygulama, Google Play Hizmetleri için bir güncelleme gerektiriyor."
+ "Google Play hizmetleri hatası"
+ "İstekte bulunan: %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/common_strings.xml
new file mode 100644
index 0000000..b17e5f4
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-tr/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play Hizmetleri hatası"
+ "Bir uygulama, Google Play hizmetlerinin yüklenmesini gerektiriyor."
+ "Bir uygulama, Google Play Hizmetleri için bir güncelleme gerektiriyor."
+ "Bir uygulama, Google Play Hizmetleri\'nin etkin olmasını gerektiriyor."
+ "İstekte bulunan: %1$s "
+ "Google Play hizmetlerini edinin"
+ "Google Play Hizmetleri telefonunuzda yok ve bu uygulama Google Play Hizmetleri olmadan çalışmaz."
+ "Google Play Hizmetleri tabletinizde yok ve bu uygulama Google Play Hizmetleri olmadan çalışmaz."
+ "Google Play hizmetlerini edin"
+ "Google Play hizmetlerini etkinleştir"
+ "Bu uygulama, Google Play Hizmetleri etkinleştirilmeden çalışmaz"
+ "Google Play hizmetlerini etkinleştir"
+ "Google Play hizmetlerini güncelle"
+ "Bu uygulama Google Play Hizmetleri güncellenmeden çalışmaz."
+ "Ağ Hatası"
+ "Google Play hizmetlerine bağlanmak için bir veri bağlantısı gerekiyor."
+ "Geçersiz Hesap"
+ "Belirtilen hesap bu cihazda mevcut değil. Lütfen farklı bir hesap seçin."
+ "Google Play hizmetleriyle ilgili bilinmeyen sorun."
+ "Google Play hizmetleri"
+ "Cihazınız, uygulamalarınızdan bazıları için gerekli olan Google Play hizmetlerini desteklemiyor. Lütfen yardım için üreticiyle iletişim kurun."
+ "Cihazdaki tarih doğru görünmüyor. Lütfen cihazda ayarlı tarihi kontrol edin."
+ "Güncelle"
+ "Oturum aç"
+ "Google\'da oturum aç"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/auth_strings.xml
new file mode 100644
index 0000000..774a1e9
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Програма спробувала застосувати хибну версію Сервісів Google Play."
+ "Щоб програма працювала, потрібно ввімкнути Сервіси Google Play."
+ "Щоб програма працювала, потрібно встановити Сервіси Google Play."
+ "Щоб програма працювала, потрібно оновити Сервіси Google Play."
+ "Помилка Сервісів Google Play"
+ "Запит від програми %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/common_strings.xml
new file mode 100644
index 0000000..a5f46b2
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-uk/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Помилка сервісів Google Play"
+ "Щоб додаток працював, потрібно встановити сервіси Google Play."
+ "Щоб додаток працював, потрібно оновити сервіси Google Play."
+ "Щоб додаток працював, потрібно ввімкнути сервіси Google Play."
+ "Запит від додатка %1$s "
+ "Установити Google Play Послуги"
+ "Ця програма не запуститься без Google Play Послуг, яких немає у вашому телефоні."
+ "Ця програма не запуститься без Google Play Послуг, яких немає на вашому планшетному ПК."
+ "Установити Google Play Послуги"
+ "Увімкнути Google Play Послуги"
+ "Ця програма не працюватиме, поки ви не ввімкнете Google Play Послуги."
+ "Увімкнути Google Play Послуги"
+ "Оновити Google Play Послуги"
+ "Ця програма не запуститься, поки ви не оновите Google Play Послуги."
+ "Помилка мережі"
+ "Для під’єднання до сервісів Google Play потрібне з’єднання з мережею."
+ "Недійсний обліковий запис"
+ "Указаний обліковий запис не існує на цьому пристрої. Виберіть інший обліковий запис."
+ "Google Play Послуги – невідома проблема."
+ "Сервіси Google Play"
+ "Ваш пристрій не підтримує Сервіси Google Play, від яких залежить робота деяких програм. Зверніться по допомогу до виробника."
+ "Схоже, на пристрої вказано неправильну дату. Перевірте її."
+ "Оновити"
+ "Увійти"
+ "Увійти в обл.запис Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/auth_strings.xml
new file mode 100644
index 0000000..1e8e3db
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Ứng dụng đã cố sử dụng phiên bản không đúng của Dịch vụ của Google Play."
+ "Ứng dụng yêu cầu Dịch vụ của Google Play phải được bật."
+ "Ứng dụng yêu cầu cài đặt Dịch vụ của Google Play."
+ "Ứng dụng yêu cầu cập nhật dành cho Dịch vụ Google Play."
+ "Lỗi dịch vụ của Google Play"
+ "Được yêu cầu bởi %1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/common_strings.xml
new file mode 100644
index 0000000..cf431d3
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-vi/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Lỗi dịch vụ của Google Play"
+ "Một ứng dụng yêu cầu cài đặt các dịch vụ của Google Play."
+ "Một ứng dụng yêu cầu cập nhật đối với các dịch vụ của Google Play."
+ "Một ứng dụng yêu cầu bật các dịch vụ của Google Play."
+ "Được yêu cầu bởi %1$s "
+ "Cài đặt dịch vụ của Google Play"
+ "Ứng dụng này sẽ không chạy nếu không có dịch vụ của Google Play. Điện thoại của bạn bị thiếu dịch vụ này."
+ "Ứng dụng này sẽ không chạy nếu không có dịch vụ của Google Play. Máy tính bảng của bạn bị thiếu dịch vụ này."
+ "Cài đặt dịch vụ của Google Play"
+ "Bật dịch vụ của Google Play"
+ "Ứng dụng này sẽ không hoạt động trừ khi bạn bật dịch vụ của Google Play."
+ "Bật dịch vụ của Google Play"
+ "Cập nhật dịch vụ của Google Play"
+ "Ứng dụng này sẽ không chạy trừ khi bạn cập nhật dịch vụ của Google Play."
+ "Lỗi mạng"
+ "Cần có kết nối dữ liệu để kết nối với các dịch vụ của Google Play."
+ "Tài khoản không hợp lệ"
+ "Tài khoản đã chỉ định không tồn tại trên thiết bị này. Vui lòng chọn một tài khoản khác."
+ "Sự cố không xác định với dịch vụ của Google Play."
+ "Dịch vụ của Google Play"
+ "Các dịch vụ của Google Play mà một số ứng dụng của bạn dựa vào không được thiết bị của bạn hỗ trợ. Vui lòng liên hệ với nhà sản xuất để được hỗ trợ."
+ "Ngày trên thiết bị có vẻ không chính xác. Vui lòng kiểm tra ngày trên thiết bị."
+ "Cập nhật"
+ "Đăng nhập"
+ "Đăng nhập bằng Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/auth_strings.xml
new file mode 100644
index 0000000..250bd3f
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "某个应用尝试使用的 Google Play 服务版本有误。"
+ "某个应用要求启用 Google Play 服务。"
+ "某个应用要求安装 Google Play 服务。"
+ "某个应用要求更新 Google Play 服务。"
+ "Google Play 服务出错"
+ "由“%1$s ”发出"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/common_strings.xml
new file mode 100644
index 0000000..40161bf
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rCN/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play服务出错"
+ "安装Google Play服务后才能运行应用。"
+ "更新Google Play服务后才能运行应用。"
+ "启用Google Play服务后才能运行应用。"
+ "由“%1$s ”发出"
+ "获取 Google Play 服务"
+ "您的手机中没有 Google Play 服务,您必须先安装该服务才能运行此应用。"
+ "您的平板电脑中没有 Google Play 服务,您必须先安装该服务才能运行此应用。"
+ "获取 Google Play 服务"
+ "启用 Google Play 服务"
+ "您必须先启用 Google Play 服务才能运行此应用。"
+ "启用 Google Play 服务"
+ "更新 Google Play 服务"
+ "您必须先更新 Google Play 服务才能运行此应用。"
+ "网络错误"
+ "您必须有数据网络连接才能接入 Google Play 服务。"
+ "无效帐户"
+ "此设备上不存在指定的帐户,请选择其他帐户。"
+ "Google Play 服务出现未知问题。"
+ "Google Play 服务"
+ "您的设备不支持部分应用所依赖的 Google Play 服务。请与设备制造商联系,以寻求帮助。"
+ "设备上的日期似乎不正确,请在设备上检查日期。"
+ "更新"
+ "登录"
+ "使用 Google 帐户登录"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/auth_strings.xml
new file mode 100644
index 0000000..288d013
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "應用程式嘗試使用錯誤版本的「Google Play 服務」。"
+ "必須啟用「Google Play 服務」,才能使用應用程式。"
+ "必須安裝「Google Play 服務」,才能使用應用程式。"
+ "必須更新「Google Play 服務」,才能使用應用程式。"
+ "Google Play 服務錯誤"
+ "「%1$s 」提出要求"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/common_strings.xml
new file mode 100644
index 0000000..e28f2e1
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rHK/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play 服務錯誤"
+ "必須安裝「Google Play 服務」,才能使用應用程式。"
+ "必須更新「Google Play 服務」,才能使用應用程式。"
+ "必須啟用「Google Play 服務」,才能使用應用程式。"
+ "「%1$s 」提出要求"
+ "取得 Google Play 服務"
+ "您的手機未安裝 Google Play 服務,安裝後才能執行這個應用程式。"
+ "您的平板電腦未安裝 Google Play 服務,安裝後才能執行這個應用程式。"
+ "取得 Google Play 服務"
+ "啟用 Google Play 服務"
+ "您必須啟用 Google Play 服務,才能執行這個應用程式。"
+ "啟用 Google Play 服務"
+ "更新 Google Play 服務"
+ "您必須更新 Google Play 服務,才能執行這個應用程式。"
+ "網絡錯誤"
+ "要連接 Google Play 服務,必需數據連線。"
+ "無效的帳戶"
+ "這個裝置上沒有您指定的帳戶,請選擇其他帳戶。"
+ "Google Play 服務出現不明問題。"
+ "Google Play 服務"
+ "您的裝置不支援部分應用程式所需的 Google Play 服務。如需協助,請與您的裝置製造商聯絡。"
+ "裝置上的日期看來不正確,請檢查裝置上的日期。"
+ "更新"
+ "登入"
+ "登入 Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/auth_strings.xml
new file mode 100644
index 0000000..fe7a859
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "應用程式嘗試使用的 Google Play 服務版本有誤。"
+ "應用程式需要啟用 Google Play 服務。"
+ "應用程式需要安裝 Google Play 服務。"
+ "應用程式需要更新 Google Play 服務。"
+ "Google Play 服務錯誤"
+ "提出要求的應用程式:%1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/common_strings.xml
new file mode 100644
index 0000000..0990b71
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zh-rTW/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Google Play 服務發生錯誤"
+ "應用程式要求安裝 Google Play 服務。"
+ "應用程式要求更新 Google Play 服務。"
+ "應用程式要求啟用 Google Play 服務。"
+ "「%1$s 」提出要求"
+ "取得 Google Play 服務"
+ "您的手機並未安裝 Google Play 服務,所以無法執行這個應用程式。"
+ "您的平板電腦並未安裝 Google Play 服務,所以無法執行這個應用程式。"
+ "取得 Google Play 服務"
+ "啟用 Google Play 服務"
+ "您必須啟用 Google Play 服務,這個應用程式才能運作。"
+ "啟用 Google Play 服務"
+ "更新 Google Play 服務"
+ "您必須更新 Google Play 服務,才能執行這個應用程式。"
+ "網路錯誤"
+ "需要數據連線才能連上 Google Play 服務。"
+ "無效的帳戶"
+ "這個裝置上沒有您所指定的帳戶,請選擇其他帳戶。"
+ "Google Play 服務發生不明問題。"
+ "Google Play 服務"
+ "您的裝置不支援部分應用程式所需的 Google Play 服務。如需協助,請與您的裝置製造商聯絡。"
+ "裝置上的日期似乎不正確,請檢查裝置上的日期。"
+ "更新"
+ "登入"
+ "使用 Google 帳戶登入"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/auth_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/auth_strings.xml
new file mode 100644
index 0000000..14f1482
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/auth_strings.xml
@@ -0,0 +1,10 @@
+
+
+ "Uhlelo lokusebenza luzame ukusebenzisa inguqulo embi yamasevisi we-Google Play."
+ "Uhlelo lokusebenza ludinga amasevisi we-Google Play ukuze anikwe amandla."
+ "Uhlelo lokusebenza ludinga ukufakwa kwamasevisi we-Google Play."
+ "Uhlelo lokusebenza ludinga isibuyekezo samasevisi we-Google Play."
+ "Iphutha lamasevisi we-Google Play"
+ "Kucelwe yi-%1$s "
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/common_strings.xml
new file mode 100644
index 0000000..1e39af2
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values-zu/common_strings.xml
@@ -0,0 +1,29 @@
+
+
+ "Iphutha lamasevisi we-Google Play"
+ "Uhlelo lokusebenza ludinga ukufakwa kwamasevisi we-Google Play."
+ "Uhlelo lokusebenza ludinga isibuyekezo samasevisi we-Google Play."
+ "Uhlelo lokusebenza ludinga amasevisi we-Google Play ukuze anikwe amandla."
+ "Icelwe yi-%1$s "
+ "Thola amasevisi e-Google Play"
+ "Lolu hlelo lokusebenza ngeke lusebenze ngaphandle kwamasevisi e-Google Play, angekho efonini yakho."
+ "Lolu hlelo lokusebenza ngeke lusebenze ngaphandle kwamasevisi e-Google Play, angekho kuthebulethi yakho."
+ "Thola amasevisi e-Google Play"
+ "Nika amandla amasevisi e-Google Play"
+ "Lolu hlelo lokusebenza ngeke lusebenze ngaphandle nje kokuthi unike amandla amasevisi e-Google Play."
+ "Nika amandla amasevisi e-Google Play"
+ "Buyekeza amasevisi e-Google Play"
+ "Lolu hlelo lokusebenza ngeke lusebenze ngaphandle nje kokuthi ubuyekeze amasevisi e-Google Play."
+ "Iphutha lenethiwekhi"
+ "Kudingeka ukuxhumeka kwedatha ukuze kuxhunyekwe kumasevisi we-Google Play."
+ "I-Akhawunti engavumelekile"
+ "I-Akhawunti ecacisiwe ayikho kule divayisi. Sicela ukhethe i-akhawunti ehlukile."
+ "Indaba engaziwa yamasevisi we-Google Play"
+ "Amasevisi we-Google Play"
+ "Amasevisi we-Google Play, okungukuthi ezinye izinhlelo zakho zithembele kuwo, awasekelwe yidivayisi yakho. Sicela uxhumane nomkhiqizi ukuze uthole usizo."
+ "Idethi kudivayisi ibonakala ingalungile. Sicela uhlole idethi kudivayisi."
+ "Isibuyekezo"
+ "Ngena ngemvume"
+ "Ngena ngemvume nge-Google"
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_ads_attrs.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_ads_attrs.xml
new file mode 100644
index 0000000..4e97a73
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_ads_attrs.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_iap_style.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_iap_style.xml
new file mode 100644
index 0000000..35b09a9
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/admob_iap_style.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_colors.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_colors.xml
new file mode 100644
index 0000000..6b2740a
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_colors.xml
@@ -0,0 +1,14 @@
+
+
+
+ @android:color/white
+ @android:color/white
+ #FFAAAAAA
+ @android:color/white
+ #FF737373
+ @android:color/white
+ #FFAAAAAA
+ #FF737373
+ #FFDD4B39
+ #d2d2d2
+
\ No newline at end of file
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_strings.xml
new file mode 100644
index 0000000..5d50483
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/common_strings.xml
@@ -0,0 +1,90 @@
+
+
+
+
+ Google Play services error
+
+ An application requires installation of Google Play services.
+
+ An application requires an update for Google Play services.
+
+ An application requires Google Play services to be enabled.
+
+
+ Requested by %1$s
+
+
+ Get Google Play services
+
+
+ This app won\'t run without Google Play services, which are missing from your phone.
+
+
+ This app won\'t run without Google Play services, which are missing from your tablet.
+
+
+ Get Google Play services
+
+
+ Enable Google Play services
+
+
+ This app won\'t work unless you enable Google Play services.
+
+
+ Enable Google Play services
+
+
+ Update Google Play services
+
+
+ This app won\'t run unless you update Google Play services.
+
+
+ Network Error
+
+
+ A data connection is required to connect to Google Play services.
+
+
+ Invalid Account
+
+
+ The specified account does not exist on this device. Please choose a different account.
+
+
+ Unknown issue with Google Play services.
+
+
+ Google Play services
+
+
+ Google Play services, which some of your applications rely on, is not supported by your device. Please contact the manufacturer for assistance.
+
+
+ The date on the device appears to be incorrect. Please check the date on the device.
+
+
+ Update
+
+
+ Sign in
+
+
+ Sign in with Google
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/maps_attrs.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/maps_attrs.xml
new file mode 100644
index 0000000..aaf65c5
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/maps_attrs.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/version.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/version.xml
new file mode 100644
index 0000000..ed4ecc9
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/version.xml
@@ -0,0 +1,4 @@
+
+
+ 5077000
+
\ No newline at end of file
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_attrs.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_attrs.xml
new file mode 100644
index 0000000..6a40575
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_attrs.xml
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_colors.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_colors.xml
new file mode 100644
index 0000000..7432875
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_colors.xml
@@ -0,0 +1,21 @@
+
+
+
+
+ #fff3f3f3
+ #bebebe
+ #80bebebe
+ #323232
+ #80323232
+ #ffb2b2b2
+ #ff000000
+ #808080
+ #808080
+ #6633b5e5
+ #6633b5e5
+ #ff33b5e5
+ #0000ee
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_strings.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_strings.xml
new file mode 100644
index 0000000..8dc227b
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_strings.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Buy with Google
+
+
diff --git a/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_styles.xml b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_styles.xml
new file mode 100644
index 0000000..129e26d
--- /dev/null
+++ b/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.0.77/res/values/wallet_styles.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/intermediates/model_data.bin b/build/intermediates/model_data.bin
new file mode 100644
index 0000000..f62297a
Binary files /dev/null and b/build/intermediates/model_data.bin differ
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..5d08ba7
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,18 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Settings specified in this file will override any Gradle settings
+# configured through the IDE.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+# Default value: -Xmx10248m -XX:MaxPermSize=256m
+# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..8c0fb64
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..b74125a
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sat Jul 12 02:34:48 EDT 2014
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
diff --git a/gradlew b/gradlew
new file mode 100644
index 0000000..91a7e26
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,164 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >&-
+APP_HOME="`pwd -P`"
+cd "$SAVED" >&-
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..8a0b282
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..9572d64
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1 @@
+include ':Emoji Switcher'
\ No newline at end of file
diff --git a/web_hi_res_512.png b/web_hi_res_512.png
new file mode 100644
index 0000000..a133bd5
Binary files /dev/null and b/web_hi_res_512.png differ