├── .clabot ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources └── logos │ └── sujitech_logo.png ├── settings.gradle ├── travis ├── configs │ ├── .gitignore │ ├── gradle.properties │ └── twidere_private_config.tar.gz.enc └── scripts │ ├── decode_private_configs.sh │ ├── fetch_private_files.sh │ ├── google_play_deploy.sh │ ├── patch_sources.sh │ ├── print_error_logs.sh │ ├── test_private_files.sh │ └── upload_error_logs.sh ├── twidere.component.common ├── LICENSE.txt ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── org │ │ └── mariotaku │ │ └── twidere │ │ ├── IMediaUploader.aidl │ │ ├── IStatusShortener.aidl │ │ ├── ITimelineSyncHelper.aidl │ │ └── model │ │ ├── MediaUploadResult.aidl │ │ ├── MediaUploaderParameter.aidl │ │ ├── ParcelableAccount.aidl │ │ ├── ParcelableLocation.aidl │ │ ├── ParcelableStatus.aidl │ │ ├── ParcelableStatusUpdate.aidl │ │ ├── StatusShortenResult.aidl │ │ └── UploaderMediaItem.aidl │ ├── java │ └── org │ │ └── mariotaku │ │ ├── microblog │ │ └── library │ │ │ ├── MicroBlog.java │ │ │ ├── MicroBlogException.java │ │ │ ├── fanfou │ │ │ ├── Fanfou.java │ │ │ ├── api │ │ │ │ ├── BlocksResources.java │ │ │ │ ├── DirectMessagesResources.java │ │ │ │ ├── FavoritesResources.java │ │ │ │ ├── FriendshipsResources.java │ │ │ │ ├── PhotosResources.java │ │ │ │ ├── SearchResources.java │ │ │ │ ├── StatusesResources.java │ │ │ │ ├── TrendsResources.java │ │ │ │ └── UsersResources.java │ │ │ └── model │ │ │ │ ├── Conversation.java │ │ │ │ ├── Photo.java │ │ │ │ ├── PhotoStatusUpdate.java │ │ │ │ └── util │ │ │ │ └── StreamDateConverter.java │ │ │ ├── gnusocial │ │ │ └── model │ │ │ │ └── Attachment.java │ │ │ ├── mastodon │ │ │ ├── Mastodon.java │ │ │ ├── MastodonOAuth2.java │ │ │ ├── annotation │ │ │ │ ├── AuthScope.java │ │ │ │ └── StatusVisibility.java │ │ │ ├── api │ │ │ │ ├── AccountsResources.java │ │ │ │ ├── AppsResources.java │ │ │ │ ├── BlocksResources.java │ │ │ │ ├── FavouritesResources.java │ │ │ │ ├── FollowRequestsResources.java │ │ │ │ ├── InstancesResources.java │ │ │ │ ├── MediaResources.java │ │ │ │ ├── MutesResources.java │ │ │ │ ├── NotificationsResources.java │ │ │ │ ├── ReportsResources.java │ │ │ │ ├── SearchResources.java │ │ │ │ ├── StatusesResources.java │ │ │ │ └── TimelinesResources.java │ │ │ └── model │ │ │ │ ├── Account.java │ │ │ │ ├── AccountUpdate.java │ │ │ │ ├── Application.java │ │ │ │ ├── Attachment.java │ │ │ │ ├── Card.java │ │ │ │ ├── Context.java │ │ │ │ ├── Error.java │ │ │ │ ├── Instance.java │ │ │ │ ├── LinkHeaderList$$JsonObjectMapper.java │ │ │ │ ├── LinkHeaderList.java │ │ │ │ ├── LinkHeaderResponse.java │ │ │ │ ├── Mention.java │ │ │ │ ├── Notification.java │ │ │ │ ├── RegisteredApplication.java │ │ │ │ ├── Relationship.java │ │ │ │ ├── Report.java │ │ │ │ ├── Results.java │ │ │ │ ├── Status.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── Tag.java │ │ │ │ └── TimelineOption.java │ │ │ ├── statusnet │ │ │ ├── StatusNet.java │ │ │ ├── api │ │ │ │ ├── GroupResources.java │ │ │ │ ├── SearchResources.java │ │ │ │ ├── StatusNetResources.java │ │ │ │ ├── TimelineResources.java │ │ │ │ └── UserResources.java │ │ │ └── model │ │ │ │ ├── Attention.java │ │ │ │ ├── Group.java │ │ │ │ └── StatusNetConfig.java │ │ │ ├── twitter │ │ │ ├── Twitter.java │ │ │ ├── TwitterCaps.java │ │ │ ├── TwitterOAuth.java │ │ │ ├── TwitterOAuth2.java │ │ │ ├── TwitterPrivate.java │ │ │ ├── TwitterUpload.java │ │ │ ├── annotation │ │ │ │ ├── MediaCategory.java │ │ │ │ └── StreamWith.java │ │ │ ├── api │ │ │ │ ├── CollectionResources.java │ │ │ │ ├── DirectMessagesEventResources.java │ │ │ │ ├── DirectMessagesResources.java │ │ │ │ ├── FavoritesResources.java │ │ │ │ ├── FriendsFollowersResources.java │ │ │ │ ├── HelpResources.java │ │ │ │ ├── ListResources.java │ │ │ │ ├── MutesResources.java │ │ │ │ ├── PlacesGeoResources.java │ │ │ │ ├── PrivateAccountResources.java │ │ │ │ ├── PrivateActivityResources.java │ │ │ │ ├── PrivateDirectMessagesResources.java │ │ │ │ ├── PrivateFriendsFollowersResources.java │ │ │ │ ├── PrivateMutesResources.java │ │ │ │ ├── PrivateResources.java │ │ │ │ ├── PrivateSearchResources.java │ │ │ │ ├── PrivateTimelineResources.java │ │ │ │ ├── PrivateTweetResources.java │ │ │ │ ├── SavedSearchesResources.java │ │ │ │ ├── SearchResources.java │ │ │ │ ├── SpamReportingResources.java │ │ │ │ ├── TimelineResources.java │ │ │ │ ├── TrendsResources.java │ │ │ │ ├── TweetResources.java │ │ │ │ └── UsersResources.java │ │ │ ├── auth │ │ │ │ ├── AuthorizationConfiguration.java │ │ │ │ ├── BasicAuthorization.java │ │ │ │ ├── BearerAuthorization.java │ │ │ │ ├── EmptyAuthorization.java │ │ │ │ ├── OAuth2GetTokenHeader.java │ │ │ │ └── OAuth2Token.java │ │ │ ├── http │ │ │ │ └── HttpResponseCode.java │ │ │ ├── model │ │ │ │ ├── AccountSettings.java │ │ │ │ ├── Activity.java │ │ │ │ ├── CardDataMap.java │ │ │ │ ├── CardEntity.java │ │ │ │ ├── CardResponse.java │ │ │ │ ├── Category.java │ │ │ │ ├── Contributor.java │ │ │ │ ├── ConversationTimeline.java │ │ │ │ ├── CreateCardData.java │ │ │ │ ├── CreateCardResult.java │ │ │ │ ├── CursorSupport.java │ │ │ │ ├── CursorTimestampResponse.java │ │ │ │ ├── DMResponse.java │ │ │ │ ├── DeletionEvent.java │ │ │ │ ├── DirectMessage.java │ │ │ │ ├── DirectMessageEventObject.java │ │ │ │ ├── Entities.java │ │ │ │ ├── EntitySupport.java │ │ │ │ ├── ErrorInfo.java │ │ │ │ ├── ExtendedEntitySupport.java │ │ │ │ ├── ExtendedProfile.java │ │ │ │ ├── Friendship.java │ │ │ │ ├── FriendshipUpdate.java │ │ │ │ ├── GeoLocation.java │ │ │ │ ├── GeoPoint.java │ │ │ │ ├── GeoQuery.java │ │ │ │ ├── HashtagEntity.java │ │ │ │ ├── IDs$$JsonObjectMapper.java │ │ │ │ ├── IDs.java │ │ │ │ ├── Indices.java │ │ │ │ ├── IndicesConverter.java │ │ │ │ ├── Language.java │ │ │ │ ├── Location.java │ │ │ │ ├── MediaEntity.java │ │ │ │ ├── MediaUploadResponse.java │ │ │ │ ├── MutedKeyword.java │ │ │ │ ├── NewDm.java │ │ │ │ ├── NewMediaMetadata.java │ │ │ │ ├── PageableResponseList$$JsonObjectMapper.java │ │ │ │ ├── PageableResponseList.java │ │ │ │ ├── Paging.java │ │ │ │ ├── PinTweetResult.java │ │ │ │ ├── Place.java │ │ │ │ ├── ProfileUpdate.java │ │ │ │ ├── QueryResult.java │ │ │ │ ├── RateLimitStatus.java │ │ │ │ ├── Relationship.java │ │ │ │ ├── ResponseCode.java │ │ │ │ ├── ResponseList$$JsonObjectMapper.java │ │ │ │ ├── ResponseList.java │ │ │ │ ├── SavedSearch.java │ │ │ │ ├── ScheduledStatus.java │ │ │ │ ├── SearchQuery.java │ │ │ │ ├── SettingsUpdate.java │ │ │ │ ├── SimilarPlaces.java │ │ │ │ ├── Status.java │ │ │ │ ├── StatusActivitySummary.java │ │ │ │ ├── StatusTargetObjectEvent.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── StickerEntity.java │ │ │ │ ├── StreamEvent.java │ │ │ │ ├── TimeZone.java │ │ │ │ ├── TimelineOption.java │ │ │ │ ├── TimestampResponse.java │ │ │ │ ├── TranslationResult.java │ │ │ │ ├── Trend.java │ │ │ │ ├── Trends.java │ │ │ │ ├── TwitterAPIConfiguration.java │ │ │ │ ├── TwitterResponse.java │ │ │ │ ├── TwitterResponseObject.java │ │ │ │ ├── TwitterStreamObject.java │ │ │ │ ├── UniversalSearchQuery.java │ │ │ │ ├── UniversalSearchResult.java │ │ │ │ ├── UrlEntity.java │ │ │ │ ├── User.java │ │ │ │ ├── UserEntities.java │ │ │ │ ├── UserEvents.java │ │ │ │ ├── UserInbox.java │ │ │ │ ├── UserList.java │ │ │ │ ├── UserListTargetObjectEvent.java │ │ │ │ ├── UserListUpdate.java │ │ │ │ ├── UserMentionEntity.java │ │ │ │ ├── Warning.java │ │ │ │ └── util │ │ │ │ │ └── ParcelMapBagger.java │ │ │ ├── template │ │ │ │ ├── DMAnnotationTemplate.java │ │ │ │ ├── DirectMessageAnnotationTemplate.java │ │ │ │ ├── StatusAnnotationTemplate.java │ │ │ │ └── UserAnnotationTemplate.java │ │ │ └── util │ │ │ │ ├── InternalArrayUtil.java │ │ │ │ ├── InternalParseUtil.java │ │ │ │ ├── OAuthTokenResponseConverter.java │ │ │ │ ├── ThreadLocalSimpleDateFormat.java │ │ │ │ ├── TwitterDateConverter.java │ │ │ │ └── TwitterTrendsDateConverter.java │ │ │ └── util │ │ │ └── CRLFLineReader.java │ │ └── twidere │ │ ├── TwidereConstants.java │ │ ├── annotation │ │ ├── AccountType.java │ │ ├── AuthTypeInt.java │ │ ├── CustomTabType.java │ │ └── FilterScope.java │ │ ├── constant │ │ ├── CompatibilityConstants.java │ │ ├── IntentConstants.java │ │ └── SharedPreferenceConstants.java │ │ ├── model │ │ ├── AccountDetails.java │ │ ├── ConsumerKeyType.java │ │ ├── Draft.java │ │ ├── FiltersData.java │ │ ├── FiltersSubscription.java │ │ ├── MediaUploadResult.java │ │ ├── ParcelableActivity.java │ │ ├── ParcelableCardEntity.java │ │ ├── ParcelableGroup.java │ │ ├── ParcelableHashtag.java │ │ ├── ParcelableLiteUser.java │ │ ├── ParcelableLocation.java │ │ ├── ParcelableMedia.java │ │ ├── ParcelableMediaUpdate.java │ │ ├── ParcelableMessage.java │ │ ├── ParcelableMessageConversation.java │ │ ├── ParcelableNewMessage.java │ │ ├── ParcelableRelationship.java │ │ ├── ParcelableStatus.java │ │ ├── ParcelableStatusUpdate.java │ │ ├── ParcelableTrend.java │ │ ├── ParcelableUser.java │ │ ├── ParcelableUserList.java │ │ ├── ParcelableUserMention.java │ │ ├── SpanItem.java │ │ ├── StatusShortenResult.java │ │ ├── Tab.java │ │ ├── UploaderMediaItem.java │ │ ├── UserKey.java │ │ ├── account │ │ │ ├── AccountExtras.java │ │ │ ├── MastodonAccountExtras.java │ │ │ ├── StatusNetAccountExtras.java │ │ │ ├── TwitterAccountExtras.java │ │ │ └── cred │ │ │ │ ├── BasicCredentials.java │ │ │ │ ├── Credentials.java │ │ │ │ ├── EmptyCredentials.java │ │ │ │ ├── OAuth2Credentials.java │ │ │ │ └── OAuthCredentials.java │ │ ├── draft │ │ │ ├── ActionExtras.java │ │ │ ├── QuoteStatusActionExtras.java │ │ │ ├── SendDirectMessageActionExtras.java │ │ │ ├── StatusObjectActionExtras.java │ │ │ └── UpdateStatusActionExtras.java │ │ ├── message │ │ │ ├── ConversationInfoUpdatedExtras.java │ │ │ ├── MessageExtras.java │ │ │ ├── StickerExtras.java │ │ │ ├── UserArrayExtras.java │ │ │ └── conversation │ │ │ │ ├── ConversationExtras.java │ │ │ │ ├── DefaultConversationExtras.java │ │ │ │ └── TwitterOfficialConversationExtras.java │ │ ├── package-info.java │ │ ├── tab │ │ │ ├── argument │ │ │ │ ├── TabArguments.java │ │ │ │ ├── TextQueryArguments.java │ │ │ │ ├── UserArguments.java │ │ │ │ └── UserListArguments.java │ │ │ └── extra │ │ │ │ ├── HomeTabExtras.java │ │ │ │ ├── InteractionsTabExtras.java │ │ │ │ ├── TabExtras.java │ │ │ │ └── TrendsTabExtras.java │ │ └── util │ │ │ ├── ContentObjectColorConverter.java │ │ │ ├── ConversationExtrasConverter.java │ │ │ ├── DraftExtrasFieldConverter.java │ │ │ ├── FilterStringsFieldConverter.java │ │ │ ├── FilterUserKeysFieldConverter.java │ │ │ ├── MessageExtrasConverter.java │ │ │ ├── TabArgumentsFieldConverter.java │ │ │ ├── TabExtrasFieldConverter.java │ │ │ ├── UnixEpochMillisDateConverter.java │ │ │ ├── UnixEpochSecondDateConverter.java │ │ │ ├── UserKeyConverter.java │ │ │ ├── UserKeyCursorFieldConverter.java │ │ │ ├── UserKeysConverter.java │ │ │ └── UserKeysCursorFieldConverter.java │ │ ├── provider │ │ └── TwidereDataStore.java │ │ └── util │ │ ├── JsonSerializer.java │ │ ├── filter │ │ └── FiltersSubscriptionProvider.java │ │ └── model │ │ └── AccountDetailsUtils.java │ └── res │ └── values │ └── values.xml ├── twidere.component.nyan ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── org │ │ └── mariotaku │ │ └── twidere │ │ └── nyan │ │ ├── NyanConstants.java │ │ ├── NyanDaydreamService.java │ │ ├── NyanDaydreamView.java │ │ ├── NyanDrawingHelper.java │ │ ├── NyanSurfaceHelper.java │ │ └── NyanWallpaperService.java │ └── res │ ├── drawable-nodpi │ ├── nyan_rainbow_frame00_tile.png │ ├── nyan_rainbow_frame01_tile.png │ ├── nyan_rainbow_frame02_tile.png │ ├── nyan_rainbow_frame03_tile.png │ ├── nyan_rainbow_frame04_tile.png │ ├── nyan_rainbow_frame05_tile.png │ ├── nyan_rainbow_frame06_tile.png │ ├── nyan_rainbow_frame07_tile.png │ ├── nyan_rainbow_frame08_tile.png │ ├── nyan_rainbow_frame09_tile.png │ ├── nyan_rainbow_frame10_tile.png │ ├── nyan_rainbow_frame11_tile.png │ ├── nyan_sakamoto_frame00.png │ ├── nyan_sakamoto_frame01.png │ ├── nyan_sakamoto_frame02.png │ ├── nyan_sakamoto_frame03.png │ ├── nyan_sakamoto_frame04.png │ ├── nyan_sakamoto_frame05.png │ ├── nyan_sakamoto_frame06.png │ ├── nyan_sakamoto_frame07.png │ ├── nyan_sakamoto_frame08.png │ ├── nyan_sakamoto_frame09.png │ ├── nyan_sakamoto_frame10.png │ ├── nyan_sakamoto_frame11.png │ ├── nyan_sakamoto_santa_frame00.png │ ├── nyan_sakamoto_santa_frame01.png │ ├── nyan_sakamoto_santa_frame02.png │ ├── nyan_sakamoto_santa_frame03.png │ ├── nyan_sakamoto_santa_frame04.png │ ├── nyan_sakamoto_santa_frame05.png │ ├── nyan_sakamoto_santa_frame06.png │ ├── nyan_sakamoto_santa_frame07.png │ ├── nyan_sakamoto_santa_frame08.png │ ├── nyan_sakamoto_santa_frame09.png │ ├── nyan_sakamoto_santa_frame10.png │ └── nyan_sakamoto_santa_frame11.png │ ├── drawable │ ├── nyan_sakamoto.xml │ └── nyan_sakamoto_santa.xml │ ├── layout │ └── nyan_daydream.xml │ ├── values-land │ └── integers.xml │ ├── values-large-land │ └── integers.xml │ ├── values-large │ └── integers.xml │ ├── values-xlarge-land │ └── integers.xml │ ├── values-xlarge │ └── integers.xml │ └── values │ ├── colors.xml │ ├── integers.xml │ └── strings.xml └── twidere ├── .gitignore ├── LICENSE.txt ├── build.gradle ├── ic_launcher-web.png ├── proguard-rules.pro └── src ├── .gitignore ├── .google.commit-id ├── androidTest ├── kotlin │ └── org │ │ └── mariotaku │ │ ├── ktextension │ │ └── ColorExtensionsTest.kt │ │ └── twidere │ │ ├── activity │ │ ├── ComposeActivityTest.kt │ │ └── ComposeActivityTestRule.kt │ │ ├── extension │ │ ├── FileExtensionsTest.kt │ │ ├── TestAccountExtensions.kt │ │ ├── ViewExtensionsKtTest.kt │ │ ├── model │ │ │ ├── DraftExtensionsTest.kt │ │ │ └── FiltersDataExtensionsTest.kt │ │ └── text │ │ │ └── twitter │ │ │ └── ExtractorExtensionsTest.kt │ │ ├── model │ │ ├── CronExpressionTest.kt │ │ ├── ItemCountsTest.kt │ │ ├── UserKeyTest.kt │ │ └── util │ │ │ └── ParcelableStatusUtilsTest.kt │ │ ├── provider │ │ └── TwidereDataStoreTest.kt │ │ ├── task │ │ └── SaveFileTaskTest.kt │ │ └── util │ │ ├── DataStoreUtilsTest.kt │ │ ├── HttpClientFactoryTest.kt │ │ ├── MapFragmentFactoryTest.kt │ │ ├── MicroBlogAPIFactoryTest.kt │ │ ├── ObjectCursorTest.kt │ │ ├── StatusShortenerInterfaceTest.kt │ │ ├── TestAccountUtils.kt │ │ ├── TestCommons.kt │ │ ├── TwidereArrayUtilsTest.kt │ │ ├── UnitConvertUtilsTest.kt │ │ ├── UriUtilsTest.kt │ │ ├── UtilsTest.kt │ │ ├── filter │ │ └── UrlFiltersSubscriptionProviderTest.kt │ │ └── media │ │ └── preview │ │ └── provider │ │ └── InstagramProviderTest.kt └── res │ └── raw │ ├── account_200092_mastodon_social.json │ ├── account_4223092274_twitter_com.json │ ├── parcelable_status_848051071444410368.json │ ├── parcelable_status_852737226718838790.json │ ├── status_8754050.json │ └── status_9171447.json ├── debug ├── AndroidManifest.xml ├── java │ └── org │ │ └── mariotaku │ │ └── twidere │ │ └── util │ │ └── DebugModeUtils.java ├── kotlin │ └── org │ │ └── mariotaku │ │ └── twidere │ │ ├── extension │ │ └── model │ │ │ └── AccountExtensionsDebug.kt │ │ └── util │ │ └── stetho │ │ ├── AccountsDumperPlugin.kt │ │ └── Commons.kt └── res │ └── values │ ├── configs.xml │ └── defaults.xml ├── fdroid ├── AndroidManifest.xml ├── kotlin │ └── org │ │ └── mariotaku │ │ └── twidere │ │ ├── activity │ │ └── CrashReportDialogActivity.kt │ │ ├── fragment │ │ └── OpenStreetMapViewerFragment.kt │ │ └── util │ │ ├── ACRAAnalyzer.kt │ │ └── OSMMapFragmentFactory.kt ├── res │ ├── drawable │ │ └── ic_map_marker.xml │ ├── layout │ │ └── activity_osm_viewer.xml │ └── menu │ │ └── menu_osm_viewer.xml └── resources │ └── META-INF │ └── services │ ├── org.mariotaku.twidere.util.Analyzer │ └── org.mariotaku.twidere.util.MapFragmentFactory ├── main ├── .gitignore ├── .keep_region_locales ├── AndroidManifest.xml ├── assets │ ├── blackberry │ │ ├── android.cfg │ │ └── apk2bar.prefs │ ├── data │ │ ├── default_api_configs.json │ │ └── default_features.json │ └── gpl-3.0-standalone.html ├── ic_launcher-web.png ├── images │ ├── drawable-mdpi │ │ ├── ic_account_logo_fanfou.svg │ │ ├── ic_account_logo_mastodon.svg │ │ ├── ic_account_logo_statusnet.svg │ │ ├── ic_account_logo_twitter.svg │ │ ├── ic_action_accounts.svg │ │ ├── ic_action_add.svg │ │ ├── ic_action_add_to_list.svg │ │ ├── ic_action_at.svg │ │ ├── ic_action_attachment.svg │ │ ├── ic_action_back.svg │ │ ├── ic_action_cake.svg │ │ ├── ic_action_camcorder.svg │ │ ├── ic_action_cancel.svg │ │ ├── ic_action_confirm.svg │ │ ├── ic_action_content_warning.svg │ │ ├── ic_action_copy.svg │ │ ├── ic_action_delete.svg │ │ ├── ic_action_draft.svg │ │ ├── ic_action_edit_query.svg │ │ ├── ic_action_file.svg │ │ ├── ic_action_filter.svg │ │ ├── ic_action_gif.svg │ │ ├── ic_action_heart.svg │ │ ├── ic_action_home.svg │ │ ├── ic_action_import.svg │ │ ├── ic_action_infinity.svg │ │ ├── ic_action_info.svg │ │ ├── ic_action_link.svg │ │ ├── ic_action_location.svg │ │ ├── ic_action_location_off.svg │ │ ├── ic_action_lock.svg │ │ ├── ic_action_more_horizontal.svg │ │ ├── ic_action_more_vertical.svg │ │ ├── ic_action_notification.svg │ │ ├── ic_action_pause.svg │ │ ├── ic_action_pin.svg │ │ ├── ic_action_play_arrow.svg │ │ ├── ic_action_qr.svg │ │ ├── ic_action_qr_scan.svg │ │ ├── ic_action_refresh.svg │ │ ├── ic_action_reply.svg │ │ ├── ic_action_retweet.svg │ │ ├── ic_action_search.svg │ │ ├── ic_action_send.svg │ │ ├── ic_action_settings.svg │ │ ├── ic_action_share.svg │ │ ├── ic_action_speaker_max.svg │ │ ├── ic_action_speaker_muted.svg │ │ ├── ic_action_star.svg │ │ ├── ic_action_sync.svg │ │ ├── ic_action_tablet.svg │ │ ├── ic_action_time.svg │ │ ├── ic_action_unpin.svg │ │ ├── ic_action_users.svg │ │ ├── ic_action_visibility_off.svg │ │ ├── ic_action_visibility_on.svg │ │ ├── ic_action_web.svg │ │ ├── ic_action_web_lock.svg │ │ ├── ic_activity_action_favorite.svg │ │ ├── ic_activity_action_like.svg │ │ ├── ic_activity_action_media_tagged.svg │ │ ├── ic_activity_action_pinned.svg │ │ ├── ic_activity_action_poll.svg │ │ ├── ic_btn_grid_item_edit.svg │ │ ├── ic_btn_grid_item_remove.svg │ │ ├── ic_card_media_play.svg │ │ ├── ic_indicator_arrow_left.svg │ │ ├── ic_indicator_arrow_right.svg │ │ ├── ic_info_accounts.svg │ │ ├── ic_info_draft.svg │ │ ├── ic_info_error_blocked.svg │ │ ├── ic_info_error_generic.svg │ │ ├── ic_info_info_generic.svg │ │ ├── ic_info_locked.svg │ │ ├── ic_info_refresh.svg │ │ ├── ic_info_search.svg │ │ ├── ic_label_gallery.svg │ │ ├── ic_label_location.svg │ │ ├── ic_label_poll.svg │ │ ├── ic_label_video.svg │ │ ├── ic_label_warning.svg │ │ ├── ic_message_convertion_type_group.svg │ │ ├── ic_message_type_outgoing.svg │ │ ├── ic_message_type_speaker_muted.svg │ │ ├── ic_profile_image_default_group.svg │ │ ├── ic_stat_draft.svg │ │ ├── ic_stat_gift.svg │ │ ├── ic_stat_info.svg │ │ ├── ic_stat_mention.svg │ │ ├── ic_stat_message.svg │ │ ├── ic_stat_notification.svg │ │ ├── ic_stat_refresh.svg │ │ ├── ic_stat_send.svg │ │ ├── ic_user_type_protected.svg │ │ └── ic_user_type_verified.svg │ └── mipmap-mdpi │ │ ├── ic_shortcut_camera_adaptive_foreground.svg │ │ ├── ic_shortcut_compose_adaptive_foreground.svg │ │ ├── ic_shortcut_favorite_adaptive_foreground.svg │ │ ├── ic_shortcut_gallery_adaptive_foreground.svg │ │ ├── ic_shortcut_like_adaptive_foreground.svg │ │ ├── ic_shortcut_list_adaptive_foreground.svg │ │ └── ic_shortcut_user_adaptive_foreground.svg ├── java │ ├── androidx │ │ ├── drawerlayout │ │ │ └── widget │ │ │ │ └── DrawerLayoutAccessor.java │ │ ├── fragment │ │ │ └── app │ │ │ │ ├── FragmentAccessor.java │ │ │ │ └── ListFragmentAccessor.java │ │ ├── loader │ │ │ └── content │ │ │ │ └── LoaderAccessor.java │ │ └── recyclerview │ │ │ └── widget │ │ │ ├── FixedLinearLayoutManager.java │ │ │ └── RecyclerViewAccessor.java │ └── org │ │ ├── mariotaku │ │ ├── abstask │ │ │ └── library │ │ │ │ └── ManualTaskStarter.java │ │ ├── microblog │ │ │ └── library │ │ │ │ └── twitter │ │ │ │ ├── TwitterWeb.java │ │ │ │ └── model │ │ │ │ ├── FavoritedPopup.java │ │ │ │ ├── IDsAccessor.java │ │ │ │ └── StatusPage.java │ │ ├── sprite │ │ │ └── library │ │ │ │ ├── AnimatedBitmapLayer.java │ │ │ │ ├── Layer.java │ │ │ │ └── LayeredCanvasView.java │ │ └── twidere │ │ │ ├── Constants.java │ │ │ ├── adapter │ │ │ ├── ArrayAdapter.java │ │ │ ├── SavedSearchesAdapter.java │ │ │ ├── SectionArrayAdapter.java │ │ │ └── decorator │ │ │ │ └── ExtendedDividerItemDecoration.java │ │ │ ├── annotation │ │ │ ├── AutoRefreshType.java │ │ │ ├── CacheFileType.java │ │ │ ├── ContentType.java │ │ │ ├── ImageShapeStyle.java │ │ │ ├── NavbarStyle.java │ │ │ ├── NotificationType.java │ │ │ ├── PreviewStyle.java │ │ │ ├── ProfileImageSize.java │ │ │ ├── ReadPositionTag.java │ │ │ └── TabAccountFlags.java │ │ │ ├── constant │ │ │ └── KeyboardShortcutConstants.java │ │ │ ├── fragment │ │ │ ├── DataExportImportTypeSelectorDialogFragment.java │ │ │ ├── FileSelectorDialogFragment.java │ │ │ ├── KeyboardShortcutsFragment.java │ │ │ └── ThemedListPreferenceDialogFragmentCompat.java │ │ │ ├── graphic │ │ │ ├── ActionBarColorDrawable.java │ │ │ ├── ActionBarColorDrawableBase.java │ │ │ ├── ActionIconDrawable.java │ │ │ ├── EmptyDrawable.java │ │ │ ├── PaddingDrawable.java │ │ │ ├── iface │ │ │ │ └── DoNotWrapDrawable.java │ │ │ └── like │ │ │ │ ├── LikeAnimationDrawable.java │ │ │ │ ├── layer │ │ │ │ ├── AnimationLayerDrawable.java │ │ │ │ ├── CircleLayerDrawable.java │ │ │ │ ├── ParticleLayerDrawable.java │ │ │ │ ├── ScalableDrawable.java │ │ │ │ └── ShineLayerDrawable.java │ │ │ │ └── palette │ │ │ │ ├── FavoritePalette.java │ │ │ │ └── LikePalette.java │ │ │ ├── loader │ │ │ ├── ExtendedObjectCursorLoader.java │ │ │ └── ObjectCursorLoader.java │ │ │ ├── menu │ │ │ └── AccountToggleProvider.java │ │ │ ├── model │ │ │ ├── CacheMetadata.java │ │ │ ├── CronExpression.java │ │ │ ├── CursorReference.java │ │ │ ├── CustomAPIConfig.java │ │ │ ├── DefaultFeatures.java │ │ │ ├── ListResponse.java │ │ │ ├── ParcelableAccount.java │ │ │ ├── ParcelableCredentials.java │ │ │ ├── PebbleMessage.java │ │ │ ├── StatusListResponse.java │ │ │ ├── TwitterListResponse.java │ │ │ ├── UnreadItem.java │ │ │ ├── UserFollowState.java │ │ │ ├── event │ │ │ │ ├── AccountChangedEvent.java │ │ │ │ ├── FavoriteTaskEvent.java │ │ │ │ ├── FriendshipTaskEvent.java │ │ │ │ ├── FriendshipUpdatedEvent.java │ │ │ │ ├── GetActivitiesTaskEvent.java │ │ │ │ ├── GetMessagesTaskEvent.java │ │ │ │ ├── GetStatusesTaskEvent.java │ │ │ │ ├── ProfileUpdatedEvent.java │ │ │ │ ├── SavedSearchDestroyedEvent.java │ │ │ │ ├── StatusDestroyedEvent.java │ │ │ │ ├── StatusItemChangedEvent.java │ │ │ │ ├── StatusListChangedEvent.java │ │ │ │ ├── StatusRetweetedEvent.java │ │ │ │ ├── TaskStateChangedEvent.java │ │ │ │ ├── TrendsRefreshedEvent.java │ │ │ │ ├── UnreadCountUpdatedEvent.java │ │ │ │ ├── UserListCreatedEvent.java │ │ │ │ ├── UserListDestroyedEvent.java │ │ │ │ ├── UserListMembersChangedEvent.java │ │ │ │ ├── UserListSubscriptionEvent.java │ │ │ │ ├── UserListUpdatedEvent.java │ │ │ │ └── UsersBlockedEvent.java │ │ │ ├── filter │ │ │ │ └── UrlFiltersSubscriptionProviderArguments.java │ │ │ ├── pagination │ │ │ │ ├── CursorPagination.java │ │ │ │ ├── PagePagination.java │ │ │ │ ├── PaginatedArrayList.java │ │ │ │ ├── PaginatedList.java │ │ │ │ ├── Pagination.java │ │ │ │ └── SinceMaxPagination.java │ │ │ ├── premium │ │ │ │ └── PurchaseResult.java │ │ │ ├── presentation │ │ │ │ └── LaunchPresentation.java │ │ │ ├── schedule │ │ │ │ └── ScheduleInfo.java │ │ │ ├── tab │ │ │ │ ├── BooleanHolder.java │ │ │ │ ├── DrawableHolder.java │ │ │ │ ├── StringHolder.java │ │ │ │ └── iface │ │ │ │ │ └── AccountCallback.java │ │ │ ├── timeline │ │ │ │ ├── TimelineFilter.java │ │ │ │ └── UserTimelineFilter.java │ │ │ └── util │ │ │ │ ├── AccountUtils.java │ │ │ │ ├── CronExpressionConverter.java │ │ │ │ ├── ParcelableGroupUtils.java │ │ │ │ └── ParcelableLocationUtils.java │ │ │ ├── preference │ │ │ ├── AppVersionPreference.java │ │ │ ├── ComponentStatePreference.java │ │ │ ├── HomeRefreshContentPreference.java │ │ │ ├── MultiSelectListPreference.java │ │ │ ├── NotificationContentPreference.java │ │ │ ├── NotificationTypePreference.java │ │ │ ├── RingtonePreference.java │ │ │ ├── SeekBarDialogPreference.java │ │ │ ├── SettingsImportExportPreference.java │ │ │ └── ThemeBackgroundPreference.java │ │ │ ├── provider │ │ │ ├── RecentSearchProvider.java │ │ │ └── ShareProvider.java │ │ │ ├── receiver │ │ │ └── SecretCodeBroadcastReceiver.java │ │ │ ├── text │ │ │ └── validator │ │ │ │ └── UserListNameValidator.java │ │ │ ├── util │ │ │ ├── AbsServiceInterface.java │ │ │ ├── CheckUtils.java │ │ │ ├── CompareUtils.java │ │ │ ├── CustomTabUtils.java │ │ │ ├── DataImportExportUtils.java │ │ │ ├── EditTextEnterHandler.java │ │ │ ├── InternalParseUtils.java │ │ │ ├── InternalTwitterContentUtils.java │ │ │ ├── KeyboardShortcutsHandler.java │ │ │ ├── ListScrollDistanceCalculator.java │ │ │ ├── MediaUploaderInterface.java │ │ │ ├── MicroBlogAPIFactory.java │ │ │ ├── MouseScrollDirectionDecider.java │ │ │ ├── MultiSelectManager.java │ │ │ ├── NotificationManagerWrapper.java │ │ │ ├── ParseUtils.java │ │ │ ├── PermissionUtils.java │ │ │ ├── PermissionsManager.java │ │ │ ├── RecyclerViewNavigationHelper.java │ │ │ ├── RecyclerViewUtils.java │ │ │ ├── RegexUtils.java │ │ │ ├── SQLiteDatabaseWrapper.java │ │ │ ├── ServiceUtils.java │ │ │ ├── SimpleDrawerCallback.java │ │ │ ├── StatusShortenerInterface.java │ │ │ ├── StrictModeUtils.java │ │ │ ├── SwipeDismissListViewTouchListener.java │ │ │ ├── TwidereArrayUtils.java │ │ │ ├── TwidereColorUtils.java │ │ │ ├── TwidereLinkify.java │ │ │ ├── TwidereStringUtils.java │ │ │ ├── UnitConvertUtils.java │ │ │ ├── UriUtils.java │ │ │ ├── UserAgentUtils.java │ │ │ ├── collection │ │ │ │ ├── CompactHashSet.java │ │ │ │ ├── NoDuplicatesArrayList.java │ │ │ │ └── NonEmptyHashMap.java │ │ │ ├── content │ │ │ │ ├── ContentResolverUtils.java │ │ │ │ └── DatabaseUpgradeHelper.java │ │ │ ├── io │ │ │ │ └── ContentLengthInputStream.java │ │ │ ├── media │ │ │ │ ├── MediaExtra.java │ │ │ │ ├── TwidereMediaDownloader.java │ │ │ │ └── preview │ │ │ │ │ ├── PreviewMediaExtractor.java │ │ │ │ │ └── provider │ │ │ │ │ ├── ImgurProvider.java │ │ │ │ │ ├── InstagramProvider.java │ │ │ │ │ ├── Provider.java │ │ │ │ │ └── TwitterMediaProvider.java │ │ │ ├── menu │ │ │ │ └── TwidereMenuInfo.java │ │ │ ├── net │ │ │ │ ├── NoIntercept.java │ │ │ │ └── SimpleCookieJar.java │ │ │ ├── support │ │ │ │ ├── ActivitySupport.java │ │ │ │ ├── DrawableSupport.java │ │ │ │ ├── JobServiceSupport.java │ │ │ │ ├── SpannableStringBuilderSupport.java │ │ │ │ ├── TextViewSupport.java │ │ │ │ ├── ViewSupport.java │ │ │ │ ├── WebSettingsSupport.java │ │ │ │ ├── WindowSupport.java │ │ │ │ ├── graphics │ │ │ │ │ └── OutlineCompat.java │ │ │ │ └── view │ │ │ │ │ └── ViewOutlineProviderCompat.java │ │ │ └── widget │ │ │ │ └── StatusTextTokenizer.java │ │ │ └── view │ │ │ ├── ActivatedCheckBox.java │ │ │ ├── BadgeView.java │ │ │ ├── BirthdayView.java │ │ │ ├── CheckableLinearLayout.java │ │ │ ├── ColorLabelFrameLayout.java │ │ │ ├── ColorLabelLinearLayout.java │ │ │ ├── ForegroundColorView.java │ │ │ ├── ForegroundImageView.java │ │ │ ├── HeaderDrawerLayout.java │ │ │ ├── HomeDrawerLayout.java │ │ │ ├── LinePageIndicator.java │ │ │ ├── MediaPreviewImageView.java │ │ │ ├── ProfileBannerSpace.java │ │ │ ├── ProfileImageView.java │ │ │ ├── ShapedImageView.java │ │ │ ├── SquareFrameLayout.java │ │ │ ├── SquareRelativeLayout.java │ │ │ ├── SquareSpace.java │ │ │ ├── TabPagerIndicator.java │ │ │ ├── helper │ │ │ ├── PressElevateViewHelper.java │ │ │ └── SimpleItemTouchHelperCallback.java │ │ │ └── iface │ │ │ ├── IColorLabelView.java │ │ │ ├── IForegroundView.java │ │ │ └── PagerIndicator.java │ │ └── oshkimaadziig │ │ └── george │ │ └── androidutils │ │ └── SpanFormatter.java ├── kotlin │ ├── androidx │ │ ├── appcompat │ │ │ ├── app │ │ │ │ ├── TwilightManagerAccessor.kt │ │ │ │ └── WindowDecorActionBarAccessor.kt │ │ │ ├── view │ │ │ │ └── menu │ │ │ │ │ └── TwidereActionMenuItemView.kt │ │ │ └── widget │ │ │ │ ├── TwidereActionMenuView.kt │ │ │ │ └── TwidereToolbar.kt │ │ ├── core │ │ │ ├── os │ │ │ │ └── LocaleHelperAccessor.kt │ │ │ └── view │ │ │ │ └── WindowInsetsCompatAccessor.kt │ │ ├── loader │ │ │ ├── app │ │ │ │ └── LoaderManagerExtensions.kt │ │ │ └── content │ │ │ │ └── FixedAsyncTaskLoader.kt │ │ └── recyclerview │ │ │ └── widget │ │ │ └── RecyclerViewAccessor.kt │ └── org │ │ └── mariotaku │ │ ├── ktextension │ │ ├── AccountManagerExtensions.kt │ │ ├── ActivityExtensions.kt │ │ ├── ArrayExtensions.kt │ │ ├── BundleExtensions.kt │ │ ├── CollectionExtensions.kt │ │ ├── ColorExtensions.kt │ │ ├── ConfigurationExtensions.kt │ │ ├── ContentValuesExtensions.kt │ │ ├── ContextExtensions.kt │ │ ├── CookieManagerExtension.kt │ │ ├── CursorExtensions.kt │ │ ├── EditableExtensions.kt │ │ ├── FragmentManagerExtensions.kt │ │ ├── IntentExtensions.kt │ │ ├── LocaleExtension.kt │ │ ├── LooperExtensions.kt │ │ ├── MapExtensions.kt │ │ ├── MediaMetadataRetrieverExtensions.kt │ │ ├── MenuExtensions.kt │ │ ├── NumberExtensions.kt │ │ ├── ParcelExtensions.kt │ │ ├── PromiseArrayCombine.kt │ │ ├── RecyclerViewExtension.kt │ │ ├── SQLiteDatabaseExtensions.kt │ │ ├── SparseArrayExtensions.kt │ │ ├── StreamExtensions.kt │ │ ├── SyntacticSugar.kt │ │ ├── TextExtensions.kt │ │ ├── TextViewExtensions.kt │ │ └── WindowInsetsExtensions.kt │ │ ├── microblog │ │ └── library │ │ │ └── twitter │ │ │ └── model │ │ │ └── InternalActivityCreator.kt │ │ └── twidere │ │ ├── account │ │ └── TwidereAccountAuthenticator.kt │ │ ├── activity │ │ ├── AccountSelectorActivity.kt │ │ ├── AssistLauncherActivity.kt │ │ ├── BaseActivity.kt │ │ ├── BrowserSignInActivity.kt │ │ ├── ColorPickerDialogActivity.kt │ │ ├── ComposeActivity.kt │ │ ├── DataExportActivity.kt │ │ ├── DataImportActivity.kt │ │ ├── FileSelectorActivity.kt │ │ ├── FragmentContentActivity.kt │ │ ├── HiddenSettingsActivity.kt │ │ ├── HomeActivity.kt │ │ ├── ImageCropperActivity.kt │ │ ├── IncompatibleAlertActivity.kt │ │ ├── InvalidAccountAlertActivity.kt │ │ ├── KeyboardShortcutPreferenceCompatActivity.kt │ │ ├── LinkHandlerActivity.kt │ │ ├── MainActivity.kt │ │ ├── MainHondaJOJOActivity.kt │ │ ├── MediaViewerActivity.kt │ │ ├── NyanActivity.kt │ │ ├── PremiumDashboardActivity.kt │ │ ├── QuickSearchBarActivity.kt │ │ ├── RequestPermissionsActivity.kt │ │ ├── SettingsActivity.kt │ │ ├── SignInActivity.kt │ │ ├── ThemedMediaPickerActivity.kt │ │ ├── TrendsLocationSelectorActivity.kt │ │ ├── UserListSelectorActivity.kt │ │ ├── UserSelectorActivity.kt │ │ ├── WebLinkHandlerActivity.kt │ │ ├── content │ │ │ ├── AbsStatusDialogActivity.kt │ │ │ ├── FavoriteConfirmDialogActivity.kt │ │ │ └── RetweetQuoteDialogActivity.kt │ │ ├── iface │ │ │ ├── IBaseActivity.kt │ │ │ ├── IControlBarActivity.kt │ │ │ └── IThemedActivity.kt │ │ ├── premium │ │ │ └── AbsExtraFeaturePurchaseActivity.kt │ │ ├── presentation │ │ │ └── ToggleRefreshActivity.kt │ │ └── shortcut │ │ │ ├── AbsShortcutCreatorActivity.kt │ │ │ ├── AbsUserListRelatedShortcutCreatorActivity.kt │ │ │ ├── AbsUserRelatedShortcutCreatorActivity.kt │ │ │ ├── ComposeShortcutCreatorActivity.kt │ │ │ ├── UserFavoritesShortcutCreatorActivity.kt │ │ │ ├── UserListTimelineShortcutCreatorActivity.kt │ │ │ ├── UserMediaTimelineTimelineShortcutCreatorActivity.kt │ │ │ ├── UserShortcutCreatorActivity.kt │ │ │ └── UserTimelineShortcutCreatorActivity.kt │ │ ├── adapter │ │ ├── AccountDetailsAdapter.kt │ │ ├── AccountSelectorAdapter.kt │ │ ├── AccountsSpinnerAdapter.kt │ │ ├── ArrayRecyclerAdapter.kt │ │ ├── BaseArrayAdapter.kt │ │ ├── BaseRecyclerViewAdapter.kt │ │ ├── ComposeAutoCompleteAdapter.kt │ │ ├── DraftsAdapter.kt │ │ ├── DummyItemAdapter.kt │ │ ├── ExtensionsAdapter.kt │ │ ├── ListParcelableStatusesAdapter.kt │ │ ├── LoadMoreSupportAdapter.kt │ │ ├── MediaPreviewAdapter.kt │ │ ├── MessagesConversationAdapter.kt │ │ ├── MessagesEntriesAdapter.kt │ │ ├── ParcelableActivitiesAdapter.kt │ │ ├── ParcelableGroupsAdapter.kt │ │ ├── ParcelableStatusesAdapter.kt │ │ ├── ParcelableUserListsAdapter.kt │ │ ├── ParcelableUsersAdapter.kt │ │ ├── RecyclerPagerAdapter.kt │ │ ├── SelectableUsersAdapter.kt │ │ ├── SimpleParcelableUserListsAdapter.kt │ │ ├── SimpleParcelableUsersAdapter.kt │ │ ├── SourceAutoCompleteAdapter.kt │ │ ├── StaggeredGridParcelableStatusesAdapter.kt │ │ ├── StatusDetailsAdapter.kt │ │ ├── SupportFixedFragmentStatePagerAdapter.kt │ │ ├── SupportTabsAdapter.kt │ │ ├── TrendsAdapter.kt │ │ ├── UserAutoCompleteAdapter.kt │ │ ├── VariousItemsAdapter.kt │ │ └── iface │ │ │ ├── ContentCardClickListener.kt │ │ │ ├── IActivitiesAdapter.kt │ │ │ ├── IContentAdapter.kt │ │ │ ├── IGapSupportedAdapter.kt │ │ │ ├── IGroupsAdapter.kt │ │ │ ├── IItemCountsAdapter.kt │ │ │ ├── ILoadMoreSupportAdapter.kt │ │ │ ├── IStatusesAdapter.kt │ │ │ ├── IUserListsAdapter.kt │ │ │ └── IUsersAdapter.kt │ │ ├── alias │ │ ├── FunctionAliases.kt │ │ ├── MastodonAliases.kt │ │ └── TwitterAliases.kt │ │ ├── app │ │ └── TwidereApplication.kt │ │ ├── backup │ │ └── TwidereBackupAgentHelper.kt │ │ ├── constant │ │ ├── PreferenceKeys.kt │ │ └── TwitterErrorCodes.kt │ │ ├── exception │ │ ├── APINotSupportedException.kt │ │ ├── AccountNotFoundException.kt │ │ ├── MalformedResponseException.kt │ │ ├── NoAccountException.kt │ │ └── UnsupportedCountIndexException.kt │ │ ├── extension │ │ ├── AdapterViewExtensions.kt │ │ ├── BitmapFactoryExtensions.kt │ │ ├── ClassExtensions.kt │ │ ├── ConnectivityManagerExtensions.kt │ │ ├── ContentResolverExtensions.kt │ │ ├── ContextExtensions.kt │ │ ├── DefaultFeaturesExtensions.kt │ │ ├── DialogExtensions.kt │ │ ├── EmojiExtensions.kt │ │ ├── FileExtensions.kt │ │ ├── FragmentExtensions.kt │ │ ├── GlideExtensions.kt │ │ ├── IBaseActivityExtensions.kt │ │ ├── IBaseFragmentExtensions.kt │ │ ├── ListViewExtensions.kt │ │ ├── LocationManagerExtensions.kt │ │ ├── OkHttpExtensions.kt │ │ ├── PreferenceExtension.kt │ │ ├── RectExtensions.kt │ │ ├── ReflectionExtensions.kt │ │ ├── ResourcesExtensions.kt │ │ ├── SharedPreferencesExtensions.kt │ │ ├── StaggeredGridLayoutManagerExtensions.kt │ │ ├── ThrowableExtension.kt │ │ ├── URLSpanExtensions.kt │ │ ├── UriExtensions.kt │ │ ├── ViewAnimatorExtensions.kt │ │ ├── ViewExtensions.kt │ │ ├── WebViewExtensions.kt │ │ ├── XmlExtensions.kt │ │ ├── api │ │ │ ├── MastodonExtensions.kt │ │ │ └── MicroBlogExtensions.kt │ │ ├── atto │ │ │ └── DOMExtensions.kt │ │ ├── mime4j │ │ │ └── ContentTypeFieldExtensions.kt │ │ ├── model │ │ │ ├── AccountDetailsExtensions.kt │ │ │ ├── AccountExtensions.kt │ │ │ ├── CredentialsExtensions.kt │ │ │ ├── CustomAPIConfigExtensions.kt │ │ │ ├── DefaultFeaturesExtensions.kt │ │ │ ├── DraftExtensions.kt │ │ │ ├── FiltersDataExtensions.kt │ │ │ ├── FiltersSubscriptionExtensions.kt │ │ │ ├── LaunchPresentationExtensions.kt │ │ │ ├── NotificationChannelSpecsExtensions.kt │ │ │ ├── ParcelableActivityExtensions.kt │ │ │ ├── ParcelableCardEntityExtensions.kt │ │ │ ├── ParcelableHashtagExtensions.kt │ │ │ ├── ParcelableMediaExtensions.kt │ │ │ ├── ParcelableMediaUpdateExtensions.kt │ │ │ ├── ParcelableMessageConversationExtensions.kt │ │ │ ├── ParcelableMessageExtensions.kt │ │ │ ├── ParcelableStatusExtensions.kt │ │ │ ├── ParcelableUserExtensions.kt │ │ │ ├── ParcelableUserListExtensions.kt │ │ │ ├── ParcelableUserMentionExtensions.kt │ │ │ ├── RefreshTaskParamExtensions.kt │ │ │ ├── SpanItemExtensions.kt │ │ │ ├── UserKeyExtensions.kt │ │ │ └── api │ │ │ │ ├── DirectMessageEventObjectDsl.kt │ │ │ │ ├── EntityExtensions.kt │ │ │ │ ├── PagingExtensions.kt │ │ │ │ ├── StatusExtensions.kt │ │ │ │ ├── UserExtensions.kt │ │ │ │ ├── gnusocial │ │ │ │ └── AttathmentExtensions.kt │ │ │ │ ├── mastodon │ │ │ │ ├── AccountExtensions.kt │ │ │ │ ├── ApplicationExtensions.kt │ │ │ │ ├── AttachmentExtensions.kt │ │ │ │ ├── LinkHeaderListExtensions.kt │ │ │ │ ├── MentionExtensions.kt │ │ │ │ ├── NotificationExtensions.kt │ │ │ │ ├── RelationshipExtensions.kt │ │ │ │ ├── ResultsExtensions.kt │ │ │ │ └── StatusExtensions.kt │ │ │ │ └── microblog │ │ │ │ ├── ActivityExtensions.kt │ │ │ │ ├── RelationshipExtensions.kt │ │ │ │ ├── ResponseListExtensions.kt │ │ │ │ └── UserListExtensions.kt │ │ ├── restfu │ │ │ ├── HttpRequestExtensions.kt │ │ │ ├── MultiValueMapExtensions.kt │ │ │ └── RestExceptionExtensions.kt │ │ ├── text │ │ │ ├── EditableExtensions.kt │ │ │ ├── SpannableStringBuilderExtensions.kt │ │ │ └── twitter │ │ │ │ ├── ExtractorExtensions.kt │ │ │ │ └── ValidatorExtensions.kt │ │ ├── util │ │ │ └── ExtraFeaturesServiceExtensions.kt │ │ └── view │ │ │ ├── ActionMenuViewExtensions.kt │ │ │ └── RecyclerViewExtensions.kt │ │ ├── fragment │ │ ├── APIEditorDialogFragment.kt │ │ ├── AbsActivitiesFragment.kt │ │ ├── AbsContentListRecyclerViewFragment.kt │ │ ├── AbsContentListViewFragment.kt │ │ ├── AbsContentRecyclerViewFragment.kt │ │ ├── AbsMediaStatusesFragment.kt │ │ ├── AbsStatusesFragment.kt │ │ ├── AbsToolbarTabPagesFragment.kt │ │ ├── AbsUserMuteBlockDialogFragment.kt │ │ ├── AccountNotificationSettingsFragment.kt │ │ ├── AccountRefreshSettingsFragment.kt │ │ ├── AccountsDashboardFragment.kt │ │ ├── AccountsManagerFragment.kt │ │ ├── AddStatusFilterDialogFragment.kt │ │ ├── AddUserFilterDialogFragment.kt │ │ ├── BaseAccountPreferenceFragment.kt │ │ ├── BaseDialogFragment.kt │ │ ├── BaseFragment.kt │ │ ├── BasePreferenceFragment.kt │ │ ├── BaseWebViewFragment.kt │ │ ├── BrowserFragment.kt │ │ ├── ColorPickerDialogFragment.kt │ │ ├── CreateUserBlockDialogFragment.kt │ │ ├── CreateUserListDialogFragment.kt │ │ ├── CreateUserMuteDialogFragment.kt │ │ ├── CursorActivitiesFragment.kt │ │ ├── CursorStatusesFragment.kt │ │ ├── CustomTabsFragment.kt │ │ ├── DateTimePickerDialogFragment.kt │ │ ├── DeleteUserListMembersDialogFragment.kt │ │ ├── DestroyFriendshipDialogFragment.kt │ │ ├── DestroySavedSearchDialogFragment.kt │ │ ├── DestroyUserListDialogFragment.kt │ │ ├── DestroyUserListSubscriptionDialogFragment.kt │ │ ├── EditAltTextDialogFragment.kt │ │ ├── EditUserListDialogFragment.kt │ │ ├── ExtensionsListFragment.kt │ │ ├── ExtraFeaturesIntroductionDialogFragment.kt │ │ ├── GroupFragment.kt │ │ ├── HomeTimelineFragment.kt │ │ ├── HostMappingsListFragment.kt │ │ ├── InteractionsTimelineFragment.kt │ │ ├── InvalidTabFragment.kt │ │ ├── ItemsListFragment.kt │ │ ├── ListsFragment.kt │ │ ├── MessageDialogFragment.kt │ │ ├── NetworkDiagnosticsFragment.kt │ │ ├── ParcelableGroupsFragment.kt │ │ ├── ParcelableStatusesFragment.kt │ │ ├── ParcelableUserListsFragment.kt │ │ ├── ParcelableUsersFragment.kt │ │ ├── PermissionRequestDialog.kt │ │ ├── PhishingLinkWarningDialogFragment.kt │ │ ├── ProgressDialogFragment.kt │ │ ├── ReportUserSpamDialogFragment.kt │ │ ├── SavedSearchesListFragment.kt │ │ ├── SensitiveContentWarningDialogFragment.kt │ │ ├── SetUserNicknameDialogFragment.kt │ │ ├── SettingsDetailsFragment.kt │ │ ├── StubFragment.kt │ │ ├── ThemedEditTextPreferenceDialogFragmentCompat.kt │ │ ├── ThemedPreferenceDialogFragmentCompat.kt │ │ ├── TrendsSuggestionsFragment.kt │ │ ├── UserFragment.kt │ │ ├── UserGroupsFragment.kt │ │ ├── UserListFragment.kt │ │ ├── UserListMembershipsFragment.kt │ │ ├── UserListSubscriptionsFragment.kt │ │ ├── UserListsOwnershipsFragment.kt │ │ ├── UserProfileEditorFragment.kt │ │ ├── UserQrDialogFragment.kt │ │ ├── drafts │ │ │ ├── DraftsFragment.kt │ │ │ └── DraftsListFragment.kt │ │ ├── filter │ │ │ ├── AddEditItemFragment.kt │ │ │ ├── BaseFiltersFragment.kt │ │ │ ├── BaseFiltersImportFragment.kt │ │ │ ├── FilterSettingsFragment.kt │ │ │ ├── FilteredKeywordsFragment.kt │ │ │ ├── FilteredLinksFragment.kt │ │ │ ├── FilteredSourcesFragment.kt │ │ │ ├── FilteredUsersFragment.kt │ │ │ ├── FiltersFragment.kt │ │ │ ├── FiltersImportBlocksFragment.kt │ │ │ ├── FiltersImportMutesFragment.kt │ │ │ └── FiltersSubscriptionsFragment.kt │ │ ├── iface │ │ │ ├── IBaseFragment.kt │ │ │ ├── IDialogFragmentCallback.kt │ │ │ ├── IFloatingActionButtonFragment.kt │ │ │ ├── IMapFragment.kt │ │ │ ├── ISupportDialogFragmentCallback.kt │ │ │ ├── IToolBarSupportFragment.kt │ │ │ ├── RefreshScrollTopInterface.kt │ │ │ └── SupportFragmentCallback.kt │ │ ├── media │ │ │ ├── ExoPlayerPageFragment.kt │ │ │ ├── ExternalBrowserPageFragment.kt │ │ │ ├── GifPageFragment.kt │ │ │ ├── ImagePageFragment.kt │ │ │ └── VideoPageFragment.kt │ │ ├── message │ │ │ ├── MessageConversationInfoFragment.kt │ │ │ ├── MessageNewConversationFragment.kt │ │ │ ├── MessagesConversationFragment.kt │ │ │ └── MessagesEntriesFragment.kt │ │ ├── search │ │ │ ├── MastodonSearchFragment.kt │ │ │ └── SearchFragment.kt │ │ ├── status │ │ │ ├── AbsSimpleStatusOperationDialogFragment.kt │ │ │ ├── AbsStatusDialogFragment.kt │ │ │ ├── BlockStatusUsersDialogFragment.kt │ │ │ ├── DestroyStatusDialogFragment.kt │ │ │ ├── FavoriteConfirmDialogFragment.kt │ │ │ ├── MuteStatusUsersDialogFragment.kt │ │ │ ├── PinStatusDialogFragment.kt │ │ │ ├── RetweetQuoteDialogFragment.kt │ │ │ ├── StatusFragment.kt │ │ │ ├── TranslationDestinationDialogFragment.kt │ │ │ └── UnpinStatusDialogFragment.kt │ │ ├── statuses │ │ │ ├── GroupTimelineFragment.kt │ │ │ ├── MediaStatusesSearchFragment.kt │ │ │ ├── NetworkPublicTimelineFragment.kt │ │ │ ├── PublicTimelineFragment.kt │ │ │ ├── StatusesSearchFragment.kt │ │ │ ├── UserFavoritesFragment.kt │ │ │ ├── UserListTimelineFragment.kt │ │ │ ├── UserMediaTimelineFragment.kt │ │ │ ├── UserMentionsFragment.kt │ │ │ └── UserTimelineFragment.kt │ │ ├── sync │ │ │ └── SyncSettingsFragment.kt │ │ └── users │ │ │ ├── GroupMembersFragment.kt │ │ │ ├── IncomingFriendshipsFragment.kt │ │ │ ├── MutesUsersListFragment.kt │ │ │ ├── SearchUsersFragment.kt │ │ │ ├── StatusFavoritersListFragment.kt │ │ │ ├── StatusRetweetersListFragment.kt │ │ │ ├── UserBlocksListFragment.kt │ │ │ ├── UserFollowersFragment.kt │ │ │ ├── UserFriendsFragment.kt │ │ │ ├── UserListMembersFragment.kt │ │ │ └── UserListSubscribersFragment.kt │ │ ├── graphic │ │ ├── BadgeDrawable.kt │ │ └── WindowBackgroundDrawable.kt │ │ ├── loader │ │ ├── AccountDetailsLoader.kt │ │ ├── CacheUserSearchLoader.kt │ │ ├── DefaultAPIConfigLoader.kt │ │ ├── ExtensionsListLoader.kt │ │ ├── MastodonSearchLoader.kt │ │ ├── ParcelableStatusLoader.kt │ │ ├── ParcelableUserLoader.kt │ │ ├── SavedSearchesLoader.kt │ │ ├── group │ │ │ ├── BaseGroupsLoader.kt │ │ │ └── UserGroupsLoader.kt │ │ ├── iface │ │ │ ├── IExtendedLoader.kt │ │ │ └── IPaginationLoader.kt │ │ ├── statuses │ │ │ ├── AbsRequestStatusesLoader.kt │ │ │ ├── ConversationLoader.kt │ │ │ ├── GroupTimelineLoader.kt │ │ │ ├── MediaStatusesSearchLoader.kt │ │ │ ├── MediaTimelineLoader.kt │ │ │ ├── NetworkPublicTimelineLoader.kt │ │ │ ├── ParcelableStatusesLoader.kt │ │ │ ├── PublicTimelineLoader.kt │ │ │ ├── TweetSearchLoader.kt │ │ │ ├── UserFavoritesLoader.kt │ │ │ ├── UserListTimelineLoader.kt │ │ │ ├── UserMentionsLoader.kt │ │ │ └── UserTimelineLoader.kt │ │ ├── userlists │ │ │ ├── BaseUserListsLoader.kt │ │ │ ├── UserListMembershipsLoader.kt │ │ │ ├── UserListOwnershipsLoader.kt │ │ │ └── UserListSubscriptionsLoader.kt │ │ └── users │ │ │ ├── AbsRequestUsersLoader.kt │ │ │ ├── GroupMembersLoader.kt │ │ │ ├── IncomingFriendshipsLoader.kt │ │ │ ├── MutesUsersLoader.kt │ │ │ ├── ParcelableUsersLoader.kt │ │ │ ├── StatusFavoritersLoader.kt │ │ │ ├── StatusRetweetersLoader.kt │ │ │ ├── UserBlocksLoader.kt │ │ │ ├── UserFollowersLoader.kt │ │ │ ├── UserFriendsLoader.kt │ │ │ ├── UserListMembersLoader.kt │ │ │ ├── UserListRelatedUsersLoader.kt │ │ │ ├── UserListSubscribersLoader.kt │ │ │ ├── UserRelatedUsersLoader.kt │ │ │ └── UserSearchLoader.kt │ │ ├── menu │ │ ├── AccountActionProvider.kt │ │ ├── FavoriteItemProvider.kt │ │ ├── RetweetItemProvider.kt │ │ └── SupportStatusShareProvider.kt │ │ ├── model │ │ ├── AccountPreferences.kt │ │ ├── ActivityTitleSummaryMessage.kt │ │ ├── BaseRefreshTaskParam.kt │ │ ├── ItemCounts.kt │ │ ├── ObjectId.kt │ │ ├── ParameterizedExpression.kt │ │ ├── RefreshTaskParam.kt │ │ ├── Response.kt │ │ ├── SimpleRefreshTaskParam.kt │ │ ├── SingleResponse.kt │ │ ├── SuggestionItem.kt │ │ ├── SupportTabSpec.kt │ │ ├── analyzer │ │ │ ├── PurchaseConfirm.kt │ │ │ ├── PurchaseFinished.kt │ │ │ ├── PurchaseIntroduction.kt │ │ │ ├── Search.kt │ │ │ ├── Share.kt │ │ │ ├── SignIn.kt │ │ │ ├── StatusView.kt │ │ │ └── UpdateStatus.kt │ │ ├── event │ │ │ ├── SendMessageTaskEvent.kt │ │ │ └── StatusPinEvent.kt │ │ ├── filter │ │ │ ├── FilterScopeStringMap.kt │ │ │ └── FilterScopesHolder.kt │ │ ├── media │ │ │ ├── AuthenticatedUri.kt │ │ │ └── NoThumborUrl.kt │ │ ├── notification │ │ │ └── NotificationChannelSpec.kt │ │ ├── search │ │ │ └── MastodonSearchResult.kt │ │ ├── sync │ │ │ └── SyncProviderEntry.kt │ │ ├── tab │ │ │ ├── TabConfiguration.kt │ │ │ ├── conf │ │ │ │ ├── BooleanExtraConfiguration.kt │ │ │ │ ├── StringExtraConfiguration.kt │ │ │ │ ├── TrendsLocationExtraConfiguration.kt │ │ │ │ ├── UserExtraConfiguration.kt │ │ │ │ └── UserListExtraConfiguration.kt │ │ │ └── impl │ │ │ │ ├── FavoriteTimelineTabConfiguration.kt │ │ │ │ ├── HomeTabConfiguration.kt │ │ │ │ ├── InteractionsTabConfiguration.kt │ │ │ │ ├── MessagesTabConfiguration.kt │ │ │ │ ├── NetworkPublicTimelineTabConfiguration.kt │ │ │ │ ├── PublicTimelineTabConfiguration.kt │ │ │ │ ├── SearchTabConfiguration.kt │ │ │ │ ├── TrendsTabConfiguration.kt │ │ │ │ ├── UserListTimelineTabConfiguration.kt │ │ │ │ └── UserTimelineTabConfiguration.kt │ │ ├── task │ │ │ └── GetTimelineResult.kt │ │ └── util │ │ │ ├── ParcelableActivityUtils.kt │ │ │ ├── ParcelableCardEntityUtils.kt │ │ │ ├── ParcelableMediaUtils.kt │ │ │ ├── ParcelableMessageUtils.kt │ │ │ ├── ParcelableRelationshipUtils.kt │ │ │ ├── ParcelableStatusUpdateUtils.kt │ │ │ ├── ParcelableUserListUtils.kt │ │ │ └── ParcelableUserUtils.kt │ │ ├── preference │ │ ├── AccountsListPreference.kt │ │ ├── ActivityPickerPreference.kt │ │ ├── AsyncTaskPreference.kt │ │ ├── AutoRefreshAccountsListPreference.kt │ │ ├── CardPreviewPreference.kt │ │ ├── ClearCachePreference.kt │ │ ├── ClearDatabasesPreference.kt │ │ ├── ClearSearchHistoryPreference.kt │ │ ├── ColorPickerPreference.kt │ │ ├── ComponentPickerPreference.kt │ │ ├── ComposeNowPreference.kt │ │ ├── DefaultAPIPreference.kt │ │ ├── EmojiSupportPreference.kt │ │ ├── EntrySummaryListPreference.kt │ │ ├── FavoriteConfirmSwitchPreference.kt │ │ ├── HiddenSettingEntryPreference.kt │ │ ├── KeyboardShortcutPreference.kt │ │ ├── LanguageListPreference.kt │ │ ├── LanguageSelectorPreference.kt │ │ ├── LinkHighlightPreference.kt │ │ ├── MediaUploaderPreference.kt │ │ ├── NotificationAccountsListPreference.kt │ │ ├── PremiumEntryPreference.kt │ │ ├── PremiumEntryPreferenceCategory.kt │ │ ├── RandomizeAccountNamePreference.kt │ │ ├── RefreshIntervalPreference.kt │ │ ├── ServicePickerPreference.kt │ │ ├── StatusShortenerPreference.kt │ │ ├── ThemedEditTextPreference.kt │ │ ├── ThemedListPreference.kt │ │ ├── TintedPreferenceCategory.kt │ │ ├── iface │ │ │ └── IDialogPreference.kt │ │ ├── notification │ │ │ └── AccountNotificationChannelsPreference.kt │ │ └── sync │ │ │ └── SyncItemPreference.kt │ │ ├── provider │ │ ├── CacheProvider.kt │ │ └── TwidereDataProvider.kt │ │ ├── receiver │ │ ├── ConnectivityStateReceiver.kt │ │ └── NotificationReceiver.kt │ │ ├── service │ │ ├── AccountAuthenticatorService.kt │ │ ├── AccountSyncService.kt │ │ ├── BaseIntentService.kt │ │ ├── BaseService.kt │ │ ├── JobTaskService.kt │ │ ├── LegacyTaskService.kt │ │ └── LengthyOperationsService.kt │ │ ├── task │ │ ├── AbsAccountRequestTask.kt │ │ ├── AbsFriendshipOperationTask.kt │ │ ├── AcceptFriendshipTask.kt │ │ ├── AddUserListMembersTask.kt │ │ ├── BaseAbstractTask.kt │ │ ├── CreateFavoriteTask.kt │ │ ├── CreateFriendshipTask.kt │ │ ├── CreateUserBlockTask.kt │ │ ├── CreateUserMuteTask.kt │ │ ├── DenyFriendshipTask.kt │ │ ├── DestroyFavoriteTask.kt │ │ ├── DestroyFriendshipTask.kt │ │ ├── DestroyStatusTask.kt │ │ ├── DestroyUserBlockTask.kt │ │ ├── DestroyUserListTask.kt │ │ ├── DestroyUserMuteTask.kt │ │ ├── ExceptionHandlingAbstractTask.kt │ │ ├── LinkPreviewTask.kt │ │ ├── ProgressSaveFileTask.kt │ │ ├── ReportSpamAndBlockTask.kt │ │ ├── RetweetStatusTask.kt │ │ ├── SaveFileTask.kt │ │ ├── SaveMediaToGalleryTask.kt │ │ ├── UpdateAccountInfoTask.kt │ │ ├── UpdateProfileBackgroundImageTask.kt │ │ ├── UpdateProfileBannerImageTask.kt │ │ ├── UpdateProfileImageTask.kt │ │ ├── UpdateUserListDetailsTask.kt │ │ ├── cache │ │ │ ├── CacheTimelineResultTask.kt │ │ │ └── CacheUsersStatusesTask.kt │ │ ├── compose │ │ │ ├── AbsAddMediaTask.kt │ │ │ └── AbsDeleteMediaTask.kt │ │ ├── filter │ │ │ ├── RefreshFiltersSubscriptionsTask.kt │ │ │ └── RefreshLaunchPresentationsTask.kt │ │ ├── status │ │ │ ├── PinStatusTask.kt │ │ │ └── UnpinStatusTask.kt │ │ └── twitter │ │ │ ├── GetActivitiesAboutMeTask.kt │ │ │ ├── GetActivitiesTask.kt │ │ │ ├── GetHomeTimelineTask.kt │ │ │ ├── GetSavedSearchesTask.kt │ │ │ ├── GetStatusesTask.kt │ │ │ ├── GetTrendsTask.kt │ │ │ ├── UpdateStatusTask.kt │ │ │ └── message │ │ │ ├── AddParticipantsTask.kt │ │ │ ├── BatchMarkMessageReadTask.kt │ │ │ ├── ClearMessagesTask.kt │ │ │ ├── DestroyConversationTask.kt │ │ │ ├── DestroyMessageTask.kt │ │ │ ├── GetMessagesTask.kt │ │ │ ├── MarkMessageReadTask.kt │ │ │ ├── SendMessageTask.kt │ │ │ └── SetConversationNotificationDisabledTask.kt │ │ ├── text │ │ ├── AcctMentionSpan.kt │ │ ├── HashtagSpan.kt │ │ ├── MarkForDeleteSpan.kt │ │ ├── SafeSpannableString.kt │ │ ├── SafeSpannableStringBuilder.kt │ │ ├── TwidereClickableSpan.kt │ │ ├── TwidereHighLightStyle.kt │ │ ├── TwidereURLSpan.kt │ │ ├── ZeroWidthSpan.kt │ │ ├── style │ │ │ ├── EmojiSpan.kt │ │ │ └── NonBreakEllipseSpan.kt │ │ └── util │ │ │ ├── EmojiEditableFactory.kt │ │ │ ├── EmojiSpannableFactory.kt │ │ │ ├── SafeEditableFactory.kt │ │ │ └── SafeSpannableFactory.kt │ │ ├── util │ │ ├── AccountMigrator.kt │ │ ├── ActivityTracker.kt │ │ ├── Analyzer.kt │ │ ├── AsyncTwitterWrapper.kt │ │ ├── BitmapFactoryUtils.kt │ │ ├── ClipboardUtils.kt │ │ ├── ContentScrollHandler.kt │ │ ├── ContentValuesCreator.kt │ │ ├── DataStoreFunctions.kt │ │ ├── DataStoreUtils.kt │ │ ├── DebugLog.kt │ │ ├── DeviceUtils.kt │ │ ├── DirectMessageOnLinkClickHandler.kt │ │ ├── ETagCache.kt │ │ ├── ErrorInfoStore.kt │ │ ├── ExternalThemeManager.kt │ │ ├── HtmlBuilder.kt │ │ ├── HtmlEscapeHelper.kt │ │ ├── HtmlSpanBuilder.kt │ │ ├── HttpClientFactory.kt │ │ ├── IntentUtils.kt │ │ ├── LinkCreator.kt │ │ ├── ListViewScrollHandler.kt │ │ ├── MapFragmentFactory.kt │ │ ├── MastodonApplicationRegistry.kt │ │ ├── MenuUtils.kt │ │ ├── MultiSelectEventHandler.kt │ │ ├── OAuthPasswordAuthenticator.kt │ │ ├── OnLinkClickHandler.kt │ │ ├── PreviewGridItemDecoration.kt │ │ ├── ReadStateManager.kt │ │ ├── RecyclerViewScrollHandler.kt │ │ ├── RestFuNetworkStreamDownloader.kt │ │ ├── StatusActionModeCallback.kt │ │ ├── StatusAdapterLinkClickHandler.kt │ │ ├── StatusCodeMessageUtils.kt │ │ ├── StatusLinkClickHandler.kt │ │ ├── TLSSocketFactory.java │ │ ├── TaskServiceRunner.kt │ │ ├── ThemeUtils.kt │ │ ├── TransitionUtils.kt │ │ ├── TwidereQueryBuilder.kt │ │ ├── TwidereViewUtils.kt │ │ ├── TwitterCardUtils.kt │ │ ├── TwitterValidatorMETLengthChecker.kt │ │ ├── UserColorNameManager.kt │ │ ├── Utils.kt │ │ ├── api │ │ │ ├── TwidereExceptionFactory.kt │ │ │ ├── TwidereHttpRequestFactory.kt │ │ │ ├── TwidereRestRequestFactory.kt │ │ │ ├── TwitterAndroidExtraHeaders.kt │ │ │ ├── TwitterConverterFactory.kt │ │ │ ├── TwitterMacExtraHeaders.kt │ │ │ └── UserAgentExtraHeaders.kt │ │ ├── cache │ │ │ ├── DiskLRUFileCache.kt │ │ │ └── JsonCache.kt │ │ ├── content │ │ │ └── TwidereSQLiteOpenHelper.kt │ │ ├── dagger │ │ │ ├── ApplicationModule.kt │ │ │ ├── DependencyHolder.kt │ │ │ └── GeneralComponent.kt │ │ ├── database │ │ │ ├── CachedUsersQueryBuilder.kt │ │ │ ├── ContentFiltersUtils.kt │ │ │ └── SuggestionsCursorCreator.kt │ │ ├── emoji │ │ │ └── EmojioneTranslator.kt │ │ ├── filter │ │ │ ├── LocalFiltersSubscriptionProvider.kt │ │ │ └── UrlFiltersSubscriptionProvider.kt │ │ ├── gifshare │ │ │ └── GifShareProvider.kt │ │ ├── glide │ │ │ ├── AuthenticatedUriLoader.kt │ │ │ ├── DeferredTarget.kt │ │ │ ├── NoThumborUrlLoader.kt │ │ │ ├── PauseRecyclerViewOnScrollListener.kt │ │ │ ├── RoundedRectTransformation.kt │ │ │ └── TwidereGlideModule.kt │ │ ├── kovenant │ │ │ └── TwidereConfiguration.kt │ │ ├── linkhandler │ │ │ └── TwidereLinkMatcher.kt │ │ ├── media │ │ │ ├── MediaPreloader.kt │ │ │ └── ThumborWrapper.kt │ │ ├── net │ │ │ ├── SystemDnsFetcher.kt │ │ │ ├── SystemHosts.kt │ │ │ ├── TLSSocketFactory.kt │ │ │ └── TwidereDns.kt │ │ ├── notification │ │ │ ├── ContentNotificationManager.kt │ │ │ └── NotificationChannelsManager.kt │ │ ├── okhttp │ │ │ └── ModifyRequestInterceptor.kt │ │ ├── premium │ │ │ ├── DummyExtraFeaturesService.kt │ │ │ └── ExtraFeaturesService.kt │ │ ├── promotion │ │ │ ├── DummyPromotionService.kt │ │ │ └── PromotionService.kt │ │ ├── qr │ │ │ └── QrCodeData.kt │ │ ├── refresh │ │ │ ├── AutoRefreshController.kt │ │ │ ├── JobSchedulerAutoRefreshController.kt │ │ │ └── LegacyAutoRefreshController.kt │ │ ├── schedule │ │ │ └── StatusScheduleProvider.kt │ │ ├── shortcut │ │ │ └── ShortcutCreator.kt │ │ ├── support │ │ │ └── AccountManagerSupport.kt │ │ ├── sync │ │ │ ├── DataSyncProvider.kt │ │ │ ├── FileBasedDraftsSyncAction.kt │ │ │ ├── FileBasedFiltersDataSyncAction.kt │ │ │ ├── FileBasedKeyValueSyncAction.kt │ │ │ ├── FileBasedPreferencesValuesSyncAction.kt │ │ │ ├── ISyncAction.kt │ │ │ ├── JobSchedulerSyncController.kt │ │ │ ├── LegacySyncController.kt │ │ │ ├── OpenSourceSyncProviderInfoFactory.kt │ │ │ ├── SingleFileBasedDataSyncAction.kt │ │ │ ├── SyncController.kt │ │ │ ├── SyncHelperCommons.kt │ │ │ ├── SyncPreferences.kt │ │ │ ├── SyncTaskRunner.kt │ │ │ ├── TimelineSyncManager.kt │ │ │ ├── UserColorsSyncProcessor.kt │ │ │ └── UserNicknamesSyncProcessor.kt │ │ ├── text │ │ │ ├── FanfouValidator.kt │ │ │ ├── MastodonValidator.kt │ │ │ ├── StatusTextValidator.kt │ │ │ └── TwitterValidator.kt │ │ ├── theme │ │ │ ├── ThemeFunctions.kt │ │ │ └── TwidereAppearanceCreator.kt │ │ ├── twitter │ │ │ └── card │ │ │ │ ├── TwitterCardViewFactory.kt │ │ │ │ └── impl │ │ │ │ └── DefaultTwitterCardViewFactory.kt │ │ ├── view │ │ │ ├── AppBarChildBehavior.kt │ │ │ ├── ConsumerKeySecretValidator.kt │ │ │ ├── ConversationAvatarTransformation.kt │ │ │ ├── ConversationTitlesTransformation.kt │ │ │ ├── SimpleTextWatcher.kt │ │ │ ├── ViewAnimator.kt │ │ │ └── ViewProperties.kt │ │ └── webkit │ │ │ └── DefaultWebViewClient.kt │ │ └── view │ │ ├── AccountDashboardHeaderView.kt │ │ ├── ActionIconThemedTextView.kt │ │ ├── BoundsImageView.kt │ │ ├── CardMediaContainer.kt │ │ ├── ColorLabelRelativeLayout.kt │ │ ├── ComposeEditText.kt │ │ ├── ContainerView.kt │ │ ├── ExtendedFrameLayout.kt │ │ ├── ExtendedImageView.kt │ │ ├── ExtendedLinearLayout.kt │ │ ├── ExtendedRecyclerView.kt │ │ ├── ExtendedRelativeLayout.kt │ │ ├── ExtendedSwipeRefreshLayout.kt │ │ ├── ExtendedViewPager.kt │ │ ├── FixedEditText.kt │ │ ├── FixedTextView.kt │ │ ├── HighlightImageView.kt │ │ ├── IconActionButton.kt │ │ ├── IconActionView.kt │ │ ├── LinkPreviewView.kt │ │ ├── LollipopFixedWebView.kt │ │ ├── MaxHeightScrollView.kt │ │ ├── MediaViewPager.kt │ │ ├── NameView.kt │ │ ├── PreferencesItemIconView.kt │ │ ├── PreferencesItemTextView.kt │ │ ├── ProfileBannerImageView.kt │ │ ├── ShortTimeView.kt │ │ ├── StatusTextCountView.kt │ │ ├── TimelineContentTextView.kt │ │ ├── TintedStatusFrameLayout.kt │ │ ├── TintedStatusLayout.kt │ │ ├── TintedStatusRelativeLayout.kt │ │ ├── ToolbarToggleSwitch.kt │ │ ├── TwitterCardContainer.kt │ │ ├── controller │ │ ├── premium │ │ │ ├── PromotionOfferViewController.kt │ │ │ └── SyncStatusViewController.kt │ │ └── twitter │ │ │ └── card │ │ │ ├── CardBrowserViewController.kt │ │ │ └── CardPollViewController.kt │ │ ├── holder │ │ ├── AccountProfileImageViewHolder.kt │ │ ├── AccountViewHolder.kt │ │ ├── ActivityTitleSummaryViewHolder.kt │ │ ├── DraftViewHolder.kt │ │ ├── EmptyViewHolder.kt │ │ ├── GapViewHolder.kt │ │ ├── GroupViewHolder.kt │ │ ├── HashtagViewHolder.kt │ │ ├── LoadIndicatorViewHolder.kt │ │ ├── MediaStatusViewHolder.kt │ │ ├── SelectableUserViewHolder.kt │ │ ├── SimpleUserListViewHolder.kt │ │ ├── SimpleUserViewHolder.kt │ │ ├── StatusViewHolder.kt │ │ ├── TimelineFilterHeaderViewHolder.kt │ │ ├── TwoLineWithIconViewHolder.kt │ │ ├── UserListViewHolder.kt │ │ ├── UserViewHolder.kt │ │ ├── compose │ │ │ └── MediaPreviewViewHolder.kt │ │ ├── iface │ │ │ └── IStatusViewHolder.kt │ │ ├── message │ │ │ ├── AbsMessageViewHolder.kt │ │ │ ├── MessageEntryViewHolder.kt │ │ │ ├── MessageViewHolder.kt │ │ │ ├── NoticeSummaryEventViewHolder.kt │ │ │ └── StickerMessageViewHolder.kt │ │ └── status │ │ │ └── DetailStatusViewHolder.kt │ │ ├── iface │ │ ├── IExtendedView.kt │ │ └── IIconActionButton.kt │ │ ├── transformer │ │ └── AccountsSelectorTransformer.kt │ │ └── viewer │ │ └── MediaSwipeCloseContainer.kt ├── res-localized │ ├── .gitkeep │ ├── values-af │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-an │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ar │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ast │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ca │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-cs │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-da │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-de │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-el │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-en-rGB │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-es │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-fa │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-fi │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-fil │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-fj │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-fr │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-gl │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-hi │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-hr │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-hu │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-in │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-it │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-iw │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ja │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-kab │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ko │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-lo │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ml │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ms │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-nl │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-no │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-pl │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-pt │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ro │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ru │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-sk │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-sl │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-sr │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-sv │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-ta │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-te │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-th │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-tl │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-tr │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-uk │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-vi │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-yue │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-zh-rCN │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-zh-rHK │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-zh-rTW │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ ├── values-zh │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml │ └── values-zu │ │ ├── arrays.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ └── strings_twitter_errors.xml ├── res │ ├── color │ │ ├── color_stateful_follow.xml │ │ ├── message_bubble_color_dark.xml │ │ ├── message_bubble_color_light.xml │ │ ├── tertiary_text_mtrl_dark.xml │ │ └── tertiary_text_mtrl_light.xml │ ├── drawable-hdpi │ │ ├── ab_solid_shadow_holo.9.png │ │ ├── featured_graphics.png │ │ ├── ic_action_block.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_card.png │ │ ├── ic_action_color_palette.png │ │ ├── ic_action_edit.png │ │ ├── ic_action_extension.png │ │ ├── ic_action_gallery.png │ │ ├── ic_action_hashtag.png │ │ ├── ic_action_history.png │ │ ├── ic_action_interface.png │ │ ├── ic_action_list.png │ │ ├── ic_action_message.png │ │ ├── ic_action_mic_muted.png │ │ ├── ic_action_movie.png │ │ ├── ic_action_music.png │ │ ├── ic_action_my_location.png │ │ ├── ic_action_open_source.png │ │ ├── ic_action_play_circle.png │ │ ├── ic_action_profile.png │ │ ├── ic_action_quote.png │ │ ├── ic_action_save.png │ │ ├── ic_action_server.png │ │ ├── ic_action_social_cake.png │ │ ├── ic_action_status_compose.png │ │ ├── ic_action_storage.png │ │ ├── ic_action_tab.png │ │ ├── ic_action_translate.png │ │ ├── ic_action_trends.png │ │ ├── ic_action_twidere.png │ │ ├── ic_action_twidere_square.png │ │ ├── ic_action_twitter.png │ │ ├── ic_action_user.png │ │ ├── ic_action_view_quilt.png │ │ ├── ic_action_warning.png │ │ ├── ic_activity_action_follow.png │ │ ├── ic_activity_action_list_added.png │ │ ├── ic_activity_action_reply.png │ │ ├── ic_activity_action_retweet.png │ │ ├── ic_assist_action_twidere_activated.png │ │ ├── ic_assist_action_twidere_normal.png │ │ ├── ic_indicator_followers.png │ │ ├── ic_indicator_following.png │ │ ├── ic_indicator_link.png │ │ ├── ic_indicator_location.png │ │ ├── ic_indicator_retweet.png │ │ ├── ic_indicator_sent.png │ │ ├── ic_indicator_twitter.png │ │ ├── ic_indicator_web.png │ │ ├── ic_info_tab.png │ │ ├── ic_info_tab_unselected.png │ │ ├── ic_info_volume_off.png │ │ ├── ic_profile_image_twidere.png │ │ ├── ic_stat_twitter.png │ │ └── list_drag_handle.9.png │ ├── drawable-ldrtl │ │ ├── ic_indicator_arrow_next.xml │ │ └── ic_indicator_arrow_prev.xml │ ├── drawable-mdpi │ │ ├── ab_solid_shadow_holo.9.png │ │ ├── featured_graphics.png │ │ ├── ic_action_block.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_card.png │ │ ├── ic_action_color_palette.png │ │ ├── ic_action_edit.png │ │ ├── ic_action_extension.png │ │ ├── ic_action_gallery.png │ │ ├── ic_action_hashtag.png │ │ ├── ic_action_history.png │ │ ├── ic_action_interface.png │ │ ├── ic_action_list.png │ │ ├── ic_action_message.png │ │ ├── ic_action_mic_muted.png │ │ ├── ic_action_movie.png │ │ ├── ic_action_music.png │ │ ├── ic_action_my_location.png │ │ ├── ic_action_open_source.png │ │ ├── ic_action_play_circle.png │ │ ├── ic_action_profile.png │ │ ├── ic_action_quote.png │ │ ├── ic_action_save.png │ │ ├── ic_action_server.png │ │ ├── ic_action_social_cake.png │ │ ├── ic_action_status_compose.png │ │ ├── ic_action_storage.png │ │ ├── ic_action_tab.png │ │ ├── ic_action_translate.png │ │ ├── ic_action_trends.png │ │ ├── ic_action_twidere.png │ │ ├── ic_action_twidere_square.png │ │ ├── ic_action_twitter.png │ │ ├── ic_action_user.png │ │ ├── ic_action_view_quilt.png │ │ ├── ic_action_warning.png │ │ ├── ic_activity_action_follow.png │ │ ├── ic_activity_action_list_added.png │ │ ├── ic_activity_action_reply.png │ │ ├── ic_activity_action_retweet.png │ │ ├── ic_assist_action_twidere_activated.png │ │ ├── ic_assist_action_twidere_normal.png │ │ ├── ic_extension_mentions.png │ │ ├── ic_extension_messages.png │ │ ├── ic_extension_twidere.png │ │ ├── ic_indicator_followers.png │ │ ├── ic_indicator_following.png │ │ ├── ic_indicator_link.png │ │ ├── ic_indicator_location.png │ │ ├── ic_indicator_retweet.png │ │ ├── ic_indicator_sent.png │ │ ├── ic_indicator_twitter.png │ │ ├── ic_indicator_web.png │ │ ├── ic_info_tab.png │ │ ├── ic_info_tab_unselected.png │ │ ├── ic_info_volume_off.png │ │ ├── ic_profile_image_twidere.png │ │ ├── ic_stat_twitter.png │ │ ├── list_drag_handle.9.png │ │ └── nyan_stars_background_tile.png │ ├── drawable-nodpi │ │ ├── image_preview_error_bitmap.png │ │ ├── image_preview_refresh_bitmap.png │ │ ├── nyan_sakamoto_thumbnail_bitmap.png │ │ ├── sprite_birthday_cake_frames.png │ │ ├── sprite_birthday_light_strip_frames.png │ │ └── sprite_birthday_table_frames.png │ ├── drawable-v21 │ │ └── window_content_overlay.xml │ ├── drawable-xhdpi │ │ ├── ab_solid_shadow_holo.9.png │ │ ├── featured_graphics.png │ │ ├── ic_action_block.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_card.png │ │ ├── ic_action_color_palette.png │ │ ├── ic_action_edit.png │ │ ├── ic_action_extension.png │ │ ├── ic_action_gallery.png │ │ ├── ic_action_hashtag.png │ │ ├── ic_action_history.png │ │ ├── ic_action_interface.png │ │ ├── ic_action_list.png │ │ ├── ic_action_message.png │ │ ├── ic_action_mic_muted.png │ │ ├── ic_action_movie.png │ │ ├── ic_action_music.png │ │ ├── ic_action_my_location.png │ │ ├── ic_action_open_source.png │ │ ├── ic_action_play_circle.png │ │ ├── ic_action_profile.png │ │ ├── ic_action_quote.png │ │ ├── ic_action_save.png │ │ ├── ic_action_server.png │ │ ├── ic_action_social_cake.png │ │ ├── ic_action_status_compose.png │ │ ├── ic_action_storage.png │ │ ├── ic_action_tab.png │ │ ├── ic_action_translate.png │ │ ├── ic_action_trends.png │ │ ├── ic_action_twidere.png │ │ ├── ic_action_twidere_square.png │ │ ├── ic_action_twitter.png │ │ ├── ic_action_user.png │ │ ├── ic_action_view_quilt.png │ │ ├── ic_action_warning.png │ │ ├── ic_activity_action_follow.png │ │ ├── ic_activity_action_list_added.png │ │ ├── ic_activity_action_reply.png │ │ ├── ic_activity_action_retweet.png │ │ ├── ic_assist_action_twidere_activated.png │ │ ├── ic_assist_action_twidere_normal.png │ │ ├── ic_file.png │ │ ├── ic_folder.png │ │ ├── ic_indicator_followers.png │ │ ├── ic_indicator_following.png │ │ ├── ic_indicator_link.png │ │ ├── ic_indicator_location.png │ │ ├── ic_indicator_retweet.png │ │ ├── ic_indicator_sent.png │ │ ├── ic_indicator_twitter.png │ │ ├── ic_indicator_web.png │ │ ├── ic_info_tab.png │ │ ├── ic_info_tab_unselected.png │ │ ├── ic_info_volume_off.png │ │ ├── ic_profile_image_twidere.png │ │ ├── ic_stat_twitter.png │ │ └── list_drag_handle.9.png │ ├── drawable-xxhdpi │ │ ├── ab_solid_shadow_holo.9.png │ │ ├── featured_graphics.png │ │ ├── ic_action_block.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_card.png │ │ ├── ic_action_color_palette.png │ │ ├── ic_action_edit.png │ │ ├── ic_action_extension.png │ │ ├── ic_action_gallery.png │ │ ├── ic_action_hashtag.png │ │ ├── ic_action_history.png │ │ ├── ic_action_interface.png │ │ ├── ic_action_list.png │ │ ├── ic_action_message.png │ │ ├── ic_action_mic_muted.png │ │ ├── ic_action_movie.png │ │ ├── ic_action_music.png │ │ ├── ic_action_my_location.png │ │ ├── ic_action_open_source.png │ │ ├── ic_action_play_circle.png │ │ ├── ic_action_profile.png │ │ ├── ic_action_quote.png │ │ ├── ic_action_save.png │ │ ├── ic_action_server.png │ │ ├── ic_action_social_cake.png │ │ ├── ic_action_status_compose.png │ │ ├── ic_action_storage.png │ │ ├── ic_action_tab.png │ │ ├── ic_action_translate.png │ │ ├── ic_action_trends.png │ │ ├── ic_action_twidere.png │ │ ├── ic_action_twidere_square.png │ │ ├── ic_action_twitter.png │ │ ├── ic_action_user.png │ │ ├── ic_action_view_quilt.png │ │ ├── ic_action_warning.png │ │ ├── ic_activity_action_follow.png │ │ ├── ic_activity_action_list_added.png │ │ ├── ic_activity_action_reply.png │ │ ├── ic_activity_action_retweet.png │ │ ├── ic_assist_action_twidere_activated.png │ │ ├── ic_assist_action_twidere_normal.png │ │ ├── ic_extension_mentions.png │ │ ├── ic_extension_messages.png │ │ ├── ic_extension_twidere.png │ │ ├── ic_indicator_followers.png │ │ ├── ic_indicator_following.png │ │ ├── ic_indicator_link.png │ │ ├── ic_indicator_location.png │ │ ├── ic_indicator_retweet.png │ │ ├── ic_indicator_sent.png │ │ ├── ic_indicator_twitter.png │ │ ├── ic_indicator_web.png │ │ ├── ic_info_tab.png │ │ ├── ic_info_tab_unselected.png │ │ ├── ic_info_volume_off.png │ │ ├── ic_profile_image_twidere.png │ │ ├── ic_stat_twitter.png │ │ └── list_drag_handle.9.png │ ├── drawable-xxxhdpi │ │ ├── featured_graphics.png │ │ ├── ic_info_tab.png │ │ ├── ic_info_tab_unselected.png │ │ ├── ic_info_volume_off.png │ │ └── ic_profile_image_twidere.png │ ├── drawable │ │ ├── abc_dialog_material_background_dark.xml │ │ ├── bg_btn_launch_presentation_skip.xml │ │ ├── bg_edit_text_actionbar_search.xml │ │ ├── bg_message_unread_indicator.xml │ │ ├── bg_oval_black.xml │ │ ├── bg_oval_white.xml │ │ ├── bg_shadow_video_player.xml │ │ ├── bg_tab_indicator.xml │ │ ├── bg_unread_indicator.xml │ │ ├── bg_viewer_actionbar.xml │ │ ├── btn_home_actions_compat.xml │ │ ├── divider_compose_vertical_dark.xml │ │ ├── divider_compose_vertical_light.xml │ │ ├── drawer_shadow_start.xml │ │ ├── ic_assist_twidere.xml │ │ ├── ic_indicator_arrow_next.xml │ │ ├── ic_indicator_arrow_prev.xml │ │ ├── ic_status_media_placeholder.xml │ │ ├── image_preview_error.xml │ │ ├── image_preview_refresh.xml │ │ ├── nyan_sakamoto_thumbnail.xml │ │ ├── nyan_stars_background.xml │ │ ├── progress_bar_video.xml │ │ ├── shadow_bottom.xml │ │ ├── shadow_left.xml │ │ ├── shadow_right.xml │ │ ├── shadow_top.xml │ │ ├── shadow_user_banner_action_bar.xml │ │ ├── shadow_user_banner_image.xml │ │ ├── sliding_pane_shadow_left.xml │ │ ├── sliding_pane_shadow_right.xml │ │ └── window_content_overlay.xml │ ├── layout-land │ │ └── activity_main.xml │ ├── layout-sw600dp │ │ └── activity_link_handler.xml │ ├── layout │ │ ├── action_item_home_actions.xml │ │ ├── action_item_home_actions_compat.xml │ │ ├── action_item_space.xml │ │ ├── action_item_switch.xml │ │ ├── activity_account_selector.xml │ │ ├── activity_browser_sign_in.xml │ │ ├── activity_compose.xml │ │ ├── activity_content_fragment.xml │ │ ├── activity_crop_image.xml │ │ ├── activity_device_incompatible.xml │ │ ├── activity_home.xml │ │ ├── activity_home_content.xml │ │ ├── activity_keyboard_shortcut_input.xml │ │ ├── activity_link_handler.xml │ │ ├── activity_main.xml │ │ ├── activity_media_viewer.xml │ │ ├── activity_premium_dashboard.xml │ │ ├── activity_premium_service_sign_in.xml │ │ ├── activity_quick_search_bar.xml │ │ ├── activity_request_permissions.xml │ │ ├── activity_settings.xml │ │ ├── activity_sign_in.xml │ │ ├── activity_user_list_selector.xml │ │ ├── activity_user_selector.xml │ │ ├── adapter_item_compose_account.xml │ │ ├── adapter_item_dashboard_account.xml │ │ ├── adapter_item_dashboard_account_space.xml │ │ ├── adapter_item_extra_feature_nocard.xml │ │ ├── adapter_item_extra_feature_normal.xml │ │ ├── adapter_item_media_status.xml │ │ ├── adapter_item_status_count_label.xml │ │ ├── adapter_item_status_error.xml │ │ ├── adapter_item_status_interact_user.xml │ │ ├── card_item_gap.xml │ │ ├── card_item_group_compact.xml │ │ ├── dialog_add_filters_subscription.xml │ │ ├── dialog_add_host_mapping.xml │ │ ├── dialog_api_editor.xml │ │ ├── dialog_auto_complete_textview.xml │ │ ├── dialog_block_mute_filter_user_confirm.xml │ │ ├── dialog_compose_edit_alt_text.xml │ │ ├── dialog_custom_tab_editor.xml │ │ ├── dialog_date_time_picker.xml │ │ ├── dialog_edit_conversation_name.xml │ │ ├── dialog_edit_user_nickname.xml │ │ ├── dialog_expandable_list.xml │ │ ├── dialog_extra_features_introduction.xml │ │ ├── dialog_filter_rule_editor.xml │ │ ├── dialog_keyboard_shortcut_input.xml │ │ ├── dialog_login_verification_code.xml │ │ ├── dialog_password_sign_in.xml │ │ ├── dialog_phishing_link_warning.xml │ │ ├── dialog_preference_seek_bar.xml │ │ ├── dialog_scrollable_status.xml │ │ ├── dialog_set_consumer_key_secret.xml │ │ ├── dialog_status_favorite_confirm.xml │ │ ├── dialog_status_quote_retweet.xml │ │ ├── dialog_theme_background_preference.xml │ │ ├── dialog_user_list_detail_editor.xml │ │ ├── fragment_accounts_dashboard.xml │ │ ├── fragment_content_listview.xml │ │ ├── fragment_content_pages.xml │ │ ├── fragment_content_recyclerview.xml │ │ ├── fragment_invalid_tab.xml │ │ ├── fragment_messages_conversation.xml │ │ ├── fragment_messages_conversation_info.xml │ │ ├── fragment_messages_conversation_new.xml │ │ ├── fragment_network_diagnostics.xml │ │ ├── fragment_scrollable_status.xml │ │ ├── fragment_status.xml │ │ ├── fragment_stub.xml │ │ ├── fragment_toolbar_tab_pages.xml │ │ ├── fragment_user.xml │ │ ├── fragment_user_profile_editor.xml │ │ ├── fragment_user_qr.xml │ │ ├── fragment_webview.xml │ │ ├── gallery_item_image_preview.xml │ │ ├── grid_item_media_editor.xml │ │ ├── header_drawer_account_selector.xml │ │ ├── header_hidden_settings.xml │ │ ├── header_message_conversation_info.xml │ │ ├── header_message_conversation_info_button_space.xml │ │ ├── header_status.xml │ │ ├── header_usage_statistics.xml │ │ ├── header_user.xml │ │ ├── header_user_timeline_filter.xml │ │ ├── layout_account_dashboard_profile_banner.xml │ │ ├── layout_action_item_favorite.xml │ │ ├── layout_actionbar_content.xml │ │ ├── layout_actionbar_message_user_picker.xml │ │ ├── layout_actionbar_search.xml │ │ ├── layout_api_editor_advanced_fields.xml │ │ ├── layout_card_media_preview.xml │ │ ├── layout_content_fragment_common.xml │ │ ├── layout_content_pages_common.xml │ │ ├── layout_controller_extra_feature.xml │ │ ├── layout_controller_launch_promotion_offer.xml │ │ ├── layout_divider_drawer.xml │ │ ├── layout_draggable_list_with_empty_view.xml │ │ ├── layout_empty_tab_hint.xml │ │ ├── layout_extra_config_checkbox.xml │ │ ├── layout_extra_config_text.xml │ │ ├── layout_extra_config_user.xml │ │ ├── layout_extra_config_user_list.xml │ │ ├── layout_image_cropper_done_cancel.xml │ │ ├── layout_link_preview.xml │ │ ├── layout_list_with_empty_view.xml │ │ ├── layout_media_viewer_browser_fragment.xml │ │ ├── layout_media_viewer_exo_player_view.xml │ │ ├── layout_media_viewer_gif.xml │ │ ├── layout_media_viewer_texture_video_view.xml │ │ ├── layout_media_viewer_video_controller_exo.xml │ │ ├── layout_media_viewer_video_overlay.xml │ │ ├── layout_menu_item_icon.xml │ │ ├── layout_poll_item.xml │ │ ├── layout_preference_switch_indicator.xml │ │ ├── layout_preferences_card_preview.xml │ │ ├── layout_preferences_card_preview_compact.xml │ │ ├── layout_surface_view.xml │ │ ├── layout_tab_item.xml │ │ ├── layout_toolbar_message_conversation_title.xml │ │ ├── layout_twitter_card_poll.xml │ │ ├── layout_user_profile_birthday_stub.xml │ │ ├── list_action_item.xml │ │ ├── list_item_account.xml │ │ ├── list_item_activity_summary_compact.xml │ │ ├── list_item_auto_complete.xml │ │ ├── list_item_compose_account.xml │ │ ├── list_item_conversation_info_add_user.xml │ │ ├── list_item_conversation_info_space.xml │ │ ├── list_item_conversation_info_user.xml │ │ ├── list_item_custom_tab.xml │ │ ├── list_item_dashboard_menu.xml │ │ ├── list_item_draft.xml │ │ ├── list_item_draft_clickable.xml │ │ ├── list_item_load_indicator.xml │ │ ├── list_item_menu.xml │ │ ├── list_item_message_conversation_notice.xml │ │ ├── list_item_message_conversation_sticker.xml │ │ ├── list_item_message_conversation_text.xml │ │ ├── list_item_message_entry.xml │ │ ├── list_item_preference_header_category.xml │ │ ├── list_item_preference_header_item.xml │ │ ├── list_item_scheduled_status.xml │ │ ├── list_item_section_header.xml │ │ ├── list_item_separator.xml │ │ ├── list_item_simple_user.xml │ │ ├── list_item_simple_user_list.xml │ │ ├── list_item_status.xml │ │ ├── list_item_suggestion_search.xml │ │ ├── list_item_suggestion_user.xml │ │ ├── list_item_two_line.xml │ │ ├── list_item_two_line_small.xml │ │ ├── list_item_user.xml │ │ ├── list_item_user_list.xml │ │ ├── preference_widget_account_preference_item.xml │ │ ├── preference_widget_color_picker.xml │ │ ├── settings_layout_click_to_config.xml │ │ ├── simple_list_item_activated_1.xml │ │ ├── spinner_item_account_icon.xml │ │ ├── spinner_item_custom_tab_icon.xml │ │ └── switch_item.xml │ ├── menu │ │ ├── action_dashboard_timeline_toggle.xml │ │ ├── action_direct_message.xml │ │ ├── action_extension.xml │ │ ├── action_incoming_friendship.xml │ │ ├── action_manager_account.xml │ │ ├── action_multi_select_contents.xml │ │ ├── action_multi_select_drafts.xml │ │ ├── action_multi_select_filtered_users.xml │ │ ├── action_multi_select_items.xml │ │ ├── action_status.xml │ │ ├── action_status_text_selection.xml │ │ ├── action_user_list.xml │ │ ├── action_user_list_member.xml │ │ ├── context_message_entry.xml │ │ ├── menu_account_dashboard.xml │ │ ├── menu_accounts_manager.xml │ │ ├── menu_attached_media_edit.xml │ │ ├── menu_compose.xml │ │ ├── menu_conversation_message_item.xml │ │ ├── menu_crop_image.xml │ │ ├── menu_custom_tabs.xml │ │ ├── menu_detail_status.xml │ │ ├── menu_drafts.xml │ │ ├── menu_filters.xml │ │ ├── menu_filters_import.xml │ │ ├── menu_filters_subscriptions.xml │ │ ├── menu_filters_users.xml │ │ ├── menu_group_timeline.xml │ │ ├── menu_host_mapping.xml │ │ ├── menu_keyboard_shortcuts.xml │ │ ├── menu_media_viewer.xml │ │ ├── menu_messages_conversation.xml │ │ ├── menu_messages_conversation_info.xml │ │ ├── menu_messages_conversation_new.xml │ │ ├── menu_premium_dashboard.xml │ │ ├── menu_profile_editor.xml │ │ ├── menu_search.xml │ │ ├── menu_settings.xml │ │ ├── menu_sign_in.xml │ │ ├── menu_switch_preference.xml │ │ ├── menu_sync_settings.xml │ │ ├── menu_user_list.xml │ │ ├── menu_user_lists_owned.xml │ │ └── menu_user_profile.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_shortcut_camera.xml │ │ ├── ic_shortcut_compose.xml │ │ ├── ic_shortcut_favorite.xml │ │ ├── ic_shortcut_gallery.xml │ │ ├── ic_shortcut_like.xml │ │ ├── ic_shortcut_list.xml │ │ ├── ic_shortcut_quote.xml │ │ └── ic_shortcut_user.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_background.png │ │ ├── ic_launcher_adaptive_foreground.png │ │ ├── ic_launcher_hondajojo.png │ │ ├── ic_launcher_round.png │ │ ├── ic_shortcut_camera.png │ │ ├── ic_shortcut_camera_round.png │ │ ├── ic_shortcut_compose.png │ │ ├── ic_shortcut_compose_round.png │ │ ├── ic_shortcut_favorite.png │ │ ├── ic_shortcut_favorite_round.png │ │ ├── ic_shortcut_gallery.png │ │ ├── ic_shortcut_gallery_round.png │ │ ├── ic_shortcut_like.png │ │ ├── ic_shortcut_like_round.png │ │ ├── ic_shortcut_list.png │ │ ├── ic_shortcut_list_round.png │ │ ├── ic_shortcut_quote.png │ │ ├── ic_shortcut_quote_adaptive_foreground.png │ │ ├── ic_shortcut_quote_round.png │ │ ├── ic_shortcut_user.png │ │ └── ic_shortcut_user_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_background.png │ │ ├── ic_launcher_adaptive_foreground.png │ │ ├── ic_launcher_hondajojo.png │ │ ├── ic_launcher_round.png │ │ ├── ic_shortcut_camera.png │ │ ├── ic_shortcut_camera_round.png │ │ ├── ic_shortcut_compose.png │ │ ├── ic_shortcut_compose_round.png │ │ ├── ic_shortcut_favorite.png │ │ ├── ic_shortcut_favorite_round.png │ │ ├── ic_shortcut_gallery.png │ │ ├── ic_shortcut_gallery_round.png │ │ ├── ic_shortcut_like.png │ │ ├── ic_shortcut_like_round.png │ │ ├── ic_shortcut_list.png │ │ ├── ic_shortcut_list_round.png │ │ ├── ic_shortcut_quote.png │ │ ├── ic_shortcut_quote_adaptive_foreground.png │ │ ├── ic_shortcut_quote_round.png │ │ ├── ic_shortcut_user.png │ │ └── ic_shortcut_user_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_background.png │ │ ├── ic_launcher_adaptive_foreground.png │ │ ├── ic_launcher_hondajojo.png │ │ ├── ic_launcher_round.png │ │ ├── ic_shortcut_camera.png │ │ ├── ic_shortcut_camera_round.png │ │ ├── ic_shortcut_compose.png │ │ ├── ic_shortcut_compose_round.png │ │ ├── ic_shortcut_favorite.png │ │ ├── ic_shortcut_favorite_round.png │ │ ├── ic_shortcut_gallery.png │ │ ├── ic_shortcut_gallery_round.png │ │ ├── ic_shortcut_like.png │ │ ├── ic_shortcut_like_round.png │ │ ├── ic_shortcut_list.png │ │ ├── ic_shortcut_list_round.png │ │ ├── ic_shortcut_quote.png │ │ ├── ic_shortcut_quote_adaptive_foreground.png │ │ ├── ic_shortcut_quote_round.png │ │ ├── ic_shortcut_user.png │ │ └── ic_shortcut_user_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_background.png │ │ ├── ic_launcher_adaptive_foreground.png │ │ ├── ic_launcher_hondajojo.png │ │ ├── ic_launcher_round.png │ │ ├── ic_shortcut_camera.png │ │ ├── ic_shortcut_camera_round.png │ │ ├── ic_shortcut_compose.png │ │ ├── ic_shortcut_compose_round.png │ │ ├── ic_shortcut_favorite.png │ │ ├── ic_shortcut_favorite_round.png │ │ ├── ic_shortcut_gallery.png │ │ ├── ic_shortcut_gallery_round.png │ │ ├── ic_shortcut_like.png │ │ ├── ic_shortcut_like_round.png │ │ ├── ic_shortcut_list.png │ │ ├── ic_shortcut_list_round.png │ │ ├── ic_shortcut_quote.png │ │ ├── ic_shortcut_quote_adaptive_foreground.png │ │ ├── ic_shortcut_quote_round.png │ │ ├── ic_shortcut_user.png │ │ └── ic_shortcut_user_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_background.png │ │ ├── ic_launcher_adaptive_foreground.png │ │ ├── ic_launcher_hondajojo.png │ │ ├── ic_launcher_round.png │ │ ├── ic_shortcut_camera.png │ │ ├── ic_shortcut_camera_round.png │ │ ├── ic_shortcut_compose.png │ │ ├── ic_shortcut_compose_round.png │ │ ├── ic_shortcut_favorite.png │ │ ├── ic_shortcut_favorite_round.png │ │ ├── ic_shortcut_gallery.png │ │ ├── ic_shortcut_gallery_round.png │ │ ├── ic_shortcut_like.png │ │ ├── ic_shortcut_like_round.png │ │ ├── ic_shortcut_list.png │ │ ├── ic_shortcut_list_round.png │ │ ├── ic_shortcut_quote.png │ │ ├── ic_shortcut_quote_adaptive_foreground.png │ │ ├── ic_shortcut_quote_round.png │ │ ├── ic_shortcut_user.png │ │ └── ic_shortcut_user_round.png │ ├── values-hdpi │ │ └── defaults.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── configs.xml │ │ ├── dimens.xml │ │ └── integers.xml │ ├── values-large-land │ │ ├── bools.xml │ │ └── integers.xml │ ├── values-large │ │ ├── defaults.xml │ │ ├── dimens.xml │ │ └── integers.xml │ ├── values-night │ │ └── themes.xml │ ├── values-notnight │ │ └── themes_daynight.xml │ ├── values-sw600dp-land │ │ └── bools.xml │ ├── values-sw600dp │ │ ├── configs.xml │ │ ├── defaults.xml │ │ └── themes_base.xml │ ├── values-sw720dp │ │ ├── bools.xml │ │ └── defaults.xml │ ├── values-v21 │ │ ├── bools.xml │ │ ├── configs.xml │ │ ├── dimens.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── styles_base_appcompat.xml │ │ ├── themes.xml │ │ ├── themes_base_dark.xml │ │ └── themes_base_light.xml │ ├── values-v25 │ │ └── configs.xml │ ├── values-w480dp │ │ └── fractions.xml │ ├── values-w600dp │ │ └── fractions.xml │ ├── values-w720dp │ │ ├── dimens.xml │ │ └── fractions.xml │ ├── values-xhdpi │ │ └── defaults.xml │ ├── values-xlarge-land │ │ └── integers.xml │ ├── values-xlarge │ │ └── integers.xml │ ├── values │ │ ├── arrays.xml │ │ ├── arrays_languages.xml │ │ ├── arrays_no_translate.xml │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── colors_material.xml │ │ ├── configs.xml │ │ ├── defaults.xml │ │ ├── dimens.xml │ │ ├── dimens_system.xml │ │ ├── fractions.xml │ │ ├── ids.xml │ │ ├── integers.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_http_errors.xml │ │ ├── strings_no_translate.xml │ │ ├── strings_twitter_errors.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── styles_base_appcompat.xml │ │ ├── themes.xml │ │ ├── themes_base.xml │ │ ├── themes_base_dark.xml │ │ ├── themes_base_light.xml │ │ ├── themes_daynight.xml │ │ └── vpi__defaults.xml │ ├── xml-v26 │ │ └── preferences_account_notifications.xml │ └── xml │ │ ├── account_authenticator.xml │ │ ├── compose_shortcuts.xml │ │ ├── file_paths.xml │ │ ├── network_security_config.xml │ │ ├── nyan_wallpaper.xml │ │ ├── preferences_about.xml │ │ ├── preferences_account_notifications.xml │ │ ├── preferences_account_refresh.xml │ │ ├── preferences_advanced_network.xml │ │ ├── preferences_cards.xml │ │ ├── preferences_compose.xml │ │ ├── preferences_content.xml │ │ ├── preferences_filters.xml │ │ ├── preferences_hidden.xml │ │ ├── preferences_keyboard_shortcuts.xml │ │ ├── preferences_network.xml │ │ ├── preferences_notifications.xml │ │ ├── preferences_other.xml │ │ ├── preferences_refresh.xml │ │ ├── preferences_scrapyard.xml │ │ ├── preferences_storage.xml │ │ ├── preferences_sync.xml │ │ ├── preferences_tablet_mode.xml │ │ ├── preferences_theme.xml │ │ ├── preferences_thumbor.xml │ │ ├── searchable.xml │ │ └── sync_adapter.xml ├── resources │ └── META-INF │ │ └── services │ │ ├── org.mariotaku.twidere.util.sync.DataSyncProvider$Factory │ │ └── org.mariotaku.twidere.util.twitter.card.TwitterCardViewFactory └── scripts │ └── apply_i18n_resources.kts └── release └── java └── org └── mariotaku └── twidere └── util └── DebugModeUtils.java /.clabot: -------------------------------------------------------------------------------- 1 | { 2 | "contributors": ["Tlaster"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat text eol=crlf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /resources/logos/sujitech_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/resources/logos/sujitech_logo.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/settings.gradle -------------------------------------------------------------------------------- /travis/configs/.gitignore: -------------------------------------------------------------------------------- 1 | /twidere_private_config.tar.gz -------------------------------------------------------------------------------- /travis/configs/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/configs/gradle.properties -------------------------------------------------------------------------------- /travis/configs/twidere_private_config.tar.gz.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/configs/twidere_private_config.tar.gz.enc -------------------------------------------------------------------------------- /travis/scripts/decode_private_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/decode_private_configs.sh -------------------------------------------------------------------------------- /travis/scripts/fetch_private_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/fetch_private_files.sh -------------------------------------------------------------------------------- /travis/scripts/google_play_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/google_play_deploy.sh -------------------------------------------------------------------------------- /travis/scripts/patch_sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/patch_sources.sh -------------------------------------------------------------------------------- /travis/scripts/print_error_logs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | find ~ -name hs_err_pid*.log -exec cat {} \; -------------------------------------------------------------------------------- /travis/scripts/test_private_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/test_private_files.sh -------------------------------------------------------------------------------- /travis/scripts/upload_error_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/travis/scripts/upload_error_logs.sh -------------------------------------------------------------------------------- /twidere.component.common/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.common/LICENSE.txt -------------------------------------------------------------------------------- /twidere.component.common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.common/build.gradle -------------------------------------------------------------------------------- /twidere.component.common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.common/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /twidere.component.common/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.common/src/main/res/values/values.xml -------------------------------------------------------------------------------- /twidere.component.nyan/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/build.gradle -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/layout/nyan_daydream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/layout/nyan_daydream.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/values-land/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/values-land/integers.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/values-large/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/values-large/integers.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /twidere.component.nyan/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere.component.nyan/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /twidere/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | fabric.properties 3 | google-services.json -------------------------------------------------------------------------------- /twidere/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/LICENSE.txt -------------------------------------------------------------------------------- /twidere/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/build.gradle -------------------------------------------------------------------------------- /twidere/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/ic_launcher-web.png -------------------------------------------------------------------------------- /twidere/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/proguard-rules.pro -------------------------------------------------------------------------------- /twidere/src/.gitignore: -------------------------------------------------------------------------------- 1 | google/ 2 | -------------------------------------------------------------------------------- /twidere/src/.google.commit-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/.google.commit-id -------------------------------------------------------------------------------- /twidere/src/androidTest/res/raw/status_8754050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/androidTest/res/raw/status_8754050.json -------------------------------------------------------------------------------- /twidere/src/androidTest/res/raw/status_9171447.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/androidTest/res/raw/status_9171447.json -------------------------------------------------------------------------------- /twidere/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /twidere/src/debug/res/values/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/debug/res/values/configs.xml -------------------------------------------------------------------------------- /twidere/src/debug/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/debug/res/values/defaults.xml -------------------------------------------------------------------------------- /twidere/src/fdroid/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/fdroid/AndroidManifest.xml -------------------------------------------------------------------------------- /twidere/src/fdroid/res/drawable/ic_map_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/fdroid/res/drawable/ic_map_marker.xml -------------------------------------------------------------------------------- /twidere/src/fdroid/res/layout/activity_osm_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/fdroid/res/layout/activity_osm_viewer.xml -------------------------------------------------------------------------------- /twidere/src/fdroid/res/menu/menu_osm_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/fdroid/res/menu/menu_osm_viewer.xml -------------------------------------------------------------------------------- /twidere/src/fdroid/resources/META-INF/services/org.mariotaku.twidere.util.Analyzer: -------------------------------------------------------------------------------- 1 | org.mariotaku.twidere.util.ACRAAnalyzer -------------------------------------------------------------------------------- /twidere/src/fdroid/resources/META-INF/services/org.mariotaku.twidere.util.MapFragmentFactory: -------------------------------------------------------------------------------- 1 | org.mariotaku.twidere.util.OSMMapFragmentFactory -------------------------------------------------------------------------------- /twidere/src/main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/.gitignore -------------------------------------------------------------------------------- /twidere/src/main/.keep_region_locales: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/.keep_region_locales -------------------------------------------------------------------------------- /twidere/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /twidere/src/main/assets/blackberry/android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/assets/blackberry/android.cfg -------------------------------------------------------------------------------- /twidere/src/main/assets/blackberry/apk2bar.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/assets/blackberry/apk2bar.prefs -------------------------------------------------------------------------------- /twidere/src/main/assets/data/default_api_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/assets/data/default_api_configs.json -------------------------------------------------------------------------------- /twidere/src/main/assets/data/default_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/assets/data/default_features.json -------------------------------------------------------------------------------- /twidere/src/main/assets/gpl-3.0-standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/assets/gpl-3.0-standalone.html -------------------------------------------------------------------------------- /twidere/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_accounts.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_add.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_at.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_back.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_cake.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_camcorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_camcorder.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_cancel.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_confirm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_confirm.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_copy.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_delete.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_draft.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_file.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_filter.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_gif.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_heart.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_home.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_import.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_infinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_infinity.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_info.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_link.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_location.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_lock.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_pause.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_pin.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_qr.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_qr_scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_qr_scan.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_refresh.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_reply.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_retweet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_retweet.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_search.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_send.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_settings.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_share.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_star.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_sync.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_tablet.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_time.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_unpin.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_users.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_web.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_action_web_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_action_web_lock.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_card_media_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_card_media_play.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_info_accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_info_accounts.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_info_draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_info_draft.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_info_locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_info_locked.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_info_refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_info_refresh.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_info_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_info_search.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_label_gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_label_gallery.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_label_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_label_location.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_label_poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_label_poll.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_label_video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_label_video.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_label_warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_label_warning.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_draft.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_gift.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_info.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_mention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_mention.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_message.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_refresh.svg -------------------------------------------------------------------------------- /twidere/src/main/images/drawable-mdpi/ic_stat_send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/images/drawable-mdpi/ic_stat_send.svg -------------------------------------------------------------------------------- /twidere/src/main/java/org/mariotaku/sprite/library/Layer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/java/org/mariotaku/sprite/library/Layer.java -------------------------------------------------------------------------------- /twidere/src/main/java/org/mariotaku/twidere/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/java/org/mariotaku/twidere/Constants.java -------------------------------------------------------------------------------- /twidere/src/main/kotlin/org/mariotaku/twidere/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/kotlin/org/mariotaku/twidere/util/Utils.kt -------------------------------------------------------------------------------- /twidere/src/main/res-localized/.gitkeep: -------------------------------------------------------------------------------- 1 | Keep this directory from deleting -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-af/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-af/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-af/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-af/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-af/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-an/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-an/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-an/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-an/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-an/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-an/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ar/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ar/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ar/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ar/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ar/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ast/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ast/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ast/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ast/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ast/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ast/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ca/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ca/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ca/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ca/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ca/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-cs/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-cs/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-cs/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-cs/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-cs/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-da/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-da/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-da/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-da/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-da/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-de/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-de/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-de/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-de/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-de/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-el/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-el/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-el/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-el/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-el/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-en-rGB/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-en-rGB/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-en-rGB/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-en-rGB/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-es/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-es/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-es/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-es/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-es/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fa/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fa/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fa/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fa/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fa/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fi/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fi/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fi/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fil/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fil/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fil/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fil/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fil/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fj/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fj/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fj/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fj/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fj/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fj/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fr/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fr/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-fr/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-gl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-gl/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-gl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-gl/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-gl/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hi/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hi/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hi/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hr/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hr/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hr/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hu/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hu/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hu/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-hu/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-in/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-in/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-in/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-in/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-in/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-it/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-it/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-it/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-it/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-it/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-iw/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-iw/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-iw/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-iw/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-iw/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ja/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ja/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ja/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ja/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ja/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-kab/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-kab/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-kab/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-kab/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-kab/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-kab/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ko/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ko/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ko/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ko/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ko/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-lo/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-lo/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-lo/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-lo/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-lo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-lo/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ml/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ml/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ml/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ml/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ml/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ms/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ms/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ms/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ms/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ms/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-nl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-nl/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-nl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-nl/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-nl/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-no/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-no/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-no/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-no/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-no/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pl/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pl/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pl/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pt/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pt/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pt/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pt/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-pt/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ro/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ro/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ro/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ro/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ro/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ru/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ru/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ru/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ru/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ru/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sk/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sk/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sk/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sk/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sl/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sl/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sl/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sr/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sr/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sr/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sv/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sv/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sv/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sv/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-sv/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ta/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ta/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ta/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ta/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-ta/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-te/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-te/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-te/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-te/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-te/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-th/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-th/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-th/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-th/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-th/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tl/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tl/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tl/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tr/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tr/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-tr/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-uk/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-uk/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-uk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-uk/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-uk/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-vi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-vi/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-vi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-vi/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-vi/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-yue/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-yue/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-yue/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-yue/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-yue/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-yue/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rCN/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rCN/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rCN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rCN/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rHK/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rHK/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rHK/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rHK/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rTW/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rTW/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rTW/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rTW/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zh/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zu/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zu/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zu/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res-localized/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res-localized/values-zu/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/color/color_stateful_follow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/color/color_stateful_follow.xml -------------------------------------------------------------------------------- /twidere/src/main/res/color/message_bubble_color_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/color/message_bubble_color_dark.xml -------------------------------------------------------------------------------- /twidere/src/main/res/color/message_bubble_color_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/color/message_bubble_color_light.xml -------------------------------------------------------------------------------- /twidere/src/main/res/color/tertiary_text_mtrl_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/color/tertiary_text_mtrl_dark.xml -------------------------------------------------------------------------------- /twidere/src/main/res/color/tertiary_text_mtrl_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/color/tertiary_text_mtrl_light.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ab_solid_shadow_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ab_solid_shadow_holo.9.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/featured_graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/featured_graphics.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_block.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_card.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_edit.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_extension.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_hashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_hashtag.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_history.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_interface.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_message.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_mic_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_mic_muted.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_movie.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_music.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_my_location.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_open_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_open_source.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_play_circle.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_profile.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_save.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_server.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_social_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_social_cake.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_storage.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_translate.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_trends.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_twidere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_twidere.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_view_quilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_view_quilt.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_action_warning.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_followers.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_following.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_link.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_location.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_retweet.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_sent.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_indicator_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_indicator_web.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_info_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_info_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_info_tab_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_info_tab_unselected.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_info_volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_info_volume_off.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/ic_stat_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/ic_stat_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-hdpi/list_drag_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-hdpi/list_drag_handle.9.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ab_solid_shadow_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ab_solid_shadow_holo.9.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/featured_graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/featured_graphics.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_block.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_card.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_edit.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_extension.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_hashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_hashtag.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_history.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_interface.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_message.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_mic_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_mic_muted.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_movie.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_music.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_my_location.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_open_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_open_source.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_play_circle.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_profile.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_save.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_server.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_social_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_social_cake.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_storage.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_translate.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_trends.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_twidere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_twidere.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_view_quilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_view_quilt.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_action_warning.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_extension_mentions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_extension_mentions.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_extension_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_extension_messages.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_extension_twidere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_extension_twidere.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_followers.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_following.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_link.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_location.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_retweet.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_sent.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_indicator_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_indicator_web.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_info_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_info_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_info_tab_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_info_tab_unselected.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_info_volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_info_volume_off.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/ic_stat_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/ic_stat_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-mdpi/list_drag_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-mdpi/list_drag_handle.9.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/featured_graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/featured_graphics.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_block.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_card.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_hashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_hashtag.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_history.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_message.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_movie.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_music.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_profile.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_save.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_server.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_storage.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_trends.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_twidere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_twidere.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_action_warning.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_file.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_folder.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_indicator_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_indicator_link.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_indicator_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_indicator_sent.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_indicator_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_indicator_web.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_info_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_info_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_info_volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_info_volume_off.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/ic_stat_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/ic_stat_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xhdpi/list_drag_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xhdpi/list_drag_handle.9.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/featured_graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/featured_graphics.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_block.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_card.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_hashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_hashtag.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_history.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_message.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_movie.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_music.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_profile.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_save.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_server.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_storage.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_trends.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_twidere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_twidere.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_action_warning.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_indicator_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_indicator_link.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_indicator_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_indicator_sent.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_indicator_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_indicator_web.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_info_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_info_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxhdpi/ic_stat_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxhdpi/ic_stat_twitter.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable-xxxhdpi/ic_info_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable-xxxhdpi/ic_info_tab.png -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_oval_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_oval_black.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_oval_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_oval_white.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_shadow_video_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_shadow_video_player.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_tab_indicator.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_unread_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_unread_indicator.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/bg_viewer_actionbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/bg_viewer_actionbar.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/btn_home_actions_compat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/btn_home_actions_compat.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/drawer_shadow_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/drawer_shadow_start.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/ic_assist_twidere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/ic_assist_twidere.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/ic_indicator_arrow_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/ic_indicator_arrow_next.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/ic_indicator_arrow_prev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/ic_indicator_arrow_prev.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/image_preview_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/image_preview_error.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/image_preview_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/image_preview_refresh.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/nyan_sakamoto_thumbnail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/nyan_sakamoto_thumbnail.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/nyan_stars_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/nyan_stars_background.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/progress_bar_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/progress_bar_video.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/shadow_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/shadow_bottom.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/shadow_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/shadow_left.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/shadow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/shadow_right.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/shadow_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/shadow_top.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/shadow_user_banner_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/shadow_user_banner_image.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/sliding_pane_shadow_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/sliding_pane_shadow_left.xml -------------------------------------------------------------------------------- /twidere/src/main/res/drawable/window_content_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/drawable/window_content_overlay.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/action_item_home_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/action_item_home_actions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/action_item_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/action_item_space.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/action_item_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/action_item_switch.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_account_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_account_selector.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_browser_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_browser_sign_in.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_compose.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_content_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_content_fragment.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_crop_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_crop_image.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_home_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_home_content.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_link_handler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_link_handler.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_media_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_media_viewer.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_premium_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_premium_dashboard.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_quick_search_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_quick_search_bar.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_sign_in.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/activity_user_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/activity_user_selector.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/adapter_item_media_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/adapter_item_media_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/adapter_item_status_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/adapter_item_status_error.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/card_item_gap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/card_item_gap.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/card_item_group_compact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/card_item_group_compact.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_add_host_mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_add_host_mapping.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_api_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_api_editor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_custom_tab_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_custom_tab_editor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_date_time_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_date_time_picker.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_edit_user_nickname.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_edit_user_nickname.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_expandable_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_expandable_list.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_filter_rule_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_filter_rule_editor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_password_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_password_sign_in.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_preference_seek_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_preference_seek_bar.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/dialog_scrollable_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/dialog_scrollable_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_content_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_content_listview.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_content_pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_content_pages.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_invalid_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_invalid_tab.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_scrollable_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_scrollable_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_stub.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_toolbar_tab_pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_toolbar_tab_pages.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_user_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_user_qr.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/fragment_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/fragment_webview.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/gallery_item_image_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/gallery_item_image_preview.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/grid_item_media_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/grid_item_media_editor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/header_hidden_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/header_hidden_settings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/header_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/header_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/header_usage_statistics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/header_usage_statistics.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/header_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/header_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_actionbar_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_actionbar_content.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_actionbar_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_actionbar_search.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_card_media_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_card_media_preview.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_divider_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_divider_drawer.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_empty_tab_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_empty_tab_hint.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_extra_config_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_extra_config_text.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_extra_config_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_extra_config_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_link_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_link_preview.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_media_viewer_gif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_media_viewer_gif.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_menu_item_icon.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_poll_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_poll_item.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_surface_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_surface_view.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_tab_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_tab_item.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/layout_twitter_card_poll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/layout_twitter_card_poll.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_action_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_action_item.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_account.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_auto_complete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_auto_complete.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_compose_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_compose_account.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_custom_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_custom_tab.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_dashboard_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_dashboard_menu.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_draft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_draft.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_draft_clickable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_draft_clickable.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_load_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_load_indicator.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_menu.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_message_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_message_entry.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_scheduled_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_scheduled_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_section_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_section_header.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_separator.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_simple_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_simple_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_simple_user_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_simple_user_list.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_suggestion_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_suggestion_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_two_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_two_line.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_two_line_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_two_line_small.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_user.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/list_item_user_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/list_item_user_list.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/spinner_item_account_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/spinner_item_account_icon.xml -------------------------------------------------------------------------------- /twidere/src/main/res/layout/switch_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/layout/switch_item.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_direct_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_direct_message.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_extension.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_incoming_friendship.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_incoming_friendship.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_manager_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_manager_account.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_multi_select_contents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_multi_select_contents.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_multi_select_drafts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_multi_select_drafts.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_multi_select_items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_multi_select_items.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_status_text_selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_status_text_selection.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_user_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_user_list.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/action_user_list_member.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/action_user_list_member.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/context_message_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/context_message_entry.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_account_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_account_dashboard.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_accounts_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_accounts_manager.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_attached_media_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_attached_media_edit.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_compose.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_crop_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_crop_image.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_custom_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_custom_tabs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_detail_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_detail_status.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_drafts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_drafts.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_filters.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_filters_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_filters_import.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_filters_subscriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_filters_subscriptions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_filters_users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_filters_users.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_group_timeline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_group_timeline.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_host_mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_host_mapping.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_keyboard_shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_keyboard_shortcuts.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_media_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_media_viewer.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_messages_conversation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_messages_conversation.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_premium_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_premium_dashboard.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_profile_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_profile_editor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_search.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_settings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_sign_in.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_switch_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_switch_preference.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_sync_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_sync_settings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_user_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_user_list.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_user_lists_owned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_user_lists_owned.xml -------------------------------------------------------------------------------- /twidere/src/main/res/menu/menu_user_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/menu/menu_user_profile.xml -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_launcher_hondajojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_launcher_hondajojo.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_compose.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_favorite.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_like.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-hdpi/ic_shortcut_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-hdpi/ic_shortcut_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_launcher_hondajojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_launcher_hondajojo.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_compose.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_favorite.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_like.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-mdpi/ic_shortcut_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-mdpi/ic_shortcut_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_compose.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_favorite.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_like.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xhdpi/ic_shortcut_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xhdpi/ic_shortcut_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_compose.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_gallery.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_like.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxhdpi/ic_shortcut_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_camera.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_like.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_list.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_quote.png -------------------------------------------------------------------------------- /twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/mipmap-xxxhdpi/ic_shortcut_user.png -------------------------------------------------------------------------------- /twidere/src/main/res/values-hdpi/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-hdpi/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-land/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-land/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-land/configs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-land/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-land/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-large-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-large-land/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-large-land/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-large-land/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-large/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-large/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-large/dimens.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-large/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-large/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-notnight/themes_daynight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-notnight/themes_daynight.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw600dp-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw600dp-land/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw600dp/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw600dp/configs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw600dp/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw600dp/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw600dp/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw600dp/themes_base.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw720dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw720dp/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-sw720dp/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-sw720dp/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/configs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/dimens.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/styles_base.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/styles_base_appcompat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/styles_base_appcompat.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/themes.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/themes_base_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/themes_base_dark.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v21/themes_base_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v21/themes_base_light.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-v25/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-v25/configs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-w480dp/fractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-w480dp/fractions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-w600dp/fractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-w600dp/fractions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-w720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-w720dp/dimens.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-w720dp/fractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-w720dp/fractions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-xhdpi/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-xhdpi/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-xlarge-land/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-xlarge-land/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values-xlarge/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values-xlarge/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/arrays_languages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/arrays_languages.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/arrays_no_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/arrays_no_translate.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/colors_material.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/configs.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/dimens_system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/dimens_system.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/fractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/fractions.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/strings_http_errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/strings_http_errors.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/strings_no_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/strings_no_translate.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/strings_twitter_errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/strings_twitter_errors.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/styles_base.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/styles_base_appcompat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/styles_base_appcompat.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/themes_base.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/themes_base_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/themes_base_dark.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/themes_base_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/themes_base_light.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/themes_daynight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/themes_daynight.xml -------------------------------------------------------------------------------- /twidere/src/main/res/values/vpi__defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/values/vpi__defaults.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/account_authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/account_authenticator.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/compose_shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/compose_shortcuts.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/nyan_wallpaper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/nyan_wallpaper.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_about.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_account_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_account_refresh.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_advanced_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_advanced_network.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_cards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_cards.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_compose.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_content.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_filters.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_hidden.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_network.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_notifications.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_other.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_refresh.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_scrapyard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_scrapyard.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_storage.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_sync.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_tablet_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_tablet_mode.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_theme.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/preferences_thumbor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/preferences_thumbor.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /twidere/src/main/res/xml/sync_adapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/res/xml/sync_adapter.xml -------------------------------------------------------------------------------- /twidere/src/main/scripts/apply_i18n_resources.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwidereProject/Twidere-Android/HEAD/twidere/src/main/scripts/apply_i18n_resources.kts --------------------------------------------------------------------------------