diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63625e9d7..3729291d8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,7 +18,7 @@ Before creating a Github issue make sure you... When submitting an issue please add as much of the following information: -- Tell us what you expected to happen and what actually happened. ("It doesn't work" is **not** a solveable problem) +- Tell us what you expected to happen and what actually happened. ("It doesn't work" is **not** a solvable problem) - Provide sample code so people can test and debug the problem. - Provide `adb logcat` or Xcode console output. @@ -27,6 +27,6 @@ Can you solve the problem yourself? If so see the next section on Pull Requests ## Pull Requests - Include screenshots and animated GIFs in your pull request whenever possible. -- Try to follow the [JavaScript](https://github.com/Wizcorp/javascript-styleguide/blob/master/README.md), [Objective-C](http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml) or [Java](https://google-styleguide.googlecode.com/svn/trunk/javaguide.html) style guides. Although these are just guides, please at least support continuety (that means **using 4 spaces please**). +- Try to follow the [JavaScript](https://github.com/Wizcorp/javascript-styleguide/blob/master/README.md), [Objective-C](http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml) or [Java](https://google-styleguide.googlecode.com/svn/trunk/javaguide.html) style guides. Although these are just guides, please at least support continuity (that means **using 4 spaces please**). - **Send your pull request to the develop branch.** -- If you can, provide sample testing code. \ No newline at end of file +- If you can, provide sample testing code. diff --git a/README.md b/README.md index b9c5f2241..065d6cfc0 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,15 @@ This is the official plugin for Facebook in Apache Cordova/PhoneGap! The Facebook plugin for [Apache Cordova](http://incubator.apache.org/cordova/) allows you to use the same JavaScript code in your Cordova application as you use in your web application. However, unlike in the browser, the Cordova application will use the native Facebook app to perform Single Sign On for the user. If this is not possible then the sign on will degrade gracefully using the standard dialog based authentication. * Supported on PhoneGap (Cordova) v3.5.0 and above. +* JDK version 1.7 or above is required * This plugin is built for - * iOS FacebookSDK 3.21.1 - * Android FacebookSDK 3.21.1 + * iOS Facebook SDK 4.1.0 + * Android Facebook SDK 4.1.2 * GitHub URL : [https://github.com/Wizcorp/phonegap-facebook-plugin/](https://github.com/Wizcorp/phonegap-facebook-plugin/) ## << --- Cordova Registry Warning [iOS] -****Installing this plugin directly from Cordova Registry results in Xcode using a broken `FacebookSDK.framework`, this is because the current publish procedure to NPM breaks symlinks [CB-6092](https://issues.apache.org/jira/browse/CB-6092). Please install the plugin through a locally cloned copy or re-add the `FacebookSDK.framework` to Xcode after installation.**** +****Installing this plugin directly from Cordova Registry results in Xcode using a broken `FBSDKCoreKit.framework`, etc. This is because the current publish procedure to NPM breaks symlinks [CB-6092](https://issues.apache.org/jira/browse/CB-6092). Please install the plugin through a locally cloned copy or re-add `FBSDKCoreKit.framework`, etc to Xcode after installation.**** ## ------------------------------------------ >> @@ -237,15 +238,15 @@ Using the graph api this is a very simple task: Send a photo to a user's feed ``` -facebookConnectPlugin.showDialog( +facebookConnectPlugin.showDialog( { method: "feed", picture:'https://www.google.co.jp/logos/doodles/2014/doodle-4-google-2014-japan-winner-5109465267306496.2-hp.png', name:'Test Post', - message:'First photo post', + message:'First photo post', caption: 'Testing using phonegap plugin', description: 'Posting photo using phonegap facebook plugin' - }, + }, function (response) { alert(JSON.stringify(response)) }, function (response) { alert(JSON.stringify(response)) }); ``` diff --git a/TROUBLESHOOTING.md b/TROUBLESHOOTING.md index dd43eed5f..8215e24b5 100644 --- a/TROUBLESHOOTING.md +++ b/TROUBLESHOOTING.md @@ -1,6 +1,6 @@ # Troubleshooting -Can't solve your issue here? Check the [existing issues](https://github.com/Wizcorp/phonegap-facebook-plugin/issues) on Github. If you still cannot find a solution please [create and issue after reading the contributing guide](CONTRIBUTING.md). +Can't solve your issue here? Check the [existing issues](https://github.com/Wizcorp/phonegap-facebook-plugin/issues) on Github. If you still cannot find a solution please [create and issue after reading the contributing guide](CONTRIBUTING.md). When creating a Github issue **remember to**: @@ -9,8 +9,8 @@ When creating a Github issue **remember to**: - Provide a log (Xcode console or adb logcat) ### Troubleshooting contents -- [**General**](#general) - - [How do I Build without Eclipse?](#how-do-i-build-without-eclipse) +- [**General**](#general) + - [How do I Build without Eclipse?](#how-do-i-build-without-eclipse) - [How do I Add a Like Button?](#how-do-i-add-a-like-button) - [Where is the init API?](#where-is-the-init-api) - [How to install with NPM PhoneGap?](#how-to-install-with-npm-phonegap) @@ -38,7 +38,7 @@ When creating a Github issue **remember to**: - Problem - I am trying to implement like button functionality in my app. Whenever user likes my facebook page, user will get rewards. So i have tried to implement this like button functionality as described here: [https://developers.facebook.com/docs/plugins/like-button](https://developers.facebook.com/docs/plugins/like-button) - + - Solution - It won't work for native apps because: [https://developers.facebook.com/docs/ios/like-button/](https://developers.facebook.com/docs/ios/like-button/) is not supported yet. **HOWEVER**; it can be done with the graph API [http://stackoverflow.com/questions/11915269/built-in-like-button-facebook-sdk-3-0](http://stackoverflow.com/questions/11915269/built-in-like-button-facebook-sdk-3-0) Things you have to take care of are : @@ -65,7 +65,7 @@ The better way to understand this little "workflow" is to manipulate the Graph A - Problem - I'm trying to install via https the Facebook plugin in iOS, but when I try the following line: - + `sudo phonegap local plugin add https://github.com/phonegap/phonegap-facebook-plugin.git --variable APP_ID="12345678910" --variable APP_NAME="MyAPP"` Im getting the message "[error] Variable(s) missing: APP_ID, APP_NAME" @@ -114,7 +114,7 @@ Add this line to `initWithWebView` before `[FBSession openActiveSessionWithReadP ## Android ### No Reply From Login? - + - Problem - **facebookConnectPlugin.login doesn't call neither success nor faillure methods.** - When I'm disconnected from Facebook and don't have the native app, the iframe fallback is blank. Checking on chrome inspector, the elements are set to display: none. @@ -123,9 +123,9 @@ Add this line to `initWithWebView` before `[FBSession openActiveSessionWithReadP ``` try { - PackageInfo info = + PackageInfo info = cordova.getActivity().getPackageManager().getPackageInfo("com.goapes.golearn", PackageManager.GET_SIGNATURES); - + for (Signature signature : info.signatures) { MessageDigest md = MessageDigest.getInstance("SHA"); md.update(signature.toByteArray()); @@ -225,8 +225,10 @@ requestsDialog.build().show(); 2. Go to "Build Phases" 3. Ensure that the following file is added under "Compile Sources": - `FacebookConnectPlugin.m` - 4. Ensure that the following is added under "Link Binary With Libraris": - - `FacebookSDK.framework` + 4. Ensure that the following are added under "Link Binary With Libraries": + - `FBSDKCoreKit.framework` + - `FBSDKLoginKit.framework` + - `FBSDKShareKit.framework` - `libsqlite3.dylib` - `Social.framework` - `Accounts.framework` @@ -239,4 +241,4 @@ Cordova and plugman seems to have some problems adding frameworks etc. when re-i - Problem: - Calling the login function always opens the web dialog even though the native app is installed on the device. - Solution: - - Switch "deep linking" to ON in the Facebook developer website settings for your application + - Switch "deep linking" to ON in the Facebook developer website settings for your application. diff --git a/facebookConnectPlugin.js b/facebookConnectPlugin.js index 5d9f8e2a0..805385535 100644 --- a/facebookConnectPlugin.js +++ b/facebookConnectPlugin.js @@ -28,6 +28,21 @@ if (cordova.platformId == "browser") { } }, + getProfile: function (s, f) { + // Try will catch errors when SDK has not been init + try { + FB.api('/me', function (response) { + s(response); + }); + } catch (error) { + if (!f) { + console.error(error.message); + } else { + f(error.message); + } + } + }, + showDialog: function (options, s, f) { if (!options.name) { @@ -42,16 +57,16 @@ if (cordova.platformId == "browser") { if (!options.description) { options.description = ""; } - if (!options.href) { - options.href = ""; - } if (!options.picture) { options.picture = ""; } if (options.link && !options.href) { options.href = options.link; } - + if (!options.href) { + options.href = ""; + } + // Try will catch errors when SDK has not been init try { FB.ui(options, @@ -82,7 +97,7 @@ if (cordova.platformId == "browser") { } options.scope = permissions.toString(); } - + FB.login(function (response) { if (response.authResponse) { s(response); @@ -132,7 +147,7 @@ if (cordova.platformId == "browser") { api: function (graphPath, permissions, s, f) { // JS API does not take additional permissions - + // Try will catch errors when SDK has not been init try { FB.api(graphPath, function (response) { @@ -164,7 +179,7 @@ if (cordova.platformId == "browser") { }); } }; - + // Bake in the JS SDK (function () { // Retrieve the root element to append the script tags to @@ -200,6 +215,10 @@ if (cordova.platformId == "browser") { exec(s, f, "FacebookConnectPlugin", "getLoginStatus", []); }, + getProfile: function (s, f) { + exec(s, f, "FacebookConnectPlugin", "getProfile", []); + }, + showDialog: function (options, s, f) { if (!options.link && options.href) { options.link = options.href; diff --git a/platforms/android/FacebookLib/AndroidManifest.xml b/platforms/android/FacebookLib/AndroidManifest.xml old mode 100644 new mode 100755 index 1c7e0766a..859055cbd --- a/platforms/android/FacebookLib/AndroidManifest.xml +++ b/platforms/android/FacebookLib/AndroidManifest.xml @@ -1,22 +1,26 @@ + package="com.facebook"> diff --git a/platforms/android/FacebookLib/BUCK b/platforms/android/FacebookLib/BUCK new file mode 100755 index 000000000..d6a6dfcfe --- /dev/null +++ b/platforms/android/FacebookLib/BUCK @@ -0,0 +1,26 @@ +build_config( + name = 'config-debug', + package = 'com.facebook', + debug = True, +) + +android_resource( + name = 'res', + res = 'res', + package = 'com.facebook', + deps = [ + ], +) + +android_library( + name = 'android-sdk', + srcs = glob(['src/**/*.java']) + [':config-debug'], + deps = [ + ':res', + '//libs:android-support-v4', + '//libs:bolts', + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/platforms/android/FacebookLib/build.gradle b/platforms/android/FacebookLib/build.gradle old mode 100644 new mode 100755 index 67413cc55..fdb6ac90a --- a/platforms/android/FacebookLib/build.gradle +++ b/platforms/android/FacebookLib/build.gradle @@ -7,8 +7,8 @@ repositories { project.group = 'com.facebook.android' dependencies { - compile 'com.android.support:support-v4:[20,21)' - compile 'com.parse.bolts:bolts-android:1.1.2' + compile 'com.android.support:support-v4:[21,22)' + compile 'com.parse.bolts:bolts-android:1.2.0' } android { @@ -83,7 +83,7 @@ uploadArchives { licenses { license { - name 'The Apache Software License, Version 2.0' + name 'Facebook Platform License' url 'https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt' distribution 'repo' } diff --git a/platforms/android/FacebookLib/libs/BUCK b/platforms/android/FacebookLib/libs/BUCK old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/libs/android-support-v4.jar b/platforms/android/FacebookLib/libs/android-support-v4.jar old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/libs/bolts-android-1.1.2.jar b/platforms/android/FacebookLib/libs/bolts-android-1.1.2.jar old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/lint.xml b/platforms/android/FacebookLib/lint.xml new file mode 100755 index 000000000..57ebc724e --- /dev/null +++ b/platforms/android/FacebookLib/lint.xml @@ -0,0 +1,25 @@ + + + + + + + diff --git a/platforms/android/FacebookLib/proguard-project.txt b/platforms/android/FacebookLib/proguard-project.txt new file mode 100755 index 000000000..f2fe1559a --- /dev/null +++ b/platforms/android/FacebookLib/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_focused.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_focused.9.png deleted file mode 100644 index aa002f0a0..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_normal.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_normal.9.png deleted file mode 100644 index 4c114b48d..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_pressed.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_pressed.9.png deleted file mode 100644 index 9c936b60c..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_blue_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_focused.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_focused.9.png deleted file mode 100644 index c655580f0..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_normal.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_normal.9.png deleted file mode 100644 index efe802fd9..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index 38acc4799..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_icon.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_icon.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_icon.png rename to platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_icon.png diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background.png deleted file mode 100644 index 9486c01a7..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background_selected.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background_selected.png deleted file mode 100644 index e128c1b99..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_background_selected.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_icon_selected.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_icon_selected.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_pressed.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_pressed.png deleted file mode 100644 index 047eaa6c4..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_like_pressed.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_send_icon.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_send_icon.png new file mode 100755 index 000000000..dbc69dccc Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_button_send_icon.png differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_close.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_close.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_inverse_icon.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_inverse_icon.png deleted file mode 100644 index ecc6962aa..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_inverse_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_logo.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_logo.png deleted file mode 100644 index 161bef08b..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_logo.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_picker_magnifier.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_picker_magnifier.png deleted file mode 100644 index 0dcd013d6..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_picker_magnifier.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_background.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_bottomnub.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_topnub.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_xout.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_black_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_background.9.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_bottomnub.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_topnub.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_xout.png b/platforms/android/FacebookLib/res/drawable-hdpi/com_facebook_tooltip_blue_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_blue.png b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_blue.png new file mode 100755 index 000000000..a58670371 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_white.png b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_white.png new file mode 100755 index 000000000..80be8f6de Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_large_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_blue.png b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_blue.png new file mode 100755 index 000000000..d7a6fcd42 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_white.png b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_white.png new file mode 100755 index 000000000..b368abbaa Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_bubble_small_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-hdpi/messenger_button_send_round_shadow.png b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_button_send_round_shadow.png new file mode 100755 index 000000000..f369b4128 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-hdpi/messenger_button_send_round_shadow.png differ diff --git a/platforms/android/FacebookLib/res/drawable-ldpi/com_facebook_close.png b/platforms/android/FacebookLib/res/drawable-ldpi/com_facebook_close.png deleted file mode 100644 index 5f8bc5905..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-ldpi/com_facebook_close.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_focused.9.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_focused.9.png deleted file mode 100644 index 86bd87740..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_normal.9.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_normal.9.png deleted file mode 100644 index 74e5ce199..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_pressed.9.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_pressed.9.png deleted file mode 100644 index 8fd28f704..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_blue_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_icon.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_icon.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable/com_facebook_button_like_icon.png rename to platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_icon.png diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_icon_selected.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_like_icon_selected.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable/com_facebook_button_like_icon_selected.png rename to platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_like_icon_selected.png diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_send_icon.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_send_icon.png new file mode 100755 index 000000000..5964bc945 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_button_send_icon.png differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_close.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_close.png similarity index 100% rename from platforms/android/FacebookLib/res/drawable/com_facebook_close.png rename to platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_close.png diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_inverse_icon.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_inverse_icon.png deleted file mode 100644 index b4afa5443..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_inverse_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_picker_magnifier.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_picker_magnifier.png deleted file mode 100644 index 3013a5519..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_picker_magnifier.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_profile_picture_blank_portrait.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_profile_picture_blank_portrait.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable/com_facebook_profile_picture_blank_portrait.png rename to platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_profile_picture_blank_portrait.png diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_profile_picture_blank_square.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_profile_picture_blank_square.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable/com_facebook_profile_picture_blank_square.png rename to platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_profile_picture_blank_square.png diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_background.9.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_bottomnub.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_topnub.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_xout.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_black_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_background.9.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_bottomnub.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_topnub.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_xout.png b/platforms/android/FacebookLib/res/drawable-mdpi/com_facebook_tooltip_blue_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_blue.png b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_blue.png new file mode 100755 index 000000000..89ec1d6a1 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_white.png b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_white.png new file mode 100755 index 000000000..b62f660e1 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_large_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_blue.png b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_blue.png new file mode 100755 index 000000000..cf4417797 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_white.png b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_white.png new file mode 100755 index 000000000..2f3a364ce Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_bubble_small_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-mdpi/messenger_button_send_round_shadow.png b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_button_send_round_shadow.png new file mode 100755 index 000000000..d5ebd1854 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-mdpi/messenger_button_send_round_shadow.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_focused.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_focused.9.png deleted file mode 100644 index 0524c9325..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_normal.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_normal.9.png deleted file mode 100644 index f5d0e58b5..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_pressed.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_pressed.9.png deleted file mode 100644 index 3d1c11075..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_blue_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png deleted file mode 100644 index e5b15f9c5..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png deleted file mode 100644 index 02f28bdd5..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index 40e6b04e3..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_icon.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_icon.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_icon.png rename to platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_icon.png diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background.png deleted file mode 100644 index 37bb852d2..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background_selected.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background_selected.png deleted file mode 100644 index 954b3f7d1..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_background_selected.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_icon_selected.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_icon_selected.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_pressed.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_pressed.png deleted file mode 100644 index d990a4e53..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_like_pressed.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_send_icon.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_send_icon.png new file mode 100755 index 000000000..a751b5fe8 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_button_send_icon.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_inverse_icon.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_inverse_icon.png deleted file mode 100644 index 4b35eb436..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_inverse_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_logo.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_logo.png deleted file mode 100644 index 401d7bfec..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_logo.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_picker_magnifier.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_picker_magnifier.png deleted file mode 100644 index a5eb056a1..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_picker_magnifier.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_background.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_bottomnub.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_topnub.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_xout.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_black_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_background.9.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_background.9.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_bottomnub.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_bottomnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_topnub.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_topnub.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_xout.png b/platforms/android/FacebookLib/res/drawable-xhdpi/com_facebook_tooltip_blue_xout.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_blue.png b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_blue.png new file mode 100755 index 000000000..7bf06cc29 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_white.png b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_white.png new file mode 100755 index 000000000..0743811ac Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_large_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_blue.png b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_blue.png new file mode 100755 index 000000000..8de9b46a8 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_white.png b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_white.png new file mode 100755 index 000000000..9ed2cb28b Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_bubble_small_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_button_send_round_shadow.png b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_button_send_round_shadow.png new file mode 100755 index 000000000..3f9382064 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xhdpi/messenger_button_send_round_shadow.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_icon.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_icon.png old mode 100644 new mode 100755 similarity index 100% rename from platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_icon.png rename to platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_icon.png diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background.png deleted file mode 100644 index 02d902cfe..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background_selected.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background_selected.png deleted file mode 100644 index cb76c177a..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_background_selected.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_icon_selected.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_icon_selected.png old mode 100644 new mode 100755 diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_pressed.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_pressed.png deleted file mode 100644 index f6b49ca9c..000000000 Binary files a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_like_pressed.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_send_icon.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_send_icon.png new file mode 100755 index 000000000..a30068b98 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/com_facebook_button_send_icon.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_blue.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_blue.png new file mode 100755 index 000000000..7f18441ff Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_white.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_white.png new file mode 100755 index 000000000..39e8f4d7b Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_large_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_blue.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_blue.png new file mode 100755 index 000000000..b5ad769bd Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_blue.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_white.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_white.png new file mode 100755 index 000000000..3134ed126 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_bubble_small_white.png differ diff --git a/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_button_send_round_shadow.png b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_button_send_round_shadow.png new file mode 100755 index 000000000..5b88c0947 Binary files /dev/null and b/platforms/android/FacebookLib/res/drawable-xxhdpi/messenger_button_send_round_shadow.png differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_background.xml new file mode 100755 index 000000000..cd814039c --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/com_facebook_button_background.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue.xml deleted file mode 100644 index 91aebe685..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_focused.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_focused.9.png deleted file mode 100644 index 86bd87740..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_normal.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_normal.9.png deleted file mode 100644 index 74e5ce199..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_pressed.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_pressed.9.png deleted file mode 100644 index 8fd28f704..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_blue_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_check.xml deleted file mode 100644 index dfa510607..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_off.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_off.png deleted file mode 100644 index c25695d53..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_off.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_on.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_on.png deleted file mode 100644 index d793151e6..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_check_on.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_focused.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_focused.9.png deleted file mode 100644 index becfe54fd..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_normal.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_normal.9.png deleted file mode 100644 index f0a07f85c..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_pressed.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index d1c966313..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like.xml deleted file mode 100644 index ff7a04b64..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.png deleted file mode 100644 index 899da5272..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.xml new file mode 100755 index 000000000..0aa75000f --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background_selected.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background_selected.png deleted file mode 100644 index 798364730..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_background_selected.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_pressed.png b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_pressed.png deleted file mode 100644 index fc5a53534..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_pressed.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_selected.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_selected.xml deleted file mode 100644 index 042f23ea8..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_button_like_selected.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_login_silver_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_login_silver_background.xml new file mode 100755 index 000000000..b9cff4a61 --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/com_facebook_button_login_silver_background.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_button_send_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_button_send_background.xml new file mode 100755 index 000000000..26d12d09e --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/com_facebook_button_send_background.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_inverse_icon.png b/platforms/android/FacebookLib/res/drawable/com_facebook_inverse_icon.png deleted file mode 100644 index b4afa5443..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_inverse_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_list_divider.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_list_divider.9.png deleted file mode 100644 index 4c0df0768..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_list_divider.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_list_section_header_background.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_list_section_header_background.9.png deleted file mode 100644 index 0ee16ffb6..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_list_section_header_background.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_loginbutton_silver.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_loginbutton_silver.xml deleted file mode 100644 index adf9885d7..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_loginbutton_silver.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_logo.png b/platforms/android/FacebookLib/res/drawable/com_facebook_logo.png deleted file mode 100644 index 8e6a514a6..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_logo.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_item_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_item_background.xml deleted file mode 100644 index e43eb6cf5..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_item_background.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_focused.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_focused.9.png deleted file mode 100644 index 3efadc352..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_focused.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_longpressed.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_longpressed.9.png deleted file mode 100644 index 5fcd5b207..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_longpressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_pressed.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_pressed.9.png deleted file mode 100644 index 0e557469e..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_pressed.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector.xml deleted file mode 100644 index b35deba5e..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_background_transition.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_background_transition.xml deleted file mode 100644 index 0e4aa8eb8..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_background_transition.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_disabled.9.png b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_disabled.9.png deleted file mode 100644 index 10851f6c8..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_list_selector_disabled.9.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_top_button.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_picker_top_button.xml deleted file mode 100644 index d282105b0..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_picker_top_button.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_place_default_icon.png b/platforms/android/FacebookLib/res/drawable/com_facebook_place_default_icon.png deleted file mode 100644 index 97ec3e608..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_place_default_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_profile_default_icon.png b/platforms/android/FacebookLib/res/drawable/com_facebook_profile_default_icon.png deleted file mode 100644 index 15864ccdb..000000000 Binary files a/platforms/android/FacebookLib/res/drawable/com_facebook_profile_default_icon.png and /dev/null differ diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_top_background.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_top_background.xml deleted file mode 100644 index 9b2989709..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_top_background.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_top_button.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_top_button.xml deleted file mode 100644 index 7a60e4844..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_top_button.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml b/platforms/android/FacebookLib/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml deleted file mode 100644 index b28dab56c..000000000 --- a/platforms/android/FacebookLib/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_round.xml b/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_round.xml new file mode 100755 index 000000000..971aba7e7 --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_round.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_selector.xml b/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_selector.xml new file mode 100755 index 000000000..248041038 --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/messenger_button_blue_bg_selector.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_round.xml b/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_round.xml new file mode 100755 index 000000000..c6bccabc4 --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_round.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_selector.xml b/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_selector.xml new file mode 100755 index 000000000..9035e21e7 --- /dev/null +++ b/platforms/android/FacebookLib/res/drawable/messenger_button_white_bg_selector.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_activity_layout.xml b/platforms/android/FacebookLib/res/layout/com_facebook_activity_layout.xml new file mode 100755 index 000000000..db7f79cd3 --- /dev/null +++ b/platforms/android/FacebookLib/res/layout/com_facebook_activity_layout.xml @@ -0,0 +1,27 @@ + + + + + diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_friendpickerfragment.xml b/platforms/android/FacebookLib/res/layout/com_facebook_friendpickerfragment.xml deleted file mode 100644 index 1fc9f44fa..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_friendpickerfragment.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_login_activity_layout.xml b/platforms/android/FacebookLib/res/layout/com_facebook_login_activity_layout.xml deleted file mode 100644 index 66e50bd8d..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_login_activity_layout.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_login_fragment.xml b/platforms/android/FacebookLib/res/layout/com_facebook_login_fragment.xml new file mode 100755 index 000000000..ef301ae85 --- /dev/null +++ b/platforms/android/FacebookLib/res/layout/com_facebook_login_fragment.xml @@ -0,0 +1,35 @@ + + + + + + + + diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_activity_circle_row.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_activity_circle_row.xml deleted file mode 100644 index 7f631b093..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_activity_circle_row.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_checkbox.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_checkbox.xml deleted file mode 100644 index ecc4aa88e..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_checkbox.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_image.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_image.xml deleted file mode 100644 index dd02cfe9c..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_image.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_row.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_row.xml deleted file mode 100644 index 74537abe3..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_row.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_section_header.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_section_header.xml deleted file mode 100644 index 21c6fbd03..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_list_section_header.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_search_box.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_search_box.xml deleted file mode 100644 index 616bba4e0..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_search_box.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - diff --git a/platforms/android/FacebookLib/res/layout/com_facebook_picker_title_bar.xml b/platforms/android/FacebookLib/res/layout/com_facebook_picker_title_bar.xml deleted file mode 100644 index 07e70dc65..000000000 --- a/platforms/android/FacebookLib/res/layout/com_facebook_picker_title_bar.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - -