diff --git a/.idea/compiler.xml b/.idea/compiler.xml index e035e2a3a..1959ac687 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -11,7 +11,6 @@ - diff --git a/.idea/modules.xml b/.idea/modules.xml index 1eccb6c79..e4f34109f 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -8,7 +8,6 @@ - diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 84a4c0bd1..3fb5a5f4d 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -93,7 +93,6 @@ android:hardwareAccelerated="false" android:manageSpaceActivity="com.todoroo.astrid.core.OldTaskPreferences"> - @@ -171,10 +170,8 @@ - - - - @@ -358,7 +355,6 @@ - - diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java index 99a8bd40f..de58742bc 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java @@ -44,7 +44,6 @@ public class ActFmInvoker { private static final String APP_ID = "a4732a32859dbcd3e684331acd36432c"; private static final String APP_SECRET = "e389bfc82a0d932332f9a8bd8203735f"; - public static final String PROVIDER_FACEBOOK = "facebook"; public static final String PROVIDER_GOOGLE= "google"; public static final String PROVIDER_PASSWORD = "password"; diff --git a/astrid/plugin-src/com/todoroo/astrid/core/OldTaskPreferences.java b/astrid/plugin-src/com/todoroo/astrid/core/OldTaskPreferences.java index 4ba62d27a..beace6ce5 100644 --- a/astrid/plugin-src/com/todoroo/astrid/core/OldTaskPreferences.java +++ b/astrid/plugin-src/com/todoroo/astrid/core/OldTaskPreferences.java @@ -14,7 +14,6 @@ import android.preference.Preference; import android.preference.Preference.OnPreferenceClickListener; import android.preference.PreferenceScreen; -import com.facebook.Session; import com.timsu.astrid.GCMIntentService; import com.timsu.astrid.R; import com.todoroo.andlib.data.TodorooCursor; @@ -131,10 +130,6 @@ public class OldTaskPreferences extends TodorooPreferenceActivity { editor.commit(); deleteDatabase(database.getName()); - Session activeSession = Session.getActiveSession(); - if (activeSession != null) { - activeSession.closeAndClearTokenInformation(); - } AstridPreferences.setPreferenceDefaults(); GCMIntentService.unregister(OldTaskPreferences.this); diff --git a/astrid/proguard.cfg b/astrid/proguard.cfg index b9bf134da..47e81b3ee 100644 --- a/astrid/proguard.cfg +++ b/astrid/proguard.cfg @@ -41,10 +41,6 @@ -keep public class * extends android.app.backup.BackupAgentHelper -keep public class * extends android.preference.Preference --keep class com.facebook.** { - *; -} - -keepclassmembers public class com.todoroo.astrid.data.* { *; } diff --git a/astrid/project.properties b/astrid/project.properties index eb40a8846..c4d690454 100644 --- a/astrid/project.properties +++ b/astrid/project.properties @@ -17,4 +17,3 @@ android.library.reference.2=../viewPagerIndicator/library android.library.reference.3=../actionbarsherlock/library android.library.reference.4=../api android.library.reference.5=../android-aac-enc -android.library.reference.6=../facebook/facebook diff --git a/astrid/res/layout-land/share_activity.xml b/astrid/res/layout-land/share_activity.xml deleted file mode 100644 index c5d8628b2..000000000 --- a/astrid/res/layout-land/share_activity.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/astrid/res/layout/control_set_collaborators.xml b/astrid/res/layout/control_set_collaborators.xml deleted file mode 100644 index 6c57ee762..000000000 --- a/astrid/res/layout/control_set_collaborators.xml +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/astrid/res/layout/share_activity.xml b/astrid/res/layout/share_activity.xml deleted file mode 100644 index 6e88af5ac..000000000 --- a/astrid/res/layout/share_activity.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/astrid/src/com/todoroo/astrid/activity/ShareActivity.java b/astrid/src/com/todoroo/astrid/activity/ShareActivity.java deleted file mode 100644 index 40e7b7f8d..000000000 --- a/astrid/src/com/todoroo/astrid/activity/ShareActivity.java +++ /dev/null @@ -1,86 +0,0 @@ -package com.todoroo.astrid.activity; - -import android.content.Intent; -import android.net.Uri; -import android.os.Bundle; -import android.util.DisplayMetrics; -import android.view.View; -import android.view.View.OnClickListener; -import android.widget.ImageView; -import android.widget.ImageView.ScaleType; -import android.widget.LinearLayout; -import android.widget.TextView; - -import com.actionbarsherlock.app.ActionBar; -import com.actionbarsherlock.app.SherlockFragmentActivity; -import com.actionbarsherlock.view.MenuItem; -import com.timsu.astrid.R; -import com.todoroo.astrid.service.StatisticsConstants; -import com.todoroo.astrid.service.ThemeService; - -public class ShareActivity extends SherlockFragmentActivity { - - @Override - protected void onCreate(Bundle savedInstanceState) { - ThemeService.applyTheme(this); - super.onCreate(savedInstanceState); - - ActionBar actionBar = getSupportActionBar(); - actionBar.setDisplayHomeAsUpEnabled(true); - actionBar.setDisplayShowTitleEnabled(false); - - actionBar.setDisplayShowCustomEnabled(true); - actionBar.setCustomView(R.layout.header_title_view); - ((TextView) actionBar.getCustomView().findViewById(R.id.title)).setText(R.string.EPr_share_astrid); - - setContentView(R.layout.share_activity); - TextView fb = (TextView) findViewById(R.id.share_facebook); - setUpTextView(fb, getString(R.string.share_with_facebook), "http://facebook.com/weloveastrid", "facebook"); //$NON-NLS-1$ //$NON-NLS-2$ - - TextView twitter = (TextView) findViewById(R.id.share_twitter); - setUpTextView(twitter, getString(R.string.share_with_twitter), "http://twitter.com/astrid", "twitter"); //$NON-NLS-1$ //$NON-NLS-2$ - - TextView google = (TextView) findViewById(R.id.share_google); - setUpTextView(google, getString(R.string.share_with_google), "https://plus.google.com/116404018347675245869", "google"); //$NON-NLS-1$ //$NON-NLS-2$ - - setupText(); - } - - private void setUpTextView(TextView tv, String text, final String url, final String buttonId) { - tv.setText(text); - ((View) tv.getParent()).setOnClickListener(new OnClickListener() { - @Override - public void onClick(View v) { - Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); - startActivity(intent); - } - }); - } - - private void setupText() { - View speechBubbleBackground = findViewById(R.id.speech_bubble_container); - speechBubbleBackground.setBackgroundColor(0); - - DisplayMetrics metrics = getResources().getDisplayMetrics(); - ImageView icon = (ImageView) findViewById(R.id.astridIcon); - - int dim = (int) (80 * metrics.density); - icon.setLayoutParams(new LinearLayout.LayoutParams(dim, dim)); - icon.setScaleType(ScaleType.FIT_CENTER); - - TextView speechBubble = (TextView) findViewById(R.id.reminder_message); - - speechBubble.setText(R.string.share_speech_bubble); - speechBubble.setTextSize(17); - } - - @Override - public boolean onOptionsItemSelected(MenuItem item) { - if (item.getItemId() == android.R.id.home) { - finish(); - return true; - } - return super.onOptionsItemSelected(item); - } - -} diff --git a/facebook/CONTRIBUTING.mdown b/facebook/CONTRIBUTING.mdown deleted file mode 100644 index ec5ea367e..000000000 --- a/facebook/CONTRIBUTING.mdown +++ /dev/null @@ -1,15 +0,0 @@ -Facebook welcomes contributions to our SDKs. - -All contributors must sign a CLA (contributor license agreement) here: - - https://developers.facebook.com/opensource/cla - -To contribute on behalf of your employer, sign the company CLA -To contribute on behalf of yourself, sign the individual CLA - -All contributions: - -1/ MUST be be licensed using the Apache License, Version 2.0 -2/ authors MAY retain copyright by adding their copyright notice to the appropriate flies - -More information on the Apache License can be found here: http://www.apache.org/foundation/license-faq.html diff --git a/facebook/Facebook.apk b/facebook/Facebook.apk deleted file mode 100644 index 599955524..000000000 Binary files a/facebook/Facebook.apk and /dev/null differ diff --git a/facebook/LICENSE.txt b/facebook/LICENSE.txt deleted file mode 100644 index 261eeb9e9..000000000 --- a/facebook/LICENSE.txt +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/facebook/NOTICE.txt b/facebook/NOTICE.txt deleted file mode 100644 index d9493d5bc..000000000 --- a/facebook/NOTICE.txt +++ /dev/null @@ -1,61 +0,0 @@ -THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE FACEBOOK PRODUCT. - ------ - -The following software may be included in this product: Android. This software contains the following license and notice below: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS diff --git a/facebook/README.mdown b/facebook/README.mdown deleted file mode 100644 index 7e4bb9b02..000000000 --- a/facebook/README.mdown +++ /dev/null @@ -1,32 +0,0 @@ -Facebook SDK for Android -======================== - -This open-source library allows you to integrate Facebook into your Android app. - -Learn more about about the provided samples, documentation, integrating the SDK into your app, accessing source code, and more at https://developers.facebook.com/android-beta - -TRY IT OUT - -1. Test your install; build and run the project at facebook-android-sdk-3.0.b/samples/HelloFacebookSample (To avoid test signing issues, run this on a device that does not have Facebook for Android installed, or debug the signed sample binaries provided in facebook-android-sdk-3.0.b/bin) - -2. Check-out the tutorials available online at https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/ - -3. Start coding! Visit https://developers.facebook.com/android-beta for tutorials and reference documentation. - -LICENSE - -Except as otherwise noted, the Facebook SDK for Android is licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). - -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - -DEVELOPER TERMS - -- By enabling Facebook integrations, including through this SDK, you can share information with Facebook, including information about people’s use of your app. Facebook will use information received in accordance with our Data Use Policy (https://www.facebook.com/about/privacy/), including to provide you with insights about the effectiveness of your ads and the use of your app. These integrations also enable us and our partners to serve ads on and off Facebook. - -- You may limit your sharing of information with us by updating the Insights control in the developer tool (https://developers.facebook.com/apps//advanced). - -- If you use a Facebook integration, including to share information with us, you agree and confirm that you have provided appropriate and sufficiently prominent notice to and obtained the appropriate consent from your users regarding such collection, use, and disclosure (including, at a minimum, through your privacy policy). You further agree that you will not share information with us about children under the age of 13. - -- You agree to comply with all applicable laws and regulations and also agree to our Terms (https://www.facebook.com/policies/), including our Platform Policies (https://developers.facebook.com/policy/) and Advertising Guidelines, as applicable (https://www.facebook.com/ad_guidelines.php). - -By using the Facebook SDK for Android you agree to these terms. diff --git a/facebook/facebook/AndroidManifest.xml b/facebook/facebook/AndroidManifest.xml deleted file mode 100644 index daf6c8b4a..000000000 --- a/facebook/facebook/AndroidManifest.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/facebook/facebook/TestApp/AndroidManifest.xml b/facebook/facebook/TestApp/AndroidManifest.xml deleted file mode 100644 index cccc2923d..000000000 --- a/facebook/facebook/TestApp/AndroidManifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/facebook/facebook/TestApp/SdkTestApp.eml b/facebook/facebook/TestApp/SdkTestApp.eml deleted file mode 100644 index 4104d1ffc..000000000 --- a/facebook/facebook/TestApp/SdkTestApp.eml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/facebook/facebook/TestApp/proguard-project.txt b/facebook/facebook/TestApp/proguard-project.txt deleted file mode 100644 index f2fe1559a..000000000 --- a/facebook/facebook/TestApp/proguard-project.txt +++ /dev/null @@ -1,20 +0,0 @@ -# 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/facebook/facebook/TestApp/project.properties b/facebook/facebook/TestApp/project.properties deleted file mode 100644 index b0620672e..000000000 --- a/facebook/facebook/TestApp/project.properties +++ /dev/null @@ -1,15 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system edit -# "ant.properties", and override values to adapt the script to your -# project structure. -# -# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): -#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt - -# Project target. -target=android-8 - diff --git a/facebook/facebook/TestApp/res/drawable-hdpi/ic_launcher.png b/facebook/facebook/TestApp/res/drawable-hdpi/ic_launcher.png deleted file mode 100644 index 8074c4c57..000000000 Binary files a/facebook/facebook/TestApp/res/drawable-hdpi/ic_launcher.png and /dev/null differ diff --git a/facebook/facebook/TestApp/res/drawable-ldpi/ic_launcher.png b/facebook/facebook/TestApp/res/drawable-ldpi/ic_launcher.png deleted file mode 100644 index 1095584ec..000000000 Binary files a/facebook/facebook/TestApp/res/drawable-ldpi/ic_launcher.png and /dev/null differ diff --git a/facebook/facebook/TestApp/res/drawable-mdpi/ic_launcher.png b/facebook/facebook/TestApp/res/drawable-mdpi/ic_launcher.png deleted file mode 100644 index a07c69fa5..000000000 Binary files a/facebook/facebook/TestApp/res/drawable-mdpi/ic_launcher.png and /dev/null differ diff --git a/facebook/facebook/TestApp/res/layout/main.xml b/facebook/facebook/TestApp/res/layout/main.xml deleted file mode 100644 index da713e268..000000000 --- a/facebook/facebook/TestApp/res/layout/main.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - diff --git a/facebook/facebook/TestApp/res/values/strings.xml b/facebook/facebook/TestApp/res/values/strings.xml deleted file mode 100644 index b2e26a0c0..000000000 --- a/facebook/facebook/TestApp/res/values/strings.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - StatusActivity - diff --git a/facebook/facebook/TestApp/src/com/facebook/sdk/StatusActivity.java b/facebook/facebook/TestApp/src/com/facebook/sdk/StatusActivity.java deleted file mode 100644 index d0930d9ad..000000000 --- a/facebook/facebook/TestApp/src/com/facebook/sdk/StatusActivity.java +++ /dev/null @@ -1,31 +0,0 @@ -/** - * Copyright 2012 Facebook - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.facebook.sdk; - -import android.app.Activity; -import android.os.Bundle; - -public class StatusActivity extends Activity -{ - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) - { - super.onCreate(savedInstanceState); - setContentView(R.layout.main); - } -} diff --git a/facebook/facebook/android-sdk.eml b/facebook/facebook/android-sdk.eml deleted file mode 100644 index 4104d1ffc..000000000 --- a/facebook/facebook/android-sdk.eml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/facebook/facebook/facebook.iml b/facebook/facebook/facebook.iml deleted file mode 100644 index 96042f994..000000000 --- a/facebook/facebook/facebook.iml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/facebook/facebook/libs b/facebook/facebook/libs deleted file mode 120000 index d4bda9b46..000000000 --- a/facebook/facebook/libs +++ /dev/null @@ -1 +0,0 @@ -../libs \ No newline at end of file diff --git a/facebook/facebook/proguard-project.txt b/facebook/facebook/proguard-project.txt deleted file mode 100644 index f2fe1559a..000000000 --- a/facebook/facebook/proguard-project.txt +++ /dev/null @@ -1,20 +0,0 @@ -# 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/facebook/facebook/project.properties b/facebook/facebook/project.properties deleted file mode 100644 index f85ea3fe3..000000000 --- a/facebook/facebook/project.properties +++ /dev/null @@ -1,16 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system edit -# "ant.properties", and override values to adapt the script to your -# project structure. -# -# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): -#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt - -android.library=true -# Project target. -target=android-17 -android.library.reference.1=../../actionbarsherlock/library diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_focused.9.png b/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_focused.9.png deleted file mode 100644 index 2e6f66dbc..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_normal.9.png b/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_normal.9.png deleted file mode 100644 index 6098f0b0e..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png b/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index 23b9757d1..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_close.png b/facebook/facebook/res/drawable-hdpi/com_facebook_close.png deleted file mode 100644 index d925cb7b2..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_close.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_icon.png b/facebook/facebook/res/drawable-hdpi/com_facebook_icon.png deleted file mode 100644 index af8e077ac..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_icon.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_focused.png b/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_focused.png deleted file mode 100644 index 7badb08d7..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_focused.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_normal.png b/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_normal.png deleted file mode 100644 index 7f71a8a6d..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_normal.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_pressed.png b/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_pressed.png deleted file mode 100644 index 7badb08d7..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_loginbutton_blue_pressed.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-hdpi/com_facebook_logo.png b/facebook/facebook/res/drawable-hdpi/com_facebook_logo.png deleted file mode 100644 index 26ab7945f..000000000 Binary files a/facebook/facebook/res/drawable-hdpi/com_facebook_logo.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-ldpi/com_facebook_close.png b/facebook/facebook/res/drawable-ldpi/com_facebook_close.png deleted file mode 100644 index fe4be250e..000000000 Binary files a/facebook/facebook/res/drawable-ldpi/com_facebook_close.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-ldpi/com_facebook_icon.png b/facebook/facebook/res/drawable-ldpi/com_facebook_icon.png deleted file mode 100644 index 5bbc2cc91..000000000 Binary files a/facebook/facebook/res/drawable-ldpi/com_facebook_icon.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png deleted file mode 100644 index bfd883f92..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png deleted file mode 100644 index aa9895432..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index 92f2ad12a..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_close.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_close.png deleted file mode 100755 index e3aff5ae5..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_close.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_focused.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_focused.png deleted file mode 100644 index 93882b64b..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_focused.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_normal.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_normal.png deleted file mode 100644 index 911feeee9..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_normal.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_pressed.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_pressed.png deleted file mode 100644 index 93882b64b..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_loginbutton_blue_pressed.png and /dev/null differ diff --git a/facebook/facebook/res/drawable-xhdpi/com_facebook_logo.png b/facebook/facebook/res/drawable-xhdpi/com_facebook_logo.png deleted file mode 100644 index 24d7fc56b..000000000 Binary files a/facebook/facebook/res/drawable-xhdpi/com_facebook_logo.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_button_check.xml b/facebook/facebook/res/drawable/com_facebook_button_check.xml deleted file mode 100644 index a201c2634..000000000 --- a/facebook/facebook/res/drawable/com_facebook_button_check.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_button_check_off.png b/facebook/facebook/res/drawable/com_facebook_button_check_off.png deleted file mode 100644 index e9737df5c..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_button_check_off.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_button_check_on.png b/facebook/facebook/res/drawable/com_facebook_button_check_on.png deleted file mode 100644 index d793151e6..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_button_check_on.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_button_grey_focused.9.png b/facebook/facebook/res/drawable/com_facebook_button_grey_focused.9.png deleted file mode 100644 index 56f603571..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_button_grey_focused.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_button_grey_normal.9.png b/facebook/facebook/res/drawable/com_facebook_button_grey_normal.9.png deleted file mode 100644 index dff3b7d73..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_button_grey_normal.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_button_grey_pressed.9.png b/facebook/facebook/res/drawable/com_facebook_button_grey_pressed.9.png deleted file mode 100644 index 46648efcd..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_button_grey_pressed.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_close.png b/facebook/facebook/res/drawable/com_facebook_close.png deleted file mode 100755 index ad0147460..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_close.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_icon.png b/facebook/facebook/res/drawable/com_facebook_icon.png deleted file mode 100644 index 413396be6..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_icon.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_list_divider.9.png b/facebook/facebook/res/drawable/com_facebook_list_divider.9.png deleted file mode 100644 index 7d4c46c47..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_list_divider.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_list_section_header_background.9.png b/facebook/facebook/res/drawable/com_facebook_list_section_header_background.9.png deleted file mode 100644 index 1763c4a64..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_list_section_header_background.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue.xml b/facebook/facebook/res/drawable/com_facebook_loginbutton_blue.xml deleted file mode 100644 index 8dba4d0ac..000000000 --- a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_focused.png b/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_focused.png deleted file mode 100644 index 218b6e5d1..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_focused.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_normal.png b/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_normal.png deleted file mode 100644 index 121741085..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_normal.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_pressed.png b/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_pressed.png deleted file mode 100644 index 218b6e5d1..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_loginbutton_blue_pressed.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_loginbutton_silver.xml b/facebook/facebook/res/drawable/com_facebook_loginbutton_silver.xml deleted file mode 100644 index 4ecb0c8c7..000000000 --- a/facebook/facebook/res/drawable/com_facebook_loginbutton_silver.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_logo.png b/facebook/facebook/res/drawable/com_facebook_logo.png deleted file mode 100644 index 785acf9ea..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_logo.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_picker_item_background.xml b/facebook/facebook/res/drawable/com_facebook_picker_item_background.xml deleted file mode 100644 index 005870250..000000000 --- a/facebook/facebook/res/drawable/com_facebook_picker_item_background.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_focused.9.png b/facebook/facebook/res/drawable/com_facebook_picker_list_focused.9.png deleted file mode 100644 index 7c0599e3a..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_picker_list_focused.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_longpressed.9.png b/facebook/facebook/res/drawable/com_facebook_picker_list_longpressed.9.png deleted file mode 100644 index 3bf8e0362..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_picker_list_longpressed.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_pressed.9.png b/facebook/facebook/res/drawable/com_facebook_picker_list_pressed.9.png deleted file mode 100644 index 6e77525d2..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_picker_list_pressed.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_selector.xml b/facebook/facebook/res/drawable/com_facebook_picker_list_selector.xml deleted file mode 100644 index ce9ed5ba8..000000000 --- a/facebook/facebook/res/drawable/com_facebook_picker_list_selector.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_selector_background_transition.xml b/facebook/facebook/res/drawable/com_facebook_picker_list_selector_background_transition.xml deleted file mode 100644 index 0e4aa8eb8..000000000 --- a/facebook/facebook/res/drawable/com_facebook_picker_list_selector_background_transition.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_picker_list_selector_disabled.9.png b/facebook/facebook/res/drawable/com_facebook_picker_list_selector_disabled.9.png deleted file mode 100644 index 42cb6463e..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_picker_list_selector_disabled.9.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_picker_top_button.xml b/facebook/facebook/res/drawable/com_facebook_picker_top_button.xml deleted file mode 100644 index 4b7a7caa9..000000000 --- a/facebook/facebook/res/drawable/com_facebook_picker_top_button.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_place_default_icon.png b/facebook/facebook/res/drawable/com_facebook_place_default_icon.png deleted file mode 100644 index 97ec3e608..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_place_default_icon.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_profile_default_icon.png b/facebook/facebook/res/drawable/com_facebook_profile_default_icon.png deleted file mode 100644 index 15864ccdb..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_profile_default_icon.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_portrait.png b/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_portrait.png deleted file mode 100644 index 107d7f89e..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_portrait.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_square.png b/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_square.png deleted file mode 100644 index 8b4a76a0e..000000000 Binary files a/facebook/facebook/res/drawable/com_facebook_profile_picture_blank_square.png and /dev/null differ diff --git a/facebook/facebook/res/drawable/com_facebook_top_background.xml b/facebook/facebook/res/drawable/com_facebook_top_background.xml deleted file mode 100644 index 2f598d5f2..000000000 --- a/facebook/facebook/res/drawable/com_facebook_top_background.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_top_button.xml b/facebook/facebook/res/drawable/com_facebook_top_button.xml deleted file mode 100644 index 479e8596d..000000000 --- a/facebook/facebook/res/drawable/com_facebook_top_button.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - diff --git a/facebook/facebook/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml b/facebook/facebook/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml deleted file mode 100644 index 44c1a3c9a..000000000 --- a/facebook/facebook/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_friendpickerfragment.xml b/facebook/facebook/res/layout/com_facebook_friendpickerfragment.xml deleted file mode 100644 index 76b50c1d5..000000000 --- a/facebook/facebook/res/layout/com_facebook_friendpickerfragment.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_login_activity_layout.xml b/facebook/facebook/res/layout/com_facebook_login_activity_layout.xml deleted file mode 100644 index 09b28999f..000000000 --- a/facebook/facebook/res/layout/com_facebook_login_activity_layout.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_activity_circle_row.xml b/facebook/facebook/res/layout/com_facebook_picker_activity_circle_row.xml deleted file mode 100644 index 29e8bc81b..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_activity_circle_row.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_checkbox.xml b/facebook/facebook/res/layout/com_facebook_picker_checkbox.xml deleted file mode 100644 index 8adf7b3d7..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_checkbox.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_image.xml b/facebook/facebook/res/layout/com_facebook_picker_image.xml deleted file mode 100644 index 7793e3b3e..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_image.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_list_row.xml b/facebook/facebook/res/layout/com_facebook_picker_list_row.xml deleted file mode 100644 index 8f439bfe0..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_list_row.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_list_section_header.xml b/facebook/facebook/res/layout/com_facebook_picker_list_section_header.xml deleted file mode 100644 index cfb18beb9..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_list_section_header.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_search_box.xml b/facebook/facebook/res/layout/com_facebook_picker_search_box.xml deleted file mode 100644 index 786668e78..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_search_box.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - diff --git a/facebook/facebook/res/layout/com_facebook_picker_title_bar.xml b/facebook/facebook/res/layout/com_facebook_picker_title_bar.xml deleted file mode 100644 index bcd3141f7..000000000 --- a/facebook/facebook/res/layout/com_facebook_picker_title_bar.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - -