├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── libs └── acra-4.5.0.jar ├── project.properties ├── res ├── drawable-hdpi │ ├── checkbox_off.png │ ├── checkbox_on.png │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ ├── checkbox_off.png │ ├── checkbox_on.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── checkbox_off.png │ ├── checkbox_on.png │ └── ic_launcher.png ├── drawable │ └── selector_checkbox.xml ├── layout │ ├── activity_main.xml │ ├── column_list_item.xml │ ├── dialog_add_content_provider.xml │ ├── dialog_query_with_filter.xml │ ├── result_table.xml │ └── simple_spinner_item.xml ├── menu │ ├── main_activity.xml │ └── result_activity.xml ├── values │ ├── arrays.xml │ ├── prefs.xml │ └── strings.xml └── xml │ └── preferences.xml ├── src └── com │ └── jensdriller │ └── contentproviderhelper │ ├── app │ └── ContentProviderHelper.java │ ├── db │ └── Database.java │ ├── model │ ├── Column.java │ ├── ColumnData.java │ ├── ColumnList.java │ └── Result.java │ ├── provider │ └── FileProvider.java │ ├── task │ ├── DialogAsyncTask.java │ ├── LoadColumnsTask.java │ ├── LoadResultsTask.java │ └── SearchProvidersTask.java │ └── ui │ ├── activity │ ├── BaseActivity.java │ ├── ColumnsAdapter.java │ ├── MainActivity.java │ ├── PreferenceActivity.java │ └── ResultActivity.java │ └── dialog │ ├── AddProviderDialog.java │ ├── ContractDialogFragment.java │ ├── DeleteProviderDialog.java │ ├── ProgressDialogFragment.java │ ├── QueryWithFilterDialog.java │ └── SearchProviderDialog.java └── web_hi_res_512.png /.gitignore: -------------------------------------------------------------------------------- 1 | ######################### 2 | ### GITIGNORE ANDROID ### 3 | ######################### 4 | 5 | # built application files 6 | *.apk 7 | *.ap_ 8 | 9 | # files for the dex VM 10 | *.dex 11 | 12 | # Java class files 13 | *.class 14 | 15 | # generated files 16 | bin/ 17 | gen/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Eclipse project files 23 | .classpath 24 | .project 25 | 26 | # Proguard folder generated by Eclipse 27 | proguard/ 28 | 29 | # Intellij project files 30 | *.iml 31 | *.ipr 32 | *.iws 33 | .idea/ 34 | 35 | 36 | ######################### 37 | ### GITIGNORE ECLIPSE ### 38 | ######################### 39 | 40 | *.pydevproject 41 | .project 42 | .metadata 43 | bin/** 44 | tmp/** 45 | tmp/**/* 46 | *.tmp 47 | *.bak 48 | *.swp 49 | *~.nib 50 | local.properties 51 | .classpath 52 | .settings/ 53 | .loadpath 54 | 55 | # External tool builders 56 | .externalToolBuilders/ 57 | 58 | # Locally stored "Eclipse launch configurations" 59 | *.launch 60 | 61 | # CDT-specific 62 | .cproject 63 | 64 | # PDT-specific 65 | .buildpath 66 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 34 | 35 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Jens Driller 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Content Provider Helper 2 | ======================= 3 | 4 | Get it on Google Play: [com.jensdriller.contentproviderhelper](https://play.google.com/store/apps/details?id=com.jensdriller.contentproviderhelper) 5 | 6 | Requires [ActionBarSherlock](http://actionbarsherlock.com) and the latest [android-support-v4.jar](http://developer.android.com/tools/support-library/index.html) library. 7 | 8 | What's New 9 | ---------- 10 | 11 | ### v1.1.0: 12 | 13 | - Choose your theme: Light / Dark / Light (Dark ActionBar) 14 | 15 | - Fixed OutOfMemory errors on lower spec devices 16 | 17 | - Query content providers with more complex SQL queries 18 | 19 | - Save & Share query results as HTML page 20 | 21 | ### v1.0.0: 22 | 23 | - Initial release 24 | 25 | Description 26 | ----------- 27 | 28 | This app helps developers to discover and query content providers. 29 | You can add and delete your own URIs manually or search for all available content providers on the device. 30 | 31 | App permissions are set generously to provide maximum compatibility. 32 | 33 | The following content providers are provided by default: 34 | 35 | * content://browser/bookmarks 36 | * content://browser/searches 37 | * content://call_log/calls 38 | * content://com.android.calendar/attendees 39 | * content://com.android.calendar/calendar_alerts 40 | * content://com.android.calendar/calendars 41 | * content://com.android.calendar/event_entities 42 | * content://com.android.calendar/events 43 | * content://com.android.calendar/reminders 44 | * content://com.android.contacts/aggregation_exceptions 45 | * content://com.android.contacts/contacts 46 | * content://com.android.contacts/data 47 | * content://com.android.contacts/groups 48 | * content://com.android.contacts/raw_contact_entities 49 | * content://com.android.contacts/raw_contacts 50 | * content://com.android.contacts/settings 51 | * content://com.android.contacts/status_updates 52 | * content://com.android.contacts/syncstate 53 | * content://drm/audio 54 | * content://drm/images 55 | * content://icc/adn 56 | * content://icc/fdn 57 | * content://icc/sdn 58 | * content://media/external/audio/albums 59 | * content://media/external/audio/artists 60 | * content://media/external/audio/genres 61 | * content://media/external/audio/media 62 | * content://media/external/audio/playlists 63 | * content://media/external/images/media 64 | * content://media/external/images/thumbnails 65 | * content://media/external/video/media 66 | * content://media/external/video/thumbnails 67 | * content://media/internal/audio/albums 68 | * content://media/internal/audio/artists 69 | * content://media/internal/audio/genres 70 | * content://media/internal/audio/media 71 | * content://media/internal/audio/playlists 72 | * content://media/internal/images/media 73 | * content://media/internal/images/thumbnails 74 | * content://media/internal/video/media 75 | * content://media/internal/video/thumbnails 76 | * content://mms 77 | * content://mms/inbox 78 | * content://mms/outbox 79 | * content://mms/part 80 | * content://mms/sent 81 | * content://mms-sms/conversations 82 | * content://mms-sms/draft 83 | * content://mms-sms/locked 84 | * content://mms-sms/search 85 | * content://settings/secure 86 | * content://settings/system 87 | * content://sms/conversations 88 | * content://sms/draft 89 | * content://sms/inbox 90 | * content://sms/outbox 91 | * content://sms/sent 92 | * content://telephony/carriers 93 | * content://user_dictionary/words 94 | 95 | License 96 | ------- 97 | This project is licensed under the [MIT License](https://raw.githubusercontent.com/jenzz/ContentProviderHelper/master/LICENSE). 98 | -------------------------------------------------------------------------------- /libs/acra-4.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/libs/acra-4.5.0.jar -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | target=android-19 2 | android.library.reference.1=../ActionBarSherlock/actionbarsherlock 3 | -------------------------------------------------------------------------------- /res/drawable-hdpi/checkbox_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-hdpi/checkbox_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi/checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-hdpi/checkbox_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/checkbox_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-mdpi/checkbox_off.png -------------------------------------------------------------------------------- /res/drawable-mdpi/checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-mdpi/checkbox_on.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/checkbox_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-xhdpi/checkbox_off.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-xhdpi/checkbox_on.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenzz/ContentProviderHelper/2837512289e91b3ae918eca183c6e37a07db0600/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/selector_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 20 | 21 |