├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── lib-src └── org │ └── codehaus │ └── jackson │ ├── Base64Variant.java │ ├── Base64Variants.java │ ├── JsonEncoding.java │ ├── JsonFactory.java │ ├── JsonGenerationException.java │ ├── JsonGenerator.java │ ├── JsonLocation.java │ ├── JsonNode.java │ ├── JsonParseException.java │ ├── JsonParser.java │ ├── JsonProcessingException.java │ ├── JsonStreamContext.java │ ├── JsonToken.java │ ├── ObjectCodec.java │ ├── PrettyPrinter.java │ ├── annotate │ ├── JacksonAnnotation.java │ ├── JsonAnySetter.java │ ├── JsonAutoDetect.java │ ├── JsonClass.java │ ├── JsonContentClass.java │ ├── JsonCreator.java │ ├── JsonGetter.java │ ├── JsonIgnore.java │ ├── JsonIgnoreProperties.java │ ├── JsonKeyClass.java │ ├── JsonMethod.java │ ├── JsonProperty.java │ ├── JsonPropertyOrder.java │ ├── JsonSetter.java │ ├── JsonSubTypes.java │ ├── JsonTypeInfo.java │ ├── JsonTypeName.java │ ├── JsonValue.java │ ├── JsonWriteNullProperties.java │ └── package-info.java │ ├── impl │ ├── ByteSourceBootstrapper.java │ ├── DefaultPrettyPrinter.java │ ├── Indenter.java │ ├── JsonGeneratorBase.java │ ├── JsonNumericParserBase.java │ ├── JsonParserBase.java │ ├── JsonReadContext.java │ ├── JsonWriteContext.java │ ├── ReaderBasedNumericParser.java │ ├── ReaderBasedParser.java │ ├── ReaderBasedParserBase.java │ ├── StreamBasedParserBase.java │ ├── Utf8NumericParser.java │ ├── Utf8StreamParser.java │ ├── WriterBasedGenerator.java │ └── package-info.java │ ├── io │ ├── BaseReader.java │ ├── IOContext.java │ ├── MergedStream.java │ ├── NumberInput.java │ ├── NumberOutput.java │ ├── SegmentedStringWriter.java │ ├── UTF32Reader.java │ ├── UTF8Writer.java │ └── package.html │ ├── map │ ├── AnnotationIntrospector.java │ ├── BeanDescription.java │ ├── ClassIntrospector.java │ ├── DeserializationConfig.java │ ├── DeserializationContext.java │ ├── DeserializationProblemHandler.java │ ├── DeserializerFactory.java │ ├── DeserializerProvider.java │ ├── JsonDeserializer.java │ ├── JsonMappingException.java │ ├── JsonSerializable.java │ ├── JsonSerializableWithType.java │ ├── JsonSerializer.java │ ├── KeyDeserializer.java │ ├── MapperConfig.java │ ├── MappingJsonFactory.java │ ├── ObjectMapper.java │ ├── ObjectWriter.java │ ├── ResolvableDeserializer.java │ ├── ResolvableSerializer.java │ ├── RuntimeJsonMappingException.java │ ├── SerializationConfig.java │ ├── SerializerFactory.java │ ├── SerializerProvider.java │ ├── TreeMapper.java │ ├── TypeDeserializer.java │ ├── TypeSerializer.java │ ├── annotate │ │ ├── JsonCachable.java │ │ ├── JsonDeserialize.java │ │ ├── JsonSerialize.java │ │ ├── JsonTypeIdResolver.java │ │ ├── JsonTypeResolver.java │ │ ├── JsonView.java │ │ ├── NoClass.java │ │ └── package-info.java │ ├── deser │ │ ├── ArrayDeserializer.java │ │ ├── ArrayDeserializers.java │ │ ├── BasicDeserializerFactory.java │ │ ├── BeanDeserializer.java │ │ ├── BeanDeserializerFactory.java │ │ ├── CollectionDeserializer.java │ │ ├── Creator.java │ │ ├── CreatorContainer.java │ │ ├── CustomDeserializerFactory.java │ │ ├── DateDeserializer.java │ │ ├── EnumDeserializer.java │ │ ├── EnumMapDeserializer.java │ │ ├── EnumResolver.java │ │ ├── EnumSetDeserializer.java │ │ ├── FromStringDeserializer.java │ │ ├── JsonNodeDeserializer.java │ │ ├── MapDeserializer.java │ │ ├── PropertyValue.java │ │ ├── PropertyValueBuffer.java │ │ ├── SettableAnyProperty.java │ │ ├── SettableBeanProperty.java │ │ ├── StdDeserializationContext.java │ │ ├── StdDeserializer.java │ │ ├── StdDeserializerProvider.java │ │ ├── StdDeserializers.java │ │ ├── StdKeyDeserializer.java │ │ ├── StdKeyDeserializers.java │ │ ├── StdScalarDeserializer.java │ │ ├── ThrowableDeserializer.java │ │ ├── UntypedObjectDeserializer.java │ │ └── package-info.java │ ├── introspect │ │ ├── Annotated.java │ │ ├── AnnotatedClass.java │ │ ├── AnnotatedConstructor.java │ │ ├── AnnotatedField.java │ │ ├── AnnotatedMember.java │ │ ├── AnnotatedMethod.java │ │ ├── AnnotatedMethodMap.java │ │ ├── AnnotatedParameter.java │ │ ├── AnnotatedWithParams.java │ │ ├── AnnotationMap.java │ │ ├── BasicBeanDescription.java │ │ ├── BasicClassIntrospector.java │ │ ├── JacksonAnnotationIntrospector.java │ │ ├── MemberKey.java │ │ ├── MethodFilter.java │ │ ├── NopAnnotationIntrospector.java │ │ ├── VisibilityChecker.java │ │ └── package-info.java │ ├── jsontype │ │ ├── NamedType.java │ │ ├── TypeIdResolver.java │ │ ├── TypeResolverBuilder.java │ │ ├── impl │ │ │ ├── AsArrayTypeDeserializer.java │ │ │ ├── AsArrayTypeSerializer.java │ │ │ ├── AsPropertyTypeDeserializer.java │ │ │ ├── AsPropertyTypeSerializer.java │ │ │ ├── AsWrapperTypeDeserializer.java │ │ │ ├── AsWrapperTypeSerializer.java │ │ │ ├── ClassNameIdResolver.java │ │ │ ├── MinimalClassNameIdResolver.java │ │ │ ├── StdTypeResolverBuilder.java │ │ │ ├── TypeDeserializerBase.java │ │ │ ├── TypeIdResolverBase.java │ │ │ ├── TypeNameIdResolver.java │ │ │ ├── TypeSerializerBase.java │ │ │ └── package-info.java │ │ └── package-info.java │ ├── package-info.java │ ├── ser │ │ ├── ArraySerializers.java │ │ ├── BasicSerializerFactory.java │ │ ├── BeanPropertyWriter.java │ │ ├── BeanSerializer.java │ │ ├── BeanSerializerFactory.java │ │ ├── ContainerSerializerBase.java │ │ ├── ContainerSerializers.java │ │ ├── CustomSerializerFactory.java │ │ ├── EnumMapSerializer.java │ │ ├── EnumSerializer.java │ │ ├── FailingSerializer.java │ │ ├── FilteredBeanPropertyWriter.java │ │ ├── JdkSerializers.java │ │ ├── JsonValueSerializer.java │ │ ├── MapSerializer.java │ │ ├── NullSerializer.java │ │ ├── PropertyBuilder.java │ │ ├── ReadOnlyClassToSerializerMap.java │ │ ├── ScalarSerializerBase.java │ │ ├── SerializerBase.java │ │ ├── SerializerCache.java │ │ ├── StdKeySerializer.java │ │ ├── StdSerializerProvider.java │ │ ├── StdSerializers.java │ │ ├── ToStringSerializer.java │ │ └── package-info.java │ ├── type │ │ ├── ArrayType.java │ │ ├── ClassKey.java │ │ ├── CollectionType.java │ │ ├── MapType.java │ │ ├── SimpleType.java │ │ ├── TypeBase.java │ │ ├── TypeBindings.java │ │ ├── TypeFactory.java │ │ ├── TypeParser.java │ │ └── package-info.java │ └── util │ │ ├── ArrayBuilders.java │ │ ├── ClassUtil.java │ │ ├── EnumValues.java │ │ ├── JSONPObject.java │ │ ├── JSONWrappedObject.java │ │ ├── LinkedNode.java │ │ ├── ObjectBuffer.java │ │ ├── PrimitiveArrayBuilder.java │ │ ├── Provider.java │ │ ├── StdDateFormat.java │ │ ├── SubTypeHelper.java │ │ └── package-info.java │ ├── node │ ├── ArrayNode.java │ ├── BaseJsonNode.java │ ├── BigIntegerNode.java │ ├── BinaryNode.java │ ├── BooleanNode.java │ ├── ContainerNode.java │ ├── DecimalNode.java │ ├── DoubleNode.java │ ├── IntNode.java │ ├── JsonNodeFactory.java │ ├── LongNode.java │ ├── MissingNode.java │ ├── NodeCursor.java │ ├── NullNode.java │ ├── NumericNode.java │ ├── ObjectNode.java │ ├── POJONode.java │ ├── TextNode.java │ ├── TreeTraversingParser.java │ ├── ValueNode.java │ └── package-info.java │ ├── package-info.java │ ├── schema │ ├── JsonSchema.java │ ├── JsonSerializableSchema.java │ ├── SchemaAware.java │ └── package-info.java │ ├── sym │ ├── BytesToNameCanonicalizer.java │ ├── CharsToNameCanonicalizer.java │ ├── Name.java │ ├── Name1.java │ ├── Name2.java │ ├── Name3.java │ ├── NameN.java │ └── package-info.java │ ├── type │ ├── JavaType.java │ ├── TypeReference.java │ └── package-info.java │ └── util │ ├── BufferRecycler.java │ ├── ByteArrayBuilder.java │ ├── CharTypes.java │ ├── InternCache.java │ ├── JsonGeneratorDelegate.java │ ├── JsonParserDelegate.java │ ├── JsonParserSequence.java │ ├── TextBuffer.java │ ├── TokenBuffer.java │ └── package-info.java ├── lib └── jmdns.jar ├── libs ├── acra-4.4.0.jar └── jmdns.jar ├── license ├── proguard.cfg ├── project.properties ├── res ├── anim │ ├── slide_left.xml │ └── slide_right.xml ├── drawable-hdpi-v4 │ ├── about_back.png │ ├── bottom_logo_down.png │ ├── bottom_logo_up.png │ ├── bottom_text_down.9.png │ ├── bottom_text_up.9.png │ ├── bottombar_bg.png │ ├── bubble_add.png │ ├── bubble_del_down.png │ ├── bubble_del_up.png │ ├── coverbox_back.png │ ├── default_album.png │ ├── default_jewel.png │ ├── default_poster.png │ ├── default_season.png │ ├── default_tvshow.png │ ├── icon.png │ ├── icon_album.png │ ├── icon_album_dark.png │ ├── icon_album_dark_big.png │ ├── icon_artist.png │ ├── icon_artist_dark.png │ ├── icon_file.png │ ├── icon_folder.png │ ├── icon_folder_dark.png │ ├── icon_genre.png │ ├── icon_genre_dark.png │ ├── icon_home_movie.png │ ├── icon_home_music.png │ ├── icon_home_picture.png │ ├── icon_home_playing.png │ ├── icon_home_power.png │ ├── icon_home_reconnect.png │ ├── icon_home_remote.png │ ├── icon_home_tv.png │ ├── icon_lastfm.png │ ├── icon_movie_dark.png │ ├── icon_picture.png │ ├── icon_play.png │ ├── icon_playlist_dark.png │ ├── icon_shoutcast.png │ ├── icon_song.png │ ├── icon_song_dark.png │ ├── icon_song_light.png │ ├── icon_va_dark.png │ ├── icon_video.png │ ├── jewel_cd.9.png │ ├── jewel_dvd.9.png │ ├── jewel_tv.9.png │ ├── layout_top_bar.9.png │ ├── menu_about.png │ ├── menu_add_host.png │ ├── menu_album.png │ ├── menu_download.png │ ├── menu_exit.png │ ├── menu_gesture_mode.png │ ├── menu_hide_watched.png │ ├── menu_nowplaying.png │ ├── menu_qr_code.png │ ├── menu_refresh.png │ ├── menu_remote.png │ ├── menu_settings.png │ ├── menu_show_watched.png │ ├── menu_song.png │ ├── menu_sort.png │ ├── menu_switch.png │ ├── menu_text_entry.png │ ├── menu_view.png │ ├── menu_xbmc_exit.png │ ├── menu_xbmc_s.png │ ├── now_playing_next_down.png │ ├── now_playing_next_up.png │ ├── now_playing_pause_down.png │ ├── now_playing_pause_up.png │ ├── now_playing_play_down.png │ ├── now_playing_play_up.png │ ├── now_playing_playlist_down.png │ ├── now_playing_playlist_up.png │ ├── now_playing_previous_down.png │ ├── now_playing_previous_up.png │ ├── now_playing_stop_down.png │ ├── now_playing_stop_up.png │ ├── pgbar_act.png │ ├── pgbar_thumb.png │ ├── playlist_rightboxes.png │ ├── remote_gest_cursor.png │ ├── remote_xbox__top_left.png │ ├── remote_xbox__top_right.png │ ├── remote_xbox_back.xml │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_display.xml │ ├── remote_xbox_display_down.png │ ├── remote_xbox_display_up.png │ ├── remote_xbox_down.xml │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_gesture_back_down.png │ ├── remote_xbox_gesture_info_down.png │ ├── remote_xbox_gesture_menu_down.png │ ├── remote_xbox_gesture_title_down.png │ ├── remote_xbox_gesturezone.png │ ├── remote_xbox_gesturezone_dim.png │ ├── remote_xbox_images.xml │ ├── remote_xbox_images_down.png │ ├── remote_xbox_images_up.png │ ├── remote_xbox_info.xml │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left.xml │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu.xml │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_music.xml │ ├── remote_xbox_music_down.png │ ├── remote_xbox_music_up.png │ ├── remote_xbox_next.xml │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause.xml │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play.xml │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_previous.xml │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right.xml │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back.xml │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward.xml │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select.xml │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop.xml │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title.xml │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_tv.xml │ ├── remote_xbox_tv_down.png │ ├── remote_xbox_tv_up.png │ ├── remote_xbox_up.xml │ ├── remote_xbox_up_down.png │ ├── remote_xbox_up_up.png │ ├── remote_xbox_video.xml │ ├── remote_xbox_video_down.png │ ├── remote_xbox_video_up.png │ ├── remote_xbox_widget__top_left.png │ ├── remote_xbox_widget__top_right.png │ ├── remote_xbox_widget_back_down.png │ ├── remote_xbox_widget_back_up.png │ ├── remote_xbox_widget_display_down.png │ ├── remote_xbox_widget_display_up.png │ ├── remote_xbox_widget_down_down.png │ ├── remote_xbox_widget_down_up.png │ ├── remote_xbox_widget_info_down.png │ ├── remote_xbox_widget_info_up.png │ ├── remote_xbox_widget_left_down.png │ ├── remote_xbox_widget_left_up.png │ ├── remote_xbox_widget_menu_down.png │ ├── remote_xbox_widget_menu_up.png │ ├── remote_xbox_widget_next_down.png │ ├── remote_xbox_widget_next_up.png │ ├── remote_xbox_widget_pause_down.png │ ├── remote_xbox_widget_pause_up.png │ ├── remote_xbox_widget_play_down.png │ ├── remote_xbox_widget_play_up.png │ ├── remote_xbox_widget_previous_down.png │ ├── remote_xbox_widget_previous_up.png │ ├── remote_xbox_widget_right_down.png │ ├── remote_xbox_widget_right_up.png │ ├── remote_xbox_widget_seek_back_down.png │ ├── remote_xbox_widget_seek_back_up.png │ ├── remote_xbox_widget_seek_forward_down.png │ ├── remote_xbox_widget_seek_forward_up.png │ ├── remote_xbox_widget_select_down.png │ ├── remote_xbox_widget_select_up.png │ ├── remote_xbox_widget_stop_down.png │ ├── remote_xbox_widget_stop_up.png │ ├── remote_xbox_widget_title_down.png │ ├── remote_xbox_widget_title_up.png │ ├── remote_xbox_widget_up_down.png │ ├── remote_xbox_widget_up_up.png │ ├── scrollbar_handle.png │ ├── shiny_black_back.png │ ├── st_actor_off.png │ ├── st_actor_on.png │ ├── st_actor_over.png │ ├── st_album_off.png │ ├── st_album_on.png │ ├── st_album_over.png │ ├── st_artist_off.png │ ├── st_artist_on.png │ ├── st_artist_over.png │ ├── st_background.png │ ├── st_filemode_off.png │ ├── st_filemode_on.png │ ├── st_filemode_over.png │ ├── st_genre_off.png │ ├── st_genre_on.png │ ├── st_genre_over.png │ ├── st_movie_off.png │ ├── st_movie_on.png │ ├── st_movie_over.png │ ├── st_playlist_off.png │ ├── st_playlist_on.png │ ├── st_playlist_over.png │ ├── st_slider.png │ ├── st_song_off.png │ ├── st_song_on.png │ ├── st_song_over.png │ ├── st_tv_off.png │ ├── st_tv_on.png │ ├── st_tv_over.png │ ├── st_va_off.png │ ├── st_va_on.png │ ├── st_va_over.png │ ├── stars_0.png │ ├── stars_1.png │ ├── stars_10.png │ ├── stars_2.png │ ├── stars_3.png │ ├── stars_4.png │ ├── stars_5.png │ ├── stars_6.png │ ├── stars_7.png │ ├── stars_8.png │ ├── stars_9.png │ └── timeborder.9.png ├── drawable-land-hdpi-v4 │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_display_down.png │ ├── remote_xbox_display_up.png │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_images_down.png │ ├── remote_xbox_images_up.png │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_music_down.png │ ├── remote_xbox_music_up.png │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_power_down.png │ ├── remote_xbox_power_up.png │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_tv_down.png │ ├── remote_xbox_tv_up.png │ ├── remote_xbox_up_down.png │ ├── remote_xbox_up_up.png │ ├── remote_xbox_video_down.png │ └── remote_xbox_video_up.png ├── drawable-land-ldpi-v4 │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_power_down.png │ ├── remote_xbox_power_up.png │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_up_down.png │ └── remote_xbox_up_up.png ├── drawable-land │ ├── remote_xbox_back.xml │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_display.xml │ ├── remote_xbox_display_down.png │ ├── remote_xbox_display_up.png │ ├── remote_xbox_down.xml │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_images.xml │ ├── remote_xbox_images_down.png │ ├── remote_xbox_images_up.png │ ├── remote_xbox_info.xml │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left.xml │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu.xml │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_music.xml │ ├── remote_xbox_music_down.png │ ├── remote_xbox_music_up.png │ ├── remote_xbox_next.xml │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause.xml │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play.xml │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_power.xml │ ├── remote_xbox_power_down.png │ ├── remote_xbox_power_up.png │ ├── remote_xbox_previous.xml │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right.xml │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back.xml │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward.xml │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select.xml │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop.xml │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title.xml │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_tv.xml │ ├── remote_xbox_tv_down.png │ ├── remote_xbox_tv_up.png │ ├── remote_xbox_up.xml │ ├── remote_xbox_up_down.png │ ├── remote_xbox_up_up.png │ ├── remote_xbox_video.xml │ ├── remote_xbox_video_down.png │ └── remote_xbox_video_up.png ├── drawable-ldpi-v4 │ ├── remote_gest_cursor.png │ ├── remote_xbox__top_left.png │ ├── remote_xbox__top_right.png │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_display_down.png │ ├── remote_xbox_display_up.png │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_gesture_back_down.png │ ├── remote_xbox_gesture_info_down.png │ ├── remote_xbox_gesture_menu_down.png │ ├── remote_xbox_gesture_title_down.png │ ├── remote_xbox_gesturezone.png │ ├── remote_xbox_gesturezone_dim.png │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_up_down.png │ └── remote_xbox_up_up.png ├── drawable │ ├── about_back.png │ ├── bottom_controls_background.png │ ├── bottom_logo.xml │ ├── bottom_logo_down.png │ ├── bottom_logo_up.png │ ├── bottom_text.xml │ ├── bottom_text_down.9.png │ ├── bottom_text_up.9.png │ ├── bottombar_bg.png │ ├── bubble_add.png │ ├── bubble_del.xml │ ├── bubble_del_down.png │ ├── bubble_del_up.png │ ├── check_mark.png │ ├── coverbox_back.png │ ├── default_album.png │ ├── default_jewel.png │ ├── default_poster.png │ ├── default_season.png │ ├── default_tvshow.png │ ├── dialog_full_dark.9.png │ ├── home_bottom.9.png │ ├── icon.png │ ├── icon_album.png │ ├── icon_album_big.png │ ├── icon_album_dark.png │ ├── icon_album_dark_big.png │ ├── icon_artist.png │ ├── icon_artist_dark.png │ ├── icon_file.png │ ├── icon_folder.png │ ├── icon_folder_dark.png │ ├── icon_genre.png │ ├── icon_genre_dark.png │ ├── icon_home_movie.png │ ├── icon_home_music.png │ ├── icon_home_picture.png │ ├── icon_home_playing.png │ ├── icon_home_power.png │ ├── icon_home_reconnect.png │ ├── icon_home_remote.png │ ├── icon_home_tv.png │ ├── icon_home_voice.png │ ├── icon_lastfm.png │ ├── icon_movie_dark.png │ ├── icon_picture.png │ ├── icon_play.png │ ├── icon_playing.png │ ├── icon_playlist_dark.png │ ├── icon_shoutcast.png │ ├── icon_song.png │ ├── icon_song_dark.png │ ├── icon_song_light.png │ ├── icon_va_dark.png │ ├── icon_video.png │ ├── icon_video_light.png │ ├── icon_zip.png │ ├── jewel_cd.9.png │ ├── jewel_dvd.9.png │ ├── jewel_tv.9.png │ ├── layout_top_bar.9.png │ ├── listitem_bg.xml │ ├── listitem_bottom_rounded.9.png │ ├── listitem_subtitle.xml │ ├── listitem_title.xml │ ├── menu_about.png │ ├── menu_add_host.png │ ├── menu_album.png │ ├── menu_download.png │ ├── menu_exit.png │ ├── menu_gesture_mode.png │ ├── menu_hide_watched.png │ ├── menu_nowplaying.png │ ├── menu_qr_code.png │ ├── menu_refresh.png │ ├── menu_remote.png │ ├── menu_settings.png │ ├── menu_show_watched.png │ ├── menu_song.png │ ├── menu_sort.png │ ├── menu_switch.png │ ├── menu_text_entry.png │ ├── menu_view.png │ ├── menu_xbmc_exit.png │ ├── menu_xbmc_s.png │ ├── nocover.png │ ├── notif_pause.png │ ├── notif_pic.png │ ├── notif_play.png │ ├── now_playing_next.xml │ ├── now_playing_next_down.png │ ├── now_playing_next_up.png │ ├── now_playing_pause.xml │ ├── now_playing_pause_down.png │ ├── now_playing_pause_up.png │ ├── now_playing_play.xml │ ├── now_playing_play_down.png │ ├── now_playing_play_up.png │ ├── now_playing_playlist.xml │ ├── now_playing_playlist_down.png │ ├── now_playing_playlist_up.png │ ├── now_playing_previous.xml │ ├── now_playing_previous_down.png │ ├── now_playing_previous_up.png │ ├── now_playing_stop.xml │ ├── now_playing_stop_down.png │ ├── now_playing_stop_up.png │ ├── person.png │ ├── person_black_small.png │ ├── person_small.png │ ├── pgbar_act.png │ ├── pgbar_inact.png │ ├── pgbar_thumb.png │ ├── playlist_rightboxes.png │ ├── poster_big.png │ ├── progressbar.xml │ ├── remote_gest_border_left.png │ ├── remote_gest_border_right.png │ ├── remote_gest_cursor.png │ ├── remote_xbox__top_left.png │ ├── remote_xbox__top_right.png │ ├── remote_xbox_back.xml │ ├── remote_xbox_back_down.png │ ├── remote_xbox_back_up.png │ ├── remote_xbox_display.xml │ ├── remote_xbox_display_down.png │ ├── remote_xbox_display_up.png │ ├── remote_xbox_down.xml │ ├── remote_xbox_down_down.png │ ├── remote_xbox_down_up.png │ ├── remote_xbox_gesture_back_down.png │ ├── remote_xbox_gesture_info_down.png │ ├── remote_xbox_gesture_menu_down.png │ ├── remote_xbox_gesture_title_down.png │ ├── remote_xbox_gesturezone.png │ ├── remote_xbox_gesturezone_dim.png │ ├── remote_xbox_info.xml │ ├── remote_xbox_info_down.png │ ├── remote_xbox_info_up.png │ ├── remote_xbox_left.xml │ ├── remote_xbox_left_down.png │ ├── remote_xbox_left_up.png │ ├── remote_xbox_menu.xml │ ├── remote_xbox_menu_down.png │ ├── remote_xbox_menu_up.png │ ├── remote_xbox_next.xml │ ├── remote_xbox_next_down.png │ ├── remote_xbox_next_up.png │ ├── remote_xbox_pause.xml │ ├── remote_xbox_pause_down.png │ ├── remote_xbox_pause_up.png │ ├── remote_xbox_play.xml │ ├── remote_xbox_play_down.png │ ├── remote_xbox_play_up.png │ ├── remote_xbox_previous.xml │ ├── remote_xbox_previous_down.png │ ├── remote_xbox_previous_up.png │ ├── remote_xbox_right.xml │ ├── remote_xbox_right_down.png │ ├── remote_xbox_right_up.png │ ├── remote_xbox_seek_back.xml │ ├── remote_xbox_seek_back_down.png │ ├── remote_xbox_seek_back_up.png │ ├── remote_xbox_seek_forward.xml │ ├── remote_xbox_seek_forward_down.png │ ├── remote_xbox_seek_forward_up.png │ ├── remote_xbox_select.xml │ ├── remote_xbox_select_down.png │ ├── remote_xbox_select_up.png │ ├── remote_xbox_stop.xml │ ├── remote_xbox_stop_down.png │ ├── remote_xbox_stop_up.png │ ├── remote_xbox_title.xml │ ├── remote_xbox_title_down.png │ ├── remote_xbox_title_up.png │ ├── remote_xbox_up.xml │ ├── remote_xbox_up_down.png │ ├── remote_xbox_up_up.png │ ├── remote_xbox_widget_back.xml │ ├── remote_xbox_widget_back_down.png │ ├── remote_xbox_widget_back_up.png │ ├── remote_xbox_widget_display.xml │ ├── remote_xbox_widget_display_down.png │ ├── remote_xbox_widget_display_up.png │ ├── remote_xbox_widget_down.xml │ ├── remote_xbox_widget_down_down.png │ ├── remote_xbox_widget_down_up.png │ ├── remote_xbox_widget_info.xml │ ├── remote_xbox_widget_info_down.png │ ├── remote_xbox_widget_info_up.png │ ├── remote_xbox_widget_left.xml │ ├── remote_xbox_widget_left_down.png │ ├── remote_xbox_widget_left_up.png │ ├── remote_xbox_widget_menu.xml │ ├── remote_xbox_widget_menu_down.png │ ├── remote_xbox_widget_menu_up.png │ ├── remote_xbox_widget_next.xml │ ├── remote_xbox_widget_next_down.png │ ├── remote_xbox_widget_next_up.png │ ├── remote_xbox_widget_pause.xml │ ├── remote_xbox_widget_pause_down.png │ ├── remote_xbox_widget_pause_up.png │ ├── remote_xbox_widget_play.xml │ ├── remote_xbox_widget_play_down.png │ ├── remote_xbox_widget_play_up.png │ ├── remote_xbox_widget_preview.png │ ├── remote_xbox_widget_previous.xml │ ├── remote_xbox_widget_previous_down.png │ ├── remote_xbox_widget_previous_up.png │ ├── remote_xbox_widget_right.xml │ ├── remote_xbox_widget_right_down.png │ ├── remote_xbox_widget_right_up.png │ ├── remote_xbox_widget_seek_back.xml │ ├── remote_xbox_widget_seek_back_down.png │ ├── remote_xbox_widget_seek_back_up.png │ ├── remote_xbox_widget_seek_forward.xml │ ├── remote_xbox_widget_seek_forward_down.png │ ├── remote_xbox_widget_seek_forward_up.png │ ├── remote_xbox_widget_select.xml │ ├── remote_xbox_widget_select_down.png │ ├── remote_xbox_widget_select_up.png │ ├── remote_xbox_widget_stop.xml │ ├── remote_xbox_widget_stop_down.png │ ├── remote_xbox_widget_stop_up.png │ ├── remote_xbox_widget_title.xml │ ├── remote_xbox_widget_title_down.png │ ├── remote_xbox_widget_title_up.png │ ├── remote_xbox_widget_up.xml │ ├── remote_xbox_widget_up_down.png │ ├── remote_xbox_widget_up_up.png │ ├── scrollbar_handle.png │ ├── scrollbar_handle_accelerated_anim2.9.png │ ├── selected.9.png │ ├── shiny_black_back.png │ ├── smallborder.9.png │ ├── st_actor_off.png │ ├── st_actor_on.png │ ├── st_actor_over.png │ ├── st_album_off.png │ ├── st_album_on.png │ ├── st_album_over.png │ ├── st_artist_off.png │ ├── st_artist_on.png │ ├── st_artist_over.png │ ├── st_background.png │ ├── st_filemode_off.png │ ├── st_filemode_on.png │ ├── st_filemode_over.png │ ├── st_genre_off.png │ ├── st_genre_on.png │ ├── st_genre_over.png │ ├── st_movie_off.png │ ├── st_movie_on.png │ ├── st_movie_over.png │ ├── st_playlist_off.png │ ├── st_playlist_on.png │ ├── st_playlist_over.png │ ├── st_slider.png │ ├── st_song_off.png │ ├── st_song_on.png │ ├── st_song_over.png │ ├── st_tv_off.png │ ├── st_tv_on.png │ ├── st_tv_over.png │ ├── st_va_off.png │ ├── st_va_on.png │ ├── st_va_over.png │ ├── stars_0.png │ ├── stars_1.png │ ├── stars_10.png │ ├── stars_2.png │ ├── stars_3.png │ ├── stars_4.png │ ├── stars_5.png │ ├── stars_6.png │ ├── stars_7.png │ ├── stars_8.png │ ├── stars_9.png │ ├── timeborder.9.png │ └── waiting.png ├── layout-land-hdpi-v4 │ ├── remote_xbox.xml │ └── remote_xbox_extended.xml ├── layout-land-ldpi-v4 │ └── remote_xbox.xml ├── layout-land │ ├── home.xml │ ├── nowplaying.xml │ └── remote_xbox.xml ├── layout-ldpi-v4 │ └── remote_xbox.xml ├── layout-xhdpi │ └── slidingtab_widget.xml ├── layout │ ├── about.xml │ ├── actor_item.xml │ ├── albumgrid.xml │ ├── albuminfo.xml │ ├── albumtracks.xml │ ├── artistinfo.xml │ ├── blankgrid.xml │ ├── blanklist.xml │ ├── home.xml │ ├── home_item.xml │ ├── listmessage.xml │ ├── loading_message.xml │ ├── loadinglistentry.xml │ ├── moviedetails.xml │ ├── movielibrary.xml │ ├── musicartist.xml │ ├── musicgenre.xml │ ├── musiclibrary.xml │ ├── nowplaying.xml │ ├── playlist.xml │ ├── preference_host.xml │ ├── remote_gesture.xml │ ├── remote_gesture_extended.xml │ ├── remote_xbox.xml │ ├── remote_xbox_extended.xml │ ├── sendtext.xml │ ├── setup_page_1.xml │ ├── setup_page_2.xml │ ├── setup_page_3.xml │ ├── setup_page_login.xml │ ├── setup_wizard.xml │ ├── slidingtab_overlay.xml │ ├── slidingtab_widget.xml │ ├── titlebar.xml │ ├── tvdetails.xml │ ├── tvepisodedetails.xml │ ├── tvlibrary.xml │ ├── widget_xbox.xml │ └── widget_xbox_small.xml ├── values-v14 │ └── dimens.xml ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── attrs_manifest.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── public.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml └── xml │ ├── app_widget_remote.xml │ └── preferences.xml ├── src └── org │ └── xbmc │ ├── android │ ├── remote │ │ ├── business │ │ │ ├── AbstractManager.java │ │ │ ├── AbstractThread.java │ │ │ ├── CacheManager.java │ │ │ ├── Command.java │ │ │ ├── ControlManager.java │ │ │ ├── DiskCacheThread.java │ │ │ ├── DownloadThread.java │ │ │ ├── EventClientManager.java │ │ │ ├── InfoManager.java │ │ │ ├── ManagerFactory.java │ │ │ ├── ManagerThread.java │ │ │ ├── MemCacheThread.java │ │ │ ├── MusicManager.java │ │ │ ├── NowPlayingPollerThread.java │ │ │ ├── TvShowManager.java │ │ │ ├── VideoManager.java │ │ │ ├── provider │ │ │ │ └── HostProvider.java │ │ │ └── receiver │ │ │ │ ├── AndroidBroadcastReceiver.java │ │ │ │ └── AutoStartReceiver.java │ │ └── presentation │ │ │ ├── activity │ │ │ ├── AboutActivity.java │ │ │ ├── AbsListActivity.java │ │ │ ├── ConfigurationManager.java │ │ │ ├── DialogFactory.java │ │ │ ├── EpisodeDetailsActivity.java │ │ │ ├── GestureRemoteActivity.java │ │ │ ├── GridActivity.java │ │ │ ├── HomeActivity.java │ │ │ ├── HostSettingsActivity.java │ │ │ ├── ListActivity.java │ │ │ ├── MediaIntentActivity.java │ │ │ ├── MovieDetailsActivity.java │ │ │ ├── MovieLibraryActivity.java │ │ │ ├── MusicArtistActivity.java │ │ │ ├── MusicGenreActivity.java │ │ │ ├── MusicLibraryActivity.java │ │ │ ├── NowPlayingActivity.java │ │ │ ├── PlaylistActivity.java │ │ │ ├── RemoteActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── TvShowDetailsActivity.java │ │ │ ├── TvShowLibraryActivity.java │ │ │ └── UrlIntentActivity.java │ │ │ ├── appwidget │ │ │ └── RemoteControllerWidget.java │ │ │ ├── controller │ │ │ ├── AbstractController.java │ │ │ ├── ActorListController.java │ │ │ ├── AlbumListController.java │ │ │ ├── AppWidgetRemoteController.java │ │ │ ├── ArtistListController.java │ │ │ ├── EpisodeListController.java │ │ │ ├── FileListController.java │ │ │ ├── GestureController.java │ │ │ ├── HomeController.java │ │ │ ├── HostPreference.java │ │ │ ├── IController.java │ │ │ ├── ListController.java │ │ │ ├── ListControllerOnKeyListener.java │ │ │ ├── MediaIntentController.java │ │ │ ├── MovieGenreListController.java │ │ │ ├── MovieListController.java │ │ │ ├── MusicGenreListController.java │ │ │ ├── MusicPlaylistController.java │ │ │ ├── NowPlayingController.java │ │ │ ├── PlaylistController.java │ │ │ ├── RemoteController.java │ │ │ ├── SeasonListController.java │ │ │ ├── SettingsController.java │ │ │ ├── SongListController.java │ │ │ ├── TvShowListController.java │ │ │ └── UrlIntentController.java │ │ │ ├── drawable │ │ │ ├── CrossFadeDrawable.java │ │ │ └── FastBitmapDrawable.java │ │ │ ├── notification │ │ │ ├── BigPictureNotificationBuilder.java │ │ │ ├── LargeIconNotificationBuilder.java │ │ │ ├── NotificationBuilder.java │ │ │ └── NowPlayingNotificationManager.java │ │ │ ├── widget │ │ │ ├── AbstractItemView.java │ │ │ ├── FiveLabelsItemView.java │ │ │ ├── FlexibleItemView.java │ │ │ ├── GridPosterItemView.java │ │ │ ├── JewelView.java │ │ │ ├── OneLabelItemView.java │ │ │ └── ThreeLabelsItemView.java │ │ │ └── wizard │ │ │ ├── Wizard.java │ │ │ ├── WizardPage.java │ │ │ ├── listener │ │ │ ├── ActionListener.java │ │ │ └── PageCanFinishListener.java │ │ │ └── setupwizard │ │ │ ├── SetupWizard.java │ │ │ ├── SetupWizardPage1.java │ │ │ ├── SetupWizardPage2.java │ │ │ ├── SetupWizardPage3.java │ │ │ └── SetupWizardPageLogin.java │ ├── util │ │ ├── Base64.java │ │ ├── ClientFactory.java │ │ ├── ConnectionFactory.java │ │ ├── Crc32.java │ │ ├── HostFactory.java │ │ ├── IOUtilities.java │ │ ├── ImportUtilities.java │ │ ├── KeyTracker.java │ │ ├── MacAddressResolver.java │ │ ├── OnLongPressBackKeyTracker.java │ │ ├── PowerDown.java │ │ ├── SMSConstants.java │ │ ├── SmsMmsMessage.java │ │ ├── SmsPopupUtils.java │ │ ├── WakeOnLan.java │ │ ├── WifiHelper.java │ │ └── YoutubeURLParser.java │ └── widget │ │ ├── FastScrollView.java │ │ ├── IdleListDetector.java │ │ ├── IdleListener.java │ │ ├── gestureremote │ │ ├── GestureRemoteAnimation.java │ │ ├── GestureRemoteCursor.java │ │ ├── GestureRemoteView.java │ │ └── IGestureListener.java │ │ └── slidingtabs │ │ ├── SlidingTabActivity.java │ │ ├── SlidingTabHost.java │ │ ├── SlidingTabScrollView.java │ │ ├── SlidingTabWidget.java │ │ └── SnapAnimation.java │ ├── api │ ├── business │ │ ├── CoverResponse.java │ │ ├── DataResponse.java │ │ ├── IControlManager.java │ │ ├── IEventClientManager.java │ │ ├── IInfoManager.java │ │ ├── IManager.java │ │ ├── IMusicManager.java │ │ ├── INotifiableManager.java │ │ ├── ISortableManager.java │ │ ├── ITvShowManager.java │ │ └── IVideoManager.java │ ├── data │ │ ├── IClient.java │ │ ├── IControlClient.java │ │ ├── IEventClient.java │ │ ├── IInfoClient.java │ │ ├── IMusicClient.java │ │ ├── IPictureClient.java │ │ ├── ITvShowClient.java │ │ └── IVideoClient.java │ ├── info │ │ ├── FileTypes.java │ │ ├── GuiActions.java │ │ ├── GuiSettings.java │ │ ├── MusicInfo.java │ │ ├── PlayStatus.java │ │ ├── SystemInfo.java │ │ └── VideoInfo.java │ ├── object │ │ ├── Actor.java │ │ ├── Album.java │ │ ├── Artist.java │ │ ├── Episode.java │ │ ├── FileLocation.java │ │ ├── Genre.java │ │ ├── Host.java │ │ ├── ICoverArt.java │ │ ├── INamedResource.java │ │ ├── Movie.java │ │ ├── Season.java │ │ ├── Song.java │ │ └── TvShow.java │ ├── presentation │ │ └── INotifiableController.java │ └── type │ │ ├── CacheType.java │ │ ├── DirectoryMask.java │ │ ├── ListType.java │ │ ├── LogType.java │ │ ├── MediaType.java │ │ ├── SeekType.java │ │ ├── SortType.java │ │ └── ThumbSize.java │ ├── eventclient │ ├── ButtonCodes.java │ ├── EventClient.java │ ├── Packet.java │ ├── PacketACTION.java │ ├── PacketBUTTON.java │ ├── PacketBYE.java │ ├── PacketHELO.java │ ├── PacketLOG.java │ ├── PacketMOUSE.java │ ├── PacketNOTIFICATION.java │ └── PacketPING.java │ ├── httpapi │ ├── BroadcastListener.java │ ├── Connection.java │ ├── HttpApi.java │ ├── NoNetworkException.java │ ├── NoSettingsException.java │ ├── WifiStateException.java │ ├── WrongDataFormatException.java │ └── client │ │ ├── Client.java │ │ ├── ControlClient.java │ │ ├── InfoClient.java │ │ ├── MusicClient.java │ │ ├── PictureClient.java │ │ ├── TvShowClient.java │ │ └── VideoClient.java │ └── jsonrpc │ ├── Connection.java │ ├── JsonRpc.java │ └── client │ ├── Client.java │ ├── ControlClient.java │ ├── InfoClient.java │ ├── MusicClient.java │ ├── TvShowClient.java │ └── VideoClient.java └── xbmc-remote-sign.keystore /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /bin 3 | *.apk 4 | local.properties 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/README.md -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- 1 | source.dir=src; lib-src -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/Base64Variant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/Base64Variant.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/Base64Variants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/Base64Variants.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonEncoding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonEncoding.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonFactory.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonGenerator.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonLocation.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonParser.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonStreamContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonStreamContext.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/JsonToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/JsonToken.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/ObjectCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/ObjectCodec.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/PrettyPrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/PrettyPrinter.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/impl/Indenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/impl/Indenter.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/impl/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/impl/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/BaseReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/BaseReader.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/IOContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/IOContext.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/MergedStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/MergedStream.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/NumberInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/NumberInput.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/NumberOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/NumberOutput.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/UTF32Reader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/UTF32Reader.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/UTF8Writer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/UTF8Writer.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/io/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/io/package.html -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/MapperConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/MapperConfig.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/ObjectMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/ObjectMapper.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/ObjectWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/ObjectWriter.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/TreeMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/TreeMapper.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/deser/Creator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/deser/Creator.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/type/ClassKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/type/ClassKey.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/type/MapType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/type/MapType.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/type/TypeBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/type/TypeBase.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/map/util/Provider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/map/util/Provider.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/ArrayNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/ArrayNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/BaseJsonNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/BaseJsonNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/BinaryNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/BinaryNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/BooleanNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/BooleanNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/DecimalNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/DecimalNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/DoubleNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/DoubleNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/IntNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/IntNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/LongNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/LongNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/MissingNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/MissingNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/NodeCursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/NodeCursor.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/NullNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/NullNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/NumericNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/NumericNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/ObjectNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/ObjectNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/POJONode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/POJONode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/TextNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/TextNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/ValueNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/ValueNode.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/node/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/node/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/schema/JsonSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/schema/JsonSchema.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/Name.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/Name.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/Name1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/Name1.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/Name2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/Name2.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/Name3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/Name3.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/NameN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/NameN.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/sym/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/sym/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/type/JavaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/type/JavaType.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/type/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/type/package-info.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/util/CharTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/util/CharTypes.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/util/InternCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/util/InternCache.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/util/TextBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/util/TextBuffer.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/util/TokenBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/util/TokenBuffer.java -------------------------------------------------------------------------------- /lib-src/org/codehaus/jackson/util/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib-src/org/codehaus/jackson/util/package-info.java -------------------------------------------------------------------------------- /lib/jmdns.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/lib/jmdns.jar -------------------------------------------------------------------------------- /libs/acra-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/libs/acra-4.4.0.jar -------------------------------------------------------------------------------- /libs/jmdns.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/libs/jmdns.jar -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/license -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/proguard.cfg -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/slide_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/anim/slide_left.xml -------------------------------------------------------------------------------- /res/anim/slide_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/anim/slide_right.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/about_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/about_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bottom_logo_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bottom_logo_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bottom_logo_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bottom_logo_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bottom_text_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bottom_text_down.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bottom_text_up.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bottom_text_up.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bottombar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bottombar_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bubble_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bubble_add.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bubble_del_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bubble_del_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/bubble_del_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/bubble_del_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/coverbox_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/coverbox_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/default_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/default_album.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/default_jewel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/default_jewel.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/default_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/default_poster.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/default_season.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/default_season.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/default_tvshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/default_tvshow.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_album.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_album_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_album_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_album_dark_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_album_dark_big.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_artist.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_artist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_artist_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_file.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_folder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_folder_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_genre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_genre.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_genre_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_genre_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_movie.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_music.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_picture.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_playing.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_power.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_reconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_reconnect.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_remote.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_home_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_home_tv.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_lastfm.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_movie_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_movie_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_picture.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_play.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_playlist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_playlist_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_shoutcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_shoutcast.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_song.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_song_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_song_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_song_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_song_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_va_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_va_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/icon_video.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/jewel_cd.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/jewel_cd.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/jewel_dvd.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/jewel_dvd.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/jewel_tv.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/jewel_tv.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/layout_top_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/layout_top_bar.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_about.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_add_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_add_host.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_album.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_download.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_exit.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_gesture_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_gesture_mode.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_hide_watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_hide_watched.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_nowplaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_nowplaying.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_qr_code.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_remote.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_show_watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_show_watched.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_song.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_sort.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_switch.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_text_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_text_entry.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_view.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_xbmc_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_xbmc_exit.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/menu_xbmc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/menu_xbmc_s.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_next_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_next_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_pause_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_pause_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_play_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_play_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_playlist_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_playlist_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_playlist_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_playlist_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_previous_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_previous_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_previous_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_stop_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/now_playing_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/now_playing_stop_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/pgbar_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/pgbar_act.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/pgbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/pgbar_thumb.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/playlist_rightboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/playlist_rightboxes.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_gest_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_gest_cursor.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox__top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox__top_left.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox__top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox__top_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_back.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_back_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_back_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_display.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_display_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_display_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_display_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_display_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_down.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_down_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_down_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_down_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_gesturezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_gesturezone.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_images.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_images.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_images_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_images_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_images_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_images_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_info.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_info_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_info_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_info_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_left.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_left_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_left_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_menu.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_menu_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_menu_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_music.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_music_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_music_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_music_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_music_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_next.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_next_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_next_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_pause.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_pause_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_pause_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_play.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_play_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_play_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_previous.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_previous_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_previous_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_previous_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_right.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_right_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_right_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_right_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_seek_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_seek_back.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_seek_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_seek_back_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_seek_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_seek_back_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_seek_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_seek_forward.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_select.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_select_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_select_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_stop.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_stop_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_stop_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_title.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_title_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_title_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_title_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_tv.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_tv_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_tv_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_tv_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_tv_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_up.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_up_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_video.xml -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_video_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_video_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_video_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_video_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_widget_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_widget_back_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/remote_xbox_widget_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/remote_xbox_widget_down_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/scrollbar_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/scrollbar_handle.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/shiny_black_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/shiny_black_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_actor_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_actor_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_actor_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_actor_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_actor_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_actor_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_album_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_album_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_album_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_album_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_album_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_album_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_artist_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_artist_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_artist_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_artist_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_artist_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_artist_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_background.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_filemode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_filemode_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_filemode_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_filemode_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_filemode_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_filemode_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_genre_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_genre_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_genre_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_genre_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_genre_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_genre_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_movie_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_movie_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_movie_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_movie_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_movie_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_movie_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_playlist_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_playlist_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_playlist_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_playlist_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_playlist_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_playlist_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_slider.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_song_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_song_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_song_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_song_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_song_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_song_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_tv_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_tv_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_tv_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_tv_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_tv_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_tv_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_va_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_va_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_va_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_va_on.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/st_va_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/st_va_over.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_0.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_2.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_3.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_4.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_5.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_6.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_7.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_8.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/stars_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/stars_9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-v4/timeborder.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-hdpi-v4/timeborder.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi-v4/remote_xbox_tv_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land-hdpi-v4/remote_xbox_tv_up.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi-v4/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land-hdpi-v4/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi-v4/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land-ldpi-v4/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_back.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_back_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_back_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_display.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_display_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_display_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_display_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_display_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_down.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_down_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_down_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_down_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_images.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_images.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_images_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_images_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_images_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_images_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_info.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_info_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_info_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_info_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_left.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_left_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_left_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_menu.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_menu_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_menu_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_music.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_music_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_music_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_music_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_music_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_next.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_next_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_next_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_pause.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_pause_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_pause_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_play.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_play_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_play_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_power.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_power.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_power_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_power_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_power_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_power_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_previous.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_previous_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_previous_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_previous_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_right.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_right_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_right_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_right_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_seek_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_seek_back.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_seek_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_seek_back_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_seek_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_seek_back_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_seek_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_seek_forward.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_select.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_select_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_select_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_stop.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_stop_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_stop_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_title.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_title_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_title_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_title_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_tv.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_tv_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_tv_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_tv_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_tv_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_up.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_up_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_video.xml -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_video_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_video_down.png -------------------------------------------------------------------------------- /res/drawable-land/remote_xbox_video_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-land/remote_xbox_video_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_gest_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_gest_cursor.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox__top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox__top_left.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox__top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox__top_right.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_back_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_back_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_display_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_display_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_down_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_down_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_down_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_gesturezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_gesturezone.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_info_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_info_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_info_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_left_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_left_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_menu_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_menu_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_next_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_next_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_pause_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_pause_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_play_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_play_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_previous_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_right_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_right_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_right_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_select_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_select_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_stop_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_stop_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_title_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_title_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_title_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_up_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-v4/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable-ldpi-v4/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable/about_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/about_back.png -------------------------------------------------------------------------------- /res/drawable/bottom_controls_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_controls_background.png -------------------------------------------------------------------------------- /res/drawable/bottom_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_logo.xml -------------------------------------------------------------------------------- /res/drawable/bottom_logo_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_logo_down.png -------------------------------------------------------------------------------- /res/drawable/bottom_logo_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_logo_up.png -------------------------------------------------------------------------------- /res/drawable/bottom_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_text.xml -------------------------------------------------------------------------------- /res/drawable/bottom_text_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_text_down.9.png -------------------------------------------------------------------------------- /res/drawable/bottom_text_up.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottom_text_up.9.png -------------------------------------------------------------------------------- /res/drawable/bottombar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bottombar_bg.png -------------------------------------------------------------------------------- /res/drawable/bubble_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bubble_add.png -------------------------------------------------------------------------------- /res/drawable/bubble_del.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bubble_del.xml -------------------------------------------------------------------------------- /res/drawable/bubble_del_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bubble_del_down.png -------------------------------------------------------------------------------- /res/drawable/bubble_del_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/bubble_del_up.png -------------------------------------------------------------------------------- /res/drawable/check_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/check_mark.png -------------------------------------------------------------------------------- /res/drawable/coverbox_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/coverbox_back.png -------------------------------------------------------------------------------- /res/drawable/default_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/default_album.png -------------------------------------------------------------------------------- /res/drawable/default_jewel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/default_jewel.png -------------------------------------------------------------------------------- /res/drawable/default_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/default_poster.png -------------------------------------------------------------------------------- /res/drawable/default_season.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/default_season.png -------------------------------------------------------------------------------- /res/drawable/default_tvshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/default_tvshow.png -------------------------------------------------------------------------------- /res/drawable/dialog_full_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/dialog_full_dark.9.png -------------------------------------------------------------------------------- /res/drawable/home_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/home_bottom.9.png -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/drawable/icon_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_album.png -------------------------------------------------------------------------------- /res/drawable/icon_album_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_album_big.png -------------------------------------------------------------------------------- /res/drawable/icon_album_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_album_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_album_dark_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_album_dark_big.png -------------------------------------------------------------------------------- /res/drawable/icon_artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_artist.png -------------------------------------------------------------------------------- /res/drawable/icon_artist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_artist_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_file.png -------------------------------------------------------------------------------- /res/drawable/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_folder.png -------------------------------------------------------------------------------- /res/drawable/icon_folder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_folder_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_genre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_genre.png -------------------------------------------------------------------------------- /res/drawable/icon_genre_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_genre_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_home_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_movie.png -------------------------------------------------------------------------------- /res/drawable/icon_home_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_music.png -------------------------------------------------------------------------------- /res/drawable/icon_home_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_picture.png -------------------------------------------------------------------------------- /res/drawable/icon_home_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_playing.png -------------------------------------------------------------------------------- /res/drawable/icon_home_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_power.png -------------------------------------------------------------------------------- /res/drawable/icon_home_reconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_reconnect.png -------------------------------------------------------------------------------- /res/drawable/icon_home_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_remote.png -------------------------------------------------------------------------------- /res/drawable/icon_home_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_tv.png -------------------------------------------------------------------------------- /res/drawable/icon_home_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_home_voice.png -------------------------------------------------------------------------------- /res/drawable/icon_lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_lastfm.png -------------------------------------------------------------------------------- /res/drawable/icon_movie_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_movie_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_picture.png -------------------------------------------------------------------------------- /res/drawable/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_play.png -------------------------------------------------------------------------------- /res/drawable/icon_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_playing.png -------------------------------------------------------------------------------- /res/drawable/icon_playlist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_playlist_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_shoutcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_shoutcast.png -------------------------------------------------------------------------------- /res/drawable/icon_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_song.png -------------------------------------------------------------------------------- /res/drawable/icon_song_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_song_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_song_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_song_light.png -------------------------------------------------------------------------------- /res/drawable/icon_va_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_va_dark.png -------------------------------------------------------------------------------- /res/drawable/icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_video.png -------------------------------------------------------------------------------- /res/drawable/icon_video_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_video_light.png -------------------------------------------------------------------------------- /res/drawable/icon_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/icon_zip.png -------------------------------------------------------------------------------- /res/drawable/jewel_cd.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/jewel_cd.9.png -------------------------------------------------------------------------------- /res/drawable/jewel_dvd.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/jewel_dvd.9.png -------------------------------------------------------------------------------- /res/drawable/jewel_tv.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/jewel_tv.9.png -------------------------------------------------------------------------------- /res/drawable/layout_top_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/layout_top_bar.9.png -------------------------------------------------------------------------------- /res/drawable/listitem_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/listitem_bg.xml -------------------------------------------------------------------------------- /res/drawable/listitem_bottom_rounded.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/listitem_bottom_rounded.9.png -------------------------------------------------------------------------------- /res/drawable/listitem_subtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/listitem_subtitle.xml -------------------------------------------------------------------------------- /res/drawable/listitem_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/listitem_title.xml -------------------------------------------------------------------------------- /res/drawable/menu_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_about.png -------------------------------------------------------------------------------- /res/drawable/menu_add_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_add_host.png -------------------------------------------------------------------------------- /res/drawable/menu_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_album.png -------------------------------------------------------------------------------- /res/drawable/menu_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_download.png -------------------------------------------------------------------------------- /res/drawable/menu_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_exit.png -------------------------------------------------------------------------------- /res/drawable/menu_gesture_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_gesture_mode.png -------------------------------------------------------------------------------- /res/drawable/menu_hide_watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_hide_watched.png -------------------------------------------------------------------------------- /res/drawable/menu_nowplaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_nowplaying.png -------------------------------------------------------------------------------- /res/drawable/menu_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_qr_code.png -------------------------------------------------------------------------------- /res/drawable/menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_refresh.png -------------------------------------------------------------------------------- /res/drawable/menu_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_remote.png -------------------------------------------------------------------------------- /res/drawable/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_settings.png -------------------------------------------------------------------------------- /res/drawable/menu_show_watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_show_watched.png -------------------------------------------------------------------------------- /res/drawable/menu_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_song.png -------------------------------------------------------------------------------- /res/drawable/menu_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_sort.png -------------------------------------------------------------------------------- /res/drawable/menu_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_switch.png -------------------------------------------------------------------------------- /res/drawable/menu_text_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_text_entry.png -------------------------------------------------------------------------------- /res/drawable/menu_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_view.png -------------------------------------------------------------------------------- /res/drawable/menu_xbmc_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_xbmc_exit.png -------------------------------------------------------------------------------- /res/drawable/menu_xbmc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/menu_xbmc_s.png -------------------------------------------------------------------------------- /res/drawable/nocover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/nocover.png -------------------------------------------------------------------------------- /res/drawable/notif_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/notif_pause.png -------------------------------------------------------------------------------- /res/drawable/notif_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/notif_pic.png -------------------------------------------------------------------------------- /res/drawable/notif_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/notif_play.png -------------------------------------------------------------------------------- /res/drawable/now_playing_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_next.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_next_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_next_up.png -------------------------------------------------------------------------------- /res/drawable/now_playing_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_pause.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_pause_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_pause_up.png -------------------------------------------------------------------------------- /res/drawable/now_playing_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_play.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_play_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_play_up.png -------------------------------------------------------------------------------- /res/drawable/now_playing_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_playlist.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_playlist_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_playlist_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_playlist_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_playlist_up.png -------------------------------------------------------------------------------- /res/drawable/now_playing_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_previous.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_previous_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_previous_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_previous_up.png -------------------------------------------------------------------------------- /res/drawable/now_playing_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_stop.xml -------------------------------------------------------------------------------- /res/drawable/now_playing_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_stop_down.png -------------------------------------------------------------------------------- /res/drawable/now_playing_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/now_playing_stop_up.png -------------------------------------------------------------------------------- /res/drawable/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/person.png -------------------------------------------------------------------------------- /res/drawable/person_black_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/person_black_small.png -------------------------------------------------------------------------------- /res/drawable/person_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/person_small.png -------------------------------------------------------------------------------- /res/drawable/pgbar_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/pgbar_act.png -------------------------------------------------------------------------------- /res/drawable/pgbar_inact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/pgbar_inact.png -------------------------------------------------------------------------------- /res/drawable/pgbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/pgbar_thumb.png -------------------------------------------------------------------------------- /res/drawable/playlist_rightboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/playlist_rightboxes.png -------------------------------------------------------------------------------- /res/drawable/poster_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/poster_big.png -------------------------------------------------------------------------------- /res/drawable/progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/progressbar.xml -------------------------------------------------------------------------------- /res/drawable/remote_gest_border_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_gest_border_left.png -------------------------------------------------------------------------------- /res/drawable/remote_gest_border_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_gest_border_right.png -------------------------------------------------------------------------------- /res/drawable/remote_gest_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_gest_cursor.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox__top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox__top_left.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox__top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox__top_right.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_back.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_back_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_back_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_display.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_display_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_display_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_display_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_display_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_down.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_down_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_down_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_down_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesture_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesture_back_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesture_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesture_info_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesture_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesture_menu_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesture_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesture_title_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesturezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesturezone.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_gesturezone_dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_gesturezone_dim.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_info.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_info_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_info_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_info_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_left.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_left_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_left_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_menu.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_menu_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_menu_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_next.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_next_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_next_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_pause.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_pause_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_pause_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_play.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_play_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_play_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_previous.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_previous_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_previous_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_previous_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_right.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_right_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_right_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_right_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_back.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_back_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_back_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_forward.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_forward_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_forward_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_seek_forward_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_seek_forward_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_select.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_select_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_select_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_stop.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_stop_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_stop_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_title.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_title_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_title_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_title_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_up.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_up_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_up_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_back.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_back_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_back_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_display.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_display_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_display_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_display_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_display_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_down.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_down_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_down_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_down_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_down_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_info.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_info_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_info_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_info_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_info_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_left.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_left_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_left_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_menu.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_menu_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_menu_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_next.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_next_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_next_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_next_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_pause.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_pause_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_pause_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_pause_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_pause_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_play.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_play_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_play_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_play_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_play_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_preview.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_previous.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_previous_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_previous_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_right.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_right_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_right_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_right_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_seek_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_seek_back.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_seek_back_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_seek_back_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_seek_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_seek_forward.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_select.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_select_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_select_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_stop.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_stop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_stop_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_stop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_stop_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_title.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_title_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_title_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_title_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_title_up.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_up.xml -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_up_down.png -------------------------------------------------------------------------------- /res/drawable/remote_xbox_widget_up_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/remote_xbox_widget_up_up.png -------------------------------------------------------------------------------- /res/drawable/scrollbar_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/scrollbar_handle.png -------------------------------------------------------------------------------- /res/drawable/selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/selected.9.png -------------------------------------------------------------------------------- /res/drawable/shiny_black_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/shiny_black_back.png -------------------------------------------------------------------------------- /res/drawable/smallborder.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/smallborder.9.png -------------------------------------------------------------------------------- /res/drawable/st_actor_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_actor_off.png -------------------------------------------------------------------------------- /res/drawable/st_actor_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_actor_on.png -------------------------------------------------------------------------------- /res/drawable/st_actor_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_actor_over.png -------------------------------------------------------------------------------- /res/drawable/st_album_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_album_off.png -------------------------------------------------------------------------------- /res/drawable/st_album_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_album_on.png -------------------------------------------------------------------------------- /res/drawable/st_album_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_album_over.png -------------------------------------------------------------------------------- /res/drawable/st_artist_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_artist_off.png -------------------------------------------------------------------------------- /res/drawable/st_artist_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_artist_on.png -------------------------------------------------------------------------------- /res/drawable/st_artist_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_artist_over.png -------------------------------------------------------------------------------- /res/drawable/st_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_background.png -------------------------------------------------------------------------------- /res/drawable/st_filemode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_filemode_off.png -------------------------------------------------------------------------------- /res/drawable/st_filemode_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_filemode_on.png -------------------------------------------------------------------------------- /res/drawable/st_filemode_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_filemode_over.png -------------------------------------------------------------------------------- /res/drawable/st_genre_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_genre_off.png -------------------------------------------------------------------------------- /res/drawable/st_genre_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_genre_on.png -------------------------------------------------------------------------------- /res/drawable/st_genre_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_genre_over.png -------------------------------------------------------------------------------- /res/drawable/st_movie_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_movie_off.png -------------------------------------------------------------------------------- /res/drawable/st_movie_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_movie_on.png -------------------------------------------------------------------------------- /res/drawable/st_movie_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_movie_over.png -------------------------------------------------------------------------------- /res/drawable/st_playlist_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_playlist_off.png -------------------------------------------------------------------------------- /res/drawable/st_playlist_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_playlist_on.png -------------------------------------------------------------------------------- /res/drawable/st_playlist_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_playlist_over.png -------------------------------------------------------------------------------- /res/drawable/st_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_slider.png -------------------------------------------------------------------------------- /res/drawable/st_song_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_song_off.png -------------------------------------------------------------------------------- /res/drawable/st_song_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_song_on.png -------------------------------------------------------------------------------- /res/drawable/st_song_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_song_over.png -------------------------------------------------------------------------------- /res/drawable/st_tv_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_tv_off.png -------------------------------------------------------------------------------- /res/drawable/st_tv_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_tv_on.png -------------------------------------------------------------------------------- /res/drawable/st_tv_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_tv_over.png -------------------------------------------------------------------------------- /res/drawable/st_va_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_va_off.png -------------------------------------------------------------------------------- /res/drawable/st_va_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_va_on.png -------------------------------------------------------------------------------- /res/drawable/st_va_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/st_va_over.png -------------------------------------------------------------------------------- /res/drawable/stars_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_0.png -------------------------------------------------------------------------------- /res/drawable/stars_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_1.png -------------------------------------------------------------------------------- /res/drawable/stars_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_10.png -------------------------------------------------------------------------------- /res/drawable/stars_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_2.png -------------------------------------------------------------------------------- /res/drawable/stars_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_3.png -------------------------------------------------------------------------------- /res/drawable/stars_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_4.png -------------------------------------------------------------------------------- /res/drawable/stars_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_5.png -------------------------------------------------------------------------------- /res/drawable/stars_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_6.png -------------------------------------------------------------------------------- /res/drawable/stars_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_7.png -------------------------------------------------------------------------------- /res/drawable/stars_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_8.png -------------------------------------------------------------------------------- /res/drawable/stars_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/stars_9.png -------------------------------------------------------------------------------- /res/drawable/timeborder.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/timeborder.9.png -------------------------------------------------------------------------------- /res/drawable/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/drawable/waiting.png -------------------------------------------------------------------------------- /res/layout-land-hdpi-v4/remote_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land-hdpi-v4/remote_xbox.xml -------------------------------------------------------------------------------- /res/layout-land-hdpi-v4/remote_xbox_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land-hdpi-v4/remote_xbox_extended.xml -------------------------------------------------------------------------------- /res/layout-land-ldpi-v4/remote_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land-ldpi-v4/remote_xbox.xml -------------------------------------------------------------------------------- /res/layout-land/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land/home.xml -------------------------------------------------------------------------------- /res/layout-land/nowplaying.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land/nowplaying.xml -------------------------------------------------------------------------------- /res/layout-land/remote_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-land/remote_xbox.xml -------------------------------------------------------------------------------- /res/layout-ldpi-v4/remote_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-ldpi-v4/remote_xbox.xml -------------------------------------------------------------------------------- /res/layout-xhdpi/slidingtab_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout-xhdpi/slidingtab_widget.xml -------------------------------------------------------------------------------- /res/layout/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/about.xml -------------------------------------------------------------------------------- /res/layout/actor_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/actor_item.xml -------------------------------------------------------------------------------- /res/layout/albumgrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/albumgrid.xml -------------------------------------------------------------------------------- /res/layout/albuminfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/albuminfo.xml -------------------------------------------------------------------------------- /res/layout/albumtracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/albumtracks.xml -------------------------------------------------------------------------------- /res/layout/artistinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/artistinfo.xml -------------------------------------------------------------------------------- /res/layout/blankgrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/blankgrid.xml -------------------------------------------------------------------------------- /res/layout/blanklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/blanklist.xml -------------------------------------------------------------------------------- /res/layout/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/home.xml -------------------------------------------------------------------------------- /res/layout/home_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/home_item.xml -------------------------------------------------------------------------------- /res/layout/listmessage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/listmessage.xml -------------------------------------------------------------------------------- /res/layout/loading_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/loading_message.xml -------------------------------------------------------------------------------- /res/layout/loadinglistentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/loadinglistentry.xml -------------------------------------------------------------------------------- /res/layout/moviedetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/moviedetails.xml -------------------------------------------------------------------------------- /res/layout/movielibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/movielibrary.xml -------------------------------------------------------------------------------- /res/layout/musicartist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/musicartist.xml -------------------------------------------------------------------------------- /res/layout/musicgenre.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/musicgenre.xml -------------------------------------------------------------------------------- /res/layout/musiclibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/musiclibrary.xml -------------------------------------------------------------------------------- /res/layout/nowplaying.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/nowplaying.xml -------------------------------------------------------------------------------- /res/layout/playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/playlist.xml -------------------------------------------------------------------------------- /res/layout/preference_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/preference_host.xml -------------------------------------------------------------------------------- /res/layout/remote_gesture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/remote_gesture.xml -------------------------------------------------------------------------------- /res/layout/remote_gesture_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/remote_gesture_extended.xml -------------------------------------------------------------------------------- /res/layout/remote_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/remote_xbox.xml -------------------------------------------------------------------------------- /res/layout/remote_xbox_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/remote_xbox_extended.xml -------------------------------------------------------------------------------- /res/layout/sendtext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/sendtext.xml -------------------------------------------------------------------------------- /res/layout/setup_page_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/setup_page_1.xml -------------------------------------------------------------------------------- /res/layout/setup_page_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/setup_page_2.xml -------------------------------------------------------------------------------- /res/layout/setup_page_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/setup_page_3.xml -------------------------------------------------------------------------------- /res/layout/setup_page_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/setup_page_login.xml -------------------------------------------------------------------------------- /res/layout/setup_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/setup_wizard.xml -------------------------------------------------------------------------------- /res/layout/slidingtab_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/slidingtab_overlay.xml -------------------------------------------------------------------------------- /res/layout/slidingtab_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/slidingtab_widget.xml -------------------------------------------------------------------------------- /res/layout/titlebar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/titlebar.xml -------------------------------------------------------------------------------- /res/layout/tvdetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/tvdetails.xml -------------------------------------------------------------------------------- /res/layout/tvepisodedetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/tvepisodedetails.xml -------------------------------------------------------------------------------- /res/layout/tvlibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/tvlibrary.xml -------------------------------------------------------------------------------- /res/layout/widget_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/widget_xbox.xml -------------------------------------------------------------------------------- /res/layout/widget_xbox_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/layout/widget_xbox_small.xml -------------------------------------------------------------------------------- /res/values-v14/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values-v14/dimens.xml -------------------------------------------------------------------------------- /res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/arrays.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/attrs_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/attrs_manifest.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/ids.xml -------------------------------------------------------------------------------- /res/values/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/public.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/values/themes.xml -------------------------------------------------------------------------------- /res/xml/app_widget_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/xml/app_widget_remote.xml -------------------------------------------------------------------------------- /res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/res/xml/preferences.xml -------------------------------------------------------------------------------- /src/org/xbmc/android/util/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/Base64.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/ClientFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/ClientFactory.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/ConnectionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/ConnectionFactory.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/Crc32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/Crc32.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/HostFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/HostFactory.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/IOUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/IOUtilities.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/ImportUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/ImportUtilities.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/KeyTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/KeyTracker.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/PowerDown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/PowerDown.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/SMSConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/SMSConstants.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/SmsMmsMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/SmsMmsMessage.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/SmsPopupUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/SmsPopupUtils.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/WakeOnLan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/WakeOnLan.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/WifiHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/WifiHelper.java -------------------------------------------------------------------------------- /src/org/xbmc/android/util/YoutubeURLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/util/YoutubeURLParser.java -------------------------------------------------------------------------------- /src/org/xbmc/android/widget/FastScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/widget/FastScrollView.java -------------------------------------------------------------------------------- /src/org/xbmc/android/widget/IdleListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/android/widget/IdleListener.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/CoverResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/CoverResponse.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/DataResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/DataResponse.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/IControlManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/IControlManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/IInfoManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/IInfoManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/IManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/IManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/IMusicManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/IMusicManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/ISortableManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/ISortableManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/ITvShowManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/ITvShowManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/business/IVideoManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/business/IVideoManager.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IControlClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IControlClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IEventClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IEventClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IInfoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IInfoClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IMusicClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IMusicClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IPictureClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IPictureClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/ITvShowClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/ITvShowClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/data/IVideoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/data/IVideoClient.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/FileTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/FileTypes.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/GuiActions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/GuiActions.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/GuiSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/GuiSettings.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/MusicInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/MusicInfo.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/PlayStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/PlayStatus.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/SystemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/SystemInfo.java -------------------------------------------------------------------------------- /src/org/xbmc/api/info/VideoInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/info/VideoInfo.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Actor.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Album.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Album.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Artist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Artist.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Episode.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/FileLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/FileLocation.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Genre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Genre.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Host.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Host.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/ICoverArt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/ICoverArt.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/INamedResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/INamedResource.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Movie.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Season.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Season.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/Song.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/Song.java -------------------------------------------------------------------------------- /src/org/xbmc/api/object/TvShow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/object/TvShow.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/CacheType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/CacheType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/DirectoryMask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/DirectoryMask.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/ListType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/ListType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/LogType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/LogType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/MediaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/MediaType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/SeekType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/SeekType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/SortType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/SortType.java -------------------------------------------------------------------------------- /src/org/xbmc/api/type/ThumbSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/api/type/ThumbSize.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/ButtonCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/ButtonCodes.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/EventClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/EventClient.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/Packet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/Packet.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketACTION.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketACTION.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketBUTTON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketBUTTON.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketBYE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketBYE.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketHELO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketHELO.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketLOG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketLOG.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketMOUSE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketMOUSE.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketNOTIFICATION.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketNOTIFICATION.java -------------------------------------------------------------------------------- /src/org/xbmc/eventclient/PacketPING.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/eventclient/PacketPING.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/BroadcastListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/BroadcastListener.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/Connection.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/HttpApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/HttpApi.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/NoNetworkException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/NoNetworkException.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/NoSettingsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/NoSettingsException.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/WifiStateException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/WifiStateException.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/Client.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/ControlClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/ControlClient.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/InfoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/InfoClient.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/MusicClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/MusicClient.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/PictureClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/PictureClient.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/TvShowClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/TvShowClient.java -------------------------------------------------------------------------------- /src/org/xbmc/httpapi/client/VideoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/httpapi/client/VideoClient.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/Connection.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/JsonRpc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/JsonRpc.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/Client.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/ControlClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/ControlClient.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/InfoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/InfoClient.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/MusicClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/MusicClient.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/TvShowClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/TvShowClient.java -------------------------------------------------------------------------------- /src/org/xbmc/jsonrpc/client/VideoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/src/org/xbmc/jsonrpc/client/VideoClient.java -------------------------------------------------------------------------------- /xbmc-remote-sign.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/android-xbmcremote/HEAD/xbmc-remote-sign.keystore --------------------------------------------------------------------------------