├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── TrackBuddy.iml ├── app ├── .gitignore ├── TrackBuddy083.apk ├── app-release.apk ├── app.iml ├── build.gradle ├── manifest-merger-release-report.txt ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── byteshaft │ │ └── trackbuddy │ │ ├── ContactsAdapter.java │ │ ├── DrawerAdapter.java │ │ ├── Helper.java │ │ ├── LocationService.java │ │ ├── MainActivity.java │ │ └── SMSManager.java │ └── res │ ├── drawable-xxhdpi │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── logo_main.png │ └── logo_name.png │ ├── drawable-xxxhdpi │ ├── ic_arrow.png │ ├── ic_list.png │ ├── ic_siren.png │ ├── ic_speed.png │ ├── ic_tracker.png │ └── playservices_icon.png │ ├── drawable │ ├── border_drawable.xml │ ├── checked_checkbox.png │ ├── custom_checkbox.xml │ ├── firstrun_bg.xml │ └── unchecked_checkbox.png │ ├── ic_launcher-web.png │ ├── layout │ ├── activity_main.xml │ ├── dialog_four.xml │ ├── dialog_one.xml │ ├── dialog_three.xml │ ├── dialog_two.xml │ ├── drawer_layout.xml │ └── row.xml │ ├── menu │ └── menu_main.xml │ ├── raw │ └── siren.mp3 │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── chips ├── AndroidManifest.xml ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── ex │ │ │ │ │ └── chips │ │ │ │ │ └── BuildConfig.java │ │ │ ├── release │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── ex │ │ │ │ │ └── chips │ │ │ │ │ └── BuildConfig.java │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ └── R.java │ │ │ ├── release │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ └── R.java │ │ │ └── test │ │ │ └── debug │ │ │ └── com │ │ │ └── android │ │ │ └── ex │ │ │ └── chips │ │ │ ├── R.java │ │ │ └── test │ │ │ └── R.java │ ├── intermediates │ │ ├── bundles │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ └── chip_delete.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ │ └── more_item.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── release │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── ex │ │ │ │ │ └── chips │ │ │ │ │ ├── AccountSpecifier.class │ │ │ │ │ ├── BaseRecipientAdapter$1.class │ │ │ │ │ ├── BaseRecipientAdapter$DefaultFilter.class │ │ │ │ │ ├── BaseRecipientAdapter$DefaultFilterResult.class │ │ │ │ │ ├── BaseRecipientAdapter$DelayedMessageHandler.class │ │ │ │ │ ├── BaseRecipientAdapter$DirectoryFilter.class │ │ │ │ │ ├── BaseRecipientAdapter$DirectoryListQuery.class │ │ │ │ │ ├── BaseRecipientAdapter$DirectorySearchParams.class │ │ │ │ │ ├── BaseRecipientAdapter$EntriesUpdatedObserver.class │ │ │ │ │ ├── BaseRecipientAdapter$PhotoQuery.class │ │ │ │ │ ├── BaseRecipientAdapter$TemporaryEntry.class │ │ │ │ │ ├── BaseRecipientAdapter.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ChipsUtil.class │ │ │ │ │ ├── DropdownChipLayouter$1.class │ │ │ │ │ ├── DropdownChipLayouter$AdapterType.class │ │ │ │ │ ├── DropdownChipLayouter$ViewHolder.class │ │ │ │ │ ├── DropdownChipLayouter.class │ │ │ │ │ ├── Queries$1.class │ │ │ │ │ ├── Queries$2.class │ │ │ │ │ ├── Queries$Query.class │ │ │ │ │ ├── Queries.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ ├── RecipientAlternatesAdapter$OnCheckedItemChangedListener.class │ │ │ │ │ ├── RecipientAlternatesAdapter$RecipientMatchCallback.class │ │ │ │ │ ├── RecipientAlternatesAdapter.class │ │ │ │ │ ├── RecipientEditTextView$1.class │ │ │ │ │ ├── RecipientEditTextView$10.class │ │ │ │ │ ├── RecipientEditTextView$2.class │ │ │ │ │ ├── RecipientEditTextView$3.class │ │ │ │ │ ├── RecipientEditTextView$4.class │ │ │ │ │ ├── RecipientEditTextView$5.class │ │ │ │ │ ├── RecipientEditTextView$6.class │ │ │ │ │ ├── RecipientEditTextView$7.class │ │ │ │ │ ├── RecipientEditTextView$8.class │ │ │ │ │ ├── RecipientEditTextView$9.class │ │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1$1.class │ │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1.class │ │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask.class │ │ │ │ │ ├── RecipientEditTextView$ItemSelectedListener.class │ │ │ │ │ ├── RecipientEditTextView$MoreImageSpan.class │ │ │ │ │ ├── RecipientEditTextView$RecipientChipShadow.class │ │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$1.class │ │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$2.class │ │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask.class │ │ │ │ │ ├── RecipientEditTextView$RecipientTextWatcher.class │ │ │ │ │ ├── RecipientEditTextView.class │ │ │ │ │ ├── RecipientEntry.class │ │ │ │ │ ├── SingleRecipientArrayAdapter.class │ │ │ │ │ └── recipientchip │ │ │ │ │ ├── BaseRecipientChip.class │ │ │ │ │ ├── DrawableRecipientChip.class │ │ │ │ │ ├── InvisibleRecipientChip.class │ │ │ │ │ ├── SimpleRecipientChip.class │ │ │ │ │ └── VisibleRecipientChip.class │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ ├── AccountSpecifier.class │ │ │ │ ├── BaseRecipientAdapter$1.class │ │ │ │ ├── BaseRecipientAdapter$DefaultFilter.class │ │ │ │ ├── BaseRecipientAdapter$DefaultFilterResult.class │ │ │ │ ├── BaseRecipientAdapter$DelayedMessageHandler.class │ │ │ │ ├── BaseRecipientAdapter$DirectoryFilter.class │ │ │ │ ├── BaseRecipientAdapter$DirectoryListQuery.class │ │ │ │ ├── BaseRecipientAdapter$DirectorySearchParams.class │ │ │ │ ├── BaseRecipientAdapter$EntriesUpdatedObserver.class │ │ │ │ ├── BaseRecipientAdapter$PhotoQuery.class │ │ │ │ ├── BaseRecipientAdapter$TemporaryEntry.class │ │ │ │ ├── BaseRecipientAdapter.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ChipsUtil.class │ │ │ │ ├── DropdownChipLayouter$1.class │ │ │ │ ├── DropdownChipLayouter$AdapterType.class │ │ │ │ ├── DropdownChipLayouter$ViewHolder.class │ │ │ │ ├── DropdownChipLayouter.class │ │ │ │ ├── Queries$1.class │ │ │ │ ├── Queries$2.class │ │ │ │ ├── Queries$Query.class │ │ │ │ ├── Queries.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── RecipientAlternatesAdapter$OnCheckedItemChangedListener.class │ │ │ │ ├── RecipientAlternatesAdapter$RecipientMatchCallback.class │ │ │ │ ├── RecipientAlternatesAdapter.class │ │ │ │ ├── RecipientEditTextView$1.class │ │ │ │ ├── RecipientEditTextView$10.class │ │ │ │ ├── RecipientEditTextView$2.class │ │ │ │ ├── RecipientEditTextView$3.class │ │ │ │ ├── RecipientEditTextView$4.class │ │ │ │ ├── RecipientEditTextView$5.class │ │ │ │ ├── RecipientEditTextView$6.class │ │ │ │ ├── RecipientEditTextView$7.class │ │ │ │ ├── RecipientEditTextView$8.class │ │ │ │ ├── RecipientEditTextView$9.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1$1.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask.class │ │ │ │ ├── RecipientEditTextView$ItemSelectedListener.class │ │ │ │ ├── RecipientEditTextView$MoreImageSpan.class │ │ │ │ ├── RecipientEditTextView$RecipientChipShadow.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$1.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$2.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask.class │ │ │ │ ├── RecipientEditTextView$RecipientTextWatcher.class │ │ │ │ ├── RecipientEditTextView.class │ │ │ │ ├── RecipientEntry.class │ │ │ │ ├── SingleRecipientArrayAdapter.class │ │ │ │ └── recipientchip │ │ │ │ ├── BaseRecipientChip.class │ │ │ │ ├── DrawableRecipientChip.class │ │ │ │ ├── InvisibleRecipientChip.class │ │ │ │ ├── SimpleRecipientChip.class │ │ │ │ └── VisibleRecipientChip.class │ │ ├── exploded-aar │ │ │ └── com.android.support │ │ │ │ └── support-v4 │ │ │ │ └── 20.0.0 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── aidl │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── v4 │ │ │ │ │ └── app │ │ │ │ │ └── INotificationSideChannel.aidl │ │ │ │ ├── classes.jar │ │ │ │ └── libs │ │ │ │ └── internal_impl-20.0.0.jar │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── debug │ │ │ │ │ └── dependency.store │ │ │ │ ├── release │ │ │ │ │ └── dependency.store │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ ├── release │ │ │ │ │ └── merger.xml │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── mergeResources │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ ├── release │ │ │ │ │ └── merger.xml │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── packageResources │ │ │ │ ├── debug │ │ │ │ └── merger.xml │ │ │ │ └── release │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── test │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── tmp │ │ │ │ └── manifestMerger3812734759510249084.xml │ │ ├── res │ │ │ ├── debug │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── release │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources-debug-test.ap_ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ └── symbols │ │ │ └── test │ │ │ └── debug │ │ │ └── R.txt │ ├── outputs │ │ └── aar │ │ │ ├── chips-debug.aar │ │ │ └── chips-release.aar │ └── tmp │ │ ├── packageDebugJar │ │ └── MANIFEST.MF │ │ └── packageReleaseJar │ │ └── MANIFEST.MF ├── chips.iml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── res │ ├── drawable-hdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ ├── chip_delete.png │ │ └── ic_contact_picture.png │ ├── drawable-xhdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ ├── chip_delete.png │ │ └── ic_contact_picture.png │ ├── drawable-xxhdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ └── chip_delete.png │ ├── drawable │ │ ├── list_item_font_primary.xml │ │ └── list_item_font_secondary.xml │ ├── layout │ │ ├── chips_alternate_item.xml │ │ ├── chips_recipient_dropdown_item.xml │ │ ├── copy_chip_dialog_layout.xml │ │ └── more_item.xml │ └── values │ │ ├── attrs.xml │ │ ├── dimen.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── android │ └── ex │ └── chips │ ├── AccountSpecifier.java │ ├── BaseRecipientAdapter.java │ ├── ChipsUtil.java │ ├── DropdownChipLayouter.java │ ├── Queries.java │ ├── RecipientAlternatesAdapter.java │ ├── RecipientEditTextView.java │ ├── RecipientEntry.java │ ├── SingleRecipientArrayAdapter.java │ └── recipientchip │ ├── BaseRecipientChip.java │ ├── DrawableRecipientChip.java │ ├── InvisibleRecipientChip.java │ ├── SimpleRecipientChip.java │ └── VisibleRecipientChip.java ├── customEditText ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── debug │ │ │ │ └── net │ │ │ │ │ └── robertli │ │ │ │ │ └── android │ │ │ │ │ └── contactsedittext │ │ │ │ │ └── BuildConfig.java │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── net │ │ │ │ └── robertli │ │ │ │ └── android │ │ │ │ └── contactsedittext │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── debug │ │ │ └── net │ │ │ │ └── robertli │ │ │ │ └── android │ │ │ │ └── contactsedittext │ │ │ │ └── R.java │ │ │ └── test │ │ │ └── debug │ │ │ └── net │ │ │ └── robertli │ │ │ └── android │ │ │ └── contactsedittext │ │ │ ├── R.java │ │ │ └── test │ │ │ └── R.java │ ├── intermediates │ │ ├── bundles │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── layout │ │ │ │ └── contacts_dropdown_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── debug │ │ │ │ └── net │ │ │ │ └── robertli │ │ │ │ └── android │ │ │ │ └── contactsedittext │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ContactsEditText$1.class │ │ │ │ ├── ContactsEditText$Contact.class │ │ │ │ ├── ContactsEditText$ContactsAdapter.class │ │ │ │ ├── ContactsEditText$ContactsQuery.class │ │ │ │ ├── ContactsEditText$Utils.class │ │ │ │ ├── ContactsEditText$ViewHolder.class │ │ │ │ ├── ContactsEditText.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$layout.class │ │ │ │ └── R.class │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── debug │ │ │ │ │ └── dependency.store │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── mergeResources │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── packageResources │ │ │ │ └── debug │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── test │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── tmp │ │ │ │ └── manifestMerger1457784396014653092.xml │ │ ├── res │ │ │ ├── resources-debug-test.ap_ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ └── ic_contact_picture_holo_light.png │ │ │ │ ├── layout │ │ │ │ └── contacts_dropdown_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ └── symbols │ │ │ └── test │ │ │ └── debug │ │ │ └── R.txt │ ├── outputs │ │ └── aar │ │ │ └── customEditText-debug.aar │ └── tmp │ │ └── packageDebugJar │ │ └── MANIFEST.MF ├── customEditText.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── net │ │ └── robertli │ │ └── android │ │ └── contactsedittext │ │ └── ContactsEditText.java │ └── res │ ├── drawable-hdpi │ └── ic_contact_picture_holo_light.png │ ├── drawable-mdpi │ └── ic_contact_picture_holo_light.png │ ├── drawable-xhdpi │ └── ic_contact_picture_holo_light.png │ ├── layout │ └── contacts_dropdown_item.xml │ └── values │ └── dimens.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── library └── chips │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── ex │ │ │ │ │ └── chips │ │ │ │ │ └── BuildConfig.java │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ └── R.java │ │ │ └── test │ │ │ └── debug │ │ │ └── com │ │ │ └── android │ │ │ └── ex │ │ │ └── chips │ │ │ ├── R.java │ │ │ └── test │ │ │ └── R.java │ ├── intermediates │ │ ├── bundles │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── ex │ │ │ │ └── chips │ │ │ │ ├── AccountSpecifier.class │ │ │ │ ├── BaseRecipientAdapter$1.class │ │ │ │ ├── BaseRecipientAdapter$DefaultFilter.class │ │ │ │ ├── BaseRecipientAdapter$DefaultFilterResult.class │ │ │ │ ├── BaseRecipientAdapter$DelayedMessageHandler.class │ │ │ │ ├── BaseRecipientAdapter$DirectoryFilter.class │ │ │ │ ├── BaseRecipientAdapter$DirectoryListQuery.class │ │ │ │ ├── BaseRecipientAdapter$DirectorySearchParams.class │ │ │ │ ├── BaseRecipientAdapter$EntriesUpdatedObserver.class │ │ │ │ ├── BaseRecipientAdapter$PhotoQuery.class │ │ │ │ ├── BaseRecipientAdapter$TemporaryEntry.class │ │ │ │ ├── BaseRecipientAdapter.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ChipsUtil.class │ │ │ │ ├── DropdownChipLayouter$1.class │ │ │ │ ├── DropdownChipLayouter$AdapterType.class │ │ │ │ ├── DropdownChipLayouter$ViewHolder.class │ │ │ │ ├── DropdownChipLayouter.class │ │ │ │ ├── Queries$1.class │ │ │ │ ├── Queries$2.class │ │ │ │ ├── Queries$Query.class │ │ │ │ ├── Queries.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── RecipientAlternatesAdapter$OnCheckedItemChangedListener.class │ │ │ │ ├── RecipientAlternatesAdapter$RecipientMatchCallback.class │ │ │ │ ├── RecipientAlternatesAdapter.class │ │ │ │ ├── RecipientEditTextView$1.class │ │ │ │ ├── RecipientEditTextView$10.class │ │ │ │ ├── RecipientEditTextView$2.class │ │ │ │ ├── RecipientEditTextView$3.class │ │ │ │ ├── RecipientEditTextView$4.class │ │ │ │ ├── RecipientEditTextView$5.class │ │ │ │ ├── RecipientEditTextView$6.class │ │ │ │ ├── RecipientEditTextView$7.class │ │ │ │ ├── RecipientEditTextView$8.class │ │ │ │ ├── RecipientEditTextView$9.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1$1.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask$1.class │ │ │ │ ├── RecipientEditTextView$IndividualReplacementTask.class │ │ │ │ ├── RecipientEditTextView$ItemSelectedListener.class │ │ │ │ ├── RecipientEditTextView$MoreImageSpan.class │ │ │ │ ├── RecipientEditTextView$RecipientChipShadow.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$1.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask$2.class │ │ │ │ ├── RecipientEditTextView$RecipientReplacementTask.class │ │ │ │ ├── RecipientEditTextView$RecipientTextWatcher.class │ │ │ │ ├── RecipientEditTextView.class │ │ │ │ ├── RecipientEntry.class │ │ │ │ ├── SingleRecipientArrayAdapter.class │ │ │ │ └── recipientchip │ │ │ │ ├── BaseRecipientChip.class │ │ │ │ ├── DrawableRecipientChip.class │ │ │ │ ├── InvisibleRecipientChip.class │ │ │ │ ├── SimpleRecipientChip.class │ │ │ │ └── VisibleRecipientChip.class │ │ ├── exploded-aar │ │ │ └── com.android.support │ │ │ │ └── support-v4 │ │ │ │ └── 20.0.0 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── aidl │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── v4 │ │ │ │ │ └── app │ │ │ │ │ └── INotificationSideChannel.aidl │ │ │ │ ├── classes.jar │ │ │ │ └── libs │ │ │ │ └── internal_impl-20.0.0.jar │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── debug │ │ │ │ │ └── dependency.store │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── mergeResources │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── packageResources │ │ │ │ └── debug │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── test │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── tmp │ │ │ │ └── manifestMerger927560178888131118.xml │ │ ├── res │ │ │ ├── debug │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ ├── chip_delete.png │ │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── chip_background.9.png │ │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources-debug-test.ap_ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ ├── chip_delete.png │ │ │ │ └── ic_contact_picture.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── chip_background.9.png │ │ │ │ ├── chip_background_invalid.9.png │ │ │ │ ├── chip_background_selected.9.png │ │ │ │ └── chip_delete.png │ │ │ │ ├── drawable │ │ │ │ ├── list_item_font_primary.xml │ │ │ │ └── list_item_font_secondary.xml │ │ │ │ ├── layout │ │ │ │ ├── chips_alternate_item.xml │ │ │ │ ├── chips_recipient_dropdown_item.xml │ │ │ │ ├── copy_chip_dialog_layout.xml │ │ │ │ └── more_item.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ └── symbols │ │ │ └── test │ │ │ └── debug │ │ │ └── R.txt │ ├── outputs │ │ └── aar │ │ │ └── chips-debug.aar │ └── tmp │ │ └── packageDebugJar │ │ └── MANIFEST.MF │ ├── chips.iml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── res │ ├── drawable-hdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ ├── chip_delete.png │ │ └── ic_contact_picture.png │ ├── drawable-xhdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ ├── chip_delete.png │ │ └── ic_contact_picture.png │ ├── drawable-xxhdpi │ │ ├── chip_background.9.png │ │ ├── chip_background_invalid.9.png │ │ ├── chip_background_selected.9.png │ │ └── chip_delete.png │ ├── drawable │ │ ├── list_item_font_primary.xml │ │ └── list_item_font_secondary.xml │ ├── layout │ │ ├── chips_alternate_item.xml │ │ ├── chips_recipient_dropdown_item.xml │ │ ├── copy_chip_dialog_layout.xml │ │ └── more_item.xml │ └── values │ │ ├── attrs.xml │ │ ├── dimen.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── android │ └── ex │ └── chips │ ├── AccountSpecifier.java │ ├── BaseRecipientAdapter.java │ ├── ChipsUtil.java │ ├── DropdownChipLayouter.java │ ├── Queries.java │ ├── RecipientAlternatesAdapter.java │ ├── RecipientEditTextView.java │ ├── RecipientEntry.java │ ├── SingleRecipientArrayAdapter.java │ └── recipientchip │ ├── BaseRecipientChip.java │ ├── DrawableRecipientChip.java │ ├── InvisibleRecipientChip.java │ ├── SimpleRecipientChip.java │ └── VisibleRecipientChip.java ├── mylibrary ├── .gitignore ├── build.gradle ├── mylibrary.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── smsapp │ │ └── byteshaft │ │ └── com │ │ └── mylibrary │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | TrackBuddy -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TrackBuddy.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/TrackBuddy083.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/TrackBuddy083.apk -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/app-release.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 21 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "com.byteshaft.trackbuddy" 9 | minSdkVersion 14 10 | targetSdkVersion 21 11 | versionCode 4 12 | versionName "0.8.5" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled true 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(include: ['*.jar'], dir: 'libs') 24 | compile 'com.android.support:appcompat-v7:21.0.3' 25 | compile 'com.google.android.gms:play-services:6.5.87' 26 | } 27 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/fi8er1/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -keep class !android.support.v7.internal.view.menu.**,android.support.** {*;} -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxhdpi/logo_main.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/logo_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxhdpi/logo_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/ic_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/ic_list.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/ic_siren.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/ic_speed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/ic_tracker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/playservices_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable-xxxhdpi/playservices_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/border_drawable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/checked_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable/checked_checkbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/custom_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/firstrun_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/unchecked_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/drawable/unchecked_checkbox.png -------------------------------------------------------------------------------- /app/src/main/res/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/raw/siren.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/app/src/main/res/raw/siren.mp3 -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TrackBuddy 5 | Hello world! 6 | Settings 7 | 8 | Open Navigation Drawer 9 | Close Navigation Drawer 10 | Imprecise location (internet is off?). 11 | 12 | 13 | 14 | Tracker 15 | Siren 16 | Speed 17 | List 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /chips/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 19 | 20 | 23 | 24 | -------------------------------------------------------------------------------- /chips/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | mavenCentral() 4 | } 5 | dependencies { 6 | classpath 'com.android.tools.build:gradle:0.12.1' 7 | } 8 | } 9 | apply plugin: 'com.android.library' 10 | 11 | dependencies { 12 | compile 'com.android.support:support-v4:20.0.0' 13 | } 14 | 15 | android { 16 | compileSdkVersion 20 17 | buildToolsVersion "20.0.0" 18 | 19 | sourceSets { 20 | main { 21 | manifest.srcFile 'AndroidManifest.xml' 22 | java.srcDirs = ['src'] 23 | resources.srcDirs = ['src'] 24 | aidl.srcDirs = ['src'] 25 | renderscript.srcDirs = ['src'] 26 | res.srcDirs = ['res'] 27 | assets.srcDirs = ['assets'] 28 | } 29 | } 30 | 31 | defaultConfig { 32 | minSdkVersion 14 33 | targetSdkVersion 20 34 | } 35 | 36 | lintOptions { 37 | abortOnError false 38 | } 39 | } 40 | 41 | apply from: 'https://raw.github.com/klinker41/gradle-mvn-push/master/gradle-mvn-push.gradle' -------------------------------------------------------------------------------- /chips/build/generated/source/buildConfig/debug/com/android/ex/chips/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.android.ex.chips; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.android.ex.chips"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /chips/build/generated/source/buildConfig/release/com/android/ex/chips/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.android.ex.chips; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = false; 8 | public static final String APPLICATION_ID = "com.android.ex.chips"; 9 | public static final String BUILD_TYPE = "release"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /chips/build/generated/source/buildConfig/test/debug/com/android/ex/chips/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.android.ex.chips.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.android.ex.chips.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 20 | 21 | 24 | 25 | -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 20 | 21 | 24 | 25 | -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/AccountSpecifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/AccountSpecifier.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DefaultFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DefaultFilter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DefaultFilterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DefaultFilterResult.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DelayedMessageHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DelayedMessageHandler.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectoryFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectoryFilter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectoryListQuery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectoryListQuery.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectorySearchParams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$DirectorySearchParams.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$EntriesUpdatedObserver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$EntriesUpdatedObserver.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$PhotoQuery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$PhotoQuery.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$TemporaryEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter$TemporaryEntry.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BaseRecipientAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/BuildConfig.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/ChipsUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/ChipsUtil.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$AdapterType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$AdapterType.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter$ViewHolder.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/DropdownChipLayouter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$Query.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/Queries$Query.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/Queries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/Queries.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$attr.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$dimen.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$drawable.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$id.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$integer.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$layout.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$string.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$style.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R$styleable.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/R.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter$OnCheckedItemChangedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter$OnCheckedItemChangedListener.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter$RecipientMatchCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter$RecipientMatchCallback.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientAlternatesAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$10.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$3.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$4.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$5.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$6.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$7.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$8.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$9.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$ItemSelectedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$ItemSelectedListener.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$MoreImageSpan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$MoreImageSpan.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientChipShadow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientChipShadow.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientTextWatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView$RecipientTextWatcher.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEditTextView.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/RecipientEntry.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/SingleRecipientArrayAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/SingleRecipientArrayAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/BaseRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/BaseRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/DrawableRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/DrawableRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/InvisibleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/InvisibleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/SimpleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/SimpleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/VisibleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/debug/com/android/ex/chips/recipientchip/VisibleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/AccountSpecifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/AccountSpecifier.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DefaultFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DefaultFilter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DefaultFilterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DefaultFilterResult.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DelayedMessageHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DelayedMessageHandler.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectoryFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectoryFilter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectoryListQuery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectoryListQuery.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectorySearchParams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$DirectorySearchParams.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$EntriesUpdatedObserver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$EntriesUpdatedObserver.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$PhotoQuery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$PhotoQuery.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$TemporaryEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter$TemporaryEntry.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BaseRecipientAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/BuildConfig.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/ChipsUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/ChipsUtil.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$AdapterType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$AdapterType.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter$ViewHolder.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/DropdownChipLayouter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/Queries$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/Queries$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/Queries$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/Queries$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/Queries$Query.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/Queries$Query.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/Queries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/Queries.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$attr.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$dimen.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$drawable.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$id.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$integer.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$layout.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$string.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$style.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R$styleable.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/R.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter$OnCheckedItemChangedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter$OnCheckedItemChangedListener.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter$RecipientMatchCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter$RecipientMatchCallback.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientAlternatesAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$10.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$3.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$4.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$5.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$6.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$7.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$8.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$9.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$IndividualReplacementTask.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$ItemSelectedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$ItemSelectedListener.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$MoreImageSpan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$MoreImageSpan.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientChipShadow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientChipShadow.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$1.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask$2.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientReplacementTask.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientTextWatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView$RecipientTextWatcher.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEditTextView.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/RecipientEntry.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/SingleRecipientArrayAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/SingleRecipientArrayAdapter.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/BaseRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/BaseRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/DrawableRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/DrawableRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/InvisibleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/InvisibleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/SimpleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/SimpleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/VisibleRecipientChip.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/classes/release/com/android/ex/chips/recipientchip/VisibleRecipientChip.class -------------------------------------------------------------------------------- /chips/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /chips/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/classes.jar -------------------------------------------------------------------------------- /chips/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/libs/internal_impl-20.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/libs/internal_impl-20.0.0.jar -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/aidl/release/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/aidl/test/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/mergeAssets/release/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chips/build/intermediates/incremental/mergeAssets/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chips/build/intermediates/manifests/test/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /chips/build/intermediates/manifests/tmp/manifestMerger3812734759510249084.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-hdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-hdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-hdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xhdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xhdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/debug/drawable-xxhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-hdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-hdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-hdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-hdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-hdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xhdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xhdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/release/drawable-xxhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/resources-debug-test.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/resources-debug-test.ap_ -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-hdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-hdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-hdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xhdpi-v4/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/intermediates/res/test/debug/drawable-xxhdpi-v4/chip_delete.png -------------------------------------------------------------------------------- /chips/build/outputs/aar/chips-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/outputs/aar/chips-debug.aar -------------------------------------------------------------------------------- /chips/build/outputs/aar/chips-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/build/outputs/aar/chips-release.aar -------------------------------------------------------------------------------- /chips/build/tmp/packageDebugJar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /chips/build/tmp/packageReleaseJar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /chips/gradle.properties: -------------------------------------------------------------------------------- 1 | VERSION_NAME=1.0.0 2 | VERSION_CODE=1 3 | GROUP=com.klinkerapps 4 | 5 | POM_DESCRIPTION=Library for Google's material design standard when entering contacts into a text field 6 | POM_URL=https://github.com/klinker41/android-chips 7 | POM_SCM_URL=https://github.com/klinker41/android-chips 8 | POM_SCM_CONNECTION=scm:git@github.com:klinker41/android-chips.git 9 | POM_SCM_DEV_CONNECTION=scm:git@github.com:klinker41/android-chips.git 10 | POM_LICENCE_NAME=The Apache Software License, Version 2.0 11 | POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt 12 | POM_LICENCE_DIST=repo 13 | POM_DEVELOPER_ID=klinker41 14 | POM_DEVELOPER_NAME=Jacob Klinker 15 | 16 | POM_NAME=Android Chips 17 | POM_ARTIFACT_ID=android-chips 18 | POM_PACKAGING=aar -------------------------------------------------------------------------------- /chips/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /chips/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 26 22:06:46 CDT 2014 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip 7 | -------------------------------------------------------------------------------- /chips/res/drawable-hdpi/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-hdpi/chip_background.9.png -------------------------------------------------------------------------------- /chips/res/drawable-hdpi/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-hdpi/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/res/drawable-hdpi/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-hdpi/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/res/drawable-hdpi/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-hdpi/chip_delete.png -------------------------------------------------------------------------------- /chips/res/drawable-hdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-hdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/res/drawable-xhdpi/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xhdpi/chip_background.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xhdpi/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xhdpi/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xhdpi/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xhdpi/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xhdpi/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xhdpi/chip_delete.png -------------------------------------------------------------------------------- /chips/res/drawable-xhdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xhdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /chips/res/drawable-xxhdpi/chip_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xxhdpi/chip_background.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xxhdpi/chip_background_invalid.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xxhdpi/chip_background_invalid.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xxhdpi/chip_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xxhdpi/chip_background_selected.9.png -------------------------------------------------------------------------------- /chips/res/drawable-xxhdpi/chip_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebasepk/TrackBuddy/e09a212de4f443cd32d30cd81e4862d8cfba5e19/chips/res/drawable-xxhdpi/chip_delete.png -------------------------------------------------------------------------------- /chips/res/drawable/list_item_font_primary.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /chips/res/drawable/list_item_font_secondary.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /chips/res/layout/chips_alternate_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /chips/res/layout/copy_chip_dialog_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 |