Initialrelease
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="android.support.multidex">
|
||||
<uses-sdk android:minSdkVersion="4"/>
|
||||
</manifest>
|
||||
<!-- From: file:/Volumes/Android/int/lmp-sdk-release/frameworks/multidex/library/AndroidManifest.xml -->
|
||||
@@ -0,0 +1,17 @@
|
||||
<!-- Copyright (C) 2014 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
--><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="android.support.v4">
|
||||
<uses-sdk android:minSdkVersion="4"/>
|
||||
<application/>
|
||||
</manifest>
|
||||
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.app;
|
||||
|
||||
import android.app.Notification;
|
||||
|
||||
/**
|
||||
* Interface used for delivering notifications via a side channel that bypasses
|
||||
* the NotificationManagerService.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
oneway interface INotificationSideChannel {
|
||||
/**
|
||||
* Send an ambient notification to the service.
|
||||
*/
|
||||
void notify(String packageName, int id, String tag, in Notification notification);
|
||||
|
||||
/**
|
||||
* Cancel an already-notified notification.
|
||||
*/
|
||||
void cancel(String packageName, int id, String tag);
|
||||
|
||||
/**
|
||||
* Cancel all notifications for the given package.
|
||||
*/
|
||||
void cancelAll(String packageName);
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2014 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="android.support.v4" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="4" />
|
||||
|
||||
<application />
|
||||
|
||||
</manifest>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2014 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="android.support.v4" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="4" />
|
||||
|
||||
<application />
|
||||
|
||||
</manifest>
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Copyright 2014, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.media;
|
||||
|
||||
parcelable MediaMetadataCompat;
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Copyright 2014, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.media;
|
||||
|
||||
parcelable RatingCompat;
|
||||
@@ -0,0 +1,20 @@
|
||||
/* Copyright 2014, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.media.session;
|
||||
|
||||
parcelable MediaSessionCompat.Token;
|
||||
parcelable MediaSessionCompat.QueueItem;
|
||||
parcelable MediaSessionCompat.ResultReceiverWrapper;
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Copyright 2014, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.media.session;
|
||||
|
||||
parcelable ParcelableVolumeInfo;
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Copyright 2014, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
package android.support.v4.media.session;
|
||||
|
||||
parcelable PlaybackStateCompat;
|
||||
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2012 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.gms.ads">
|
||||
|
||||
<!-- Include required permissions for Google Mobile Ads to run-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||
|
||||
<uses-sdk android:minSdkVersion="9"/>
|
||||
<application>
|
||||
<!--Include the AdActivity and InAppPurchaseActivity configChanges and themes. -->
|
||||
<activity
|
||||
android:name="com.google.android.gms.ads.AdActivity"
|
||||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
|
||||
android:theme="@android:style/Theme.Translucent" />
|
||||
<activity android:name="com.google.android.gms.ads.purchase.InAppPurchaseActivity"
|
||||
android:theme="@style/Theme.IAPTheme"/>
|
||||
</application>
|
||||
</manifest>
|
||||
@@ -0,0 +1,223 @@
|
||||
int attr adSize 0x7f010000
|
||||
int attr adSizes 0x7f010001
|
||||
int attr adUnitId 0x7f010002
|
||||
int attr appTheme 0x7f010017
|
||||
int attr buyButtonAppearance 0x7f01001e
|
||||
int attr buyButtonHeight 0x7f01001b
|
||||
int attr buyButtonText 0x7f01001d
|
||||
int attr buyButtonWidth 0x7f01001c
|
||||
int attr cameraBearing 0x7f010008
|
||||
int attr cameraTargetLat 0x7f010009
|
||||
int attr cameraTargetLng 0x7f01000a
|
||||
int attr cameraTilt 0x7f01000b
|
||||
int attr cameraZoom 0x7f01000c
|
||||
int attr circleCrop 0x7f010006
|
||||
int attr environment 0x7f010018
|
||||
int attr fragmentMode 0x7f01001a
|
||||
int attr fragmentStyle 0x7f010019
|
||||
int attr imageAspectRatio 0x7f010005
|
||||
int attr imageAspectRatioAdjust 0x7f010004
|
||||
int attr liteMode 0x7f01000d
|
||||
int attr mapType 0x7f010007
|
||||
int attr maskedWalletDetailsBackground 0x7f010021
|
||||
int attr maskedWalletDetailsButtonBackground 0x7f010023
|
||||
int attr maskedWalletDetailsButtonTextAppearance 0x7f010022
|
||||
int attr maskedWalletDetailsHeaderTextAppearance 0x7f010020
|
||||
int attr maskedWalletDetailsLogoImageType 0x7f010025
|
||||
int attr maskedWalletDetailsLogoTextColor 0x7f010024
|
||||
int attr maskedWalletDetailsTextAppearance 0x7f01001f
|
||||
int attr uiCompass 0x7f01000e
|
||||
int attr uiMapToolbar 0x7f010016
|
||||
int attr uiRotateGestures 0x7f01000f
|
||||
int attr uiScrollGestures 0x7f010010
|
||||
int attr uiTiltGestures 0x7f010011
|
||||
int attr uiZoomControls 0x7f010012
|
||||
int attr uiZoomGestures 0x7f010013
|
||||
int attr useViewLifecycle 0x7f010014
|
||||
int attr windowTransitionStyle 0x7f010003
|
||||
int attr zOrderOnTop 0x7f010015
|
||||
int color common_action_bar_splitter 0x7f040000
|
||||
int color common_signin_btn_dark_text_default 0x7f040001
|
||||
int color common_signin_btn_dark_text_disabled 0x7f040002
|
||||
int color common_signin_btn_dark_text_focused 0x7f040003
|
||||
int color common_signin_btn_dark_text_pressed 0x7f040004
|
||||
int color common_signin_btn_default_background 0x7f040005
|
||||
int color common_signin_btn_light_text_default 0x7f040006
|
||||
int color common_signin_btn_light_text_disabled 0x7f040007
|
||||
int color common_signin_btn_light_text_focused 0x7f040008
|
||||
int color common_signin_btn_light_text_pressed 0x7f040009
|
||||
int color common_signin_btn_text_dark 0x7f040017
|
||||
int color common_signin_btn_text_light 0x7f040018
|
||||
int color wallet_bright_foreground_disabled_holo_light 0x7f04000a
|
||||
int color wallet_bright_foreground_holo_dark 0x7f04000b
|
||||
int color wallet_bright_foreground_holo_light 0x7f04000c
|
||||
int color wallet_dim_foreground_disabled_holo_dark 0x7f04000d
|
||||
int color wallet_dim_foreground_holo_dark 0x7f04000e
|
||||
int color wallet_dim_foreground_inverse_disabled_holo_dark 0x7f04000f
|
||||
int color wallet_dim_foreground_inverse_holo_dark 0x7f040010
|
||||
int color wallet_highlighted_text_holo_dark 0x7f040011
|
||||
int color wallet_highlighted_text_holo_light 0x7f040012
|
||||
int color wallet_hint_foreground_holo_dark 0x7f040013
|
||||
int color wallet_hint_foreground_holo_light 0x7f040014
|
||||
int color wallet_holo_blue_light 0x7f040015
|
||||
int color wallet_link_text_light 0x7f040016
|
||||
int color wallet_primary_text_holo_light 0x7f040019
|
||||
int color wallet_secondary_text_holo_dark 0x7f04001a
|
||||
int drawable cast_ic_notification_0 0x7f020000
|
||||
int drawable cast_ic_notification_1 0x7f020001
|
||||
int drawable cast_ic_notification_2 0x7f020002
|
||||
int drawable cast_ic_notification_connecting 0x7f020003
|
||||
int drawable cast_ic_notification_on 0x7f020004
|
||||
int drawable common_full_open_on_phone 0x7f020005
|
||||
int drawable common_ic_googleplayservices 0x7f020006
|
||||
int drawable common_signin_btn_icon_dark 0x7f020007
|
||||
int drawable common_signin_btn_icon_disabled_dark 0x7f020008
|
||||
int drawable common_signin_btn_icon_disabled_focus_dark 0x7f020009
|
||||
int drawable common_signin_btn_icon_disabled_focus_light 0x7f02000a
|
||||
int drawable common_signin_btn_icon_disabled_light 0x7f02000b
|
||||
int drawable common_signin_btn_icon_focus_dark 0x7f02000c
|
||||
int drawable common_signin_btn_icon_focus_light 0x7f02000d
|
||||
int drawable common_signin_btn_icon_light 0x7f02000e
|
||||
int drawable common_signin_btn_icon_normal_dark 0x7f02000f
|
||||
int drawable common_signin_btn_icon_normal_light 0x7f020010
|
||||
int drawable common_signin_btn_icon_pressed_dark 0x7f020011
|
||||
int drawable common_signin_btn_icon_pressed_light 0x7f020012
|
||||
int drawable common_signin_btn_text_dark 0x7f020013
|
||||
int drawable common_signin_btn_text_disabled_dark 0x7f020014
|
||||
int drawable common_signin_btn_text_disabled_focus_dark 0x7f020015
|
||||
int drawable common_signin_btn_text_disabled_focus_light 0x7f020016
|
||||
int drawable common_signin_btn_text_disabled_light 0x7f020017
|
||||
int drawable common_signin_btn_text_focus_dark 0x7f020018
|
||||
int drawable common_signin_btn_text_focus_light 0x7f020019
|
||||
int drawable common_signin_btn_text_light 0x7f02001a
|
||||
int drawable common_signin_btn_text_normal_dark 0x7f02001b
|
||||
int drawable common_signin_btn_text_normal_light 0x7f02001c
|
||||
int drawable common_signin_btn_text_pressed_dark 0x7f02001d
|
||||
int drawable common_signin_btn_text_pressed_light 0x7f02001e
|
||||
int drawable ic_plusone_medium_off_client 0x7f02001f
|
||||
int drawable ic_plusone_small_off_client 0x7f020020
|
||||
int drawable ic_plusone_standard_off_client 0x7f020021
|
||||
int drawable ic_plusone_tall_off_client 0x7f020022
|
||||
int drawable powered_by_google_dark 0x7f020023
|
||||
int drawable powered_by_google_light 0x7f020024
|
||||
int id adjust_height 0x7f050003
|
||||
int id adjust_width 0x7f050004
|
||||
int id book_now 0x7f050013
|
||||
int id buyButton 0x7f05000f
|
||||
int id buy_now 0x7f050014
|
||||
int id buy_with_google 0x7f050015
|
||||
int id cast_notification_id 0x7f050000
|
||||
int id classic 0x7f050017
|
||||
int id donate_with_google 0x7f050016
|
||||
int id grayscale 0x7f050018
|
||||
int id holo_dark 0x7f050009
|
||||
int id holo_light 0x7f05000a
|
||||
int id hybrid 0x7f050005
|
||||
int id match_parent 0x7f050011
|
||||
int id monochrome 0x7f050019
|
||||
int id none 0x7f050001
|
||||
int id normal 0x7f050006
|
||||
int id production 0x7f05000b
|
||||
int id sandbox 0x7f05000c
|
||||
int id satellite 0x7f050007
|
||||
int id selectionDetails 0x7f050010
|
||||
int id slide 0x7f050002
|
||||
int id strict_sandbox 0x7f05000d
|
||||
int id terrain 0x7f050008
|
||||
int id test 0x7f05000e
|
||||
int id wrap_content 0x7f050012
|
||||
int integer google_play_services_version 0x7f060000
|
||||
int raw gtm_analytics 0x7f030000
|
||||
int string accept 0x7f070000
|
||||
int string auth_google_play_services_client_facebook_display_name 0x7f070001
|
||||
int string auth_google_play_services_client_google_display_name 0x7f070002
|
||||
int string cast_notification_connected_message 0x7f070003
|
||||
int string cast_notification_connecting_message 0x7f070004
|
||||
int string cast_notification_disconnect 0x7f070005
|
||||
int string common_android_wear_notification_needs_update_text 0x7f070006
|
||||
int string common_android_wear_update_text 0x7f070007
|
||||
int string common_android_wear_update_title 0x7f070008
|
||||
int string common_google_play_services_api_unavailable_text 0x7f070009
|
||||
int string common_google_play_services_enable_button 0x7f07000a
|
||||
int string common_google_play_services_enable_text 0x7f07000b
|
||||
int string common_google_play_services_enable_title 0x7f07000c
|
||||
int string common_google_play_services_error_notification_requested_by_msg 0x7f07000d
|
||||
int string common_google_play_services_install_button 0x7f07000e
|
||||
int string common_google_play_services_install_text_phone 0x7f07000f
|
||||
int string common_google_play_services_install_text_tablet 0x7f070010
|
||||
int string common_google_play_services_install_title 0x7f070011
|
||||
int string common_google_play_services_invalid_account_text 0x7f070012
|
||||
int string common_google_play_services_invalid_account_title 0x7f070013
|
||||
int string common_google_play_services_needs_enabling_title 0x7f070014
|
||||
int string common_google_play_services_network_error_text 0x7f070015
|
||||
int string common_google_play_services_network_error_title 0x7f070016
|
||||
int string common_google_play_services_notification_needs_update_title 0x7f070017
|
||||
int string common_google_play_services_notification_ticker 0x7f070018
|
||||
int string common_google_play_services_sign_in_failed_text 0x7f070019
|
||||
int string common_google_play_services_sign_in_failed_title 0x7f07001a
|
||||
int string common_google_play_services_unknown_issue 0x7f07001b
|
||||
int string common_google_play_services_unsupported_text 0x7f07001c
|
||||
int string common_google_play_services_unsupported_title 0x7f07001d
|
||||
int string common_google_play_services_update_button 0x7f07001e
|
||||
int string common_google_play_services_update_text 0x7f07001f
|
||||
int string common_google_play_services_update_title 0x7f070020
|
||||
int string common_google_play_services_updating_text 0x7f070021
|
||||
int string common_google_play_services_updating_title 0x7f070022
|
||||
int string common_open_on_phone 0x7f070023
|
||||
int string common_signin_button_text 0x7f070024
|
||||
int string common_signin_button_text_long 0x7f070025
|
||||
int string create_calendar_message 0x7f070026
|
||||
int string create_calendar_title 0x7f070027
|
||||
int string decline 0x7f070028
|
||||
int string store_picture_message 0x7f070029
|
||||
int string store_picture_title 0x7f07002a
|
||||
int string wallet_buy_button_place_holder 0x7f07002b
|
||||
int style Theme_IAPTheme 0x7f080000
|
||||
int style WalletFragmentDefaultButtonTextAppearance 0x7f080001
|
||||
int style WalletFragmentDefaultDetailsHeaderTextAppearance 0x7f080002
|
||||
int style WalletFragmentDefaultDetailsTextAppearance 0x7f080003
|
||||
int style WalletFragmentDefaultStyle 0x7f080004
|
||||
int[] styleable AdsAttrs { 0x7f010000, 0x7f010001, 0x7f010002 }
|
||||
int styleable AdsAttrs_adSize 0
|
||||
int styleable AdsAttrs_adSizes 1
|
||||
int styleable AdsAttrs_adUnitId 2
|
||||
int[] styleable CustomWalletTheme { 0x7f010003 }
|
||||
int styleable CustomWalletTheme_windowTransitionStyle 0
|
||||
int[] styleable LoadingImageView { 0x7f010004, 0x7f010005, 0x7f010006 }
|
||||
int styleable LoadingImageView_circleCrop 2
|
||||
int styleable LoadingImageView_imageAspectRatio 1
|
||||
int styleable LoadingImageView_imageAspectRatioAdjust 0
|
||||
int[] styleable MapAttrs { 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016 }
|
||||
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_liteMode 6
|
||||
int styleable MapAttrs_mapType 0
|
||||
int styleable MapAttrs_uiCompass 7
|
||||
int styleable MapAttrs_uiMapToolbar 15
|
||||
int styleable MapAttrs_uiRotateGestures 8
|
||||
int styleable MapAttrs_uiScrollGestures 9
|
||||
int styleable MapAttrs_uiTiltGestures 10
|
||||
int styleable MapAttrs_uiZoomControls 11
|
||||
int styleable MapAttrs_uiZoomGestures 12
|
||||
int styleable MapAttrs_useViewLifecycle 13
|
||||
int styleable MapAttrs_zOrderOnTop 14
|
||||
int[] styleable WalletFragmentOptions { 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a }
|
||||
int styleable WalletFragmentOptions_appTheme 0
|
||||
int styleable WalletFragmentOptions_environment 1
|
||||
int styleable WalletFragmentOptions_fragmentMode 3
|
||||
int styleable WalletFragmentOptions_fragmentStyle 2
|
||||
int[] styleable WalletFragmentStyle { 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025 }
|
||||
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
|
||||
@@ -0,0 +1,20 @@
|
||||
-keep class * extends java.util.ListResourceBundle {
|
||||
protected java.lang.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;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2013 Google Inc. All Rights Reserved. -->
|
||||
<resources>
|
||||
<declare-styleable name="AdsAttrs">
|
||||
<!--
|
||||
The size of the ad. It must be one of BANNER, FULL_BANNER, LEADERBOARD,
|
||||
MEDIUM_RECTANGLE, SMART_BANNER, WIDE_SKYSCRAPER, or
|
||||
<width>x<height>.
|
||||
-->
|
||||
<attr name="adSize" format="string"/>
|
||||
|
||||
<!--
|
||||
A comma-separated list of the supported ad sizes. The sizes must be one of
|
||||
BANNER, FULL_BANNER, LEADERBOARD, MEDIUM_RECTANGLE, SMART_BANNER,
|
||||
WIDE_SKYSCRAPER, or <width>x<height>.
|
||||
-->
|
||||
<attr name="adSizes" format="string"/>
|
||||
|
||||
<!-- The ad unit ID. -->
|
||||
<attr name="adUnitId" format="string"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="Theme.IAPTheme" parent="android:Theme">
|
||||
<item name="android:windowIsTranslucent">true</item>
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<item name="android:windowIsFloating">true</item>
|
||||
<item name="android:backgroundDimEnabled">false</item>
|
||||
</style>
|
||||
</resources>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="store_picture_title">Save image</string>
|
||||
<string name="store_picture_message">"Allow Ad to store image in Picture gallery?"</string>
|
||||
<string name="accept">Accept</string>
|
||||
<string name="decline">Decline</string>
|
||||
<string name="create_calendar_title">Create calendar event</string>
|
||||
<string name="create_calendar_message">Allow Ad to create a calendar event?</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2012 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.gms.analytics">
|
||||
<uses-sdk android:minSdkVersion="9"/>
|
||||
|
||||
<!-- Include required permissions for Analytics to run. -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
|
||||
<application />
|
||||
</manifest>
|
||||
@@ -0,0 +1,223 @@
|
||||
int attr adSize 0x7f010000
|
||||
int attr adSizes 0x7f010001
|
||||
int attr adUnitId 0x7f010002
|
||||
int attr appTheme 0x7f010017
|
||||
int attr buyButtonAppearance 0x7f01001e
|
||||
int attr buyButtonHeight 0x7f01001b
|
||||
int attr buyButtonText 0x7f01001d
|
||||
int attr buyButtonWidth 0x7f01001c
|
||||
int attr cameraBearing 0x7f010008
|
||||
int attr cameraTargetLat 0x7f010009
|
||||
int attr cameraTargetLng 0x7f01000a
|
||||
int attr cameraTilt 0x7f01000b
|
||||
int attr cameraZoom 0x7f01000c
|
||||
int attr circleCrop 0x7f010006
|
||||
int attr environment 0x7f010018
|
||||
int attr fragmentMode 0x7f01001a
|
||||
int attr fragmentStyle 0x7f010019
|
||||
int attr imageAspectRatio 0x7f010005
|
||||
int attr imageAspectRatioAdjust 0x7f010004
|
||||
int attr liteMode 0x7f01000d
|
||||
int attr mapType 0x7f010007
|
||||
int attr maskedWalletDetailsBackground 0x7f010021
|
||||
int attr maskedWalletDetailsButtonBackground 0x7f010023
|
||||
int attr maskedWalletDetailsButtonTextAppearance 0x7f010022
|
||||
int attr maskedWalletDetailsHeaderTextAppearance 0x7f010020
|
||||
int attr maskedWalletDetailsLogoImageType 0x7f010025
|
||||
int attr maskedWalletDetailsLogoTextColor 0x7f010024
|
||||
int attr maskedWalletDetailsTextAppearance 0x7f01001f
|
||||
int attr uiCompass 0x7f01000e
|
||||
int attr uiMapToolbar 0x7f010016
|
||||
int attr uiRotateGestures 0x7f01000f
|
||||
int attr uiScrollGestures 0x7f010010
|
||||
int attr uiTiltGestures 0x7f010011
|
||||
int attr uiZoomControls 0x7f010012
|
||||
int attr uiZoomGestures 0x7f010013
|
||||
int attr useViewLifecycle 0x7f010014
|
||||
int attr windowTransitionStyle 0x7f010003
|
||||
int attr zOrderOnTop 0x7f010015
|
||||
int color common_action_bar_splitter 0x7f040000
|
||||
int color common_signin_btn_dark_text_default 0x7f040001
|
||||
int color common_signin_btn_dark_text_disabled 0x7f040002
|
||||
int color common_signin_btn_dark_text_focused 0x7f040003
|
||||
int color common_signin_btn_dark_text_pressed 0x7f040004
|
||||
int color common_signin_btn_default_background 0x7f040005
|
||||
int color common_signin_btn_light_text_default 0x7f040006
|
||||
int color common_signin_btn_light_text_disabled 0x7f040007
|
||||
int color common_signin_btn_light_text_focused 0x7f040008
|
||||
int color common_signin_btn_light_text_pressed 0x7f040009
|
||||
int color common_signin_btn_text_dark 0x7f040017
|
||||
int color common_signin_btn_text_light 0x7f040018
|
||||
int color wallet_bright_foreground_disabled_holo_light 0x7f04000a
|
||||
int color wallet_bright_foreground_holo_dark 0x7f04000b
|
||||
int color wallet_bright_foreground_holo_light 0x7f04000c
|
||||
int color wallet_dim_foreground_disabled_holo_dark 0x7f04000d
|
||||
int color wallet_dim_foreground_holo_dark 0x7f04000e
|
||||
int color wallet_dim_foreground_inverse_disabled_holo_dark 0x7f04000f
|
||||
int color wallet_dim_foreground_inverse_holo_dark 0x7f040010
|
||||
int color wallet_highlighted_text_holo_dark 0x7f040011
|
||||
int color wallet_highlighted_text_holo_light 0x7f040012
|
||||
int color wallet_hint_foreground_holo_dark 0x7f040013
|
||||
int color wallet_hint_foreground_holo_light 0x7f040014
|
||||
int color wallet_holo_blue_light 0x7f040015
|
||||
int color wallet_link_text_light 0x7f040016
|
||||
int color wallet_primary_text_holo_light 0x7f040019
|
||||
int color wallet_secondary_text_holo_dark 0x7f04001a
|
||||
int drawable cast_ic_notification_0 0x7f020000
|
||||
int drawable cast_ic_notification_1 0x7f020001
|
||||
int drawable cast_ic_notification_2 0x7f020002
|
||||
int drawable cast_ic_notification_connecting 0x7f020003
|
||||
int drawable cast_ic_notification_on 0x7f020004
|
||||
int drawable common_full_open_on_phone 0x7f020005
|
||||
int drawable common_ic_googleplayservices 0x7f020006
|
||||
int drawable common_signin_btn_icon_dark 0x7f020007
|
||||
int drawable common_signin_btn_icon_disabled_dark 0x7f020008
|
||||
int drawable common_signin_btn_icon_disabled_focus_dark 0x7f020009
|
||||
int drawable common_signin_btn_icon_disabled_focus_light 0x7f02000a
|
||||
int drawable common_signin_btn_icon_disabled_light 0x7f02000b
|
||||
int drawable common_signin_btn_icon_focus_dark 0x7f02000c
|
||||
int drawable common_signin_btn_icon_focus_light 0x7f02000d
|
||||
int drawable common_signin_btn_icon_light 0x7f02000e
|
||||
int drawable common_signin_btn_icon_normal_dark 0x7f02000f
|
||||
int drawable common_signin_btn_icon_normal_light 0x7f020010
|
||||
int drawable common_signin_btn_icon_pressed_dark 0x7f020011
|
||||
int drawable common_signin_btn_icon_pressed_light 0x7f020012
|
||||
int drawable common_signin_btn_text_dark 0x7f020013
|
||||
int drawable common_signin_btn_text_disabled_dark 0x7f020014
|
||||
int drawable common_signin_btn_text_disabled_focus_dark 0x7f020015
|
||||
int drawable common_signin_btn_text_disabled_focus_light 0x7f020016
|
||||
int drawable common_signin_btn_text_disabled_light 0x7f020017
|
||||
int drawable common_signin_btn_text_focus_dark 0x7f020018
|
||||
int drawable common_signin_btn_text_focus_light 0x7f020019
|
||||
int drawable common_signin_btn_text_light 0x7f02001a
|
||||
int drawable common_signin_btn_text_normal_dark 0x7f02001b
|
||||
int drawable common_signin_btn_text_normal_light 0x7f02001c
|
||||
int drawable common_signin_btn_text_pressed_dark 0x7f02001d
|
||||
int drawable common_signin_btn_text_pressed_light 0x7f02001e
|
||||
int drawable ic_plusone_medium_off_client 0x7f02001f
|
||||
int drawable ic_plusone_small_off_client 0x7f020020
|
||||
int drawable ic_plusone_standard_off_client 0x7f020021
|
||||
int drawable ic_plusone_tall_off_client 0x7f020022
|
||||
int drawable powered_by_google_dark 0x7f020023
|
||||
int drawable powered_by_google_light 0x7f020024
|
||||
int id adjust_height 0x7f050003
|
||||
int id adjust_width 0x7f050004
|
||||
int id book_now 0x7f050013
|
||||
int id buyButton 0x7f05000f
|
||||
int id buy_now 0x7f050014
|
||||
int id buy_with_google 0x7f050015
|
||||
int id cast_notification_id 0x7f050000
|
||||
int id classic 0x7f050017
|
||||
int id donate_with_google 0x7f050016
|
||||
int id grayscale 0x7f050018
|
||||
int id holo_dark 0x7f050009
|
||||
int id holo_light 0x7f05000a
|
||||
int id hybrid 0x7f050005
|
||||
int id match_parent 0x7f050011
|
||||
int id monochrome 0x7f050019
|
||||
int id none 0x7f050001
|
||||
int id normal 0x7f050006
|
||||
int id production 0x7f05000b
|
||||
int id sandbox 0x7f05000c
|
||||
int id satellite 0x7f050007
|
||||
int id selectionDetails 0x7f050010
|
||||
int id slide 0x7f050002
|
||||
int id strict_sandbox 0x7f05000d
|
||||
int id terrain 0x7f050008
|
||||
int id test 0x7f05000e
|
||||
int id wrap_content 0x7f050012
|
||||
int integer google_play_services_version 0x7f060000
|
||||
int raw gtm_analytics 0x7f030000
|
||||
int string accept 0x7f070000
|
||||
int string auth_google_play_services_client_facebook_display_name 0x7f070001
|
||||
int string auth_google_play_services_client_google_display_name 0x7f070002
|
||||
int string cast_notification_connected_message 0x7f070003
|
||||
int string cast_notification_connecting_message 0x7f070004
|
||||
int string cast_notification_disconnect 0x7f070005
|
||||
int string common_android_wear_notification_needs_update_text 0x7f070006
|
||||
int string common_android_wear_update_text 0x7f070007
|
||||
int string common_android_wear_update_title 0x7f070008
|
||||
int string common_google_play_services_api_unavailable_text 0x7f070009
|
||||
int string common_google_play_services_enable_button 0x7f07000a
|
||||
int string common_google_play_services_enable_text 0x7f07000b
|
||||
int string common_google_play_services_enable_title 0x7f07000c
|
||||
int string common_google_play_services_error_notification_requested_by_msg 0x7f07000d
|
||||
int string common_google_play_services_install_button 0x7f07000e
|
||||
int string common_google_play_services_install_text_phone 0x7f07000f
|
||||
int string common_google_play_services_install_text_tablet 0x7f070010
|
||||
int string common_google_play_services_install_title 0x7f070011
|
||||
int string common_google_play_services_invalid_account_text 0x7f070012
|
||||
int string common_google_play_services_invalid_account_title 0x7f070013
|
||||
int string common_google_play_services_needs_enabling_title 0x7f070014
|
||||
int string common_google_play_services_network_error_text 0x7f070015
|
||||
int string common_google_play_services_network_error_title 0x7f070016
|
||||
int string common_google_play_services_notification_needs_update_title 0x7f070017
|
||||
int string common_google_play_services_notification_ticker 0x7f070018
|
||||
int string common_google_play_services_sign_in_failed_text 0x7f070019
|
||||
int string common_google_play_services_sign_in_failed_title 0x7f07001a
|
||||
int string common_google_play_services_unknown_issue 0x7f07001b
|
||||
int string common_google_play_services_unsupported_text 0x7f07001c
|
||||
int string common_google_play_services_unsupported_title 0x7f07001d
|
||||
int string common_google_play_services_update_button 0x7f07001e
|
||||
int string common_google_play_services_update_text 0x7f07001f
|
||||
int string common_google_play_services_update_title 0x7f070020
|
||||
int string common_google_play_services_updating_text 0x7f070021
|
||||
int string common_google_play_services_updating_title 0x7f070022
|
||||
int string common_open_on_phone 0x7f070023
|
||||
int string common_signin_button_text 0x7f070024
|
||||
int string common_signin_button_text_long 0x7f070025
|
||||
int string create_calendar_message 0x7f070026
|
||||
int string create_calendar_title 0x7f070027
|
||||
int string decline 0x7f070028
|
||||
int string store_picture_message 0x7f070029
|
||||
int string store_picture_title 0x7f07002a
|
||||
int string wallet_buy_button_place_holder 0x7f07002b
|
||||
int style Theme_IAPTheme 0x7f080000
|
||||
int style WalletFragmentDefaultButtonTextAppearance 0x7f080001
|
||||
int style WalletFragmentDefaultDetailsHeaderTextAppearance 0x7f080002
|
||||
int style WalletFragmentDefaultDetailsTextAppearance 0x7f080003
|
||||
int style WalletFragmentDefaultStyle 0x7f080004
|
||||
int[] styleable AdsAttrs { 0x7f010000, 0x7f010001, 0x7f010002 }
|
||||
int styleable AdsAttrs_adSize 0
|
||||
int styleable AdsAttrs_adSizes 1
|
||||
int styleable AdsAttrs_adUnitId 2
|
||||
int[] styleable CustomWalletTheme { 0x7f010003 }
|
||||
int styleable CustomWalletTheme_windowTransitionStyle 0
|
||||
int[] styleable LoadingImageView { 0x7f010004, 0x7f010005, 0x7f010006 }
|
||||
int styleable LoadingImageView_circleCrop 2
|
||||
int styleable LoadingImageView_imageAspectRatio 1
|
||||
int styleable LoadingImageView_imageAspectRatioAdjust 0
|
||||
int[] styleable MapAttrs { 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016 }
|
||||
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_liteMode 6
|
||||
int styleable MapAttrs_mapType 0
|
||||
int styleable MapAttrs_uiCompass 7
|
||||
int styleable MapAttrs_uiMapToolbar 15
|
||||
int styleable MapAttrs_uiRotateGestures 8
|
||||
int styleable MapAttrs_uiScrollGestures 9
|
||||
int styleable MapAttrs_uiTiltGestures 10
|
||||
int styleable MapAttrs_uiZoomControls 11
|
||||
int styleable MapAttrs_uiZoomGestures 12
|
||||
int styleable MapAttrs_useViewLifecycle 13
|
||||
int styleable MapAttrs_zOrderOnTop 14
|
||||
int[] styleable WalletFragmentOptions { 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a }
|
||||
int styleable WalletFragmentOptions_appTheme 0
|
||||
int styleable WalletFragmentOptions_environment 1
|
||||
int styleable WalletFragmentOptions_fragmentMode 3
|
||||
int styleable WalletFragmentOptions_fragmentStyle 2
|
||||
int[] styleable WalletFragmentStyle { 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025 }
|
||||
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
|
||||
@@ -0,0 +1,20 @@
|
||||
-keep class * extends java.util.ListResourceBundle {
|
||||
protected java.lang.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;
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2012 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.gms">
|
||||
<uses-sdk android:minSdkVersion="9"/>
|
||||
|
||||
<application>
|
||||
<meta-data
|
||||
android:name="com.google.android.gms.version"
|
||||
android:value="@integer/google_play_services_version" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
@@ -0,0 +1,223 @@
|
||||
int attr adSize 0x7f010000
|
||||
int attr adSizes 0x7f010001
|
||||
int attr adUnitId 0x7f010002
|
||||
int attr appTheme 0x7f010017
|
||||
int attr buyButtonAppearance 0x7f01001e
|
||||
int attr buyButtonHeight 0x7f01001b
|
||||
int attr buyButtonText 0x7f01001d
|
||||
int attr buyButtonWidth 0x7f01001c
|
||||
int attr cameraBearing 0x7f010008
|
||||
int attr cameraTargetLat 0x7f010009
|
||||
int attr cameraTargetLng 0x7f01000a
|
||||
int attr cameraTilt 0x7f01000b
|
||||
int attr cameraZoom 0x7f01000c
|
||||
int attr circleCrop 0x7f010006
|
||||
int attr environment 0x7f010018
|
||||
int attr fragmentMode 0x7f01001a
|
||||
int attr fragmentStyle 0x7f010019
|
||||
int attr imageAspectRatio 0x7f010005
|
||||
int attr imageAspectRatioAdjust 0x7f010004
|
||||
int attr liteMode 0x7f01000d
|
||||
int attr mapType 0x7f010007
|
||||
int attr maskedWalletDetailsBackground 0x7f010021
|
||||
int attr maskedWalletDetailsButtonBackground 0x7f010023
|
||||
int attr maskedWalletDetailsButtonTextAppearance 0x7f010022
|
||||
int attr maskedWalletDetailsHeaderTextAppearance 0x7f010020
|
||||
int attr maskedWalletDetailsLogoImageType 0x7f010025
|
||||
int attr maskedWalletDetailsLogoTextColor 0x7f010024
|
||||
int attr maskedWalletDetailsTextAppearance 0x7f01001f
|
||||
int attr uiCompass 0x7f01000e
|
||||
int attr uiMapToolbar 0x7f010016
|
||||
int attr uiRotateGestures 0x7f01000f
|
||||
int attr uiScrollGestures 0x7f010010
|
||||
int attr uiTiltGestures 0x7f010011
|
||||
int attr uiZoomControls 0x7f010012
|
||||
int attr uiZoomGestures 0x7f010013
|
||||
int attr useViewLifecycle 0x7f010014
|
||||
int attr windowTransitionStyle 0x7f010003
|
||||
int attr zOrderOnTop 0x7f010015
|
||||
int color common_action_bar_splitter 0x7f040000
|
||||
int color common_signin_btn_dark_text_default 0x7f040001
|
||||
int color common_signin_btn_dark_text_disabled 0x7f040002
|
||||
int color common_signin_btn_dark_text_focused 0x7f040003
|
||||
int color common_signin_btn_dark_text_pressed 0x7f040004
|
||||
int color common_signin_btn_default_background 0x7f040005
|
||||
int color common_signin_btn_light_text_default 0x7f040006
|
||||
int color common_signin_btn_light_text_disabled 0x7f040007
|
||||
int color common_signin_btn_light_text_focused 0x7f040008
|
||||
int color common_signin_btn_light_text_pressed 0x7f040009
|
||||
int color common_signin_btn_text_dark 0x7f040017
|
||||
int color common_signin_btn_text_light 0x7f040018
|
||||
int color wallet_bright_foreground_disabled_holo_light 0x7f04000a
|
||||
int color wallet_bright_foreground_holo_dark 0x7f04000b
|
||||
int color wallet_bright_foreground_holo_light 0x7f04000c
|
||||
int color wallet_dim_foreground_disabled_holo_dark 0x7f04000d
|
||||
int color wallet_dim_foreground_holo_dark 0x7f04000e
|
||||
int color wallet_dim_foreground_inverse_disabled_holo_dark 0x7f04000f
|
||||
int color wallet_dim_foreground_inverse_holo_dark 0x7f040010
|
||||
int color wallet_highlighted_text_holo_dark 0x7f040011
|
||||
int color wallet_highlighted_text_holo_light 0x7f040012
|
||||
int color wallet_hint_foreground_holo_dark 0x7f040013
|
||||
int color wallet_hint_foreground_holo_light 0x7f040014
|
||||
int color wallet_holo_blue_light 0x7f040015
|
||||
int color wallet_link_text_light 0x7f040016
|
||||
int color wallet_primary_text_holo_light 0x7f040019
|
||||
int color wallet_secondary_text_holo_dark 0x7f04001a
|
||||
int drawable cast_ic_notification_0 0x7f020000
|
||||
int drawable cast_ic_notification_1 0x7f020001
|
||||
int drawable cast_ic_notification_2 0x7f020002
|
||||
int drawable cast_ic_notification_connecting 0x7f020003
|
||||
int drawable cast_ic_notification_on 0x7f020004
|
||||
int drawable common_full_open_on_phone 0x7f020005
|
||||
int drawable common_ic_googleplayservices 0x7f020006
|
||||
int drawable common_signin_btn_icon_dark 0x7f020007
|
||||
int drawable common_signin_btn_icon_disabled_dark 0x7f020008
|
||||
int drawable common_signin_btn_icon_disabled_focus_dark 0x7f020009
|
||||
int drawable common_signin_btn_icon_disabled_focus_light 0x7f02000a
|
||||
int drawable common_signin_btn_icon_disabled_light 0x7f02000b
|
||||
int drawable common_signin_btn_icon_focus_dark 0x7f02000c
|
||||
int drawable common_signin_btn_icon_focus_light 0x7f02000d
|
||||
int drawable common_signin_btn_icon_light 0x7f02000e
|
||||
int drawable common_signin_btn_icon_normal_dark 0x7f02000f
|
||||
int drawable common_signin_btn_icon_normal_light 0x7f020010
|
||||
int drawable common_signin_btn_icon_pressed_dark 0x7f020011
|
||||
int drawable common_signin_btn_icon_pressed_light 0x7f020012
|
||||
int drawable common_signin_btn_text_dark 0x7f020013
|
||||
int drawable common_signin_btn_text_disabled_dark 0x7f020014
|
||||
int drawable common_signin_btn_text_disabled_focus_dark 0x7f020015
|
||||
int drawable common_signin_btn_text_disabled_focus_light 0x7f020016
|
||||
int drawable common_signin_btn_text_disabled_light 0x7f020017
|
||||
int drawable common_signin_btn_text_focus_dark 0x7f020018
|
||||
int drawable common_signin_btn_text_focus_light 0x7f020019
|
||||
int drawable common_signin_btn_text_light 0x7f02001a
|
||||
int drawable common_signin_btn_text_normal_dark 0x7f02001b
|
||||
int drawable common_signin_btn_text_normal_light 0x7f02001c
|
||||
int drawable common_signin_btn_text_pressed_dark 0x7f02001d
|
||||
int drawable common_signin_btn_text_pressed_light 0x7f02001e
|
||||
int drawable ic_plusone_medium_off_client 0x7f02001f
|
||||
int drawable ic_plusone_small_off_client 0x7f020020
|
||||
int drawable ic_plusone_standard_off_client 0x7f020021
|
||||
int drawable ic_plusone_tall_off_client 0x7f020022
|
||||
int drawable powered_by_google_dark 0x7f020023
|
||||
int drawable powered_by_google_light 0x7f020024
|
||||
int id adjust_height 0x7f050003
|
||||
int id adjust_width 0x7f050004
|
||||
int id book_now 0x7f050013
|
||||
int id buyButton 0x7f05000f
|
||||
int id buy_now 0x7f050014
|
||||
int id buy_with_google 0x7f050015
|
||||
int id cast_notification_id 0x7f050000
|
||||
int id classic 0x7f050017
|
||||
int id donate_with_google 0x7f050016
|
||||
int id grayscale 0x7f050018
|
||||
int id holo_dark 0x7f050009
|
||||
int id holo_light 0x7f05000a
|
||||
int id hybrid 0x7f050005
|
||||
int id match_parent 0x7f050011
|
||||
int id monochrome 0x7f050019
|
||||
int id none 0x7f050001
|
||||
int id normal 0x7f050006
|
||||
int id production 0x7f05000b
|
||||
int id sandbox 0x7f05000c
|
||||
int id satellite 0x7f050007
|
||||
int id selectionDetails 0x7f050010
|
||||
int id slide 0x7f050002
|
||||
int id strict_sandbox 0x7f05000d
|
||||
int id terrain 0x7f050008
|
||||
int id test 0x7f05000e
|
||||
int id wrap_content 0x7f050012
|
||||
int integer google_play_services_version 0x7f060000
|
||||
int raw gtm_analytics 0x7f030000
|
||||
int string accept 0x7f070000
|
||||
int string auth_google_play_services_client_facebook_display_name 0x7f070001
|
||||
int string auth_google_play_services_client_google_display_name 0x7f070002
|
||||
int string cast_notification_connected_message 0x7f070003
|
||||
int string cast_notification_connecting_message 0x7f070004
|
||||
int string cast_notification_disconnect 0x7f070005
|
||||
int string common_android_wear_notification_needs_update_text 0x7f070006
|
||||
int string common_android_wear_update_text 0x7f070007
|
||||
int string common_android_wear_update_title 0x7f070008
|
||||
int string common_google_play_services_api_unavailable_text 0x7f070009
|
||||
int string common_google_play_services_enable_button 0x7f07000a
|
||||
int string common_google_play_services_enable_text 0x7f07000b
|
||||
int string common_google_play_services_enable_title 0x7f07000c
|
||||
int string common_google_play_services_error_notification_requested_by_msg 0x7f07000d
|
||||
int string common_google_play_services_install_button 0x7f07000e
|
||||
int string common_google_play_services_install_text_phone 0x7f07000f
|
||||
int string common_google_play_services_install_text_tablet 0x7f070010
|
||||
int string common_google_play_services_install_title 0x7f070011
|
||||
int string common_google_play_services_invalid_account_text 0x7f070012
|
||||
int string common_google_play_services_invalid_account_title 0x7f070013
|
||||
int string common_google_play_services_needs_enabling_title 0x7f070014
|
||||
int string common_google_play_services_network_error_text 0x7f070015
|
||||
int string common_google_play_services_network_error_title 0x7f070016
|
||||
int string common_google_play_services_notification_needs_update_title 0x7f070017
|
||||
int string common_google_play_services_notification_ticker 0x7f070018
|
||||
int string common_google_play_services_sign_in_failed_text 0x7f070019
|
||||
int string common_google_play_services_sign_in_failed_title 0x7f07001a
|
||||
int string common_google_play_services_unknown_issue 0x7f07001b
|
||||
int string common_google_play_services_unsupported_text 0x7f07001c
|
||||
int string common_google_play_services_unsupported_title 0x7f07001d
|
||||
int string common_google_play_services_update_button 0x7f07001e
|
||||
int string common_google_play_services_update_text 0x7f07001f
|
||||
int string common_google_play_services_update_title 0x7f070020
|
||||
int string common_google_play_services_updating_text 0x7f070021
|
||||
int string common_google_play_services_updating_title 0x7f070022
|
||||
int string common_open_on_phone 0x7f070023
|
||||
int string common_signin_button_text 0x7f070024
|
||||
int string common_signin_button_text_long 0x7f070025
|
||||
int string create_calendar_message 0x7f070026
|
||||
int string create_calendar_title 0x7f070027
|
||||
int string decline 0x7f070028
|
||||
int string store_picture_message 0x7f070029
|
||||
int string store_picture_title 0x7f07002a
|
||||
int string wallet_buy_button_place_holder 0x7f07002b
|
||||
int style Theme_IAPTheme 0x7f080000
|
||||
int style WalletFragmentDefaultButtonTextAppearance 0x7f080001
|
||||
int style WalletFragmentDefaultDetailsHeaderTextAppearance 0x7f080002
|
||||
int style WalletFragmentDefaultDetailsTextAppearance 0x7f080003
|
||||
int style WalletFragmentDefaultStyle 0x7f080004
|
||||
int[] styleable AdsAttrs { 0x7f010000, 0x7f010001, 0x7f010002 }
|
||||
int styleable AdsAttrs_adSize 0
|
||||
int styleable AdsAttrs_adSizes 1
|
||||
int styleable AdsAttrs_adUnitId 2
|
||||
int[] styleable CustomWalletTheme { 0x7f010003 }
|
||||
int styleable CustomWalletTheme_windowTransitionStyle 0
|
||||
int[] styleable LoadingImageView { 0x7f010004, 0x7f010005, 0x7f010006 }
|
||||
int styleable LoadingImageView_circleCrop 2
|
||||
int styleable LoadingImageView_imageAspectRatio 1
|
||||
int styleable LoadingImageView_imageAspectRatioAdjust 0
|
||||
int[] styleable MapAttrs { 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016 }
|
||||
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_liteMode 6
|
||||
int styleable MapAttrs_mapType 0
|
||||
int styleable MapAttrs_uiCompass 7
|
||||
int styleable MapAttrs_uiMapToolbar 15
|
||||
int styleable MapAttrs_uiRotateGestures 8
|
||||
int styleable MapAttrs_uiScrollGestures 9
|
||||
int styleable MapAttrs_uiTiltGestures 10
|
||||
int styleable MapAttrs_uiZoomControls 11
|
||||
int styleable MapAttrs_uiZoomGestures 12
|
||||
int styleable MapAttrs_useViewLifecycle 13
|
||||
int styleable MapAttrs_zOrderOnTop 14
|
||||
int[] styleable WalletFragmentOptions { 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a }
|
||||
int styleable WalletFragmentOptions_appTheme 0
|
||||
int styleable WalletFragmentOptions_environment 1
|
||||
int styleable WalletFragmentOptions_fragmentMode 3
|
||||
int styleable WalletFragmentOptions_fragmentStyle 2
|
||||
int[] styleable WalletFragmentStyle { 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025 }
|
||||
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
|
||||
@@ -0,0 +1,20 @@
|
||||
-keep class * extends java.util.ListResourceBundle {
|
||||
protected java.lang.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;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:state_pressed="true"
|
||||
android:color="@color/common_signin_btn_dark_text_pressed" />
|
||||
<item
|
||||
android:state_enabled="false"
|
||||
android:state_focused="true"
|
||||
android:color="@color/common_signin_btn_dark_text_disabled" />
|
||||
<item
|
||||
android:state_focused="true"
|
||||
android:color="@color/common_signin_btn_dark_text_focused" />
|
||||
<item
|
||||
android:state_enabled="false"
|
||||
android:color="@color/common_signin_btn_dark_text_disabled" />
|
||||
<item
|
||||
android:color="@color/common_signin_btn_dark_text_default" />
|
||||
</selector>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:state_pressed="true"
|
||||
android:color="@color/common_signin_btn_light_text_pressed" />
|
||||
<item
|
||||
android:state_enabled="false"
|
||||
android:state_focused="true"
|
||||
android:color="@color/common_signin_btn_light_text_disabled" />
|
||||
<item
|
||||
android:state_focused="true"
|
||||
android:color="@color/common_signin_btn_light_text_focused" />
|
||||
<item
|
||||
android:state_enabled="false"
|
||||
android:color="@color/common_signin_btn_light_text_disabled" />
|
||||
<item
|
||||
android:color="@color/common_signin_btn_light_text_default" />
|
||||
</selector>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 902 B |
|
After Width: | Height: | Size: 832 B |
|
After Width: | Height: | Size: 936 B |
|
After Width: | Height: | Size: 934 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 621 B |
|
After Width: | Height: | Size: 523 B |
|
After Width: | Height: | Size: 732 B |
|
After Width: | Height: | Size: 683 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 823 B |
|
After Width: | Height: | Size: 828 B |
|
After Width: | Height: | Size: 874 B |
|
After Width: | Height: | Size: 873 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.2 KiB |