├── .gitignore ├── AUTHORS ├── README.md ├── jsbindings ├── Android.mk ├── auto │ ├── api │ │ └── jsb_cocos2dx_pluginx_auto_api.js │ ├── jsb_cocos2dx_pluginx_auto.cpp │ └── jsb_cocos2dx_pluginx_auto.hpp ├── manual │ ├── jsb_pluginx_basic_conversions.cpp │ ├── jsb_pluginx_basic_conversions.h │ ├── jsb_pluginx_extension_registration.cpp │ ├── jsb_pluginx_extension_registration.h │ ├── jsb_pluginx_manual_callback.cpp │ ├── jsb_pluginx_manual_callback.h │ ├── jsb_pluginx_manual_protocols.cpp │ ├── jsb_pluginx_manual_protocols.h │ ├── jsb_pluginx_spidermonkey_specifics.cpp │ ├── jsb_pluginx_spidermonkey_specifics.h │ ├── pluginxUTF8.cpp │ ├── pluginxUTF8.h │ └── uthash.h └── script │ └── jsb_pluginx.js ├── luabindings ├── auto │ ├── api │ │ ├── AgentManager.lua │ │ ├── FacebookAgent.lua │ │ ├── PluginManager.lua │ │ ├── PluginProtocol.lua │ │ ├── ProtocolAds.lua │ │ ├── ProtocolAnalytics.lua │ │ ├── ProtocolIAP.lua │ │ ├── ProtocolShare.lua │ │ ├── ProtocolSocial.lua │ │ ├── ProtocolUser.lua │ │ └── lua_cocos2dx_pluginx_auto_api.lua │ ├── lua_cocos2dx_pluginx_auto.cpp │ └── lua_cocos2dx_pluginx_auto.hpp ├── manual │ ├── lua_pluginx_basic_conversions.cpp │ ├── lua_pluginx_basic_conversions.h │ ├── lua_pluginx_manual_callback.cpp │ ├── lua_pluginx_manual_callback.h │ ├── lua_pluginx_manual_protocols.cpp │ └── lua_pluginx_manual_protocols.h └── script │ └── lua_plugin.lua ├── plugin-x_ios.xcworkspace └── contents.xcworkspacedata ├── plugins ├── admob │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ │ └── .gitignore │ │ ├── sdk │ │ │ └── GoogleAdMobAdsSdk.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ └── AdsAdmob.java │ └── proj.ios │ │ ├── Admob │ │ ├── GADAdMobExtras.h │ │ ├── GADAdNetworkExtras.h │ │ ├── GADAdSize.h │ │ ├── GADBannerView.h │ │ ├── GADBannerViewDelegate.h │ │ ├── GADInAppPurchase.h │ │ ├── GADInAppPurchaseDelegate.h │ │ ├── GADInterstitial.h │ │ ├── GADInterstitialDelegate.h │ │ ├── GADModules.h │ │ ├── GADRequest.h │ │ ├── GADRequestError.h │ │ └── libGoogleAdMobAds.a │ │ ├── AdsAdmob.h │ │ ├── AdsAdmob.m │ │ ├── PluginAdmob-Prefix.pch │ │ └── PluginAdmob.xcodeproj │ │ └── project.pbxproj ├── alipay │ └── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForAssets │ │ └── alipay_plugin.apk │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ └── .gitignore │ │ ├── sdk │ │ └── alipay_plugin.jar │ │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── AlixId.java │ │ ├── Base64.java │ │ ├── BaseHelper.java │ │ ├── IAPAlipay.java │ │ ├── MobileSecurePayHelper.java │ │ ├── MobileSecurePayer.java │ │ ├── NetworkManager.java │ │ ├── PartnerConfig.java │ │ ├── ResultChecker.java │ │ └── Rsa.java ├── facebook │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── DependProject │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── .gitignore │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── com_facebook_button_blue_focused.9.png │ │ │ │ │ ├── com_facebook_button_blue_normal.9.png │ │ │ │ │ ├── com_facebook_button_blue_pressed.9.png │ │ │ │ │ ├── com_facebook_button_grey_focused.9.png │ │ │ │ │ ├── com_facebook_button_grey_normal.9.png │ │ │ │ │ ├── com_facebook_button_grey_pressed.9.png │ │ │ │ │ ├── com_facebook_close.png │ │ │ │ │ ├── com_facebook_inverse_icon.png │ │ │ │ │ ├── com_facebook_logo.png │ │ │ │ │ ├── com_facebook_picker_magnifier.png │ │ │ │ │ ├── com_facebook_tooltip_black_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_black_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_topnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_xout.png │ │ │ │ │ ├── com_facebook_tooltip_blue_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_blue_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_blue_topnub.png │ │ │ │ │ └── com_facebook_tooltip_blue_xout.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── com_facebook_close.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── com_facebook_button_blue_focused.9.png │ │ │ │ │ ├── com_facebook_button_blue_normal.9.png │ │ │ │ │ ├── com_facebook_button_blue_pressed.9.png │ │ │ │ │ ├── com_facebook_inverse_icon.png │ │ │ │ │ ├── com_facebook_picker_magnifier.png │ │ │ │ │ ├── com_facebook_tooltip_black_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_black_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_topnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_xout.png │ │ │ │ │ ├── com_facebook_tooltip_blue_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_blue_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_blue_topnub.png │ │ │ │ │ └── com_facebook_tooltip_blue_xout.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── com_facebook_button_blue_focused.9.png │ │ │ │ │ ├── com_facebook_button_blue_normal.9.png │ │ │ │ │ ├── com_facebook_button_blue_pressed.9.png │ │ │ │ │ ├── com_facebook_button_grey_focused.9.png │ │ │ │ │ ├── com_facebook_button_grey_normal.9.png │ │ │ │ │ ├── com_facebook_button_grey_pressed.9.png │ │ │ │ │ ├── com_facebook_close.png │ │ │ │ │ ├── com_facebook_inverse_icon.png │ │ │ │ │ ├── com_facebook_logo.png │ │ │ │ │ ├── com_facebook_picker_magnifier.png │ │ │ │ │ ├── com_facebook_tooltip_black_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_black_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_topnub.png │ │ │ │ │ ├── com_facebook_tooltip_black_xout.png │ │ │ │ │ ├── com_facebook_tooltip_blue_background.9.png │ │ │ │ │ ├── com_facebook_tooltip_blue_bottomnub.png │ │ │ │ │ ├── com_facebook_tooltip_blue_topnub.png │ │ │ │ │ └── com_facebook_tooltip_blue_xout.png │ │ │ │ ├── drawable │ │ │ │ │ ├── com_facebook_button_blue.xml │ │ │ │ │ ├── com_facebook_button_blue_focused.9.png │ │ │ │ │ ├── com_facebook_button_blue_normal.9.png │ │ │ │ │ ├── com_facebook_button_blue_pressed.9.png │ │ │ │ │ ├── com_facebook_button_check.xml │ │ │ │ │ ├── com_facebook_button_check_off.png │ │ │ │ │ ├── com_facebook_button_check_on.png │ │ │ │ │ ├── com_facebook_button_grey_focused.9.png │ │ │ │ │ ├── com_facebook_button_grey_normal.9.png │ │ │ │ │ ├── com_facebook_button_grey_pressed.9.png │ │ │ │ │ ├── com_facebook_close.png │ │ │ │ │ ├── com_facebook_inverse_icon.png │ │ │ │ │ ├── com_facebook_list_divider.9.png │ │ │ │ │ ├── com_facebook_list_section_header_background.9.png │ │ │ │ │ ├── com_facebook_loginbutton_silver.xml │ │ │ │ │ ├── com_facebook_logo.png │ │ │ │ │ ├── com_facebook_picker_item_background.xml │ │ │ │ │ ├── com_facebook_picker_list_focused.9.png │ │ │ │ │ ├── com_facebook_picker_list_longpressed.9.png │ │ │ │ │ ├── com_facebook_picker_list_pressed.9.png │ │ │ │ │ ├── com_facebook_picker_list_selector.xml │ │ │ │ │ ├── com_facebook_picker_list_selector_background_transition.xml │ │ │ │ │ ├── com_facebook_picker_list_selector_disabled.9.png │ │ │ │ │ ├── com_facebook_picker_top_button.xml │ │ │ │ │ ├── com_facebook_place_default_icon.png │ │ │ │ │ ├── com_facebook_profile_default_icon.png │ │ │ │ │ ├── com_facebook_profile_picture_blank_portrait.png │ │ │ │ │ ├── com_facebook_profile_picture_blank_square.png │ │ │ │ │ ├── com_facebook_top_background.xml │ │ │ │ │ ├── com_facebook_top_button.xml │ │ │ │ │ └── com_facebook_usersettingsfragment_background_gradient.xml │ │ │ │ ├── layout │ │ │ │ │ ├── com_facebook_friendpickerfragment.xml │ │ │ │ │ ├── com_facebook_login_activity_layout.xml │ │ │ │ │ ├── com_facebook_picker_activity_circle_row.xml │ │ │ │ │ ├── com_facebook_picker_checkbox.xml │ │ │ │ │ ├── com_facebook_picker_image.xml │ │ │ │ │ ├── com_facebook_picker_list_row.xml │ │ │ │ │ ├── com_facebook_picker_list_section_header.xml │ │ │ │ │ ├── com_facebook_picker_search_box.xml │ │ │ │ │ ├── com_facebook_picker_title_bar.xml │ │ │ │ │ ├── com_facebook_picker_title_bar_stub.xml │ │ │ │ │ ├── com_facebook_placepickerfragment.xml │ │ │ │ │ ├── com_facebook_placepickerfragment_list_row.xml │ │ │ │ │ ├── com_facebook_search_bar_layout.xml │ │ │ │ │ ├── com_facebook_tooltip_bubble.xml │ │ │ │ │ └── com_facebook_usersettingsfragment.xml │ │ │ │ ├── values-es │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hdpi │ │ │ │ │ └── dimens.xml │ │ │ │ ├── values-he │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-iw │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ldpi │ │ │ │ │ └── dimens.xml │ │ │ │ ├── values-mdpi │ │ │ │ │ └── dimens.xml │ │ │ │ ├── values-xhdpi │ │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ │ ├── attrs.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── drawables.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ └── src │ │ │ │ └── .gitignore │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ └── .gitignore │ │ ├── sdk │ │ │ ├── android-support-v4.jar │ │ │ ├── bolts.jar │ │ │ └── facebooksdk.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── FacebookWrapper.java │ │ │ ├── ShareFacebook.java │ │ │ └── UserFacebook.java │ └── proj.ios │ │ ├── PluginFacebook.xcodeproj │ │ └── project.pbxproj │ │ ├── PluginFacebook │ │ ├── PluginFacebook-Prefix.pch │ │ ├── ShareFacebook.h │ │ ├── ShareFacebook.m │ │ ├── UserFacebook.h │ │ └── UserFacebook.m │ │ └── sdk │ │ └── FacebookSDK.framework │ │ ├── FacebookSDK │ │ ├── Headers │ │ ├── Resources │ │ └── Versions │ │ ├── A │ │ ├── DeprecatedHeaders │ │ │ ├── FBAccessTokenData.h │ │ │ ├── FBAppCall.h │ │ │ ├── FBAppEvents.h │ │ │ ├── FBAppLinkData.h │ │ │ ├── FBAppLinkResolver.h │ │ │ ├── FBCacheDescriptor.h │ │ │ ├── FBColor.h │ │ │ ├── FBConnect.h │ │ │ ├── FBDialog.h │ │ │ ├── FBDialogs.h │ │ │ ├── FBDialogsData.h │ │ │ ├── FBDialogsParams.h │ │ │ ├── FBError.h │ │ │ ├── FBErrorUtility.h │ │ │ ├── FBFrictionlessRecipientCache.h │ │ │ ├── FBFrictionlessRequestSettings.h │ │ │ ├── FBFriendPickerViewController.h │ │ │ ├── FBGraphLocation.h │ │ │ ├── FBGraphObject.h │ │ │ ├── FBGraphObjectPickerViewController.h │ │ │ ├── FBGraphPerson.h │ │ │ ├── FBGraphPlace.h │ │ │ ├── FBGraphUser.h │ │ │ ├── FBInsights.h │ │ │ ├── FBLikeControl.h │ │ │ ├── FBLinkShareParams.h │ │ │ ├── FBLoginDialog.h │ │ │ ├── FBLoginTooltipView.h │ │ │ ├── FBLoginView.h │ │ │ ├── FBNativeDialogs.h │ │ │ ├── FBOpenGraphAction.h │ │ │ ├── FBOpenGraphActionParams.h │ │ │ ├── FBOpenGraphActionShareDialogParams.h │ │ │ ├── FBOpenGraphObject.h │ │ │ ├── FBPeoplePickerViewController.h │ │ │ ├── FBPhotoParams.h │ │ │ ├── FBPlacePickerViewController.h │ │ │ ├── FBProfilePictureView.h │ │ │ ├── FBRequest.h │ │ │ ├── FBRequestConnection.h │ │ │ ├── FBSDKMacros.h │ │ │ ├── FBSession.h │ │ │ ├── FBSessionManualTokenCachingStrategy.h │ │ │ ├── FBSessionTokenCachingStrategy.h │ │ │ ├── FBSettings.h │ │ │ ├── FBShareDialogParams.h │ │ │ ├── FBShareDialogPhotoParams.h │ │ │ ├── FBTaggableFriendPickerViewController.h │ │ │ ├── FBTestSession.h │ │ │ ├── FBTooltipView.h │ │ │ ├── FBUserSettingsViewController.h │ │ │ ├── FBViewController.h │ │ │ ├── FBWebDialogs.h │ │ │ ├── Facebook.h │ │ │ ├── FacebookSDK.h │ │ │ └── NSError+FBError.h │ │ ├── FacebookSDK │ │ ├── Headers │ │ │ ├── FBAccessTokenData.h │ │ │ ├── FBAppCall.h │ │ │ ├── FBAppEvents.h │ │ │ ├── FBAppLinkData.h │ │ │ ├── FBAppLinkResolver.h │ │ │ ├── FBCacheDescriptor.h │ │ │ ├── FBColor.h │ │ │ ├── FBDialogs.h │ │ │ ├── FBDialogsData.h │ │ │ ├── FBDialogsParams.h │ │ │ ├── FBError.h │ │ │ ├── FBErrorUtility.h │ │ │ ├── FBFrictionlessRecipientCache.h │ │ │ ├── FBFriendPickerViewController.h │ │ │ ├── FBGraphLocation.h │ │ │ ├── FBGraphObject.h │ │ │ ├── FBGraphObjectPickerViewController.h │ │ │ ├── FBGraphPerson.h │ │ │ ├── FBGraphPlace.h │ │ │ ├── FBGraphUser.h │ │ │ ├── FBInsights.h │ │ │ ├── FBLikeControl.h │ │ │ ├── FBLinkShareParams.h │ │ │ ├── FBLoginTooltipView.h │ │ │ ├── FBLoginView.h │ │ │ ├── FBNativeDialogs.h │ │ │ ├── FBOpenGraphAction.h │ │ │ ├── FBOpenGraphActionParams.h │ │ │ ├── FBOpenGraphActionShareDialogParams.h │ │ │ ├── FBOpenGraphObject.h │ │ │ ├── FBPeoplePickerViewController.h │ │ │ ├── FBPhotoParams.h │ │ │ ├── FBPlacePickerViewController.h │ │ │ ├── FBProfilePictureView.h │ │ │ ├── FBRequest.h │ │ │ ├── FBRequestConnection.h │ │ │ ├── FBSDKMacros.h │ │ │ ├── FBSession.h │ │ │ ├── FBSessionTokenCachingStrategy.h │ │ │ ├── FBSettings.h │ │ │ ├── FBShareDialogParams.h │ │ │ ├── FBShareDialogPhotoParams.h │ │ │ ├── FBTaggableFriendPickerViewController.h │ │ │ ├── FBTestSession.h │ │ │ ├── FBTooltipView.h │ │ │ ├── FBUserSettingsViewController.h │ │ │ ├── FBViewController.h │ │ │ ├── FBWebDialogs.h │ │ │ ├── FacebookSDK.h │ │ │ └── NSError+FBError.h │ │ └── Resources │ │ │ ├── FBUserSettingsViewResources.bundle │ │ │ ├── Contents │ │ │ │ └── Resources │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── he.lproj │ │ │ │ │ └── Localizable.strings │ │ │ └── images │ │ │ │ ├── facebook-logo.png │ │ │ │ ├── facebook-logo@2x.png │ │ │ │ ├── loginBackgroundIPadLandscape.jpg │ │ │ │ ├── loginBackgroundIPadLandscape@2x.jpg │ │ │ │ ├── loginBackgroundIPadPortrait.jpg │ │ │ │ ├── loginBackgroundIPadPortrait@2x.jpg │ │ │ │ ├── loginBackgroundIPhonePortrait.jpg │ │ │ │ ├── loginBackgroundIPhonePortrait@2x.jpg │ │ │ │ ├── silver-button-normal.png │ │ │ │ ├── silver-button-normal@2x.png │ │ │ │ ├── silver-button-pressed.png │ │ │ │ └── silver-button-pressed@2x.png │ │ │ ├── FacebookSDKResources.bundle.README │ │ │ └── Info.plist │ │ └── Current ├── facebookads │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── values-large │ │ │ │ └── layout.xml │ │ │ ├── values-sw600dp │ │ │ │ └── layout.xml │ │ │ └── values │ │ │ │ └── layouts.xml │ │ ├── sdk │ │ │ ├── AudienceNetwork.jar │ │ │ └── android-support-v4.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ └── AdsFacebook.java │ └── proj.ios │ │ ├── FBAudienceNetwork.framework │ │ ├── FBAudienceNetwork │ │ ├── Headers │ │ └── Versions │ │ │ ├── A │ │ │ ├── DeprecatedHeaders │ │ │ │ ├── FBAdImage.h │ │ │ │ ├── FBAdSettings.h │ │ │ │ ├── FBAdView.h │ │ │ │ ├── FBAudienceNetwork.h │ │ │ │ ├── FBInterstitialAd.h │ │ │ │ └── FBNativeAd.h │ │ │ ├── FBAudienceNetwork │ │ │ └── Headers │ │ │ │ ├── FBAdImage.h │ │ │ │ ├── FBAdSettings.h │ │ │ │ ├── FBAdView.h │ │ │ │ ├── FBAudienceNetwork.h │ │ │ │ ├── FBInterstitialAd.h │ │ │ │ └── FBNativeAd.h │ │ │ └── Current │ │ ├── PluginFacebookAds.xcodeproj │ │ └── project.pbxproj │ │ └── PluginFacebookAds │ │ ├── AdsFacebook.h │ │ ├── AdsFacebook.m │ │ └── PluginFacebookAds-Prefix.pch ├── flurry │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ │ └── .gitignore │ │ ├── sdk │ │ │ └── FlurryAgent.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── AdsFlurry.java │ │ │ └── AnalyticsFlurry.java │ └── proj.ios │ │ ├── AdsFlurry.h │ │ ├── AdsFlurry.m │ │ ├── AnalyticsFlurry.h │ │ ├── AnalyticsFlurry.m │ │ ├── Flurry.h │ │ ├── FlurryAds │ │ ├── FlurryAdDelegate.h │ │ ├── FlurryAds.h │ │ └── libFlurryAds.a │ │ ├── PluginFlurry-Prefix.pch │ │ ├── PluginFlurry.xcodeproj │ │ └── project.pbxproj │ │ └── libFlurry.a ├── googleplay │ ├── Readme.md │ └── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── Notes.txt │ │ ├── build.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ └── .gitignore │ │ └── src │ │ ├── com │ │ └── android │ │ │ └── vending │ │ │ └── billing │ │ │ └── IInAppBillingService.aidl │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── IAPGooglePlay.java │ │ └── util │ │ ├── Base64.java │ │ ├── Base64DecoderException.java │ │ ├── IabException.java │ │ ├── IabHelper.java │ │ ├── IabResult.java │ │ ├── Inventory.java │ │ ├── Purchase.java │ │ ├── Security.java │ │ └── SkuDetails.java ├── iosiap │ └── proj.ios │ │ ├── IOSIAP │ │ ├── IOSIAP.h │ │ ├── IOSIAP.m │ │ └── PluginIAP-Prefix.pch │ │ └── PluginIAP.xcodeproj │ │ └── project.pbxproj ├── nd91 │ └── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── DependProject │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── project.properties │ │ ├── res │ │ │ ├── anim │ │ │ │ ├── nd_flipin.xml │ │ │ │ ├── nd_flipin_reverse.xml │ │ │ │ ├── nd_flipout.xml │ │ │ │ └── nd_flipout_reverse.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── nd_download_1.9.png │ │ │ │ ├── nd_download_2.9.png │ │ │ │ ├── nd_flip_bg.png │ │ │ │ ├── nd_slider_content_h.9.png │ │ │ │ ├── nd_slider_content_v.9.png │ │ │ │ ├── nd_slider_handle_h_1.9.png │ │ │ │ ├── nd_slider_handle_h_1_expand.9.png │ │ │ │ ├── nd_slider_handle_h_2.9.png │ │ │ │ ├── nd_slider_handle_h_2_expand.9.png │ │ │ │ ├── nd_slider_handle_v_1.9.png │ │ │ │ ├── nd_slider_handle_v_1_expand.9.png │ │ │ │ ├── nd_slider_handle_v_2.9.png │ │ │ │ ├── nd_slider_handle_v_2_expand.9.png │ │ │ │ ├── nd_slider_next_h.png │ │ │ │ ├── nd_slider_next_v.png │ │ │ │ ├── nd_slider_pre_h.png │ │ │ │ └── nd_slider_pre_v.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── nd_gcsdk_bg_tips.9.png │ │ │ │ ├── nd_gcsdk_box_bg.png │ │ │ │ ├── nd_gcsdk_box_btn_bg.png │ │ │ │ ├── nd_gcsdk_box_close.png │ │ │ │ ├── nd_gcsdk_box_label_bg.png │ │ │ │ ├── nd_gcsdk_box_logo.png │ │ │ │ ├── nd_gcsdk_box_tit_bg.png │ │ │ │ ├── nd_gcsdk_box_title_line.png │ │ │ │ ├── nd_gcsdk_exit_txt_bg.9.png │ │ │ │ ├── nd_gcsdk_gamecenter_default.png │ │ │ │ ├── nd_gcsdk_gamezone_default.png │ │ │ │ ├── nd_gcsdk_gc_logo_default.png │ │ │ │ ├── nd_gcsdk_image_default.jpg │ │ │ │ ├── nd_gcsdk_label_bg.9.png │ │ │ │ ├── nd_gcsdk_loading_bg.jpg │ │ │ │ ├── nd_gcsdk_loading_logo.png │ │ │ │ ├── nd_gcsdk_loading_pot_1.png │ │ │ │ └── nd_gcsdk_loading_pot_2.png │ │ │ ├── drawable │ │ │ │ ├── nd3_3rd_platform_icon.png │ │ │ │ ├── nd3_3rd_platform_icon_more.png │ │ │ │ ├── nd3_91.png │ │ │ │ ├── nd3_achieve.png │ │ │ │ ├── nd3_achievement_lock.png │ │ │ │ ├── nd3_activity_action_above_bg.9.png │ │ │ │ ├── nd3_add.png │ │ │ │ ├── nd3_agreement_logo.png │ │ │ │ ├── nd3_app_icon_default.png │ │ │ │ ├── nd3_background.png │ │ │ │ ├── nd3_background_xml.xml │ │ │ │ ├── nd3_banner.9.png │ │ │ │ ├── nd3_banner_bg.9.png │ │ │ │ ├── nd3_banner_logo.png │ │ │ │ ├── nd3_bbs_icon.png │ │ │ │ ├── nd3_bg.png │ │ │ │ ├── nd3_bizarre_image.png │ │ │ │ ├── nd3_bk1.9.png │ │ │ │ ├── nd3_bm.9.png │ │ │ │ ├── nd3_bnt_01.9.png │ │ │ │ ├── nd3_bnt_zhuxiao.png │ │ │ │ ├── nd3_bottom_bar_bg.9.png │ │ │ │ ├── nd3_button.xml │ │ │ │ ├── nd3_button1.png │ │ │ │ ├── nd3_button2.png │ │ │ │ ├── nd3_button_02.xml │ │ │ │ ├── nd3_button_130_01.png │ │ │ │ ├── nd3_button_130_03.png │ │ │ │ ├── nd3_button_278.png │ │ │ │ ├── nd3_button_action.xml │ │ │ │ ├── nd3_button_bg_02.png │ │ │ │ ├── nd3_button_bg_02_press.png │ │ │ │ ├── nd3_button_bg_dis.png │ │ │ │ ├── nd3_button_bg_dis02.png │ │ │ │ ├── nd3_button_logout.xml │ │ │ │ ├── nd3_button_long.9.png │ │ │ │ ├── nd3_button_long_press.9.png │ │ │ │ ├── nd3_button_old.xml │ │ │ │ ├── nd3_button_radio.png │ │ │ │ ├── nd3_button_x.xml │ │ │ │ ├── nd3_button_x1.png │ │ │ │ ├── nd3_check_yes.png │ │ │ │ ├── nd3_checkbox_button.xml │ │ │ │ ├── nd3_close.png │ │ │ │ ├── nd3_default_portrait.png │ │ │ │ ├── nd3_default_portrait_big.png │ │ │ │ ├── nd3_friend_del_button.xml │ │ │ │ ├── nd3_friend_section_bg.9.png │ │ │ │ ├── nd3_game_detail.png │ │ │ │ ├── nd3_game_error_bg.png │ │ │ │ ├── nd3_game_face.png │ │ │ │ ├── nd3_game_head.png │ │ │ │ ├── nd3_head_bg.png │ │ │ │ ├── nd3_headbar.png │ │ │ │ ├── nd3_horizontal_line.9.png │ │ │ │ ├── nd3_icon11.png │ │ │ │ ├── nd3_icon12.png │ │ │ │ ├── nd3_icon_01.png │ │ │ │ ├── nd3_icon_05.png │ │ │ │ ├── nd3_icon_06.png │ │ │ │ ├── nd3_icon_07.png │ │ │ │ ├── nd3_icon_08.png │ │ │ │ ├── nd3_icon_21.png │ │ │ │ ├── nd3_icon_22.png │ │ │ │ ├── nd3_icon_error.png │ │ │ │ ├── nd3_icon_more01.png │ │ │ │ ├── nd3_icon_more02.png │ │ │ │ ├── nd3_icon_more03.png │ │ │ │ ├── nd3_icon_more04.png │ │ │ │ ├── nd3_icon_more05.png │ │ │ │ ├── nd3_icon_more06.png │ │ │ │ ├── nd3_icon_point.png │ │ │ │ ├── nd3_icon_selected.png │ │ │ │ ├── nd3_image81.png │ │ │ │ ├── nd3_image82.png │ │ │ │ ├── nd3_image_48_bg.xml │ │ │ │ ├── nd3_input_1.9.png │ │ │ │ ├── nd3_input_2.9.png │ │ │ │ ├── nd3_input_bg.png │ │ │ │ ├── nd3_input_gray.xml │ │ │ │ ├── nd3_inputbox_bg1.9.png │ │ │ │ ├── nd3_invite_image.png │ │ │ │ ├── nd3_leaderboard_default.png │ │ │ │ ├── nd3_line.9.png │ │ │ │ ├── nd3_list_bg.9.png │ │ │ │ ├── nd3_list_separator.png │ │ │ │ ├── nd3_mainfriend_1.png │ │ │ │ ├── nd3_mainfriend_2.png │ │ │ │ ├── nd3_maingame_1.png │ │ │ │ ├── nd3_maingame_2.png │ │ │ │ ├── nd3_mainmessage_1.png │ │ │ │ ├── nd3_mainmessage_2.png │ │ │ │ ├── nd3_mainmore_1.png │ │ │ │ ├── nd3_mainmore_2.png │ │ │ │ ├── nd3_mainpage_1.png │ │ │ │ ├── nd3_mainpage_2.png │ │ │ │ ├── nd3_message_item_1_bg.xml │ │ │ │ ├── nd3_message_item_2_bg.xml │ │ │ │ ├── nd3_mood_bg.9.png │ │ │ │ ├── nd3_msge_friend.9.png │ │ │ │ ├── nd3_msge_owen.9.png │ │ │ │ ├── nd3_new_message.9.png │ │ │ │ ├── nd3_new_message_flag.png │ │ │ │ ├── nd3_pay_checkbox_button.xml │ │ │ │ ├── nd3_platform_logo.png │ │ │ │ ├── nd3_portrait_edit_bg.png │ │ │ │ ├── nd3_progress_large.xml │ │ │ │ ├── nd3_rank_1.png │ │ │ │ ├── nd3_rank_2.png │ │ │ │ ├── nd3_rank_3.png │ │ │ │ ├── nd3_rank_choice_left_1.9.png │ │ │ │ ├── nd3_rank_choice_left_2.9.png │ │ │ │ ├── nd3_rank_choice_left_btn_bg.xml │ │ │ │ ├── nd3_rank_choice_middle_1.9.png │ │ │ │ ├── nd3_rank_choice_middle_2.9.png │ │ │ │ ├── nd3_rank_choice_middle_btn_bg.xml │ │ │ │ ├── nd3_rank_choice_right_1.9.png │ │ │ │ ├── nd3_rank_choice_right_2.9.png │ │ │ │ ├── nd3_rank_choice_right_btn_bg.xml │ │ │ │ ├── nd3_rank_image.png │ │ │ │ ├── nd3_redbtn.9.png │ │ │ │ ├── nd3_redbtn_down.9.png │ │ │ │ ├── nd3_regist_checked.xml │ │ │ │ ├── nd3_round_bg.xml │ │ │ │ ├── nd3_search_edit_bg.9.png │ │ │ │ ├── nd3_search_edit_left.9.png │ │ │ │ ├── nd3_search_layout_bg.9.png │ │ │ │ ├── nd3_showplayer.png │ │ │ │ ├── nd3_square_checkbox_button.xml │ │ │ │ ├── nd3_switch_image.png │ │ │ │ ├── nd3_switch_image_white.png │ │ │ │ ├── nd3_title_bar_action_btn.9.png │ │ │ │ ├── nd3_title_bar_action_btn_pressed.9.png │ │ │ │ ├── nd3_title_bar_action_btn_xml.xml │ │ │ │ ├── nd3_title_bar_bg.9.png │ │ │ │ ├── nd3_title_bar_return_btn.9.png │ │ │ │ ├── nd3_title_bar_return_btn_pressed.9.png │ │ │ │ ├── nd3_title_bar_return_btn_xml.xml │ │ │ │ ├── nd3_user_item_bg.xml │ │ │ │ ├── nd3_vertical_line.png │ │ │ │ ├── nd3_white_bg.9.png │ │ │ │ ├── nd_ad.png │ │ │ │ ├── nd_blue.xml │ │ │ │ ├── nd_blue1.9.png │ │ │ │ ├── nd_blue2.9.png │ │ │ │ ├── nd_book.png │ │ │ │ ├── nd_btn_add.png │ │ │ │ ├── nd_btn_add_press.png │ │ │ │ ├── nd_btn_buy.9.png │ │ │ │ ├── nd_btn_buy_press.9.png │ │ │ │ ├── nd_btn_reduce.png │ │ │ │ ├── nd_btn_reduce_press.png │ │ │ │ ├── nd_button_action_add.xml │ │ │ │ ├── nd_button_action_buy.xml │ │ │ │ ├── nd_button_action_reduce.xml │ │ │ │ ├── nd_c_blur.xml │ │ │ │ ├── nd_c_blur1.9.png │ │ │ │ ├── nd_c_blur2.9.png │ │ │ │ ├── nd_change_account.png │ │ │ │ ├── nd_direct_login.9.png │ │ │ │ ├── nd_direct_logo.png │ │ │ │ ├── nd_download.xml │ │ │ │ ├── nd_gamecoin.png │ │ │ │ ├── nd_gcsdk_bezel_border.9.png │ │ │ │ ├── nd_gcsdk_bezel_mask.9.png │ │ │ │ ├── nd_goods_count_input_bg.9.png │ │ │ │ ├── nd_goods_default.png │ │ │ │ ├── nd_goods_detail_default.png │ │ │ │ ├── nd_goods_limit_stock.png │ │ │ │ ├── nd_goods_limit_time.png │ │ │ │ ├── nd_goods_no_stock.png │ │ │ │ ├── nd_goods_price_down.png │ │ │ │ ├── nd_green.xml │ │ │ │ ├── nd_green1.9.png │ │ │ │ ├── nd_green2.9.png │ │ │ │ ├── nd_input.9.png │ │ │ │ ├── nd_leaderboard_left_1.9.png │ │ │ │ ├── nd_leaderboard_left_2.9.png │ │ │ │ ├── nd_leaderboard_left_btn_bg.xml │ │ │ │ ├── nd_leaderboard_right_1.9.png │ │ │ │ ├── nd_leaderboard_right_2.9.png │ │ │ │ ├── nd_leaderboard_right_btn_bg.xml │ │ │ │ ├── nd_list_btn_delete_normal.9.png │ │ │ │ ├── nd_list_btn_delete_pressed.9.png │ │ │ │ ├── nd_list_btn_delete_selector.xml │ │ │ │ ├── nd_login_btn_land_selector.xml │ │ │ │ ├── nd_login_btn_normal_land.9.png │ │ │ │ ├── nd_login_btn_normal_portrait.9.png │ │ │ │ ├── nd_login_btn_portrait_selector.xml │ │ │ │ ├── nd_login_btn_pressed_land.9.png │ │ │ │ ├── nd_login_btn_pressed_portrait.9.png │ │ │ │ ├── nd_logo48.png │ │ │ │ ├── nd_ordinary.png │ │ │ │ ├── nd_register_btn_normal_portrait.9.png │ │ │ │ ├── nd_register_btn_portrait_selector.xml │ │ │ │ ├── nd_register_btn_pressed_portrait.9.png │ │ │ │ ├── nd_satisfied.png │ │ │ │ ├── nd_service.png │ │ │ │ ├── nd_slider_handle_h.xml │ │ │ │ ├── nd_slider_handle_h_expand.xml │ │ │ │ ├── nd_slider_handle_v.xml │ │ │ │ ├── nd_slider_handle_v_expand.xml │ │ │ │ ├── nd_theme.png │ │ │ │ ├── nd_true.png │ │ │ │ ├── nd_unsatisfied.png │ │ │ │ ├── nd_warn.png │ │ │ │ ├── nd_white_btn.xml │ │ │ │ ├── nd_white_btn_1.9.png │ │ │ │ ├── nd_white_btn_2.9.png │ │ │ │ ├── nd_winning.png │ │ │ │ └── nd_xline.png │ │ │ ├── layout │ │ │ │ ├── nd3_account_bind_bind.xml │ │ │ │ ├── nd3_account_bind_register.xml │ │ │ │ ├── nd3_account_email_item.xml │ │ │ │ ├── nd3_account_login.xml │ │ │ │ ├── nd3_account_login_item.xml │ │ │ │ ├── nd3_account_login_land.xml │ │ │ │ ├── nd3_account_login_other_item.xml │ │ │ │ ├── nd3_account_login_portrait.xml │ │ │ │ ├── nd3_account_oauth_bind.xml │ │ │ │ ├── nd3_account_official.xml │ │ │ │ ├── nd3_account_official_landscape.xml │ │ │ │ ├── nd3_account_official_portrait.xml │ │ │ │ ├── nd3_account_other_login.xml │ │ │ │ ├── nd3_account_register.xml │ │ │ │ ├── nd3_account_register_agreement.xml │ │ │ │ ├── nd3_account_register_phone.xml │ │ │ │ ├── nd3_account_register_quick.xml │ │ │ │ ├── nd3_account_secret_find.xml │ │ │ │ ├── nd3_account_secret_set.xml │ │ │ │ ├── nd3_account_sina.xml │ │ │ │ ├── nd3_achieve_detail.xml │ │ │ │ ├── nd3_activity_action_template.xml │ │ │ │ ├── nd3_activity_content_reg_template_1.xml │ │ │ │ ├── nd3_activity_content_reg_template_2.xml │ │ │ │ ├── nd3_activity_content_reg_template_2_ext.xml │ │ │ │ ├── nd3_activity_content_reg_template_3.xml │ │ │ │ ├── nd3_activity_content_reg_template_4.xml │ │ │ │ ├── nd3_activity_detail.xml │ │ │ │ ├── nd3_activity_detail_plus_image.xml │ │ │ │ ├── nd3_activity_detail_plus_list.xml │ │ │ │ ├── nd3_activity_detail_plus_list_ext.xml │ │ │ │ ├── nd3_activity_head_reg.xml │ │ │ │ ├── nd3_activity_no_action_template.xml │ │ │ │ ├── nd3_app_feedback.xml │ │ │ │ ├── nd3_app_item.xml │ │ │ │ ├── nd3_app_property.xml │ │ │ │ ├── nd3_banner_layout.xml │ │ │ │ ├── nd3_blank_listview.xml │ │ │ │ ├── nd3_bottom_bar.xml │ │ │ │ ├── nd3_category_item.xml │ │ │ │ ├── nd3_category_plus_image_item.xml │ │ │ │ ├── nd3_control_center.xml │ │ │ │ ├── nd3_dispatch_search_friend.xml │ │ │ │ ├── nd3_empty_listview.xml │ │ │ │ ├── nd3_frame.xml │ │ │ │ ├── nd3_friend_home.xml │ │ │ │ ├── nd3_friend_remark_setting.xml │ │ │ │ ├── nd3_friend_section.xml │ │ │ │ ├── nd3_friend_section_list_item.xml │ │ │ │ ├── nd3_friend_section_panel.xml │ │ │ │ ├── nd3_game_content.xml │ │ │ │ ├── nd3_game_main.xml │ │ │ │ ├── nd3_home.xml │ │ │ │ ├── nd3_home_land.xml │ │ │ │ ├── nd3_home_personal.xml │ │ │ │ ├── nd3_home_portrait.xml │ │ │ │ ├── nd3_invite_friend.xml │ │ │ │ ├── nd3_invite_friend_choice.xml │ │ │ │ ├── nd3_invite_friend_item.xml │ │ │ │ ├── nd3_leaderboard_category.xml │ │ │ │ ├── nd3_leaderboard_list_item.xml │ │ │ │ ├── nd3_listview_footer.xml │ │ │ │ ├── nd3_listview_footer_ext.xml │ │ │ │ ├── nd3_listview_template.xml │ │ │ │ ├── nd3_listview_template_no_divider.xml │ │ │ │ ├── nd3_mesg_main.xml │ │ │ │ ├── nd3_message_friendmsge_list.xml │ │ │ │ ├── nd3_message_main.xml │ │ │ │ ├── nd3_message_receive_item.xml │ │ │ │ ├── nd3_message_record_item.xml │ │ │ │ ├── nd3_message_send.xml │ │ │ │ ├── nd3_message_send_item.xml │ │ │ │ ├── nd3_more_about.xml │ │ │ │ ├── nd3_more_account.xml │ │ │ │ ├── nd3_more_bean_recharge.xml │ │ │ │ ├── nd3_more_consume_detail.xml │ │ │ │ ├── nd3_more_consumes.xml │ │ │ │ ├── nd3_more_info.xml │ │ │ │ ├── nd3_more_info_edit_head_dialog.xml │ │ │ │ ├── nd3_more_more.xml │ │ │ │ ├── nd3_more_no_password.xml │ │ │ │ ├── nd3_more_password.xml │ │ │ │ ├── nd3_more_permission.xml │ │ │ │ ├── nd3_more_recharge_detail.xml │ │ │ │ ├── nd3_more_recharges.xml │ │ │ │ ├── nd3_more_records.xml │ │ │ │ ├── nd3_more_records_item.xml │ │ │ │ ├── nd3_myfriend.xml │ │ │ │ ├── nd3_network_error.xml │ │ │ │ ├── nd3_normal_search.xml │ │ │ │ ├── nd3_pay_friend_item.xml │ │ │ │ ├── nd3_pay_pass.xml │ │ │ │ ├── nd3_pay_password_check.xml │ │ │ │ ├── nd3_pay_products_item.xml │ │ │ │ ├── nd3_pay_select_friend.xml │ │ │ │ ├── nd3_pay_template.xml │ │ │ │ ├── nd3_person_info_detail.xml │ │ │ │ ├── nd3_personinfo.xml │ │ │ │ ├── nd3_progressbar.xml │ │ │ │ ├── nd3_recharge_record.xml │ │ │ │ ├── nd3_searchfriend_condition.xml │ │ │ │ ├── nd3_share_bind_account_item.xml │ │ │ │ ├── nd3_share_sina.xml │ │ │ │ ├── nd3_share_unbind_account_item.xml │ │ │ │ ├── nd3_stranger_home.xml │ │ │ │ ├── nd3_sysmessage_detail_action.xml │ │ │ │ ├── nd3_sysmessage_detail_app.xml │ │ │ │ ├── nd3_sysmessage_detail_no_action.xml │ │ │ │ ├── nd3_sysmessage_head_reg.xml │ │ │ │ ├── nd3_thirdplatform_item.xml │ │ │ │ ├── nd3_title_bar.xml │ │ │ │ ├── nd3_user_fangle.xml │ │ │ │ ├── nd3_user_fangle_ext.xml │ │ │ │ ├── nd3_user_item.xml │ │ │ │ ├── nd3_user_item_divider.xml │ │ │ │ ├── nd3_user_message.xml │ │ │ │ ├── nd3_user_message_switcher.xml │ │ │ │ ├── nd3_version_update.xml │ │ │ │ ├── nd3_write_message.xml │ │ │ │ ├── nd_account_list_item.xml │ │ │ │ ├── nd_account_manage.xml │ │ │ │ ├── nd_bind_phone_lottery.xml │ │ │ │ ├── nd_bind_phone_number.xml │ │ │ │ ├── nd_bind_phone_number_result.xml │ │ │ │ ├── nd_bind_phone_number_tip.xml │ │ │ │ ├── nd_bind_phone_number_unactivity_tip.xml │ │ │ │ ├── nd_check_version.xml │ │ │ │ ├── nd_feedback_faq.xml │ │ │ │ ├── nd_feedback_faq_list.xml │ │ │ │ ├── nd_feedback_fb.xml │ │ │ │ ├── nd_feedback_menu.xml │ │ │ │ ├── nd_feedback_menu_item.xml │ │ │ │ ├── nd_feedback_my_fb_item.xml │ │ │ │ ├── nd_feedback_my_fb_list.xml │ │ │ │ ├── nd_feedback_pj_landscape.xml │ │ │ │ ├── nd_feedback_pj_portrait.xml │ │ │ │ ├── nd_feedback_reply.xml │ │ │ │ ├── nd_feedback_reply_bottom.xml │ │ │ │ ├── nd_feedback_reply_item_left.xml │ │ │ │ ├── nd_feedback_reply_item_right.xml │ │ │ │ ├── nd_find_password.xml │ │ │ │ ├── nd_gcsdk_custom_toast.xml │ │ │ │ ├── nd_gcsdk_exitpage.xml │ │ │ │ ├── nd_gcsdk_pausepage.xml │ │ │ │ ├── nd_gcsdk_project_view_type_1.xml │ │ │ │ ├── nd_gcsdk_project_view_type_2.xml │ │ │ │ ├── nd_gcsdk_project_view_type_3.xml │ │ │ │ ├── nd_goods_detail.xml │ │ │ │ ├── nd_goods_list.xml │ │ │ │ ├── nd_goods_list_item.xml │ │ │ │ ├── nd_leaderboard.xml │ │ │ │ ├── nd_leaderboard_list_header.xml │ │ │ │ ├── nd_leaderboard_switcher_landscape_1.xml │ │ │ │ ├── nd_leaderboard_switcher_portrait_1.xml │ │ │ │ ├── nd_login_director.xml │ │ │ │ ├── nd_set_password.xml │ │ │ │ ├── nd_softpromotion_flipitem.xml │ │ │ │ ├── nd_softpromotion_listitem.xml │ │ │ │ ├── nd_softpromotion_slider_h.xml │ │ │ │ ├── nd_softpromotion_slider_item.xml │ │ │ │ ├── nd_softpromotion_slider_v.xml │ │ │ │ ├── nd_softwarepromotion.xml │ │ │ │ └── nd_unbind_phone_number.xml │ │ │ ├── raw │ │ │ │ └── nd_res.zip │ │ │ └── values │ │ │ │ ├── nd3_misc.xml │ │ │ │ ├── nd3_sdk_error_strings.xml │ │ │ │ ├── nd3_strings.xml │ │ │ │ ├── nd_gcsdk_colors.xml │ │ │ │ ├── nd_gcsdk_misc.xml │ │ │ │ ├── nd_gcsdk_strings.xml │ │ │ │ └── nd_gcsdk_styles.xml │ │ └── src │ │ │ └── .gitignore │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ └── .gitignore │ │ ├── sdk │ │ └── NdComPlatform.jar │ │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── IAPNd91.java │ │ ├── IAPOnlineNd91.java │ │ ├── Nd91Wrapper.java │ │ ├── SocialNd91.java │ │ └── UserNd91.java ├── qh360 │ └── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── CLibs │ │ ├── armeabi │ │ │ └── libpaypalm_app_plugin_jar_360game.so │ │ └── mips │ │ │ └── libpaypalm_app_plugin_jar_360game.so │ │ ├── ForAssets │ │ ├── alipay_plugin.apk │ │ ├── bin_app_plugin.bin │ │ ├── pro.jar │ │ ├── res │ │ │ ├── Mdpi │ │ │ │ ├── box_off.png │ │ │ │ ├── box_on.png │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ ├── dropdown_btn_normal.png │ │ │ │ ├── dropdown_btn_normal_.png │ │ │ │ ├── dropdown_btn_press.png │ │ │ │ ├── dropdown_btn_press_.png │ │ │ │ ├── guardianship_btn_normal.9.png │ │ │ │ ├── guardianship_btn_press.9.png │ │ │ │ ├── input_box_.9.png │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ ├── known_btn_press.9.png │ │ │ │ ├── zc_btn_normal.9.png │ │ │ │ └── zc_btn_press.9.png │ │ │ ├── bind_phone_button_normal.9.png │ │ │ ├── bind_phone_button_pressed.9.png │ │ │ ├── bind_phone_other_indicator.png │ │ │ ├── bind_phone_popup_message_arrow.png │ │ │ ├── bind_phone_title.png │ │ │ ├── box_off.png │ │ │ ├── box_on.png │ │ │ ├── button_gray_disable.9.png │ │ │ ├── button_gray_normal.9.png │ │ │ ├── button_gray_press.9.png │ │ │ ├── check_phone_title.png │ │ │ ├── checkphone_resetpwd_title.png │ │ │ ├── close_btn_normal.png │ │ │ ├── close_btn_press.png │ │ │ ├── del.png │ │ │ ├── dialog_bg.9.png │ │ │ ├── dot.png │ │ │ ├── dr_btn_normal.9.png │ │ │ ├── dr_btn_press.9.png │ │ │ ├── drop_down.9.png │ │ │ ├── dropdown_btn_normal.png │ │ │ ├── dropdown_btn_normal_.png │ │ │ ├── dropdown_btn_press.png │ │ │ ├── dropdown_btn_press_.png │ │ │ ├── find_pwd_title.png │ │ │ ├── guardianship_btn_normal.9.png │ │ │ ├── guardianship_btn_press.9.png │ │ │ ├── icon-mdpi │ │ │ │ ├── box_off.png │ │ │ │ ├── box_on.png │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ ├── input_box_.9.png │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ ├── known_btn_press.9.png │ │ │ │ ├── post_input_bg.9.png │ │ │ │ └── qihoo_inficon.png │ │ │ ├── icon │ │ │ │ ├── account_setting_name_bg.9.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── bank_icon_abc.png │ │ │ │ ├── bank_icon_bob.png │ │ │ │ ├── bank_icon_boc.png │ │ │ │ ├── bank_icon_bos.png │ │ │ │ ├── bank_icon_ccb.png │ │ │ │ ├── bank_icon_ceb.png │ │ │ │ ├── bank_icon_cib.png │ │ │ │ ├── bank_icon_cmb.png │ │ │ │ ├── bank_icon_cmbc.png │ │ │ │ ├── bank_icon_default.png │ │ │ │ ├── bank_icon_ecitic.png │ │ │ │ ├── bank_icon_gdb.png │ │ │ │ ├── bank_icon_gzcb.png │ │ │ │ ├── bank_icon_hxb.png │ │ │ │ ├── bank_icon_icbc.png │ │ │ │ ├── bank_icon_pingan.png │ │ │ │ ├── bank_icon_psbc.png │ │ │ │ ├── bank_icon_sdb.png │ │ │ │ ├── bank_icon_spdb.png │ │ │ │ ├── bank_name_bg.9.png │ │ │ │ ├── bg_pao_my.9.png │ │ │ │ ├── bg_pao_my_h.9.png │ │ │ │ ├── bg_pao_you.9.png │ │ │ │ ├── bg_pao_you_h.9.png │ │ │ │ ├── bind_phone.png │ │ │ │ ├── box_off.png │ │ │ │ ├── box_on.png │ │ │ │ ├── btn_back_normal.9.png │ │ │ │ ├── btn_back_pressed.9.png │ │ │ │ ├── btn_post_try_normal.9.png │ │ │ │ ├── btn_post_try_pressed.9.png │ │ │ │ ├── btn_post_view_normal.9.png │ │ │ │ ├── btn_post_view_pressed.9.png │ │ │ │ ├── bubble_bg_h.9.png │ │ │ │ ├── bubble_bg_s.9.png │ │ │ │ ├── can_not_open_page_3g_close.png │ │ │ │ ├── can_not_open_page_3g_open.png │ │ │ │ ├── can_not_open_page_anzai.png │ │ │ │ ├── can_not_open_page_line.png │ │ │ │ ├── can_not_open_page_refresh.png │ │ │ │ ├── can_not_open_page_wifi_close.png │ │ │ │ ├── can_not_open_page_wifi_open.png │ │ │ │ ├── close_btn_normal.png │ │ │ │ ├── close_btn_press.png │ │ │ │ ├── credit_date.png │ │ │ │ ├── credit_verify.png │ │ │ │ ├── del.png │ │ │ │ ├── dialog_bg.9.png │ │ │ │ ├── dr_btn_disable.9.png │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ ├── drop_down.9.png │ │ │ │ ├── dropdown_normal.9.png │ │ │ │ ├── dropdown_pressed.9.png │ │ │ │ ├── faq_list_item_bg_normal.9.png │ │ │ │ ├── faq_list_item_bg_select.9.png │ │ │ │ ├── go_bbs_btn_normal.9.png │ │ │ │ ├── go_bbs_btn_press.9.png │ │ │ │ ├── header_icon.png │ │ │ │ ├── icon.png │ │ │ │ ├── icon_info.png │ │ │ │ ├── input_bottom_bg.9.png │ │ │ │ ├── input_box_.9.png │ │ │ │ ├── input_img_normal.png │ │ │ │ ├── input_img_pressed.png │ │ │ │ ├── jian.png │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ ├── known_btn_press.9.png │ │ │ │ ├── left_s_bg.9.png │ │ │ │ ├── line.9.png │ │ │ │ ├── list_bg_H.9.png │ │ │ │ ├── list_bg_normal.9.png │ │ │ │ ├── money_line.9.png │ │ │ │ ├── pay_credit_selected_tag.png │ │ │ │ ├── pay_credit_unselected_tag.png │ │ │ │ ├── pay_float_bg.9.png │ │ │ │ ├── pay_float_card_bg.9.png │ │ │ │ ├── pay_float_close_d.png │ │ │ │ ├── pay_float_close_p.png │ │ │ │ ├── pay_float_failure.png │ │ │ │ ├── pay_float_input_clean.png │ │ │ │ ├── pay_float_input_clean_pressed.png │ │ │ │ ├── pay_float_ok.png │ │ │ │ ├── pay_float_other_pay_d.9.png │ │ │ │ ├── pay_float_other_pay_p.9.png │ │ │ │ ├── pay_float_tiket_left.png │ │ │ │ ├── pay_float_tiket_middle.png │ │ │ │ ├── pay_float_tiket_right.png │ │ │ │ ├── pay_float_translating.png │ │ │ │ ├── pay_quick_icon.png │ │ │ │ ├── pay_record_tab_selected.9.png │ │ │ │ ├── pay_user_guide_bg.9.png │ │ │ │ ├── pay_user_guide_btn.9.png │ │ │ │ ├── pay_user_guide_guard.png │ │ │ │ ├── pay_user_guide_money.png │ │ │ │ ├── pay_user_guide_page.png │ │ │ │ ├── pay_user_guide_page_now.png │ │ │ │ ├── paybtn_default.9.png │ │ │ │ ├── paybtn_disable.9.png │ │ │ │ ├── paybtn_pressed.9.png │ │ │ │ ├── popup_menu_bg.9.png │ │ │ │ ├── popup_menu_icon.png │ │ │ │ ├── post_alert_fail.9.png │ │ │ │ ├── post_alert_ok.9.png │ │ │ │ ├── post_fail_icon.png │ │ │ │ ├── post_image_opt_add.png │ │ │ │ ├── post_image_opt_bg.9.png │ │ │ │ ├── post_image_opt_del.png │ │ │ │ ├── post_img_bg.9.png │ │ │ │ ├── post_input_bg.9.png │ │ │ │ ├── post_no_img_normal.png │ │ │ │ ├── post_ok_icon.png │ │ │ │ ├── qib_balance_dot.png │ │ │ │ ├── qib_refresh_btn_disabled.9.png │ │ │ │ ├── qib_refresh_btn_normal.9.png │ │ │ │ ├── qib_refresh_btn_pressed.9.png │ │ │ │ ├── qib_refresh_land_btn_disabled.9.png │ │ │ │ ├── qib_refresh_land_btn_normal.9.png │ │ │ │ ├── qib_refresh_land_btn_pressed.9.png │ │ │ │ ├── qihoo_btn_red_disabled.9.png │ │ │ │ ├── qihoo_btn_red_normal.9.png │ │ │ │ ├── qihoo_btn_red_pressed.9.png │ │ │ │ ├── qihoo_button_normal.9.png │ │ │ │ ├── qihoo_button_orange_disabled.9.png │ │ │ │ ├── qihoo_button_pressed.9.png │ │ │ │ ├── qihoo_credit_binder_selected.9.png │ │ │ │ ├── qihoo_credit_bingder_unselected.9.png │ │ │ │ ├── qihoo_gray_button_normal.9.png │ │ │ │ ├── qihoo_gray_button_press.9.png │ │ │ │ ├── qihoo_inficon.png │ │ │ │ ├── qihoo_info.png │ │ │ │ ├── qihoo_listitem_bg.9.png │ │ │ │ ├── qihoo_listitem_bg_pressed_v.9.png │ │ │ │ ├── qihoo_listitem_bg_v.9.png │ │ │ │ ├── qihoo_loadingmotion.png │ │ │ │ ├── qihoo_pay_dialog_bg.9.png │ │ │ │ ├── qihoo_pay_success_bindphone_arrow.png │ │ │ │ ├── qihoo_pay_success_bindphone_bg.9.png │ │ │ │ ├── qihoo_pay_success_bindphone_icon.png │ │ │ │ ├── qihoo_pay_sucess.png │ │ │ │ ├── qihoo_popup_bg.9.png │ │ │ │ ├── qihoo_popup_title.9.png │ │ │ │ ├── qihoo_pup_bg.9.png │ │ │ │ ├── qihoo_textbox.9.png │ │ │ │ ├── qihoo_xianpei.png │ │ │ │ ├── qihoo_zhifu_bg.9.png │ │ │ │ ├── quit_alert_close_btn.png │ │ │ │ ├── quit_game_btn_normal.9.png │ │ │ │ ├── quit_game_btn_press.9.png │ │ │ │ ├── reg_logo.png │ │ │ │ ├── reg_title_back.png │ │ │ │ ├── reg_title_bg.9.png │ │ │ │ ├── reg_title_btn_back_normal.9.png │ │ │ │ ├── reg_title_btn_back_press.9.png │ │ │ │ ├── right_s_bg.9.png │ │ │ │ ├── right_s_line.9.png │ │ │ │ ├── right_selected_bg.9.png │ │ │ │ ├── select_money_bg.9.png │ │ │ │ ├── select_money_title.9.png │ │ │ │ ├── seperator_h.png │ │ │ │ ├── seperator_v.png │ │ │ │ ├── settings_bbs_normal.png │ │ │ │ ├── settings_bbs_pressed.png │ │ │ │ ├── settings_bg_left.9.png │ │ │ │ ├── settings_bg_right.9.png │ │ │ │ ├── settings_bind_phone_normal.png │ │ │ │ ├── settings_bind_phone_pressed.png │ │ │ │ ├── settings_close_normal.png │ │ │ │ ├── settings_close_pressed.png │ │ │ │ ├── settings_hide_normal.png │ │ │ │ ├── settings_hide_pressed.png │ │ │ │ ├── settings_icon_normal.png │ │ │ │ ├── settings_icon_pressed.png │ │ │ │ ├── settings_service_normal.png │ │ │ │ ├── settings_service_pressed.png │ │ │ │ ├── single_choice_checked.png │ │ │ │ ├── single_choice_unchecked.png │ │ │ │ ├── suggest_name_list_bg.9.png │ │ │ │ ├── t_new.9.png │ │ │ │ ├── tab_bg_v.9.png │ │ │ │ ├── tab_left_normal.9.png │ │ │ │ ├── tab_left_pressed.9.png │ │ │ │ ├── tab_right_normal.9.png │ │ │ │ ├── tab_right_pressed.9.png │ │ │ │ ├── tab_zhong_normal.9.png │ │ │ │ ├── tab_zhong_pressed.9.png │ │ │ │ ├── tip_bg.9.png │ │ │ │ ├── title.9.png │ │ │ │ ├── title_bg.9.png │ │ │ │ ├── toast_bg.9.png │ │ │ │ └── vertical_title_bg.9.png │ │ │ ├── input_box_.9.png │ │ │ ├── known_btn_normal.9.png │ │ │ ├── known_btn_press.9.png │ │ │ ├── line.9.png │ │ │ ├── load_success.png │ │ │ ├── login_bg.9.png │ │ │ ├── login_logo.png │ │ │ ├── login_onekey_bg_b.9.png │ │ │ ├── login_onekey_bg_t.9.png │ │ │ ├── login_onekey_button.9.png │ │ │ ├── login_onekey_cellphone.png │ │ │ ├── login_onekey_icon_right.png │ │ │ ├── login_onekey_separator.9.png │ │ │ ├── login_onekey_title.png │ │ │ ├── no_simcard_title.png │ │ │ ├── phone_num_get_failed_title.png │ │ │ ├── phone_used_dlg_title.png │ │ │ ├── profile_head.png │ │ │ ├── profile_head_pic1.png │ │ │ ├── profile_head_pic2.png │ │ │ ├── profile_head_pic3.png │ │ │ ├── profile_head_pic4.png │ │ │ ├── profile_head_pic_default.png │ │ │ ├── profile_left_button_icon.png │ │ │ ├── profile_left_button_normal.9.png │ │ │ ├── profile_left_button_press.9.png │ │ │ ├── profile_pics.9.png │ │ │ ├── profile_right_button_icon.png │ │ │ ├── profile_right_button_normal.9.png │ │ │ ├── profile_right_button_press.9.png │ │ │ ├── profile_title_bg.png │ │ │ ├── qihoo_loadingmotion.png │ │ │ ├── qihoo_logo.png │ │ │ ├── qihoo_pay_dialog_bg.9.png │ │ │ ├── qihoo_pup_bg.9.png │ │ │ ├── reg_360account_title.png │ │ │ ├── reg_logo.png │ │ │ ├── reg_success_title.png │ │ │ ├── reg_tab_bg_off.9.png │ │ │ ├── reg_tab_bg_on_left.9.png │ │ │ ├── reg_tab_bg_on_right.9.png │ │ │ ├── reg_tip.png │ │ │ ├── reg_title_back.png │ │ │ ├── reg_title_bg.9.png │ │ │ ├── reg_title_btn_back_normal.9.png │ │ │ ├── reg_title_btn_back_normal.png │ │ │ ├── reg_title_btn_back_press.9.png │ │ │ ├── reg_title_btn_back_press.png │ │ │ ├── register_logo.png │ │ │ ├── reset_pwd_title.png │ │ │ ├── select_o.png │ │ │ ├── switch_btn_bg.9.png │ │ │ ├── switch_btn_left.png │ │ │ ├── switch_btn_normal.9.png │ │ │ ├── switch_btn_press.9.png │ │ │ ├── tip_bg.9.png │ │ │ ├── title_bg.9.png │ │ │ ├── toast_bg.9.png │ │ │ ├── wait_bg.9.png │ │ │ ├── zc_btn_normal.9.png │ │ │ └── zc_btn_press.9.png │ │ └── upomp_bypay_config.xml │ │ ├── ForManifest.xml │ │ ├── ForRes │ │ ├── anim │ │ │ └── zsht_loading.xml │ │ ├── drawable-hdpi │ │ │ ├── upomp_bypay_bank_list_icon1.png │ │ │ ├── upomp_bypay_bank_list_icon2.png │ │ │ ├── upomp_bypay_bank_list_icon3.png │ │ │ ├── upomp_bypay_bank_list_title1.png │ │ │ ├── upomp_bypay_bank_list_title2.png │ │ │ ├── upomp_bypay_bg.png │ │ │ ├── upomp_bypay_bottom.png │ │ │ ├── upomp_bypay_bottom_about.png │ │ │ ├── upomp_bypay_bottom_line.png │ │ │ ├── upomp_bypay_btn_change.png │ │ │ ├── upomp_bypay_btn_change_click.png │ │ │ ├── upomp_bypay_btn_enter2_bg.png │ │ │ ├── upomp_bypay_btn_enter2_bg_click.png │ │ │ ├── upomp_bypay_btn_enter_bg.png │ │ │ ├── upomp_bypay_btn_enter_bg_click.png │ │ │ ├── upomp_bypay_btn_esc2_bg.png │ │ │ ├── upomp_bypay_btn_esc2_bg_click.png │ │ │ ├── upomp_bypay_btn_esc_bg.png │ │ │ ├── upomp_bypay_btn_esc_bg_click.png │ │ │ ├── upomp_bypay_card_btn1.png │ │ │ ├── upomp_bypay_card_btn2.png │ │ │ ├── upomp_bypay_card_btn3.png │ │ │ ├── upomp_bypay_card_icon1.png │ │ │ ├── upomp_bypay_card_on_bg.png │ │ │ ├── upomp_bypay_card_on_icon.png │ │ │ ├── upomp_bypay_card_select.png │ │ │ ├── upomp_bypay_card_select1.png │ │ │ ├── upomp_bypay_card_select2.png │ │ │ ├── upomp_bypay_card_select_click.png │ │ │ ├── upomp_bypay_cvn2.png │ │ │ ├── upomp_bypay_icon.png │ │ │ ├── upomp_bypay_icon_card.png │ │ │ ├── upomp_bypay_icon_jiantou.png │ │ │ ├── upomp_bypay_icon_pw.png │ │ │ ├── upomp_bypay_index_bot_bg.png │ │ │ ├── upomp_bypay_info_bg.png │ │ │ ├── upomp_bypay_info_bot1.png │ │ │ ├── upomp_bypay_info_bot2.png │ │ │ ├── upomp_bypay_info_bot3.png │ │ │ ├── upomp_bypay_info_bot4.png │ │ │ ├── upomp_bypay_info_btn1.png │ │ │ ├── upomp_bypay_info_btn1_click.png │ │ │ ├── upomp_bypay_info_btn2.png │ │ │ ├── upomp_bypay_info_btn2_click.png │ │ │ ├── upomp_bypay_info_btn3.png │ │ │ ├── upomp_bypay_info_btn3_click.png │ │ │ ├── upomp_bypay_info_btn4.png │ │ │ ├── upomp_bypay_info_btn4_click.png │ │ │ ├── upomp_bypay_info_btn5.png │ │ │ ├── upomp_bypay_info_btn5_click.png │ │ │ ├── upomp_bypay_info_btn6.png │ │ │ ├── upomp_bypay_info_btn6_click.png │ │ │ ├── upomp_bypay_info_icon1.png │ │ │ ├── upomp_bypay_info_icon2.png │ │ │ ├── upomp_bypay_info_icon3.png │ │ │ ├── upomp_bypay_info_icon4.png │ │ │ ├── upomp_bypay_info_icon5.png │ │ │ ├── upomp_bypay_info_icon6.png │ │ │ ├── upomp_bypay_info_icon7.png │ │ │ ├── upomp_bypay_info_left.png │ │ │ ├── upomp_bypay_info_right.png │ │ │ ├── upomp_bypay_info_select_1.png │ │ │ ├── upomp_bypay_info_select_2.png │ │ │ ├── upomp_bypay_info_top1.png │ │ │ ├── upomp_bypay_info_top2.png │ │ │ ├── upomp_bypay_info_top3.png │ │ │ ├── upomp_bypay_input_2.png │ │ │ ├── upomp_bypay_input_bg.png │ │ │ ├── upomp_bypay_input_bg_on.png │ │ │ ├── upomp_bypay_input_btn_2.png │ │ │ ├── upomp_bypay_input_btn_2_click.png │ │ │ ├── upomp_bypay_input_btn_4.png │ │ │ ├── upomp_bypay_input_btn_4_click.png │ │ │ ├── upomp_bypay_input_btn_hq.png │ │ │ ├── upomp_bypay_input_btn_hq_click.png │ │ │ ├── upomp_bypay_input_icon.png │ │ │ ├── upomp_bypay_keyboard_bg.png │ │ │ ├── upomp_bypay_keyboard_btn1_default.png │ │ │ ├── upomp_bypay_keyboard_btn1_on.png │ │ │ ├── upomp_bypay_keyboard_btn_clear_default.png │ │ │ ├── upomp_bypay_keyboard_btn_clear_on.png │ │ │ ├── upomp_bypay_keyboard_btn_enter_default.png │ │ │ ├── upomp_bypay_keyboard_btn_enter_on.png │ │ │ ├── upomp_bypay_keyboard_fh_bg.png │ │ │ ├── upomp_bypay_keyboard_fh_bg_on.png │ │ │ ├── upomp_bypay_keyboard_input_bg.png │ │ │ ├── upomp_bypay_keyboard_letter_a1.png │ │ │ ├── upomp_bypay_keyboard_letter_a2.png │ │ │ ├── upomp_bypay_keyboard_letter_bg.png │ │ │ ├── upomp_bypay_keyboard_letter_bg_on.png │ │ │ ├── upomp_bypay_keyboard_letter_clear_bg.png │ │ │ ├── upomp_bypay_keyboard_letter_clear_bg_on.png │ │ │ ├── upomp_bypay_keyboard_nav_bg.png │ │ │ ├── upomp_bypay_keyboard_number_bg.png │ │ │ ├── upomp_bypay_keyboard_number_bg_on.png │ │ │ ├── upomp_bypay_keyboard_pw_bg.png │ │ │ ├── upomp_bypay_loading_bg.png │ │ │ ├── upomp_bypay_loading_bg2.png │ │ │ ├── upomp_bypay_loading_logo.png │ │ │ ├── upomp_bypay_loading_tag.png │ │ │ ├── upomp_bypay_login_open_bg.png │ │ │ ├── upomp_bypay_main_line.png │ │ │ ├── upomp_bypay_member_btn1.png │ │ │ ├── upomp_bypay_member_btn1_click.png │ │ │ ├── upomp_bypay_member_btn2.png │ │ │ ├── upomp_bypay_member_btn2_click.png │ │ │ ├── upomp_bypay_open_bg.png │ │ │ ├── upomp_bypay_open_bg2.png │ │ │ ├── upomp_bypay_open_btn.png │ │ │ ├── upomp_bypay_open_btn_click.png │ │ │ ├── upomp_bypay_open_icon.png │ │ │ ├── upomp_bypay_psw_bg.png │ │ │ ├── upomp_bypay_select_card_add.png │ │ │ ├── upomp_bypay_select_card_bg.png │ │ │ ├── upomp_bypay_select_month.png │ │ │ ├── upomp_bypay_select_month_on.png │ │ │ ├── upomp_bypay_select_year.png │ │ │ ├── upomp_bypay_select_year_on.png │ │ │ ├── upomp_bypay_spinner.png │ │ │ ├── upomp_bypay_tips_bg.png │ │ │ ├── upomp_bypay_title_bg.png │ │ │ ├── upomp_bypay_title_btn.png │ │ │ ├── upomp_bypay_title_btn_click.png │ │ │ ├── upomp_bypay_toast_bg.png │ │ │ └── upomp_bypay_view_xy.png │ │ ├── drawable │ │ │ ├── upomp_bypay_btn1.xml │ │ │ ├── upomp_bypay_btn2.xml │ │ │ ├── upomp_bypay_btn3.xml │ │ │ ├── upomp_bypay_btn4.xml │ │ │ ├── upomp_bypay_btn5.xml │ │ │ ├── upomp_bypay_btn6.xml │ │ │ ├── upomp_bypay_btn_card.xml │ │ │ ├── upomp_bypay_btn_enter1.xml │ │ │ ├── upomp_bypay_btn_enter2.xml │ │ │ ├── upomp_bypay_btn_esc1.xml │ │ │ ├── upomp_bypay_btn_esc2.xml │ │ │ ├── upomp_bypay_btn_letter.xml │ │ │ ├── upomp_bypay_btn_member1.xml │ │ │ ├── upomp_bypay_btn_member2.xml │ │ │ ├── upomp_bypay_btn_month.xml │ │ │ ├── upomp_bypay_btn_newweb.xml │ │ │ ├── upomp_bypay_btn_number.xml │ │ │ ├── upomp_bypay_btn_set.xml │ │ │ ├── upomp_bypay_btn_symbol.xml │ │ │ ├── upomp_bypay_btn_title_esc.xml │ │ │ ├── upomp_bypay_btn_year.xml │ │ │ ├── upomp_bypay_checkbox.xml │ │ │ ├── upomp_bypay_input_btn2.xml │ │ │ ├── upomp_bypay_input_btn4.xml │ │ │ ├── upomp_bypay_keyboard_btn_clear.xml │ │ │ ├── upomp_bypay_keyboard_btn_enter.xml │ │ │ ├── upomp_bypay_keyboard_btn_l_clear.xml │ │ │ ├── upomp_bypay_open_btn_enter.xml │ │ │ ├── upomp_bypay_progress.xml │ │ │ ├── upomp_bypay_progress_init.xml │ │ │ ├── zsht_authcode_style.xml │ │ │ ├── zsht_back.9.png │ │ │ ├── zsht_back_pressed.9.png │ │ │ ├── zsht_back_style.xml │ │ │ ├── zsht_button.9.png │ │ │ ├── zsht_button_pressed.9.png │ │ │ ├── zsht_button_style.xml │ │ │ ├── zsht_get_authcode_button.9.png │ │ │ ├── zsht_get_authcode_button_enable.9.png │ │ │ ├── zsht_get_authcode_button_pressed.9.png │ │ │ ├── zsht_input.9.png │ │ │ ├── zsht_input_focused.9.png │ │ │ ├── zsht_input_style.xml │ │ │ ├── zsht_keyboard_background.9.png │ │ │ ├── zsht_keyboard_button.9.png │ │ │ ├── zsht_keyboard_title.9.png │ │ │ ├── zsht_line.9.png │ │ │ ├── zsht_loading_01.png │ │ │ ├── zsht_loading_02.png │ │ │ ├── zsht_loading_03.png │ │ │ ├── zsht_loading_04.png │ │ │ ├── zsht_loading_05.png │ │ │ ├── zsht_loading_06.png │ │ │ ├── zsht_loading_07.png │ │ │ ├── zsht_loading_logo.png │ │ │ ├── zsht_order_message.9.png │ │ │ ├── zsht_pp_logo.png │ │ │ ├── zsht_success.png │ │ │ ├── zsht_title.9.png │ │ │ └── zsht_title_image.png │ │ ├── layout │ │ │ ├── upomp_bypay_about.xml │ │ │ ├── upomp_bypay_about_btn.xml │ │ │ ├── upomp_bypay_activity_dialog.xml │ │ │ ├── upomp_bypay_auth_bind_card.xml │ │ │ ├── upomp_bypay_bindcard_credit.xml │ │ │ ├── upomp_bypay_bindcard_debit.xml │ │ │ ├── upomp_bypay_bindcard_pan.xml │ │ │ ├── upomp_bypay_bindcard_result.xml │ │ │ ├── upomp_bypay_cardlist_content.xml │ │ │ ├── upomp_bypay_get_pass.xml │ │ │ ├── upomp_bypay_image_cvn2.xml │ │ │ ├── upomp_bypay_keyboard_dialog.xml │ │ │ ├── upomp_bypay_keyboard_letter.xml │ │ │ ├── upomp_bypay_keyboard_num.xml │ │ │ ├── upomp_bypay_keyboard_symbol.xml │ │ │ ├── upomp_bypay_onuser_cardmanage.xml │ │ │ ├── upomp_bypay_onuser_change_psw.xml │ │ │ ├── upomp_bypay_onuser_change_tel.xml │ │ │ ├── upomp_bypay_onuser_tel.xml │ │ │ ├── upomp_bypay_onuser_usermanage.xml │ │ │ ├── upomp_bypay_pay_main.xml │ │ │ ├── upomp_bypay_pay_result.xml │ │ │ ├── upomp_bypay_pay_result_lose.xml │ │ │ ├── upomp_bypay_register.xml │ │ │ ├── upomp_bypay_register2.xml │ │ │ ├── upomp_bypay_register_result.xml │ │ │ ├── upomp_bypay_splash.xml │ │ │ ├── upomp_bypay_support_card.xml │ │ │ ├── upomp_bypay_support_card_list.xml │ │ │ ├── upomp_bypay_user_credit.xml │ │ │ ├── upomp_bypay_user_debit.xml │ │ │ ├── upomp_bypay_userprotocal.xml │ │ │ ├── zsht_bankcard_agreement.xml │ │ │ ├── zsht_bankcard_pay.xml │ │ │ ├── zsht_griditems.xml │ │ │ ├── zsht_loading_process_dialog_anim.xml │ │ │ ├── zsht_success_page.xml │ │ │ └── zsht_user_message.xml │ │ ├── raw │ │ │ └── upomp_bypay_click.ogg │ │ └── values │ │ │ ├── upomp_strings.xml │ │ │ ├── upomp_styles.xml │ │ │ ├── zsht_strings.xml │ │ │ └── zsht_styles.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ └── .gitignore │ │ ├── sdk │ │ ├── 360SDK.jar │ │ ├── annotations.jar │ │ ├── upomp_bypay_lib.jar │ │ └── zsht_app_360game.jar │ │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── IAPOnlineQH360.java │ │ ├── QH360Wrapper.java │ │ └── UserQH360.java ├── twitter │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ │ └── .gitignore │ │ ├── sdk │ │ │ ├── signpost-commonshttp4-1.2.1.1.jar │ │ │ ├── signpost-core-1.2.1.1.jar │ │ │ ├── signpost-jetty6-1.2.1.1.jar │ │ │ └── twitter4j-core-android-3.0.1.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── Consts.java │ │ │ ├── ShareTwitter.java │ │ │ ├── TwitterApp.java │ │ │ ├── TwitterDialog.java │ │ │ └── TwitterSession.java │ └── proj.ios │ │ ├── FHSTwitterEngine │ │ ├── FHSTwitterEngine.h │ │ ├── FHSTwitterEngine.m │ │ └── OAuthConsumer │ │ │ ├── Categories │ │ │ ├── NSString+URLEncoding.h │ │ │ └── NSString+URLEncoding.m │ │ │ ├── Crytpo │ │ │ ├── Base64TranscoderFHS.c │ │ │ └── Base64TranscoderFHS.h │ │ │ ├── OAConsumer.h │ │ │ ├── OAConsumer.m │ │ │ ├── OAHMAC_SHA1SignatureProvider.h │ │ │ ├── OAHMAC_SHA1SignatureProvider.m │ │ │ ├── OAMutableURLRequest.h │ │ │ ├── OAMutableURLRequest.m │ │ │ ├── OARequestParameter.h │ │ │ ├── OARequestParameter.m │ │ │ ├── OAServiceTicket.h │ │ │ ├── OAServiceTicket.m │ │ │ ├── OAToken.h │ │ │ ├── OAToken.m │ │ │ └── OAuthConsumer.h │ │ ├── PluginTwitter-Prefix.pch │ │ ├── PluginTwitter.xcodeproj │ │ └── project.pbxproj │ │ ├── ShareTwitter.h │ │ └── ShareTwitter.m ├── uc │ └── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ └── .gitignore │ │ ├── sdk │ │ ├── UCGameSDK.jar │ │ └── alipay_plugin.jar │ │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── IAPOnlineUC.java │ │ ├── UCWrapper.java │ │ └── UserUC.java ├── umeng │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── res │ │ │ └── .gitignore │ │ ├── sdk │ │ │ └── umeng_sdk.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ └── AnalyticsUmeng.java │ └── proj.ios │ │ ├── AnalyticsUmeng.h │ │ ├── AnalyticsUmeng.m │ │ ├── MobClick.h │ │ ├── PluginUmeng-Prefix.pch │ │ ├── PluginUmeng.xcodeproj │ │ └── project.pbxproj │ │ └── libMobClickLibrary.a ├── vungle │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── sdk │ │ │ ├── dagger-1.2.2.jar │ │ │ ├── javax.inject-1.jar │ │ │ ├── nineoldandroids-2.4.0.jar │ │ │ ├── support-v4-18.0.0.jar │ │ │ └── vungle-publisher-adaptive-id-3.3.0.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ └── AdsVungle.java │ └── proj.ios │ │ ├── PluginVungle-Prefix.pch │ │ ├── PluginVungle.xcodeproj │ │ └── project.pbxproj │ │ ├── VGBytesAssetLoader │ │ ├── VungleBytesAssetLoader.h │ │ ├── VungleBytesAssetLoader.m │ │ ├── __vungle.db.h │ │ ├── vg_close.png.h │ │ ├── vg_cta.png.h │ │ ├── vg_mute_off.png.h │ │ ├── vg_mute_on.png.h │ │ └── vg_timer.png.h │ │ ├── Vungle.h │ │ ├── Vungle.mm │ │ └── Vungle │ │ ├── include │ │ └── VungleSDK.h │ │ ├── libvunglesdk.a │ │ └── resources │ │ ├── __vungle.db │ │ ├── vg_close.png │ │ ├── vg_cta.png │ │ ├── vg_mute_off.png │ │ ├── vg_mute_on.png │ │ └── vg_timer.png └── weibo │ ├── proj.android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── ForManifest.xml │ ├── build.xml │ ├── project.properties │ ├── res │ │ └── .gitignore │ ├── sdk │ │ └── weibosdk.jar │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── AccessTokenKeeper.java │ │ └── ShareWeibo.java │ └── proj.ios │ ├── JSONKit │ ├── JSONKit.h │ └── JSONKit.m │ ├── PluginWeibo-Prefix.pch │ ├── PluginWeibo.xcodeproj │ └── project.pbxproj │ ├── ShareWeibo.h │ ├── ShareWeibo.m │ └── SinaWeibo │ ├── SinaWeibo.bundle │ └── images │ │ ├── close.png │ │ └── close@2x.png │ ├── SinaWeibo.h │ ├── SinaWeibo.m │ ├── SinaWeiboAuthorizeView.h │ ├── SinaWeiboAuthorizeView.m │ ├── SinaWeiboConstants.h │ ├── SinaWeiboRequest.h │ └── SinaWeiboRequest.m ├── protocols ├── PluginManager.cpp ├── PluginParam.cpp ├── include │ ├── AgentManager.h │ ├── FacebookAgent.h │ ├── PluginFactory.h │ ├── PluginManager.h │ ├── PluginParam.h │ ├── PluginProtocol.h │ ├── ProtocolAds.h │ ├── ProtocolAnalytics.h │ ├── ProtocolIAP.h │ ├── ProtocolShare.h │ ├── ProtocolSocial.h │ ├── ProtocolUser.h │ └── iOSIAPAgent.h ├── platform │ ├── android │ │ ├── AgentManager.cpp │ │ ├── FacebookAgent.cpp │ │ ├── PluginFactory.cpp │ │ ├── PluginJavaData.h │ │ ├── PluginJniHelper.cpp │ │ ├── PluginJniHelper.h │ │ ├── PluginJniMacros.h │ │ ├── PluginProtocol.cpp │ │ ├── PluginUtils.cpp │ │ ├── PluginUtils.h │ │ ├── ProtocolAds.cpp │ │ ├── ProtocolAnalytics.cpp │ │ ├── ProtocolIAP.cpp │ │ ├── ProtocolShare.cpp │ │ ├── ProtocolSocial.cpp │ │ └── ProtocolUser.cpp │ └── ios │ │ ├── AdsWrapper.h │ │ ├── AdsWrapper.mm │ │ ├── AgentManager.mm │ │ ├── FacebookAgent.mm │ │ ├── IAPWrapper.h │ │ ├── IAPWrapper.mm │ │ ├── InterfaceAds.h │ │ ├── InterfaceAnalytics.h │ │ ├── InterfaceIAP.h │ │ ├── InterfaceShare.h │ │ ├── InterfaceSocial.h │ │ ├── InterfaceUser.h │ │ ├── ParseUtils.h │ │ ├── ParseUtils.m │ │ ├── PluginFactory.mm │ │ ├── PluginOCMacros.h │ │ ├── PluginProtocol.mm │ │ ├── PluginUtilsIOS.h │ │ ├── PluginUtilsIOS.mm │ │ ├── ProtocolAds.mm │ │ ├── ProtocolAnalytics.mm │ │ ├── ProtocolIAP.mm │ │ ├── ProtocolShare.mm │ │ ├── ProtocolSocial.mm │ │ ├── ProtocolUser.mm │ │ ├── ShareWrapper.h │ │ ├── ShareWrapper.mm │ │ ├── SocialWrapper.h │ │ ├── SocialWrapper.mm │ │ ├── UserWrapper.h │ │ ├── UserWrapper.mm │ │ └── iOSIAPAgent.mm ├── proj.android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── build.xml │ ├── build_native.sh │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── project.properties │ ├── res │ │ └── .gitignore │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── plugin │ │ ├── AdsWrapper.java │ │ ├── IAPWrapper.java │ │ ├── InterfaceAds.java │ │ ├── InterfaceAnalytics.java │ │ ├── InterfaceIAP.java │ │ ├── InterfaceShare.java │ │ ├── InterfaceSocial.java │ │ ├── InterfaceUser.java │ │ ├── PluginListener.java │ │ ├── PluginWrapper.java │ │ ├── ShareWrapper.java │ │ ├── SocialWrapper.java │ │ └── UserWrapper.java └── proj.ios │ ├── PluginProtocol-Prefix.pch │ └── PluginProtocol.xcodeproj │ └── project.pbxproj ├── samples ├── HelloPlugins │ ├── .cocos-project.json │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── AppMacros.h │ │ ├── Configs.h │ │ ├── HelloWorldScene.cpp │ │ ├── HelloWorldScene.h │ │ ├── TestAds │ │ │ ├── TestAdsScene.cpp │ │ │ └── TestAdsScene.h │ │ ├── TestAnalytics │ │ │ ├── TestAnalyticsScene.cpp │ │ │ └── TestAnalyticsScene.h │ │ ├── TestFacebookShare │ │ │ ├── TestFacebookShare.cpp │ │ │ └── TestFacebookShare.h │ │ ├── TestFacebookUser │ │ │ ├── TestFacebookUserScene.cpp │ │ │ └── TestFacebookUserScene.h │ │ ├── TestIAP │ │ │ ├── MyPurchase.cpp │ │ │ ├── MyPurchase.h │ │ │ ├── TestIAPScene.cpp │ │ │ └── TestIAPScene.h │ │ ├── TestIAPOnline │ │ │ ├── MyIAPOLManager.cpp │ │ │ ├── MyIAPOLManager.h │ │ │ ├── TestIAPOnlineScene.cpp │ │ │ └── TestIAPOnlineScene.h │ │ ├── TestShare │ │ │ ├── MyShareManager.cpp │ │ │ ├── MyShareManager.h │ │ │ ├── TestShareScene.cpp │ │ │ └── TestShareScene.h │ │ ├── TestSocial │ │ │ ├── MySocialManager.cpp │ │ │ ├── MySocialManager.h │ │ │ ├── TestSocialScene.cpp │ │ │ └── TestSocialScene.h │ │ └── TestUser │ │ │ ├── MyUserManager.cpp │ │ │ ├── MyUserManager.h │ │ │ ├── TestUserScene.cpp │ │ │ └── TestUserScene.h │ ├── Resources │ │ ├── BtnAlipay.png │ │ ├── BtnGooglePlay.png │ │ ├── BtnND91.png │ │ ├── BtnQH360.png │ │ ├── BtnUC.png │ │ ├── CloseNormal.png │ │ ├── CloseSelected.png │ │ ├── btn_normal.png │ │ ├── btn_pressed.png │ │ ├── cocos2dx.png │ │ ├── twitter.jpeg │ │ └── weibo.png │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── README.md │ │ ├── ant.properties │ │ ├── build-cfg.json │ │ ├── build.xml │ │ ├── build_native.py │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── hellocpp │ │ │ │ └── main.cpp │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── HelloPlugins │ │ │ └── AppActivity.java │ └── proj.ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── HelloPlugins.xcodeproj │ │ └── project.pbxproj │ │ ├── Icon-114.png │ │ ├── Icon-144.png │ │ ├── Icon-57.png │ │ ├── Icon-72.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ └── main.m └── HelloPluginsLua │ ├── .buildpath │ ├── .cocos-project.json │ ├── .project │ ├── config.json │ ├── frameworks │ └── runtime-src │ │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── ConfigParser.cpp │ │ ├── ConfigParser.h │ │ ├── VisibleRect.cpp │ │ ├── VisibleRect.h │ │ ├── protobuf-lite │ │ │ ├── config.h │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── stubs │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── platform_macros.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── template_util.h │ │ │ │ └── type_traits.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ └── wire_format_lite_inl.h │ │ └── runtime │ │ │ ├── Landscape_png.cpp │ │ │ ├── PlayDisable_png.cpp │ │ │ ├── PlayEnable_png.cpp │ │ │ ├── Portrait_png.cpp │ │ │ ├── Protos.pb.cc │ │ │ ├── Protos.pb.h │ │ │ ├── ResData.h │ │ │ ├── Runtime.cpp │ │ │ ├── Runtime.h │ │ │ ├── Shine_png.cpp │ │ │ ├── lua_debugger.c │ │ │ └── lua_debugger.h │ │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build-cfg.json │ │ ├── build.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── lua │ │ │ │ ├── Runtime_android.cpp │ │ │ │ └── main.cpp │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── HelloPluginsLua │ │ │ └── AppActivity.java │ │ └── proj.ios_mac │ │ ├── HelloPluginsLua.xcodeproj │ │ └── project.pbxproj │ │ ├── Runtime_ios-mac.mm │ │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ ├── build-cfg.json │ │ └── main.m │ │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── MainMenu.xib │ │ ├── Prefix.pch │ │ ├── SimulatorApp.h │ │ ├── SimulatorApp.mm │ │ ├── build-cfg.json │ │ └── main.m │ └── src │ ├── HelloWorldScene.lua │ ├── TestAdsScene.lua │ ├── TestFBShareScene.lua │ ├── TestFBUserScene.lua │ ├── TestIAPScene.lua │ ├── TestShareScene.lua │ ├── TestSocialScene.lua │ ├── TestUserScene.lua │ └── main.lua └── tools ├── android-build.py ├── android └── build_common.xml ├── config.sh ├── gameDevGuide.sh ├── pluginx-bindings-generator ├── conversions.yaml ├── genbindings-all.sh ├── genbindings-lua.py ├── genbindings.sh ├── modify_include.sed ├── tojs │ └── cocos2dx_pluginx.ini └── tolua │ └── cocos2dx_pluginx.ini ├── publish.sh ├── setup.py ├── toolsForGame ├── addPluginForGame.sh ├── main.py ├── modifyAppMK.sh ├── modifyClassPath.py ├── modifyMK.sh ├── modifyManifest.py ├── modifyProject.py ├── modifyRes.sh └── steps.py └── toolsForPublish ├── checkEnvironment.sh ├── genPrebuildMK.sh └── publishPlugin.sh /plugins/admob/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/admob/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/admob/proj.android/sdk/GoogleAdMobAdsSdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/admob/proj.android/sdk/GoogleAdMobAdsSdk.jar -------------------------------------------------------------------------------- /plugins/admob/proj.ios/Admob/libGoogleAdMobAds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/admob/proj.ios/Admob/libGoogleAdMobAds.a -------------------------------------------------------------------------------- /plugins/admob/proj.ios/PluginAdmob-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PluginAdmob' target in the 'PluginAdmob' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /plugins/alipay/proj.android/ForAssets/alipay_plugin.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/alipay/proj.android/ForAssets/alipay_plugin.apk -------------------------------------------------------------------------------- /plugins/alipay/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/alipay/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/alipay/proj.android/sdk/alipay_plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/alipay/proj.android/sdk/alipay_plugin.jar -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.android/DependProject/res/.gitignore -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1px 4 | -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/values-ldpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1px 4 | -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/values-mdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1px 4 | -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2px 4 | -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #33464c59 4 | -------------------------------------------------------------------------------- /plugins/facebook/proj.android/DependProject/src/.gitignore: -------------------------------------------------------------------------------- 1 | #empty ignore file -------------------------------------------------------------------------------- /plugins/facebook/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/facebook/proj.android/sdk/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.android/sdk/android-support-v4.jar -------------------------------------------------------------------------------- /plugins/facebook/proj.android/sdk/bolts.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.android/sdk/bolts.jar -------------------------------------------------------------------------------- /plugins/facebook/proj.android/sdk/facebooksdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.android/sdk/facebooksdk.jar -------------------------------------------------------------------------------- /plugins/facebook/proj.ios/sdk/FacebookSDK.framework/FacebookSDK: -------------------------------------------------------------------------------- 1 | ./Versions/A/FacebookSDK -------------------------------------------------------------------------------- /plugins/facebook/proj.ios/sdk/FacebookSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | ./Versions/A/Headers -------------------------------------------------------------------------------- /plugins/facebook/proj.ios/sdk/FacebookSDK.framework/Resources: -------------------------------------------------------------------------------- 1 | ./Versions/A/Resources -------------------------------------------------------------------------------- /plugins/facebook/proj.ios/sdk/FacebookSDK.framework/Versions/A/FacebookSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebook/proj.ios/sdk/FacebookSDK.framework/Versions/A/FacebookSDK -------------------------------------------------------------------------------- /plugins/facebook/proj.ios/sdk/FacebookSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | ./A -------------------------------------------------------------------------------- /plugins/facebookads/proj.android/res/values-large/layout.xml: -------------------------------------------------------------------------------- 1 | 2 | true 3 | -------------------------------------------------------------------------------- /plugins/facebookads/proj.android/res/values-sw600dp/layout.xml: -------------------------------------------------------------------------------- 1 | 2 | true 3 | -------------------------------------------------------------------------------- /plugins/facebookads/proj.android/res/values/layouts.xml: -------------------------------------------------------------------------------- 1 | 2 | false 3 | -------------------------------------------------------------------------------- /plugins/facebookads/proj.android/sdk/AudienceNetwork.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebookads/proj.android/sdk/AudienceNetwork.jar -------------------------------------------------------------------------------- /plugins/facebookads/proj.android/sdk/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/facebookads/proj.android/sdk/android-support-v4.jar -------------------------------------------------------------------------------- /plugins/facebookads/proj.ios/FBAudienceNetwork.framework/FBAudienceNetwork: -------------------------------------------------------------------------------- 1 | ./Versions/A/FBAudienceNetwork -------------------------------------------------------------------------------- /plugins/facebookads/proj.ios/FBAudienceNetwork.framework/Headers: -------------------------------------------------------------------------------- 1 | ./Versions/A/Headers -------------------------------------------------------------------------------- /plugins/facebookads/proj.ios/FBAudienceNetwork.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | ./A -------------------------------------------------------------------------------- /plugins/flurry/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/flurry/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/flurry/proj.android/sdk/FlurryAgent.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/flurry/proj.android/sdk/FlurryAgent.jar -------------------------------------------------------------------------------- /plugins/flurry/proj.ios/FlurryAds/libFlurryAds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/flurry/proj.ios/FlurryAds/libFlurryAds.a -------------------------------------------------------------------------------- /plugins/flurry/proj.ios/libFlurry.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/flurry/proj.ios/libFlurry.a -------------------------------------------------------------------------------- /plugins/googleplay/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/googleplay/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_flip_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_flip_bg.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_91.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_achieve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_achieve.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_add.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_agreement_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_agreement_logo.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_background.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_logo.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bbs_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bbs_icon.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bg.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bizarre_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bizarre_image.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bk1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bk1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bm.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bm.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_01.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_01.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_zhuxiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_zhuxiao.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_bottom_bar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bottom_bar_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_01.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_03.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_278.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis02.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_radio.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_check_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_check_yes.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_close.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_detail.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_error_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_error_bg.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_face.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_head.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_head_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_head_bg.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_headbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_headbar.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon11.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon12.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_01.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_05.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_06.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_07.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_08.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_21.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_22.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_error.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more01.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more02.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more03.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more04.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more05.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more06.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_point.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_selected.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_image81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image81.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_image82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image82.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_2.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_bg.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_inputbox_bg1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_inputbox_bg1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_invite_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_invite_image.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_line.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_separator.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_mood_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mood_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_friend.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_friend.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_owen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_owen.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_platform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_platform_logo.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_1.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_2.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_3.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_image.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn_down.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_showplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_showplayer.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_vertical_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_vertical_line.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd3_white_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd3_white_bg.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_ad.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_blue1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_blue2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue2.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_book.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add_press.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy_press.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce_press.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur2.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_change_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_change_account.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_login.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_login.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_logo.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_gamecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_gamecoin.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_default.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_time.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_no_stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_no_stock.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_price_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_price_down.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_green1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_green1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_green2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_green2.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_input.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_input.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_logo48.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_ordinary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_ordinary.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_satisfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_satisfied.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_service.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_theme.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_true.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_unsatisfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_unsatisfied.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_warn.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_1.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_2.9.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_winning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_winning.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/drawable/nd_xline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/drawable/nd_xline.png -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/res/raw/nd_res.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/DependProject/res/raw/nd_res.zip -------------------------------------------------------------------------------- /plugins/nd91/proj.android/DependProject/src/.gitignore: -------------------------------------------------------------------------------- 1 | #empty ignore file -------------------------------------------------------------------------------- /plugins/nd91/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/nd91/proj.android/sdk/NdComPlatform.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/nd91/proj.android/sdk/NdComPlatform.jar -------------------------------------------------------------------------------- /plugins/qh360/proj.android/CLibs/mips/libpaypalm_app_plugin_jar_360game.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/CLibs/mips/libpaypalm_app_plugin_jar_360game.so -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/alipay_plugin.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/alipay_plugin.apk -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/pro.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/pro.jar -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/box_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_off.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/box_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_on.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal_.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press_.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/input_box_.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/input_box_.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/bind_phone_button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/bind_phone_button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/bind_phone_other_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/bind_phone_other_indicator.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/bind_phone_popup_message_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/bind_phone_popup_message_arrow.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/bind_phone_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/bind_phone_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/box_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/box_off.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/box_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/box_on.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/button_gray_disable.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/button_gray_disable.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/button_gray_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/button_gray_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/button_gray_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/button_gray_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/check_phone_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/check_phone_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/checkphone_resetpwd_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/checkphone_resetpwd_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/close_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/close_btn_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/close_btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/close_btn_press.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/del.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dialog_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dot.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dr_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dr_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dr_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dr_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/drop_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/drop_down.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal_.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press_.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/find_pwd_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/find_pwd_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/guardianship_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/guardianship_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_off.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_on.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/input_box_.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/input_box_.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/post_input_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/post_input_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon-mdpi/qihoo_inficon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/qihoo_inficon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/account_setting_name_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/account_setting_name_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/arrow_down.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/arrow_up.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_abc.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bob.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_boc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_boc.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bos.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ccb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ccb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ceb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ceb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cib.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmbc.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_default.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ecitic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ecitic.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gdb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gzcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gzcb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_hxb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_hxb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_icbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_icbc.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_pingan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_pingan.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_psbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_psbc.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_sdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_sdb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_spdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_spdb.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bank_name_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bank_name_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my_h.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you_h.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bind_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bind_phone.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/box_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/box_off.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/box_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/box_on.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_back_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_back_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_h.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_s.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_s.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_close.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_open.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_anzai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_anzai.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_line.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_refresh.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/close_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/close_btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_press.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/credit_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/credit_date.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/credit_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/credit_verify.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/del.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dialog_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_disable.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_disable.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/drop_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/drop_down.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dropdown_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/dropdown_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_select.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_select.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/header_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/header_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/icon_info.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/input_bottom_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/input_bottom_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/input_box_.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/input_box_.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/input_img_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/input_img_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/input_img_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/input_img_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/jian.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/known_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/known_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/left_s_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/left_s_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/line.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/list_bg_H.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_H.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/list_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/money_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/money_line.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_selected_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_selected_tag.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_unselected_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_unselected_tag.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_card_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_card_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_d.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_p.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_failure.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_ok.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_d.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_d.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_p.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_p.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_left.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_middle.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_right.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_float_translating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_translating.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_quick_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_quick_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_record_tab_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_record_tab_selected.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_btn.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_guard.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_money.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page_now.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/paybtn_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_default.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/paybtn_disable.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_disable.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/paybtn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_alert_fail.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_fail.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_alert_ok.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_ok.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_fail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_fail_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_add.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_del.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_img_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_img_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_input_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_input_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_no_img_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_no_img_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/post_ok_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/post_ok_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qib_balance_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qib_balance_dot.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_disabled.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_disabled.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_inficon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_inficon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_info.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_v.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_v.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_loadingmotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_loadingmotion.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_dialog_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_sucess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_sucess.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_title.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_title.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pup_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pup_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_textbox.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_textbox.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_xianpei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_xianpei.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/qihoo_zhifu_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_zhifu_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/quit_alert_close_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/quit_alert_close_btn.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/reg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/reg_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/reg_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_back.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/reg_title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/right_s_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/right_s_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/right_s_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/right_s_line.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/right_selected_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/right_selected_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/select_money_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/select_money_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/select_money_title.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/select_money_title.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/seperator_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/seperator_h.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/seperator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/seperator_v.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_left.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_right.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_service_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/settings_service_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_pressed.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/single_choice_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_checked.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/single_choice_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_unchecked.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/suggest_name_list_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/suggest_name_list_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/t_new.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/t_new.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_bg_v.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_bg_v.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_left_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_right_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_right_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/tip_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/tip_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/title.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/title.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/title_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/toast_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/toast_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/icon/vertical_title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/icon/vertical_title_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/input_box_.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/input_box_.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/known_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/known_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/known_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/known_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/line.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/load_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/load_success.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_b.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_b.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_t.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_t.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_button.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_cellphone.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_icon_right.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_separator.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_separator.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/login_onekey_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/login_onekey_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/no_simcard_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/no_simcard_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/phone_num_get_failed_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/phone_num_get_failed_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/phone_used_dlg_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/phone_used_dlg_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head_pic1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head_pic2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head_pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head_pic3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head_pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head_pic4.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_head_pic_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_head_pic_default.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_left_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_left_button_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_left_button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_left_button_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_left_button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_left_button_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_pics.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_pics.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_right_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_right_button_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_right_button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_right_button_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_right_button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_right_button_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/profile_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/profile_title_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/qihoo_loadingmotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/qihoo_loadingmotion.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/qihoo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/qihoo_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/qihoo_pay_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/qihoo_pay_dialog_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/qihoo_pup_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/qihoo_pup_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_360account_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_360account_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_success_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_success_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_off.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_off.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_left.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_right.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_tip.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_back.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/register_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/register_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/reset_pwd_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/reset_pwd_title.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/select_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/select_o.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/switch_btn_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/switch_btn_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/switch_btn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/switch_btn_left.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/switch_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/switch_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/switch_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/switch_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/tip_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/tip_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/title_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/toast_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/toast_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/wait_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/wait_bg.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/zc_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/zc_btn_normal.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForAssets/res/zc_btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForAssets/res/zc_btn_press.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_about.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_line.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_icon1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_cvn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_cvn2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_card.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_jiantou.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_pw.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_index_bot_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_index_bot_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot4.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon4.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon5.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon6.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon7.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_left.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_right.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top3.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg_on.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_tag.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_main_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_main_line.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg2.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_icon.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_psw_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_psw_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_spinner.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_tips_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_tips_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_toast_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_toast_bg.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_view_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_view_xy.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_back.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_back_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_back_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_button.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_button_pressed.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_input.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_input.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_input_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_input_focused.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_background.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_button.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_title.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_title.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_line.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_01.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_02.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_03.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_04.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_05.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_06.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_07.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_order_message.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_order_message.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_pp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_pp_logo.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_success.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_title.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_title.9.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/drawable/zsht_title_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/drawable/zsht_title_image.png -------------------------------------------------------------------------------- /plugins/qh360/proj.android/ForRes/raw/upomp_bypay_click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/ForRes/raw/upomp_bypay_click.ogg -------------------------------------------------------------------------------- /plugins/qh360/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/qh360/proj.android/sdk/360SDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/sdk/360SDK.jar -------------------------------------------------------------------------------- /plugins/qh360/proj.android/sdk/annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/sdk/annotations.jar -------------------------------------------------------------------------------- /plugins/qh360/proj.android/sdk/upomp_bypay_lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/sdk/upomp_bypay_lib.jar -------------------------------------------------------------------------------- /plugins/qh360/proj.android/sdk/zsht_app_360game.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/qh360/proj.android/sdk/zsht_app_360game.jar -------------------------------------------------------------------------------- /plugins/twitter/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/twitter/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/twitter/proj.android/sdk/signpost-commonshttp4-1.2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/twitter/proj.android/sdk/signpost-commonshttp4-1.2.1.1.jar -------------------------------------------------------------------------------- /plugins/twitter/proj.android/sdk/signpost-core-1.2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/twitter/proj.android/sdk/signpost-core-1.2.1.1.jar -------------------------------------------------------------------------------- /plugins/twitter/proj.android/sdk/signpost-jetty6-1.2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/twitter/proj.android/sdk/signpost-jetty6-1.2.1.1.jar -------------------------------------------------------------------------------- /plugins/twitter/proj.android/sdk/twitter4j-core-android-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/twitter/proj.android/sdk/twitter4j-core-android-3.0.1.jar -------------------------------------------------------------------------------- /plugins/uc/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/uc/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/uc/proj.android/sdk/UCGameSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/uc/proj.android/sdk/UCGameSDK.jar -------------------------------------------------------------------------------- /plugins/uc/proj.android/sdk/alipay_plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/uc/proj.android/sdk/alipay_plugin.jar -------------------------------------------------------------------------------- /plugins/umeng/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/umeng/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/umeng/proj.android/sdk/umeng_sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/umeng/proj.android/sdk/umeng_sdk.jar -------------------------------------------------------------------------------- /plugins/umeng/proj.ios/PluginUmeng-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'libPluginUmeng' target in the 'libPluginUmeng' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /plugins/umeng/proj.ios/libMobClickLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/umeng/proj.ios/libMobClickLibrary.a -------------------------------------------------------------------------------- /plugins/vungle/proj.android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /plugins/vungle/proj.android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /plugins/vungle/proj.android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /plugins/vungle/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | libPluginVungle 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/vungle/proj.android/sdk/dagger-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/sdk/dagger-1.2.2.jar -------------------------------------------------------------------------------- /plugins/vungle/proj.android/sdk/javax.inject-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/sdk/javax.inject-1.jar -------------------------------------------------------------------------------- /plugins/vungle/proj.android/sdk/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/sdk/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /plugins/vungle/proj.android/sdk/support-v4-18.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/sdk/support-v4-18.0.0.jar -------------------------------------------------------------------------------- /plugins/vungle/proj.android/sdk/vungle-publisher-adaptive-id-3.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.android/sdk/vungle-publisher-adaptive-id-3.3.0.jar -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/PluginVungle-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PluginAdmob' target in the 'PluginAdmob' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/libvunglesdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/libvunglesdk.a -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/__vungle.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/__vungle.db -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/vg_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/vg_close.png -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/vg_cta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/vg_cta.png -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/vg_mute_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/vg_mute_off.png -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/vg_mute_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/vg_mute_on.png -------------------------------------------------------------------------------- /plugins/vungle/proj.ios/Vungle/resources/vg_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/vungle/proj.ios/Vungle/resources/vg_timer.png -------------------------------------------------------------------------------- /plugins/weibo/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/weibo/proj.android/res/.gitignore -------------------------------------------------------------------------------- /plugins/weibo/proj.android/sdk/weibosdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/weibo/proj.android/sdk/weibosdk.jar -------------------------------------------------------------------------------- /plugins/weibo/proj.ios/PluginWeibo-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PluginWeibo' target in the 'PluginWeibo' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /plugins/weibo/proj.ios/SinaWeibo/SinaWeibo.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/weibo/proj.ios/SinaWeibo/SinaWeibo.bundle/images/close.png -------------------------------------------------------------------------------- /plugins/weibo/proj.ios/SinaWeibo/SinaWeibo.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/plugins/weibo/proj.ios/SinaWeibo/SinaWeibo.bundle/images/close@2x.png -------------------------------------------------------------------------------- /protocols/proj.android/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/protocols/proj.android/res/.gitignore -------------------------------------------------------------------------------- /samples/HelloPlugins/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/BtnAlipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/BtnAlipay.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/BtnGooglePlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/BtnGooglePlay.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/BtnND91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/BtnND91.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/BtnQH360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/BtnQH360.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/BtnUC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/BtnUC.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/CloseNormal.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/CloseSelected.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/btn_normal.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/btn_pressed.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/cocos2dx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/cocos2dx.png -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/twitter.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/twitter.jpeg -------------------------------------------------------------------------------- /samples/HelloPlugins/Resources/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/Resources/weibo.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloPlugins 4 | 641876029265874 5 | 6 | -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Default.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Default@2x.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Icon-114.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Icon-144.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Icon-57.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPlugins/proj.ios/Icon-72.png -------------------------------------------------------------------------------- /samples/HelloPlugins/proj.ios/RootViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RootViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /samples/HelloPluginsLua/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "has_native": true, 3 | "project_type": "lua" 4 | } -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/ios/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove_res" : [ 3 | "src", 4 | "res" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d-x/plugin-x/e1c58ea0d8a19b58ffdd01e475367c74b0273367/samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/mac/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove_res" : [ 3 | "src", 4 | "res", 5 | "config.json" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /samples/HelloPluginsLua/frameworks/runtime-src/proj.ios_mac/mac/main.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | return NSApplicationMain(argc, (const char **)argv); 7 | } 8 | --------------------------------------------------------------------------------