├── .gitignore ├── IntentsLab ├── build.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── FormattedTextBuilderTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ ├── android │ │ │ └── app │ │ │ │ ├── IActivityController.aidl │ │ │ │ └── IServiceConnection.aidl │ │ └── com │ │ │ └── github │ │ │ └── michalbednarski │ │ │ └── intentslab │ │ │ ├── runas │ │ │ ├── IRemoteInterface.aidl │ │ │ └── IRemoteInterfaceRequest.aidl │ │ │ └── sandbox │ │ │ ├── ClassLoaderDescriptor.aidl │ │ │ ├── IAidlInterface.aidl │ │ │ ├── ISandbox.aidl │ │ │ ├── ISandboxedBundle.aidl │ │ │ ├── ISandboxedObject.aidl │ │ │ ├── InvokeMethodResult.aidl │ │ │ ├── SandboxedClassField.aidl │ │ │ ├── SandboxedMethod.aidl │ │ │ └── SandboxedObject.aidl │ ├── java │ │ ├── android │ │ │ └── content │ │ │ │ └── IIntentReceiver.java │ │ └── com │ │ │ └── github │ │ │ └── michalbednarski │ │ │ └── intentslab │ │ │ ├── ActivityMonitorActivity.java │ │ │ ├── AppComponentsFragment.java │ │ │ ├── AppInfoActivity.java │ │ │ ├── AssetProvider.java │ │ │ ├── FormattedTextBuilder.java │ │ │ ├── MultipleCursorAdapter.java │ │ │ ├── NameAutocompleteAdapter.java │ │ │ ├── PackageNameAutocompleteAdapter.java │ │ │ ├── PermissionInfoFragment.java │ │ │ ├── PickRecentlyRunningActivity.java │ │ │ ├── PrefsActivity.java │ │ │ ├── ReceiveBroadcastDialog.java │ │ │ ├── ReceiveBroadcastService.java │ │ │ ├── SavedItemsActivity.java │ │ │ ├── SavedItemsDatabase.java │ │ │ ├── SingleFragmentActivity.java │ │ │ ├── StartActivity.java │ │ │ ├── StartActivityMultitask.java │ │ │ ├── TextFragment.java │ │ │ ├── Utils.java │ │ │ ├── XmlPreviewBuilder.java │ │ │ ├── XmlViewerFragment.java │ │ │ ├── appinfo │ │ │ ├── MyComponentInfo.java │ │ │ ├── MyComponentInfoImpl.java │ │ │ ├── MyPackageInfo.java │ │ │ ├── MyPackageInfoImpl.java │ │ │ ├── MyPackageManager.java │ │ │ ├── MyPackageManagerImpl.java │ │ │ ├── MyPermissionInfo.java │ │ │ ├── MyPermissionInfoImpl.java │ │ │ ├── PermissionDetails.java │ │ │ ├── ScanManifestTask.java │ │ │ └── UsedAppPermissionDetails.java │ │ │ ├── bindservice │ │ │ ├── AidlControlsFragment.java │ │ │ ├── DumpSysFragment.java │ │ │ ├── InvokeAidlMethodFragment.java │ │ │ ├── SystemServicesDialog.java │ │ │ ├── UnrecognizedAidlFragment.java │ │ │ ├── callback │ │ │ │ ├── AidlImplGenerator.java │ │ │ │ ├── BaseAidlInvocationHandler.java │ │ │ │ ├── CallbackCallsFragment.java │ │ │ │ ├── CallbackInterfacesManager.java │ │ │ │ ├── CreateCallbackDialog.java │ │ │ │ └── LocalAidlInvocationHandlerImpl.java │ │ │ └── manager │ │ │ │ ├── AidlInterface.java │ │ │ │ ├── BaseServiceFragment.java │ │ │ │ ├── BaseServiceFragmentWithMenu.java │ │ │ │ ├── BindServiceDescriptor.java │ │ │ │ ├── BindServiceManager.java │ │ │ │ ├── LocalAidlInterface.java │ │ │ │ ├── SandboxedAidlInterface.java │ │ │ │ ├── SandboxedAidlInterfaceImpl.java │ │ │ │ ├── ServiceDescriptor.java │ │ │ │ └── SystemServiceDescriptor.java │ │ │ ├── browser │ │ │ ├── ApplicationFetcher.java │ │ │ ├── AsyncTaskFetcher.java │ │ │ ├── BrowseComponentsActivity.java │ │ │ ├── BrowseComponentsFragment.java │ │ │ ├── Categorizer.java │ │ │ ├── ComponentFetcher.java │ │ │ ├── ComponentInfoFragment.java │ │ │ ├── Fetcher.java │ │ │ ├── FetcherManager.java │ │ │ ├── FetcherOptionsDialog.java │ │ │ ├── PermissionsFetcher.java │ │ │ ├── RegisteredReceiverFetcher.java │ │ │ ├── RegisteredReceiverInfo.java │ │ │ ├── RegisteredReceiverInfoFragment.java │ │ │ └── RegisteredReceiversParser.java │ │ │ ├── clipboard │ │ │ ├── ClipboardActivity.java │ │ │ ├── ClipboardItemsFragment.java │ │ │ ├── ClipboardService.java │ │ │ └── KeepAliveService.java │ │ │ ├── editor │ │ │ ├── BundleAdapter.java │ │ │ ├── ComponentPickerDialogFragment.java │ │ │ ├── FindComponentDialog.java │ │ │ ├── Flag.java │ │ │ ├── IntentEditorActivity.java │ │ │ ├── IntentEditorConstants.java │ │ │ ├── IntentEditorInterceptedActivity.java │ │ │ ├── IntentEditorPanel.java │ │ │ ├── IntentExtrasFragment.java │ │ │ ├── IntentFlagsFragment.java │ │ │ ├── IntentGeneralFragment.java │ │ │ ├── NewBundleEntryDialog.java │ │ │ ├── NewExtraPickerDialog.java │ │ │ └── NewExtraSuggesterByAction.java │ │ │ ├── providerlab │ │ │ ├── AdvancedQueryActivity.java │ │ │ ├── DataGridView.java │ │ │ ├── ProviderInfoFragment.java │ │ │ ├── QueryResultActivity.java │ │ │ ├── UriAutocompleteAdapter.java │ │ │ └── proxy │ │ │ │ ├── LogViewerActivity.java │ │ │ │ ├── LogViewerFragment.java │ │ │ │ ├── ProxyProvider.java │ │ │ │ ├── ProxyProviderDatabase.java │ │ │ │ └── ProxyProviderForGrantUriPermission.java │ │ │ ├── runas │ │ │ ├── ActivityManagerWrapper.java │ │ │ ├── CrossVersionReflectedMethod.java │ │ │ ├── RealIIntentReceiver.java │ │ │ ├── RemoteEntryPoint.java │ │ │ ├── RemoteInterfaceImpl.java │ │ │ ├── RunAsInitReceiver.java │ │ │ ├── RunAsManager.java │ │ │ └── RunAsSelectorView.java │ │ │ ├── sandbox │ │ │ ├── ClassLoaderDescriptor.java │ │ │ ├── InvokeMethodResult.java │ │ │ ├── SandboxInstallRequestDialog.java │ │ │ ├── SandboxManager.java │ │ │ ├── SandboxedClassField.java │ │ │ ├── SandboxedMethod.java │ │ │ ├── SandboxedObject.java │ │ │ ├── SandboxedType.java │ │ │ └── remote │ │ │ │ ├── IsolatedService.java │ │ │ │ ├── SandboxImpl.java │ │ │ │ ├── SandboxInit.java │ │ │ │ ├── SandboxedBundleImpl.java │ │ │ │ ├── SandboxedObjectImpl.java │ │ │ │ └── UntrustedCodeLoader.java │ │ │ ├── uihelpers │ │ │ ├── CategorizedAdapter.java │ │ │ ├── FragmentTabMergingPagerAdapter.java │ │ │ ├── FragmentTabsActivity.java │ │ │ └── MasterDetailActivity.java │ │ │ └── valueeditors │ │ │ ├── ArrayEditorFragment.java │ │ │ ├── BundleEditorFragment.java │ │ │ ├── ConstructorDialog.java │ │ │ ├── EnumEditor.java │ │ │ ├── StringLikeItemEditor.java │ │ │ ├── framework │ │ │ ├── ChildFragmentWorkaround.java │ │ │ ├── CreateNewDialog.java │ │ │ ├── Editor.java │ │ │ ├── EditorLauncher.java │ │ │ ├── EditorLauncherForMasterDetail.java │ │ │ ├── SingleEditorActivity.java │ │ │ ├── ValueEditorDialogFragment.java │ │ │ └── ValueEditorFragment.java │ │ │ ├── methodcall │ │ │ └── ArgumentsEditorHelper.java │ │ │ └── object │ │ │ ├── GettersInvoker.java │ │ │ ├── InlineValueEditor.java │ │ │ ├── InlineValueEditorsLayout.java │ │ │ ├── LocalObjectEditorHelper.java │ │ │ ├── ObjectEditorFragment.java │ │ │ ├── ObjectEditorHelper.java │ │ │ └── SandboxedObjectEditorHelper.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_action_accept.png │ │ ├── ic_action_add.png │ │ ├── ic_action_search.png │ │ ├── ic_action_send.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_checked.png │ │ ├── ic_menu_system_apps.png │ │ ├── ic_menu_unchecked.png │ │ ├── ic_menu_user_apps.png │ │ └── ic_skip_next_black_24dp.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ ├── ic_action_accept.png │ │ ├── ic_action_add.png │ │ ├── ic_action_search.png │ │ ├── ic_action_send.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_checked.png │ │ ├── ic_menu_system_apps.png │ │ ├── ic_menu_unchecked.png │ │ ├── ic_menu_user_apps.png │ │ └── ic_skip_next_black_24dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_accept.png │ │ ├── ic_action_add.png │ │ ├── ic_action_search.png │ │ ├── ic_action_send.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_checked.png │ │ ├── ic_menu_system_apps.png │ │ ├── ic_menu_unchecked.png │ │ ├── ic_menu_user_apps.png │ │ └── ic_skip_next_black_24dp.png │ │ ├── drawable-xxhdpi │ │ └── ic_skip_next_black_24dp.png │ │ ├── drawable-xxxhdpi │ │ └── ic_skip_next_black_24dp.png │ │ ├── layout-large-land │ │ └── activity_start.xml │ │ ├── layout-large │ │ ├── structure_editor_row_with_textfield.xml │ │ └── strucutre_editor_row_with_button.xml │ │ ├── layout-xlarge │ │ └── activity_start.xml │ │ ├── layout │ │ ├── activity_component_info.xml │ │ ├── activity_pick_recenly_running.xml │ │ ├── activity_provider_info.xml │ │ ├── activity_start.xml │ │ ├── activity_start_with_saved_items.xml │ │ ├── add_extra.xml │ │ ├── advanced_query.xml │ │ ├── apps_filter.xml │ │ ├── attach_intent_filter.xml │ │ ├── browse_components.xml │ │ ├── browse_components_top_options.xml │ │ ├── category_row.xml │ │ ├── components_filter.xml │ │ ├── content_value.xml │ │ ├── dialog_receive_broadcast.xml │ │ ├── dialog_stringlike_editor.xml │ │ ├── intent_editor_flags.xml │ │ ├── intent_editor_general.xml │ │ ├── intent_editor_general_with_extras.xml │ │ ├── list_item_loading.xml │ │ ├── list_item_loading2.xml │ │ ├── master_detail_base.xml │ │ ├── permissions_filter.xml │ │ ├── registered_receivers_filter.xml │ │ ├── save_as.xml │ │ ├── saved_items.xml │ │ ├── selection_arg.xml │ │ ├── simple_list_item_2_with_icon.xml │ │ ├── structure_editor_row_with_textfield.xml │ │ ├── strucutre_editor_row_with_button.xml │ │ ├── strucutre_editor_wrapper.xml │ │ ├── tabhost_fragment.xml │ │ ├── unrecognized_aidl.xml │ │ └── xml_viewer.xml │ │ ├── menu-v11 │ │ └── text_viewer.xml │ │ ├── menu │ │ ├── activity_browse_apps.xml │ │ ├── activity_intent_editor.xml │ │ ├── activity_monitor.xml │ │ ├── activity_pick_recenly_running.xml │ │ ├── activity_start.xml │ │ ├── aidl_method.xml │ │ ├── bound_service.xml │ │ ├── component_info.xml │ │ ├── editor_fragment.xml │ │ ├── intent_editor_general.xml │ │ ├── parcelable_strucutre_editor.xml │ │ ├── proxy_operations_log.xml │ │ ├── query.xml │ │ ├── query_result.xml │ │ ├── received_broadcasts.xml │ │ └── text_viewer.xml │ │ ├── raw │ │ ├── activity_actions.txt │ │ └── broadcast_actions.txt │ │ ├── values-large-land │ │ └── booleans.xml │ │ ├── values-large │ │ └── booleans.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-xlarge │ │ └── booleans.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── booleans.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── intent_extras.xml │ │ ├── intent_flags.xml │ │ └── prefs.xml │ └── test │ └── java │ └── com │ └── github │ └── michalbednarski │ └── intentslab │ └── runas │ └── CrossVersionReflectedMethodTest.java ├── IntentsLabSandbox ├── .gitignore ├── build.gradle ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── sandbox │ │ ├── ResetReceiver.java │ │ └── SandboxService.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── LICENSE ├── README ├── XposedHooks ├── .gitignore ├── XposedBridgeApi.jar ├── build.gradle ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── xposedhooks │ │ └── internal │ │ ├── IBundleTracker.aidl │ │ ├── IIntentTracker.aidl │ │ ├── IInternalInterface.aidl │ │ ├── IRefreshPermissionsCallback.aidl │ │ └── StackTraceWrapper.aidl │ ├── assets │ └── xposed_init │ ├── java │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── xposedhooks │ │ ├── app │ │ ├── AllowedAppsDb.java │ │ ├── QueryPermissionsReceiver.java │ │ └── RequestPermissionActivity.java │ │ └── internal │ │ ├── ModuleInit.java │ │ ├── ParcelOffsets.java │ │ ├── SystemService.java │ │ ├── XHUtils.java │ │ ├── apiimpl │ │ ├── BaseTrackerImpl.java │ │ ├── BundleTrackerImpl.java │ │ ├── IntentTrackerImpl.java │ │ └── XIntentsLabImpl.java │ │ └── trackers │ │ ├── BundleTrackerModule.java │ │ ├── IntentTrackerModule.java │ │ └── ObjectTrackerModule.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── permission_request.xml │ ├── values-large │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── XposedHooksApi ├── .gitignore ├── build.gradle ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── xposedhooks │ │ └── api │ │ └── ReadBundleEntryInfo.aidl │ ├── java │ └── com │ │ └── github │ │ └── michalbednarski │ │ └── intentslab │ │ └── xposedhooks │ │ └── api │ │ ├── BaseTracker.java │ │ ├── BundleTracker.java │ │ ├── IntentTracker.java │ │ ├── ReadBundleEntryInfo.java │ │ ├── TrackerUpdateListener.java │ │ ├── XIntentsLab.java │ │ └── XIntentsLabStatic.java │ └── res │ └── .gitkeep ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ic_launcher-web.png ├── lint.xml ├── proguard-project.txt ├── project.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/.gitignore -------------------------------------------------------------------------------- /IntentsLab/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/build.gradle -------------------------------------------------------------------------------- /IntentsLab/src/androidTest/java/com/github/michalbednarski/intentslab/FormattedTextBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/androidTest/java/com/github/michalbednarski/intentslab/FormattedTextBuilderTest.java -------------------------------------------------------------------------------- /IntentsLab/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/android/app/IActivityController.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/android/app/IActivityController.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/android/app/IServiceConnection.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/android/app/IServiceConnection.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/runas/IRemoteInterface.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/runas/IRemoteInterface.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/runas/IRemoteInterfaceRequest.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/runas/IRemoteInterfaceRequest.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ClassLoaderDescriptor.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ClassLoaderDescriptor.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/IAidlInterface.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/IAidlInterface.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandbox.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandbox.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandboxedBundle.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandboxedBundle.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandboxedObject.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/ISandboxedObject.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/InvokeMethodResult.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/InvokeMethodResult.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedClassField.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedClassField.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedMethod.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedMethod.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedObject.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/aidl/com/github/michalbednarski/intentslab/sandbox/SandboxedObject.aidl -------------------------------------------------------------------------------- /IntentsLab/src/main/java/android/content/IIntentReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/android/content/IIntentReceiver.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ActivityMonitorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ActivityMonitorActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AppComponentsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AppComponentsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AppInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AppInfoActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AssetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/AssetProvider.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/FormattedTextBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/FormattedTextBuilder.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/MultipleCursorAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/MultipleCursorAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/NameAutocompleteAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/NameAutocompleteAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PackageNameAutocompleteAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PackageNameAutocompleteAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PermissionInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PermissionInfoFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PickRecentlyRunningActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PickRecentlyRunningActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PrefsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/PrefsActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ReceiveBroadcastDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ReceiveBroadcastDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ReceiveBroadcastService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/ReceiveBroadcastService.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SavedItemsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SavedItemsActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SavedItemsDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SavedItemsDatabase.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SingleFragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/SingleFragmentActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/StartActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/StartActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/StartActivityMultitask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/StartActivityMultitask.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/TextFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/TextFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/Utils.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/XmlPreviewBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/XmlPreviewBuilder.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/XmlViewerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/XmlViewerFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyComponentInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyComponentInfo.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyComponentInfoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyComponentInfoImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageInfo.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageInfoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageInfoImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPackageManagerImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPermissionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPermissionInfo.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPermissionInfoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/MyPermissionInfoImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/PermissionDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/PermissionDetails.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/ScanManifestTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/ScanManifestTask.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/UsedAppPermissionDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/appinfo/UsedAppPermissionDetails.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/AidlControlsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/AidlControlsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/DumpSysFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/DumpSysFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/InvokeAidlMethodFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/InvokeAidlMethodFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/SystemServicesDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/SystemServicesDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/UnrecognizedAidlFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/UnrecognizedAidlFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/AidlImplGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/AidlImplGenerator.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/BaseAidlInvocationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/BaseAidlInvocationHandler.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CallbackCallsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CallbackCallsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CallbackInterfacesManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CallbackInterfacesManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CreateCallbackDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/CreateCallbackDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/LocalAidlInvocationHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/callback/LocalAidlInvocationHandlerImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/AidlInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/AidlInterface.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BaseServiceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BaseServiceFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BaseServiceFragmentWithMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BaseServiceFragmentWithMenu.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BindServiceDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BindServiceDescriptor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BindServiceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/BindServiceManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/LocalAidlInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/LocalAidlInterface.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SandboxedAidlInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SandboxedAidlInterface.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SandboxedAidlInterfaceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SandboxedAidlInterfaceImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/ServiceDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/ServiceDescriptor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SystemServiceDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/bindservice/manager/SystemServiceDescriptor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ApplicationFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ApplicationFetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/AsyncTaskFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/AsyncTaskFetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/BrowseComponentsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/BrowseComponentsActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/BrowseComponentsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/BrowseComponentsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/Categorizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/Categorizer.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ComponentFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ComponentFetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ComponentInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/ComponentInfoFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/Fetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/Fetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/FetcherManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/FetcherManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/FetcherOptionsDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/FetcherOptionsDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/PermissionsFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/PermissionsFetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverFetcher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverInfo.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiverInfoFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiversParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/browser/RegisteredReceiversParser.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardItemsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardItemsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/ClipboardService.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/KeepAliveService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/clipboard/KeepAliveService.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/BundleAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/BundleAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/ComponentPickerDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/ComponentPickerDialogFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/FindComponentDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/FindComponentDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/Flag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/Flag.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorConstants.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorInterceptedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorInterceptedActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentEditorPanel.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentExtrasFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentExtrasFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentFlagsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentFlagsFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentGeneralFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/IntentGeneralFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewBundleEntryDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewBundleEntryDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewExtraPickerDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewExtraPickerDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewExtraSuggesterByAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/editor/NewExtraSuggesterByAction.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/AdvancedQueryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/AdvancedQueryActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/DataGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/DataGridView.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/ProviderInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/ProviderInfoFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/QueryResultActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/QueryResultActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/UriAutocompleteAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/UriAutocompleteAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/LogViewerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/LogViewerActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/LogViewerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/LogViewerFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProvider.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProviderDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProviderDatabase.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProviderForGrantUriPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/providerlab/proxy/ProxyProviderForGrantUriPermission.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/ActivityManagerWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/ActivityManagerWrapper.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/CrossVersionReflectedMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/CrossVersionReflectedMethod.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RealIIntentReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RealIIntentReceiver.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RemoteEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RemoteEntryPoint.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RemoteInterfaceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RemoteInterfaceImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsInitReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsInitReceiver.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsSelectorView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/runas/RunAsSelectorView.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/ClassLoaderDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/ClassLoaderDescriptor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/InvokeMethodResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/InvokeMethodResult.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxInstallRequestDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxInstallRequestDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxManager.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedClassField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedClassField.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedMethod.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedObject.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxedType.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/IsolatedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/IsolatedService.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxInit.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxedBundleImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxedBundleImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxedObjectImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/SandboxedObjectImpl.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/UntrustedCodeLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/sandbox/remote/UntrustedCodeLoader.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/CategorizedAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/CategorizedAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/FragmentTabMergingPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/FragmentTabMergingPagerAdapter.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/FragmentTabsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/FragmentTabsActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/MasterDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/uihelpers/MasterDetailActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/ArrayEditorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/ArrayEditorFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/BundleEditorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/BundleEditorFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/ConstructorDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/ConstructorDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/EnumEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/EnumEditor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/StringLikeItemEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/StringLikeItemEditor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ChildFragmentWorkaround.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ChildFragmentWorkaround.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/CreateNewDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/CreateNewDialog.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/Editor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/Editor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/EditorLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/EditorLauncher.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/EditorLauncherForMasterDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/EditorLauncherForMasterDetail.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/SingleEditorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/SingleEditorActivity.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ValueEditorDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ValueEditorDialogFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ValueEditorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/framework/ValueEditorFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/methodcall/ArgumentsEditorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/methodcall/ArgumentsEditorHelper.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/GettersInvoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/GettersInvoker.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/InlineValueEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/InlineValueEditor.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/InlineValueEditorsLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/InlineValueEditorsLayout.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/LocalObjectEditorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/LocalObjectEditorHelper.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/ObjectEditorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/ObjectEditorFragment.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/ObjectEditorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/ObjectEditorHelper.java -------------------------------------------------------------------------------- /IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/SandboxedObjectEditorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/java/com/github/michalbednarski/intentslab/valueeditors/object/SandboxedObjectEditorHelper.java -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_action_accept.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_action_add.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_action_send.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_menu_checked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_menu_system_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_menu_system_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_menu_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_menu_unchecked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_menu_user_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_menu_user_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-hdpi/ic_skip_next_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-hdpi/ic_skip_next_black_24dp.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_action_accept.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_action_add.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_action_send.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_menu_checked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_menu_system_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_menu_system_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_menu_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_menu_unchecked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_menu_user_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_menu_user_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-mdpi/ic_skip_next_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-mdpi/ic_skip_next_black_24dp.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_action_accept.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_action_add.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_action_send.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_menu_checked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_menu_system_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_menu_system_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_menu_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_menu_unchecked.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_menu_user_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_menu_user_apps.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xhdpi/ic_skip_next_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xhdpi/ic_skip_next_black_24dp.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xxhdpi/ic_skip_next_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xxhdpi/ic_skip_next_black_24dp.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/drawable-xxxhdpi/ic_skip_next_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/drawable-xxxhdpi/ic_skip_next_black_24dp.png -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout-large-land/activity_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout-large-land/activity_start.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout-large/structure_editor_row_with_textfield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout-large/structure_editor_row_with_textfield.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout-large/strucutre_editor_row_with_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout-large/strucutre_editor_row_with_button.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout-xlarge/activity_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout-xlarge/activity_start.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/activity_component_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/activity_component_info.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/activity_pick_recenly_running.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/activity_pick_recenly_running.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/activity_provider_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/activity_provider_info.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/activity_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/activity_start.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/activity_start_with_saved_items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/activity_start_with_saved_items.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/add_extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/add_extra.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/advanced_query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/advanced_query.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/apps_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/apps_filter.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/attach_intent_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/attach_intent_filter.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/browse_components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/browse_components.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/browse_components_top_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/browse_components_top_options.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/category_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/category_row.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/components_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/components_filter.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/content_value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/content_value.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/dialog_receive_broadcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/dialog_receive_broadcast.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/dialog_stringlike_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/dialog_stringlike_editor.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/intent_editor_flags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/intent_editor_flags.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/intent_editor_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/intent_editor_general.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/intent_editor_general_with_extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/intent_editor_general_with_extras.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/list_item_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/list_item_loading.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/list_item_loading2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/list_item_loading2.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/master_detail_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/master_detail_base.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/permissions_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/permissions_filter.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/registered_receivers_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/registered_receivers_filter.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/save_as.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/save_as.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/saved_items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/saved_items.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/selection_arg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/selection_arg.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/simple_list_item_2_with_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/simple_list_item_2_with_icon.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/structure_editor_row_with_textfield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/structure_editor_row_with_textfield.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/strucutre_editor_row_with_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/strucutre_editor_row_with_button.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/strucutre_editor_wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/strucutre_editor_wrapper.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/tabhost_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/tabhost_fragment.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/unrecognized_aidl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/unrecognized_aidl.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/layout/xml_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/layout/xml_viewer.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu-v11/text_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu-v11/text_viewer.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/activity_browse_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/activity_browse_apps.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/activity_intent_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/activity_intent_editor.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/activity_monitor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/activity_monitor.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/activity_pick_recenly_running.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/activity_pick_recenly_running.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/activity_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/activity_start.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/aidl_method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/aidl_method.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/bound_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/bound_service.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/component_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/component_info.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/editor_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/editor_fragment.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/intent_editor_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/intent_editor_general.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/parcelable_strucutre_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/parcelable_strucutre_editor.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/proxy_operations_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/proxy_operations_log.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/query.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/query_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/query_result.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/received_broadcasts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/received_broadcasts.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/menu/text_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/menu/text_viewer.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/raw/activity_actions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/raw/activity_actions.txt -------------------------------------------------------------------------------- /IntentsLab/src/main/res/raw/broadcast_actions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/raw/broadcast_actions.txt -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values-large-land/booleans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values-large-land/booleans.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values-large/booleans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values-large/booleans.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values-xlarge/booleans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values-xlarge/booleans.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/booleans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/booleans.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/xml/intent_extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/xml/intent_extras.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/xml/intent_flags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/xml/intent_flags.xml -------------------------------------------------------------------------------- /IntentsLab/src/main/res/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/main/res/xml/prefs.xml -------------------------------------------------------------------------------- /IntentsLab/src/test/java/com/github/michalbednarski/intentslab/runas/CrossVersionReflectedMethodTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLab/src/test/java/com/github/michalbednarski/intentslab/runas/CrossVersionReflectedMethodTest.java -------------------------------------------------------------------------------- /IntentsLabSandbox/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /IntentsLabSandbox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/build.gradle -------------------------------------------------------------------------------- /IntentsLabSandbox/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/proguard-rules.txt -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/java/com/github/michalbednarski/intentslab/sandbox/ResetReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/java/com/github/michalbednarski/intentslab/sandbox/ResetReceiver.java -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/java/com/github/michalbednarski/intentslab/sandbox/SandboxService.java -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentsLabSandbox/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/IntentsLabSandbox/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/README -------------------------------------------------------------------------------- /XposedHooks/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /XposedHooks/XposedBridgeApi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/XposedBridgeApi.jar -------------------------------------------------------------------------------- /XposedHooks/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/build.gradle -------------------------------------------------------------------------------- /XposedHooks/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/proguard-rules.txt -------------------------------------------------------------------------------- /XposedHooks/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IBundleTracker.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IBundleTracker.aidl -------------------------------------------------------------------------------- /XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IIntentTracker.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IIntentTracker.aidl -------------------------------------------------------------------------------- /XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IInternalInterface.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IInternalInterface.aidl -------------------------------------------------------------------------------- /XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IRefreshPermissionsCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/IRefreshPermissionsCallback.aidl -------------------------------------------------------------------------------- /XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/StackTraceWrapper.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/internal/StackTraceWrapper.aidl -------------------------------------------------------------------------------- /XposedHooks/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/assets/xposed_init -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/AllowedAppsDb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/AllowedAppsDb.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/QueryPermissionsReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/QueryPermissionsReceiver.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/RequestPermissionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/app/RequestPermissionActivity.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/ModuleInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/ModuleInit.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/ParcelOffsets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/ParcelOffsets.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/SystemService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/SystemService.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/XHUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/XHUtils.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/BaseTrackerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/BaseTrackerImpl.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/BundleTrackerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/BundleTrackerImpl.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/IntentTrackerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/IntentTrackerImpl.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/XIntentsLabImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/apiimpl/XIntentsLabImpl.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/BundleTrackerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/BundleTrackerModule.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/IntentTrackerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/IntentTrackerModule.java -------------------------------------------------------------------------------- /XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/ObjectTrackerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/internal/trackers/ObjectTrackerModule.java -------------------------------------------------------------------------------- /XposedHooks/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedHooks/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedHooks/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedHooks/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedHooks/src/main/res/layout/permission_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/layout/permission_request.xml -------------------------------------------------------------------------------- /XposedHooks/src/main/res/values-large/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/values-large/styles.xml -------------------------------------------------------------------------------- /XposedHooks/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /XposedHooks/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooks/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /XposedHooksApi/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /XposedHooksApi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/build.gradle -------------------------------------------------------------------------------- /XposedHooksApi/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/proguard-rules.txt -------------------------------------------------------------------------------- /XposedHooksApi/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /XposedHooksApi/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/api/ReadBundleEntryInfo.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/aidl/com/github/michalbednarski/intentslab/xposedhooks/api/ReadBundleEntryInfo.aidl -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/BaseTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/BaseTracker.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/BundleTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/BundleTracker.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/IntentTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/IntentTracker.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/ReadBundleEntryInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/ReadBundleEntryInfo.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/TrackerUpdateListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/TrackerUpdateListener.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/XIntentsLab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/XIntentsLab.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/XIntentsLabStatic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/XposedHooksApi/src/main/java/com/github/michalbednarski/intentslab/xposedhooks/api/XIntentsLabStatic.java -------------------------------------------------------------------------------- /XposedHooksApi/src/main/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/project.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/IntentsLab/HEAD/settings.gradle --------------------------------------------------------------------------------