diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 00000000..91a69d10 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Android CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..496ee2ca --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/Android.mk b/Android.mk index 640b1fbf..3826f88d 100644 --- a/Android.mk +++ b/Android.mk @@ -1,10 +1,14 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) +LOCAL_STATIC_JAVA_LIBRARIES := libarity android-support-v4 LOCAL_PACKAGE_NAME := Superuser LOCAL_SRC_FILES := $(call all-java-files-under,src) +LOCAL_PROGUARD_FLAG_FILES := proguard.flags -LOCAL_CERTIFICATE := platform +LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true + +LOCAL_CERTIFICATE := superuser include $(BUILD_PACKAGE) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 6876dafa..9197274b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,51 +1,126 @@ + - - - + + + + + + + + + + + + + + + + + + + + + + android:theme="@style/Theme.Superuser" + android:excludeFromRecents="true" /> + - - - - + + + + + - - - - + android:taskAffinity="" + android:windowSoftInputMode="stateAlwaysHidden"> - + + + + - - + - - - - - - - - - + + + + + - + - - + + @@ -54,20 +129,21 @@ + + + + + + + + + + + - - - - - - - - - - - + diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index 88b2da0b..00000000 --- a/CHANGELOG +++ /dev/null @@ -1,9 +0,0 @@ -2.3.1: - - Ensure getStatusButtonDrawable() gets a value it can use, to prevent an ArrayIndexOutOfBoundsException - - Fix DateIndexer to return proper section if there are no log entries for today - - Fix FC due to unexpected column names - - Localize tab names - - Use activity to manage cursors - - Add database version to Settings screen - - Prevent a possible FC in LogActivity - - New drawables and better layout for request window. Now supports landscape and ldpi devices diff --git a/Omnibus b/Omnibus new file mode 100644 index 00000000..0f0e0be5 --- /dev/null +++ b/Omnibus @@ -0,0 +1 @@ +superuser \ No newline at end of file diff --git a/assets/busybox-armeabi b/assets/busybox-armeabi new file mode 100755 index 00000000..4c6c550c Binary files /dev/null and b/assets/busybox-armeabi differ diff --git a/assets/sutools-armeabi b/assets/sutools-armeabi new file mode 100755 index 00000000..c14d53bf Binary files /dev/null and b/assets/sutools-armeabi differ diff --git a/assets/sutools-x86 b/assets/sutools-x86 new file mode 100755 index 00000000..a21e001e Binary files /dev/null and b/assets/sutools-x86 differ diff --git a/proguard.flags b/proguard.flags new file mode 100644 index 00000000..6bcc1e19 --- /dev/null +++ b/proguard.flags @@ -0,0 +1 @@ +-keep class com.noshufou.android.su.UpdaterFragment diff --git a/res/anim/grow_from_bottom.xml b/res/anim/grow_from_bottom.xml new file mode 100644 index 00000000..75160dba --- /dev/null +++ b/res/anim/grow_from_bottom.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/res/anim/grow_from_top.xml b/res/anim/grow_from_top.xml new file mode 100644 index 00000000..f69c95eb --- /dev/null +++ b/res/anim/grow_from_top.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/res/anim/shrink_from_bottom.xml b/res/anim/shrink_from_bottom.xml new file mode 100644 index 00000000..dfa84ccc --- /dev/null +++ b/res/anim/shrink_from_bottom.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/res/anim/shrink_from_top.xml b/res/anim/shrink_from_top.xml new file mode 100644 index 00000000..9d9bd3ca --- /dev/null +++ b/res/anim/shrink_from_top.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/res/color/abs__primary_text_disable_only_holo_dark.xml b/res/color/abs__primary_text_disable_only_holo_dark.xml new file mode 100755 index 00000000..ea7459aa --- /dev/null +++ b/res/color/abs__primary_text_disable_only_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/res/color/abs__primary_text_disable_only_holo_light.xml b/res/color/abs__primary_text_disable_only_holo_light.xml new file mode 100755 index 00000000..0edb33b4 --- /dev/null +++ b/res/color/abs__primary_text_disable_only_holo_light.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/res/color/abs__primary_text_holo_dark.xml b/res/color/abs__primary_text_holo_dark.xml new file mode 100755 index 00000000..2bcfd0b6 --- /dev/null +++ b/res/color/abs__primary_text_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/res/color/abs__primary_text_holo_light.xml b/res/color/abs__primary_text_holo_light.xml new file mode 100755 index 00000000..198384fe --- /dev/null +++ b/res/color/abs__primary_text_holo_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/res/drawable-hdpi-v11/stat_su.png b/res/drawable-hdpi-v11/stat_su.png new file mode 100644 index 00000000..d9c91c27 Binary files /dev/null and b/res/drawable-hdpi-v11/stat_su.png differ diff --git a/res/drawable-hdpi-v9/stat_su.png b/res/drawable-hdpi-v9/stat_su.png new file mode 100644 index 00000000..03c4ac17 Binary files /dev/null and b/res/drawable-hdpi-v9/stat_su.png differ diff --git a/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png b/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 00000000..769463b3 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png b/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 00000000..88f11dcb Binary files /dev/null and b/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png b/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 00000000..73050476 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png b/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 00000000..712a551e Binary files /dev/null and b/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png b/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 00000000..bf3b9438 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/res/drawable/perm_deny_emo.png b/res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png old mode 100644 new mode 100755 similarity index 75% rename from res/drawable/perm_deny_emo.png rename to res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png index 31c08d06..6c141577 Binary files a/res/drawable/perm_deny_emo.png and b/res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/res/drawable/infobar_dark.9.png b/res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png old mode 100644 new mode 100755 similarity index 93% rename from res/drawable/infobar_dark.9.png rename to res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png index ae3caf7a..f4ff16be Binary files a/res/drawable/infobar_dark.9.png and b/res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png b/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 00000000..cbbaec58 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_solid_light_holo.9.png b/res/drawable-hdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 00000000..af917e5b Binary files /dev/null and b/res/drawable-hdpi/abs__ab_solid_light_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png b/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 00000000..2d59f354 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png b/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 00000000..0520e5a2 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png b/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 00000000..e3e3f93b Binary files /dev/null and b/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_stacked_transparent_dark_holo.9.png b/res/drawable-hdpi/abs__ab_stacked_transparent_dark_holo.9.png new file mode 100755 index 00000000..1e395722 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_stacked_transparent_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_stacked_transparent_light_holo.9.png b/res/drawable-hdpi/abs__ab_stacked_transparent_light_holo.9.png new file mode 100755 index 00000000..a16db853 Binary files /dev/null and b/res/drawable-hdpi/abs__ab_stacked_transparent_light_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png b/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 00000000..0eff695d Binary files /dev/null and b/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png b/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 00000000..219b170f Binary files /dev/null and b/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png b/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 00000000..b0dc31fb Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png b/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 00000000..4bc2683b Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png b/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 00000000..4af38fb7 Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png b/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 00000000..d32f74cf Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 00000000..66adffed Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png b/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 00000000..caeff9c3 Binary files /dev/null and b/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png b/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 00000000..1d836f65 Binary files /dev/null and b/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png b/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 00000000..5818666d Binary files /dev/null and b/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png b/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 00000000..564fb34b Binary files /dev/null and b/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png b/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 00000000..ae21b760 Binary files /dev/null and b/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png b/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 00000000..79e56f52 Binary files /dev/null and b/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__dialog_full_holo_light.9.png b/res/drawable-hdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 00000000..e029f210 Binary files /dev/null and b/res/drawable-hdpi/abs__dialog_full_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png b/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png new file mode 100755 index 00000000..897a1c11 Binary files /dev/null and b/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/res/drawable-hdpi/abs__ic_ab_back_holo_light.png b/res/drawable-hdpi/abs__ic_ab_back_holo_light.png new file mode 100755 index 00000000..0c89f714 Binary files /dev/null and b/res/drawable-hdpi/abs__ic_ab_back_holo_light.png differ diff --git a/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png b/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 00000000..d8662e3f Binary files /dev/null and b/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/res/drawable-hdpi/abs__ic_cab_done_holo_light.png b/res/drawable-hdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 00000000..ed03f620 Binary files /dev/null and b/res/drawable-hdpi/abs__ic_cab_done_holo_light.png differ diff --git a/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 00000000..2abc4580 Binary files /dev/null and b/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 00000000..bb6aef1d Binary files /dev/null and b/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png b/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 00000000..6f747c8f Binary files /dev/null and b/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/res/drawable-hdpi/abs__ic_menu_share_holo_light.png b/res/drawable-hdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 00000000..682b2fde Binary files /dev/null and b/res/drawable-hdpi/abs__ic_menu_share_holo_light.png differ diff --git a/res/drawable-hdpi/abs__list_activated_holo.9.png b/res/drawable-hdpi/abs__list_activated_holo.9.png new file mode 100755 index 00000000..4ea7afa0 Binary files /dev/null and b/res/drawable-hdpi/abs__list_activated_holo.9.png differ diff --git a/res/drawable-hdpi/abs__list_divider_holo_dark.9.png b/res/drawable-hdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 00000000..986ab0b9 Binary files /dev/null and b/res/drawable-hdpi/abs__list_divider_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__list_divider_holo_light.9.png b/res/drawable-hdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 00000000..0279e17a Binary files /dev/null and b/res/drawable-hdpi/abs__list_divider_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__list_focused_holo.9.png b/res/drawable-hdpi/abs__list_focused_holo.9.png new file mode 100755 index 00000000..516f5c73 Binary files /dev/null and b/res/drawable-hdpi/abs__list_focused_holo.9.png differ diff --git a/res/drawable-hdpi/abs__list_longpressed_holo.9.png b/res/drawable-hdpi/abs__list_longpressed_holo.9.png new file mode 100755 index 00000000..4ea7afa0 Binary files /dev/null and b/res/drawable-hdpi/abs__list_longpressed_holo.9.png differ diff --git a/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png b/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png new file mode 100755 index 00000000..5654cd69 Binary files /dev/null and b/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__list_pressed_holo_light.9.png b/res/drawable-hdpi/abs__list_pressed_holo_light.9.png new file mode 100755 index 00000000..5654cd69 Binary files /dev/null and b/res/drawable-hdpi/abs__list_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__list_selector_disabled_holo_dark.9.png b/res/drawable-hdpi/abs__list_selector_disabled_holo_dark.9.png new file mode 100755 index 00000000..f6fd30dc Binary files /dev/null and b/res/drawable-hdpi/abs__list_selector_disabled_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__list_selector_disabled_holo_light.9.png b/res/drawable-hdpi/abs__list_selector_disabled_holo_light.9.png new file mode 100755 index 00000000..ca8e9a27 Binary files /dev/null and b/res/drawable-hdpi/abs__list_selector_disabled_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png b/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 00000000..4d3d2085 Binary files /dev/null and b/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png b/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 00000000..924a99d1 Binary files /dev/null and b/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png b/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 00000000..310c368e Binary files /dev/null and b/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__progress_bg_holo_light.9.png b/res/drawable-hdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 00000000..70cb7fc7 Binary files /dev/null and b/res/drawable-hdpi/abs__progress_bg_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png b/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 00000000..1c269205 Binary files /dev/null and b/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__progress_primary_holo_light.9.png b/res/drawable-hdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 00000000..1c269205 Binary files /dev/null and b/res/drawable-hdpi/abs__progress_primary_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png b/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 00000000..40d0d164 Binary files /dev/null and b/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png b/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 00000000..40d0d164 Binary files /dev/null and b/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_48_inner_holo.png b/res/drawable-hdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 00000000..c8358e9c Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_48_inner_holo.png differ diff --git a/res/drawable-hdpi/abs__spinner_48_outer_holo.png b/res/drawable-hdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 00000000..f62f74bb Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_48_outer_holo.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png b/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 00000000..eb28ff9a Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png b/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 00000000..d281adb5 Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png b/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 00000000..b2985860 Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png b/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 00000000..4215396d Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png b/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 00000000..a280eabf Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png b/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 00000000..f8d619b4 Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png b/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 00000000..955a2f34 Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png b/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 00000000..6c22e223 Binary files /dev/null and b/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png b/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png new file mode 100755 index 00000000..673e3bf1 Binary files /dev/null and b/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/res/drawable-hdpi/abs__tab_selected_holo.9.png b/res/drawable-hdpi/abs__tab_selected_holo.9.png new file mode 100755 index 00000000..d57df98b Binary files /dev/null and b/res/drawable-hdpi/abs__tab_selected_holo.9.png differ diff --git a/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png b/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png new file mode 100755 index 00000000..6278eef4 Binary files /dev/null and b/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png b/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png new file mode 100755 index 00000000..aadc6f87 Binary files /dev/null and b/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/res/drawable-hdpi/app_list_header.9.png b/res/drawable-hdpi/app_list_header.9.png new file mode 100644 index 00000000..65f8da60 Binary files /dev/null and b/res/drawable-hdpi/app_list_header.9.png differ diff --git a/res/drawable-hdpi/btn_bg_pressed.9.png b/res/drawable-hdpi/btn_bg_pressed.9.png new file mode 100644 index 00000000..1edbfe87 Binary files /dev/null and b/res/drawable-hdpi/btn_bg_pressed.9.png differ diff --git a/res/drawable-hdpi/btn_bg_selected.9.png b/res/drawable-hdpi/btn_bg_selected.9.png new file mode 100644 index 00000000..2b397fc9 Binary files /dev/null and b/res/drawable-hdpi/btn_bg_selected.9.png differ diff --git a/res/drawable-hdpi/btn_dial_normal.9.png b/res/drawable-hdpi/btn_dial_normal.9.png new file mode 100644 index 00000000..aba4382e Binary files /dev/null and b/res/drawable-hdpi/btn_dial_normal.9.png differ diff --git a/res/drawable-hdpi/btn_dial_pressed.9.png b/res/drawable-hdpi/btn_dial_pressed.9.png new file mode 100644 index 00000000..daaeb546 Binary files /dev/null and b/res/drawable-hdpi/btn_dial_pressed.9.png differ diff --git a/res/drawable-hdpi/btn_dial_selected.9.png b/res/drawable-hdpi/btn_dial_selected.9.png new file mode 100644 index 00000000..f6240a21 Binary files /dev/null and b/res/drawable-hdpi/btn_dial_selected.9.png differ diff --git a/res/drawable-hdpi/dark_header.9.png b/res/drawable-hdpi/dark_header.9.png deleted file mode 100644 index 8cd231b4..00000000 Binary files a/res/drawable-hdpi/dark_header.9.png and /dev/null differ diff --git a/res/drawable-hdpi/divider_horizontal_bright.9.png b/res/drawable-hdpi/dialog_divider.9.png similarity index 100% rename from res/drawable-hdpi/divider_horizontal_bright.9.png rename to res/drawable-hdpi/dialog_divider.9.png diff --git a/res/drawable-hdpi/ic_action_clear_log.png b/res/drawable-hdpi/ic_action_clear_log.png new file mode 100644 index 00000000..59097923 Binary files /dev/null and b/res/drawable-hdpi/ic_action_clear_log.png differ diff --git a/res/drawable-hdpi/ic_action_delete.png b/res/drawable-hdpi/ic_action_delete.png new file mode 100644 index 00000000..5d9b03f1 Binary files /dev/null and b/res/drawable-hdpi/ic_action_delete.png differ diff --git a/res/drawable-hdpi/ic_action_extras.png b/res/drawable-hdpi/ic_action_extras.png new file mode 100644 index 00000000..0a759fcb Binary files /dev/null and b/res/drawable-hdpi/ic_action_extras.png differ diff --git a/res/drawable-hdpi/ic_action_info.png b/res/drawable-hdpi/ic_action_info.png new file mode 100644 index 00000000..3a545c77 Binary files /dev/null and b/res/drawable-hdpi/ic_action_info.png differ diff --git a/res/drawable-hdpi/ic_action_log.png b/res/drawable-hdpi/ic_action_log.png new file mode 100755 index 00000000..b0a89db8 Binary files /dev/null and b/res/drawable-hdpi/ic_action_log.png differ diff --git a/res/drawable-hdpi/ic_action_settings.png b/res/drawable-hdpi/ic_action_settings.png new file mode 100644 index 00000000..05a3188e Binary files /dev/null and b/res/drawable-hdpi/ic_action_settings.png differ diff --git a/res/drawable-hdpi/ic_action_toggle.png b/res/drawable-hdpi/ic_action_toggle.png new file mode 100644 index 00000000..255549ed Binary files /dev/null and b/res/drawable-hdpi/ic_action_toggle.png differ diff --git a/res/drawable-hdpi/ic_logo.png b/res/drawable-hdpi/ic_logo.png new file mode 100644 index 00000000..67c85952 Binary files /dev/null and b/res/drawable-hdpi/ic_logo.png differ diff --git a/res/drawable-hdpi/ic_logo_elite.png b/res/drawable-hdpi/ic_logo_elite.png new file mode 100644 index 00000000..d3812f10 Binary files /dev/null and b/res/drawable-hdpi/ic_logo_elite.png differ diff --git a/res/drawable-hdpi/ic_menu_clear.png b/res/drawable-hdpi/ic_menu_clear.png deleted file mode 100644 index a54ea9d9..00000000 Binary files a/res/drawable-hdpi/ic_menu_clear.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_menu_preferences.png b/res/drawable-hdpi/ic_menu_preferences.png deleted file mode 100644 index 81bca4ae..00000000 Binary files a/res/drawable-hdpi/ic_menu_preferences.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tab_selected_log.png b/res/drawable-hdpi/ic_tab_selected_log.png deleted file mode 100644 index 9b0eee32..00000000 Binary files a/res/drawable-hdpi/ic_tab_selected_log.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tab_selected_permissions.png b/res/drawable-hdpi/ic_tab_selected_permissions.png deleted file mode 100644 index 56849f8e..00000000 Binary files a/res/drawable-hdpi/ic_tab_selected_permissions.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tab_unselected_log.png b/res/drawable-hdpi/ic_tab_unselected_log.png deleted file mode 100644 index bcdd417a..00000000 Binary files a/res/drawable-hdpi/ic_tab_unselected_log.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tab_unselected_permissions.png b/res/drawable-hdpi/ic_tab_unselected_permissions.png deleted file mode 100644 index f27cb931..00000000 Binary files a/res/drawable-hdpi/ic_tab_unselected_permissions.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tab_unselected_settings.png b/res/drawable-hdpi/ic_tab_unselected_settings.png deleted file mode 100644 index 285eda2d..00000000 Binary files a/res/drawable-hdpi/ic_tab_unselected_settings.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_tabs_selected_settings.png b/res/drawable-hdpi/ic_tabs_selected_settings.png deleted file mode 100644 index c2a92ad6..00000000 Binary files a/res/drawable-hdpi/ic_tabs_selected_settings.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_title_home.png b/res/drawable-hdpi/ic_title_home.png new file mode 100644 index 00000000..191d30d9 Binary files /dev/null and b/res/drawable-hdpi/ic_title_home.png differ diff --git a/res/drawable-hdpi/icon.png b/res/drawable-hdpi/icon.png index eaa5faf9..dcc88da4 100644 Binary files a/res/drawable-hdpi/icon.png and b/res/drawable-hdpi/icon.png differ diff --git a/res/drawable-hdpi/infobar_dark.9.png b/res/drawable-hdpi/infobar_dark.9.png deleted file mode 100644 index 5a082902..00000000 Binary files a/res/drawable-hdpi/infobar_dark.9.png and /dev/null differ diff --git a/res/drawable-hdpi/light_header.9.png b/res/drawable-hdpi/light_header.9.png new file mode 100644 index 00000000..843774dc Binary files /dev/null and b/res/drawable-hdpi/light_header.9.png differ diff --git a/res/drawable-hdpi/panel_background.9.png b/res/drawable-hdpi/panel_background.9.png new file mode 100644 index 00000000..ab6cc404 Binary files /dev/null and b/res/drawable-hdpi/panel_background.9.png differ diff --git a/res/drawable-hdpi/perm_allow_dot.png b/res/drawable-hdpi/perm_allow_dot.png index d787d2f7..76944469 100644 Binary files a/res/drawable-hdpi/perm_allow_dot.png and b/res/drawable-hdpi/perm_allow_dot.png differ diff --git a/res/drawable-hdpi/perm_allow_emo.png b/res/drawable-hdpi/perm_allow_emo.png index 69e3bede..f1e47237 100644 Binary files a/res/drawable-hdpi/perm_allow_emo.png and b/res/drawable-hdpi/perm_allow_emo.png differ diff --git a/res/drawable-hdpi/perm_deny_dot.png b/res/drawable-hdpi/perm_deny_dot.png index 4b278539..391d1c98 100644 Binary files a/res/drawable-hdpi/perm_deny_dot.png and b/res/drawable-hdpi/perm_deny_dot.png differ diff --git a/res/drawable-hdpi/perm_deny_emo.png b/res/drawable-hdpi/perm_deny_emo.png index 40017f17..bcfe71b4 100644 Binary files a/res/drawable-hdpi/perm_deny_emo.png and b/res/drawable-hdpi/perm_deny_emo.png differ diff --git a/res/drawable-hdpi/popup_background.9.png b/res/drawable-hdpi/popup_background.9.png new file mode 100644 index 00000000..8ed0d5e9 Binary files /dev/null and b/res/drawable-hdpi/popup_background.9.png differ diff --git a/res/drawable-hdpi/stat_su.png b/res/drawable-hdpi/stat_su.png index b7dc58ee..f8c69a61 100644 Binary files a/res/drawable-hdpi/stat_su.png and b/res/drawable-hdpi/stat_su.png differ diff --git a/res/drawable-hdpi/textfield_activated_holo_dark.9.png b/res/drawable-hdpi/textfield_activated_holo_dark.9.png new file mode 100644 index 00000000..37ed9363 Binary files /dev/null and b/res/drawable-hdpi/textfield_activated_holo_dark.9.png differ diff --git a/res/drawable-hdpi/timepicker_down_disabled.9.png b/res/drawable-hdpi/timepicker_down_disabled.9.png new file mode 100644 index 00000000..73b69150 Binary files /dev/null and b/res/drawable-hdpi/timepicker_down_disabled.9.png differ diff --git a/res/drawable-hdpi/timepicker_down_disabled_focused.9.png b/res/drawable-hdpi/timepicker_down_disabled_focused.9.png new file mode 100644 index 00000000..046e60f1 Binary files /dev/null and b/res/drawable-hdpi/timepicker_down_disabled_focused.9.png differ diff --git a/res/drawable-hdpi/timepicker_down_normal.9.png b/res/drawable-hdpi/timepicker_down_normal.9.png new file mode 100644 index 00000000..9baf7ccf Binary files /dev/null and b/res/drawable-hdpi/timepicker_down_normal.9.png differ diff --git a/res/drawable-hdpi/timepicker_down_pressed.9.png b/res/drawable-hdpi/timepicker_down_pressed.9.png new file mode 100644 index 00000000..d95fdd3b Binary files /dev/null and b/res/drawable-hdpi/timepicker_down_pressed.9.png differ diff --git a/res/drawable-hdpi/timepicker_down_selected.9.png b/res/drawable-hdpi/timepicker_down_selected.9.png new file mode 100644 index 00000000..a84448ff Binary files /dev/null and b/res/drawable-hdpi/timepicker_down_selected.9.png differ diff --git a/res/drawable-hdpi/timepicker_input_disabled.9.png b/res/drawable-hdpi/timepicker_input_disabled.9.png new file mode 100644 index 00000000..aa17a983 Binary files /dev/null and b/res/drawable-hdpi/timepicker_input_disabled.9.png differ diff --git a/res/drawable-hdpi/timepicker_input_normal.9.png b/res/drawable-hdpi/timepicker_input_normal.9.png new file mode 100644 index 00000000..be78a585 Binary files /dev/null and b/res/drawable-hdpi/timepicker_input_normal.9.png differ diff --git a/res/drawable-hdpi/timepicker_input_pressed.9.png b/res/drawable-hdpi/timepicker_input_pressed.9.png new file mode 100644 index 00000000..b28f66ca Binary files /dev/null and b/res/drawable-hdpi/timepicker_input_pressed.9.png differ diff --git a/res/drawable-hdpi/timepicker_input_selected.9.png b/res/drawable-hdpi/timepicker_input_selected.9.png new file mode 100644 index 00000000..2e175e89 Binary files /dev/null and b/res/drawable-hdpi/timepicker_input_selected.9.png differ diff --git a/res/drawable-hdpi/timepicker_up_disabled.9.png b/res/drawable-hdpi/timepicker_up_disabled.9.png new file mode 100644 index 00000000..348e48c9 Binary files /dev/null and b/res/drawable-hdpi/timepicker_up_disabled.9.png differ diff --git a/res/drawable-hdpi/timepicker_up_disabled_focused.9.png b/res/drawable-hdpi/timepicker_up_disabled_focused.9.png new file mode 100644 index 00000000..93cf3a00 Binary files /dev/null and b/res/drawable-hdpi/timepicker_up_disabled_focused.9.png differ diff --git a/res/drawable-hdpi/timepicker_up_normal.9.png b/res/drawable-hdpi/timepicker_up_normal.9.png new file mode 100644 index 00000000..b4acced9 Binary files /dev/null and b/res/drawable-hdpi/timepicker_up_normal.9.png differ diff --git a/res/drawable-hdpi/timepicker_up_pressed.9.png b/res/drawable-hdpi/timepicker_up_pressed.9.png new file mode 100644 index 00000000..bd295108 Binary files /dev/null and b/res/drawable-hdpi/timepicker_up_pressed.9.png differ diff --git a/res/drawable-hdpi/timepicker_up_selected.9.png b/res/drawable-hdpi/timepicker_up_selected.9.png new file mode 100644 index 00000000..a666998b Binary files /dev/null and b/res/drawable-hdpi/timepicker_up_selected.9.png differ diff --git a/res/drawable-land-hdpi/dialog_background.9.png b/res/drawable-land-hdpi/dialog_background.9.png index 541f7352..8e5ce1f6 100644 Binary files a/res/drawable-land-hdpi/dialog_background.9.png and b/res/drawable-land-hdpi/dialog_background.9.png differ diff --git a/res/drawable-land-ldpi/dialog_background.9.png b/res/drawable-land-ldpi/dialog_background.9.png index 09fc69bc..e5faf8fa 100644 Binary files a/res/drawable-land-ldpi/dialog_background.9.png and b/res/drawable-land-ldpi/dialog_background.9.png differ diff --git a/res/drawable-land-mdpi/dialog_background.9.png b/res/drawable-land-mdpi/dialog_background.9.png new file mode 100644 index 00000000..732c03a8 Binary files /dev/null and b/res/drawable-land-mdpi/dialog_background.9.png differ diff --git a/res/drawable-land/dialog_background.9.png b/res/drawable-land/dialog_background.9.png deleted file mode 100644 index 5475fcff..00000000 Binary files a/res/drawable-land/dialog_background.9.png and /dev/null differ diff --git a/res/drawable-large-land/app_list_background.9.png b/res/drawable-large-land/app_list_background.9.png new file mode 100644 index 00000000..85161a08 Binary files /dev/null and b/res/drawable-large-land/app_list_background.9.png differ diff --git a/res/drawable-large-land/app_list_divider.9.png b/res/drawable-large-land/app_list_divider.9.png new file mode 100644 index 00000000..9c7d3dea Binary files /dev/null and b/res/drawable-large-land/app_list_divider.9.png differ diff --git a/res/drawable-large-land/app_list_header.9.png b/res/drawable-large-land/app_list_header.9.png new file mode 100644 index 00000000..c336cbf2 Binary files /dev/null and b/res/drawable-large-land/app_list_header.9.png differ diff --git a/res/drawable-large-land/list_activated.9.png b/res/drawable-large-land/list_activated.9.png new file mode 100644 index 00000000..ba5e73f9 Binary files /dev/null and b/res/drawable-large-land/list_activated.9.png differ diff --git a/res/drawable-large-land/panel_content.9.png b/res/drawable-large-land/panel_content.9.png new file mode 100644 index 00000000..f5647a67 Binary files /dev/null and b/res/drawable-large-land/panel_content.9.png differ diff --git a/res/drawable-large/app_list_background.xml b/res/drawable-large/app_list_background.xml new file mode 100644 index 00000000..534c6d43 --- /dev/null +++ b/res/drawable-large/app_list_background.xml @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/res/drawable-large/app_list_header.9.png b/res/drawable-large/app_list_header.9.png new file mode 100644 index 00000000..6611060d Binary files /dev/null and b/res/drawable-large/app_list_header.9.png differ diff --git a/res/drawable-large/popup_background.9.png b/res/drawable-large/popup_background.9.png new file mode 100644 index 00000000..efe96aec Binary files /dev/null and b/res/drawable-large/popup_background.9.png differ diff --git a/res/drawable-ldpi-v11/stat_su.png b/res/drawable-ldpi-v11/stat_su.png new file mode 100644 index 00000000..4988b82e Binary files /dev/null and b/res/drawable-ldpi-v11/stat_su.png differ diff --git a/res/drawable-ldpi-v9/stat_su.png b/res/drawable-ldpi-v9/stat_su.png new file mode 100644 index 00000000..d58f97b0 Binary files /dev/null and b/res/drawable-ldpi-v9/stat_su.png differ diff --git a/res/drawable-ldpi/app_list_header.9.png b/res/drawable-ldpi/app_list_header.9.png new file mode 100644 index 00000000..27455db8 Binary files /dev/null and b/res/drawable-ldpi/app_list_header.9.png differ diff --git a/res/drawable-ldpi/ic_action_clear_log.png b/res/drawable-ldpi/ic_action_clear_log.png new file mode 100644 index 00000000..c54e5bf0 Binary files /dev/null and b/res/drawable-ldpi/ic_action_clear_log.png differ diff --git a/res/drawable-ldpi/ic_action_delete.png b/res/drawable-ldpi/ic_action_delete.png new file mode 100644 index 00000000..dd8d7785 Binary files /dev/null and b/res/drawable-ldpi/ic_action_delete.png differ diff --git a/res/drawable-ldpi/ic_action_extras.png b/res/drawable-ldpi/ic_action_extras.png new file mode 100644 index 00000000..2001b99d Binary files /dev/null and b/res/drawable-ldpi/ic_action_extras.png differ diff --git a/res/drawable-ldpi/ic_action_info.png b/res/drawable-ldpi/ic_action_info.png new file mode 100644 index 00000000..3d953db2 Binary files /dev/null and b/res/drawable-ldpi/ic_action_info.png differ diff --git a/res/drawable-ldpi/ic_action_log.png b/res/drawable-ldpi/ic_action_log.png new file mode 100755 index 00000000..26cab875 Binary files /dev/null and b/res/drawable-ldpi/ic_action_log.png differ diff --git a/res/drawable-ldpi/ic_action_settings.png b/res/drawable-ldpi/ic_action_settings.png new file mode 100644 index 00000000..ea7883c9 Binary files /dev/null and b/res/drawable-ldpi/ic_action_settings.png differ diff --git a/res/drawable-ldpi/ic_action_toggle.png b/res/drawable-ldpi/ic_action_toggle.png new file mode 100644 index 00000000..51ba06a1 Binary files /dev/null and b/res/drawable-ldpi/ic_action_toggle.png differ diff --git a/res/drawable-ldpi/ic_logo.png b/res/drawable-ldpi/ic_logo.png new file mode 100644 index 00000000..fb32eebf Binary files /dev/null and b/res/drawable-ldpi/ic_logo.png differ diff --git a/res/drawable-ldpi/ic_logo_elite.png b/res/drawable-ldpi/ic_logo_elite.png new file mode 100644 index 00000000..b0c931a9 Binary files /dev/null and b/res/drawable-ldpi/ic_logo_elite.png differ diff --git a/res/drawable-ldpi/icon.png b/res/drawable-ldpi/icon.png index 9d3c326e..1a500810 100644 Binary files a/res/drawable-ldpi/icon.png and b/res/drawable-ldpi/icon.png differ diff --git a/res/drawable-ldpi/stat_su.png b/res/drawable-ldpi/stat_su.png new file mode 100644 index 00000000..4dfd8f6f Binary files /dev/null and b/res/drawable-ldpi/stat_su.png differ diff --git a/res/drawable-mdpi-v11/stat_su.png b/res/drawable-mdpi-v11/stat_su.png new file mode 100644 index 00000000..a9481e3e Binary files /dev/null and b/res/drawable-mdpi-v11/stat_su.png differ diff --git a/res/drawable-mdpi-v9/stat_su.png b/res/drawable-mdpi-v9/stat_su.png new file mode 100644 index 00000000..fd81b18f Binary files /dev/null and b/res/drawable-mdpi-v9/stat_su.png differ diff --git a/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png b/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 00000000..b2293670 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png b/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 00000000..c65f443e Binary files /dev/null and b/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png b/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 00000000..0706c8af Binary files /dev/null and b/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png b/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 00000000..d814d02d Binary files /dev/null and b/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png b/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 00000000..b139c8e4 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/res/drawable/divider_horizontal_dark_opaque.9.png b/res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png old mode 100644 new mode 100755 similarity index 94% rename from res/drawable/divider_horizontal_dark_opaque.9.png rename to res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png index 9444f0d1..ed4ba34e Binary files a/res/drawable/divider_horizontal_dark_opaque.9.png and b/res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png b/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png new file mode 100755 index 00000000..8f10bd52 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png b/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 00000000..743d00b6 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_solid_light_holo.9.png b/res/drawable-mdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 00000000..17c1fb92 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_solid_light_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png b/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 00000000..ddfc8e3d Binary files /dev/null and b/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png b/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 00000000..007a4b23 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png b/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 00000000..ad6e1a4d Binary files /dev/null and b/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_stacked_transparent_dark_holo.9.png b/res/drawable-mdpi/abs__ab_stacked_transparent_dark_holo.9.png new file mode 100755 index 00000000..0ad6c888 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_stacked_transparent_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_stacked_transparent_light_holo.9.png b/res/drawable-mdpi/abs__ab_stacked_transparent_light_holo.9.png new file mode 100755 index 00000000..19b50abc Binary files /dev/null and b/res/drawable-mdpi/abs__ab_stacked_transparent_light_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png b/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 00000000..ad980b13 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png b/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 00000000..60e6c527 Binary files /dev/null and b/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png b/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 00000000..5461b9c0 Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png b/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 00000000..5dc6f804 Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png b/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 00000000..a70b53c5 Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png b/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 00000000..c7a9896b Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 00000000..85d7aadd Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png b/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 00000000..f7b01e01 Binary files /dev/null and b/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png b/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 00000000..d8f1c8bd Binary files /dev/null and b/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png b/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 00000000..31e49894 Binary files /dev/null and b/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png b/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 00000000..7c2cbe53 Binary files /dev/null and b/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png b/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 00000000..30cbdc17 Binary files /dev/null and b/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png b/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 00000000..fb3660ea Binary files /dev/null and b/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__dialog_full_holo_light.9.png b/res/drawable-mdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 00000000..f18050ea Binary files /dev/null and b/res/drawable-mdpi/abs__dialog_full_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png b/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png new file mode 100755 index 00000000..df2d3d15 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/res/drawable-mdpi/abs__ic_ab_back_holo_light.png b/res/drawable-mdpi/abs__ic_ab_back_holo_light.png new file mode 100755 index 00000000..b2aa9c26 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_ab_back_holo_light.png differ diff --git a/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png b/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 00000000..a17b6a78 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/res/drawable-mdpi/abs__ic_cab_done_holo_light.png b/res/drawable-mdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 00000000..b28b3b54 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_cab_done_holo_light.png differ diff --git a/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 00000000..ba704b67 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 00000000..01d68169 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png b/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 00000000..6bf21e30 Binary files /dev/null and b/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/res/drawable-mdpi/abs__ic_menu_share_holo_light.png b/res/drawable-mdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 00000000..70fe31aa Binary files /dev/null and b/res/drawable-mdpi/abs__ic_menu_share_holo_light.png differ diff --git a/res/drawable-mdpi/abs__list_activated_holo.9.png b/res/drawable-mdpi/abs__list_activated_holo.9.png new file mode 100755 index 00000000..3bf8e036 Binary files /dev/null and b/res/drawable-mdpi/abs__list_activated_holo.9.png differ diff --git a/res/drawable-mdpi/abs__list_divider_holo_dark.9.png b/res/drawable-mdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 00000000..986ab0b9 Binary files /dev/null and b/res/drawable-mdpi/abs__list_divider_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__list_divider_holo_light.9.png b/res/drawable-mdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 00000000..0279e17a Binary files /dev/null and b/res/drawable-mdpi/abs__list_divider_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__list_focused_holo.9.png b/res/drawable-mdpi/abs__list_focused_holo.9.png new file mode 100755 index 00000000..7c0599e3 Binary files /dev/null and b/res/drawable-mdpi/abs__list_focused_holo.9.png differ diff --git a/res/drawable-mdpi/abs__list_longpressed_holo.9.png b/res/drawable-mdpi/abs__list_longpressed_holo.9.png new file mode 100755 index 00000000..3bf8e036 Binary files /dev/null and b/res/drawable-mdpi/abs__list_longpressed_holo.9.png differ diff --git a/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png b/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png new file mode 100755 index 00000000..6e77525d Binary files /dev/null and b/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__list_pressed_holo_light.9.png b/res/drawable-mdpi/abs__list_pressed_holo_light.9.png new file mode 100755 index 00000000..6e77525d Binary files /dev/null and b/res/drawable-mdpi/abs__list_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__list_selector_disabled_holo_dark.9.png b/res/drawable-mdpi/abs__list_selector_disabled_holo_dark.9.png new file mode 100755 index 00000000..92da2f0d Binary files /dev/null and b/res/drawable-mdpi/abs__list_selector_disabled_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__list_selector_disabled_holo_light.9.png b/res/drawable-mdpi/abs__list_selector_disabled_holo_light.9.png new file mode 100755 index 00000000..42cb6463 Binary files /dev/null and b/res/drawable-mdpi/abs__list_selector_disabled_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png b/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 00000000..460ec46e Binary files /dev/null and b/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png b/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 00000000..e84adf2d Binary files /dev/null and b/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png b/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 00000000..3d946e54 Binary files /dev/null and b/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__progress_bg_holo_light.9.png b/res/drawable-mdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 00000000..4bb22f0e Binary files /dev/null and b/res/drawable-mdpi/abs__progress_bg_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png b/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 00000000..ab8ec698 Binary files /dev/null and b/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__progress_primary_holo_light.9.png b/res/drawable-mdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 00000000..ab8ec698 Binary files /dev/null and b/res/drawable-mdpi/abs__progress_primary_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png b/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 00000000..7274274b Binary files /dev/null and b/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png b/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 00000000..7274274b Binary files /dev/null and b/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_48_inner_holo.png b/res/drawable-mdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 00000000..9458668f Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_48_inner_holo.png differ diff --git a/res/drawable-mdpi/abs__spinner_48_outer_holo.png b/res/drawable-mdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 00000000..4ce73edc Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_48_outer_holo.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png b/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 00000000..29aff4d4 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png b/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 00000000..4055f705 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png b/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 00000000..ea4ee042 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png b/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 00000000..f74c02b9 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png b/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 00000000..09a2992c Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png b/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 00000000..6536ee63 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png b/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 00000000..202b5b72 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png b/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 00000000..6de0ba88 Binary files /dev/null and b/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png b/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png new file mode 100755 index 00000000..c9972e74 Binary files /dev/null and b/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/res/drawable-mdpi/abs__tab_selected_holo.9.png b/res/drawable-mdpi/abs__tab_selected_holo.9.png new file mode 100755 index 00000000..587337ca Binary files /dev/null and b/res/drawable-mdpi/abs__tab_selected_holo.9.png differ diff --git a/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png b/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png new file mode 100755 index 00000000..155c4fc7 Binary files /dev/null and b/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png b/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png new file mode 100755 index 00000000..b1223fe3 Binary files /dev/null and b/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/res/drawable-mdpi/app_icon_background.png b/res/drawable-mdpi/app_icon_background.png new file mode 100644 index 00000000..6fc4306e Binary files /dev/null and b/res/drawable-mdpi/app_icon_background.png differ diff --git a/res/drawable-mdpi/app_list_header.9.png b/res/drawable-mdpi/app_list_header.9.png new file mode 100644 index 00000000..0d3d7cde Binary files /dev/null and b/res/drawable-mdpi/app_list_header.9.png differ diff --git a/res/drawable/dialog_background.9.png b/res/drawable-mdpi/dialog_background.9.png similarity index 100% rename from res/drawable/dialog_background.9.png rename to res/drawable-mdpi/dialog_background.9.png diff --git a/res/drawable/divider_horizontal_bright.9.png b/res/drawable-mdpi/dialog_divider.9.png similarity index 100% rename from res/drawable/divider_horizontal_bright.9.png rename to res/drawable-mdpi/dialog_divider.9.png diff --git a/res/drawable-mdpi/expand_button_pressed.9.png b/res/drawable-mdpi/expand_button_pressed.9.png new file mode 100644 index 00000000..b8a6398a Binary files /dev/null and b/res/drawable-mdpi/expand_button_pressed.9.png differ diff --git a/res/drawable-mdpi/ic_action_clear_log.png b/res/drawable-mdpi/ic_action_clear_log.png new file mode 100644 index 00000000..b70b3a89 Binary files /dev/null and b/res/drawable-mdpi/ic_action_clear_log.png differ diff --git a/res/drawable-mdpi/ic_action_delete.png b/res/drawable-mdpi/ic_action_delete.png new file mode 100644 index 00000000..ffdc2694 Binary files /dev/null and b/res/drawable-mdpi/ic_action_delete.png differ diff --git a/res/drawable-mdpi/ic_action_extras.png b/res/drawable-mdpi/ic_action_extras.png new file mode 100644 index 00000000..dd124a31 Binary files /dev/null and b/res/drawable-mdpi/ic_action_extras.png differ diff --git a/res/drawable-mdpi/ic_action_info.png b/res/drawable-mdpi/ic_action_info.png new file mode 100644 index 00000000..3a503e12 Binary files /dev/null and b/res/drawable-mdpi/ic_action_info.png differ diff --git a/res/drawable-mdpi/ic_action_log.png b/res/drawable-mdpi/ic_action_log.png new file mode 100755 index 00000000..d21b37ea Binary files /dev/null and b/res/drawable-mdpi/ic_action_log.png differ diff --git a/res/drawable-mdpi/ic_action_settings.png b/res/drawable-mdpi/ic_action_settings.png new file mode 100644 index 00000000..60a73a05 Binary files /dev/null and b/res/drawable-mdpi/ic_action_settings.png differ diff --git a/res/drawable-mdpi/ic_action_toggle.png b/res/drawable-mdpi/ic_action_toggle.png new file mode 100644 index 00000000..65667bff Binary files /dev/null and b/res/drawable-mdpi/ic_action_toggle.png differ diff --git a/res/drawable-mdpi/ic_logo.png b/res/drawable-mdpi/ic_logo.png new file mode 100644 index 00000000..bf4d3b44 Binary files /dev/null and b/res/drawable-mdpi/ic_logo.png differ diff --git a/res/drawable-mdpi/ic_logo_elite.png b/res/drawable-mdpi/ic_logo_elite.png new file mode 100644 index 00000000..b5062722 Binary files /dev/null and b/res/drawable-mdpi/ic_logo_elite.png differ diff --git a/res/drawable-mdpi/icon.png b/res/drawable-mdpi/icon.png new file mode 100644 index 00000000..87fa5598 Binary files /dev/null and b/res/drawable-mdpi/icon.png differ diff --git a/res/drawable-mdpi/left_panel_background.9.png b/res/drawable-mdpi/left_panel_background.9.png new file mode 100644 index 00000000..7e5e910d Binary files /dev/null and b/res/drawable-mdpi/left_panel_background.9.png differ diff --git a/res/drawable-mdpi/light_header.9.png b/res/drawable-mdpi/light_header.9.png new file mode 100644 index 00000000..c336cbf2 Binary files /dev/null and b/res/drawable-mdpi/light_header.9.png differ diff --git a/res/drawable-mdpi/list_activated.9.png b/res/drawable-mdpi/list_activated.9.png new file mode 100644 index 00000000..8519261d Binary files /dev/null and b/res/drawable-mdpi/list_activated.9.png differ diff --git a/res/drawable-mdpi/list_pressed_tab.9.png b/res/drawable-mdpi/list_pressed_tab.9.png new file mode 100644 index 00000000..5ce80b35 Binary files /dev/null and b/res/drawable-mdpi/list_pressed_tab.9.png differ diff --git a/res/drawable-mdpi/options_button_pressed.9.png b/res/drawable-mdpi/options_button_pressed.9.png new file mode 100644 index 00000000..e846d177 Binary files /dev/null and b/res/drawable-mdpi/options_button_pressed.9.png differ diff --git a/res/drawable-mdpi/panel_content.9.png b/res/drawable-mdpi/panel_content.9.png new file mode 100644 index 00000000..d6ba55fd Binary files /dev/null and b/res/drawable-mdpi/panel_content.9.png differ diff --git a/res/drawable-mdpi/perm_allow_dot.png b/res/drawable-mdpi/perm_allow_dot.png new file mode 100644 index 00000000..e16ec810 Binary files /dev/null and b/res/drawable-mdpi/perm_allow_dot.png differ diff --git a/res/drawable-mdpi/perm_allow_emo.png b/res/drawable-mdpi/perm_allow_emo.png new file mode 100644 index 00000000..a3247209 Binary files /dev/null and b/res/drawable-mdpi/perm_allow_emo.png differ diff --git a/res/drawable-mdpi/perm_deny_dot.png b/res/drawable-mdpi/perm_deny_dot.png new file mode 100644 index 00000000..6def8769 Binary files /dev/null and b/res/drawable-mdpi/perm_deny_dot.png differ diff --git a/res/drawable-mdpi/perm_deny_emo.png b/res/drawable-mdpi/perm_deny_emo.png new file mode 100644 index 00000000..7daac6c0 Binary files /dev/null and b/res/drawable-mdpi/perm_deny_emo.png differ diff --git a/res/drawable-mdpi/popup_background.9.png b/res/drawable-mdpi/popup_background.9.png new file mode 100644 index 00000000..d7fb3dbb Binary files /dev/null and b/res/drawable-mdpi/popup_background.9.png differ diff --git a/res/drawable-mdpi/recent_list_header.9.png b/res/drawable-mdpi/recent_list_header.9.png new file mode 100644 index 00000000..83207c6c Binary files /dev/null and b/res/drawable-mdpi/recent_list_header.9.png differ diff --git a/res/drawable-mdpi/right_panel_background.9.png b/res/drawable-mdpi/right_panel_background.9.png new file mode 100644 index 00000000..d3f2f673 Binary files /dev/null and b/res/drawable-mdpi/right_panel_background.9.png differ diff --git a/res/drawable-mdpi/stat_su.png b/res/drawable-mdpi/stat_su.png new file mode 100644 index 00000000..0d550cbe Binary files /dev/null and b/res/drawable-mdpi/stat_su.png differ diff --git a/res/drawable/sym_def_app_icon.png b/res/drawable-mdpi/sym_def_app_icon.png similarity index 100% rename from res/drawable/sym_def_app_icon.png rename to res/drawable-mdpi/sym_def_app_icon.png diff --git a/res/drawable-mdpi/timepicker_down_disabled.9.png b/res/drawable-mdpi/timepicker_down_disabled.9.png new file mode 100755 index 00000000..596294b6 Binary files /dev/null and b/res/drawable-mdpi/timepicker_down_disabled.9.png differ diff --git a/res/drawable-mdpi/timepicker_down_disabled_focused.9.png b/res/drawable-mdpi/timepicker_down_disabled_focused.9.png new file mode 100755 index 00000000..662cffd1 Binary files /dev/null and b/res/drawable-mdpi/timepicker_down_disabled_focused.9.png differ diff --git a/res/drawable-mdpi/timepicker_down_normal.9.png b/res/drawable-mdpi/timepicker_down_normal.9.png new file mode 100755 index 00000000..f17e8f94 Binary files /dev/null and b/res/drawable-mdpi/timepicker_down_normal.9.png differ diff --git a/res/drawable-mdpi/timepicker_down_pressed.9.png b/res/drawable-mdpi/timepicker_down_pressed.9.png new file mode 100755 index 00000000..777bcf5f Binary files /dev/null and b/res/drawable-mdpi/timepicker_down_pressed.9.png differ diff --git a/res/drawable-mdpi/timepicker_down_selected.9.png b/res/drawable-mdpi/timepicker_down_selected.9.png new file mode 100755 index 00000000..b45db621 Binary files /dev/null and b/res/drawable-mdpi/timepicker_down_selected.9.png differ diff --git a/res/drawable-mdpi/timepicker_input_disabled.9.png b/res/drawable-mdpi/timepicker_input_disabled.9.png new file mode 100755 index 00000000..f73658e7 Binary files /dev/null and b/res/drawable-mdpi/timepicker_input_disabled.9.png differ diff --git a/res/drawable-mdpi/timepicker_input_normal.9.png b/res/drawable-mdpi/timepicker_input_normal.9.png new file mode 100755 index 00000000..8032adac Binary files /dev/null and b/res/drawable-mdpi/timepicker_input_normal.9.png differ diff --git a/res/drawable-mdpi/timepicker_input_pressed.9.png b/res/drawable-mdpi/timepicker_input_pressed.9.png new file mode 100755 index 00000000..30d8d5fa Binary files /dev/null and b/res/drawable-mdpi/timepicker_input_pressed.9.png differ diff --git a/res/drawable-mdpi/timepicker_input_selected.9.png b/res/drawable-mdpi/timepicker_input_selected.9.png new file mode 100755 index 00000000..874f18f2 Binary files /dev/null and b/res/drawable-mdpi/timepicker_input_selected.9.png differ diff --git a/res/drawable-mdpi/timepicker_up_disabled.9.png b/res/drawable-mdpi/timepicker_up_disabled.9.png new file mode 100755 index 00000000..327b0b5a Binary files /dev/null and b/res/drawable-mdpi/timepicker_up_disabled.9.png differ diff --git a/res/drawable-mdpi/timepicker_up_disabled_focused.9.png b/res/drawable-mdpi/timepicker_up_disabled_focused.9.png new file mode 100755 index 00000000..4c96680f Binary files /dev/null and b/res/drawable-mdpi/timepicker_up_disabled_focused.9.png differ diff --git a/res/drawable-mdpi/timepicker_up_normal.9.png b/res/drawable-mdpi/timepicker_up_normal.9.png new file mode 100755 index 00000000..dcd26e01 Binary files /dev/null and b/res/drawable-mdpi/timepicker_up_normal.9.png differ diff --git a/res/drawable-mdpi/timepicker_up_pressed.9.png b/res/drawable-mdpi/timepicker_up_pressed.9.png new file mode 100755 index 00000000..7dac7786 Binary files /dev/null and b/res/drawable-mdpi/timepicker_up_pressed.9.png differ diff --git a/res/drawable-mdpi/timepicker_up_selected.9.png b/res/drawable-mdpi/timepicker_up_selected.9.png new file mode 100755 index 00000000..35dae8ef Binary files /dev/null and b/res/drawable-mdpi/timepicker_up_selected.9.png differ diff --git a/res/drawable-nodpi/app_icon_header_background.9.png b/res/drawable-nodpi/app_icon_header_background.9.png new file mode 100644 index 00000000..2c5b22b5 Binary files /dev/null and b/res/drawable-nodpi/app_icon_header_background.9.png differ diff --git a/res/drawable-nodpi/app_list_divider.9.png b/res/drawable-nodpi/app_list_divider.9.png new file mode 100644 index 00000000..10d8f17e Binary files /dev/null and b/res/drawable-nodpi/app_list_divider.9.png differ diff --git a/res/drawable-nodpi/list_header_top.9.png b/res/drawable-nodpi/list_header_top.9.png new file mode 100644 index 00000000..2576a746 Binary files /dev/null and b/res/drawable-nodpi/list_header_top.9.png differ diff --git a/res/drawable-nodpi/options_button_normal.9.png b/res/drawable-nodpi/options_button_normal.9.png new file mode 100644 index 00000000..f61dd40f Binary files /dev/null and b/res/drawable-nodpi/options_button_normal.9.png differ diff --git a/res/drawable-nodpi/options_divider.9.png b/res/drawable-nodpi/options_divider.9.png new file mode 100644 index 00000000..0ad6cc91 Binary files /dev/null and b/res/drawable-nodpi/options_divider.9.png differ diff --git a/res/drawable-v11/abs__progress_medium_holo.xml b/res/drawable-v11/abs__progress_medium_holo.xml new file mode 100755 index 00000000..6bcbdb83 --- /dev/null +++ b/res/drawable-v11/abs__progress_medium_holo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/res/drawable-xhdpi-v11/stat_su.png b/res/drawable-xhdpi-v11/stat_su.png new file mode 100644 index 00000000..da4b6687 Binary files /dev/null and b/res/drawable-xhdpi-v11/stat_su.png differ diff --git a/res/drawable-xhdpi-v9/stat_su.png b/res/drawable-xhdpi-v9/stat_su.png new file mode 100644 index 00000000..e8336b13 Binary files /dev/null and b/res/drawable-xhdpi-v9/stat_su.png differ diff --git a/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 00000000..57533469 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png b/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 00000000..7e6c047d Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png b/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 00000000..8155fe84 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 00000000..6cee9a12 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png b/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 00000000..fa4d76af Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png b/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png new file mode 100755 index 00000000..55099d49 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png b/res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png old mode 100644 new mode 100755 similarity index 93% rename from res/drawable-hdpi/divider_horizontal_dark_opaque.9.png rename to res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png index 9444f0d1..3c4701fc Binary files a/res/drawable-hdpi/divider_horizontal_dark_opaque.9.png and b/res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 00000000..6622cbad Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png b/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 00000000..c4272978 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png b/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 00000000..d0df29d8 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 00000000..a0d9c1b9 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png b/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 00000000..d36f99fe Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png new file mode 100755 index 00000000..5ad475dc Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png b/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png new file mode 100755 index 00000000..6ade5eeb Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png b/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 00000000..719b9234 Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png b/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 00000000..6da264db Binary files /dev/null and b/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png b/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 00000000..7ef2db75 Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png b/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 00000000..2283b4c0 Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png b/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 00000000..6d2039e2 Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png b/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 00000000..3c909b51 Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 00000000..131d1030 Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png b/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 00000000..3e7dcdfd Binary files /dev/null and b/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png b/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 00000000..0bd09806 Binary files /dev/null and b/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png b/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 00000000..43ed26d4 Binary files /dev/null and b/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png b/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 00000000..6b315798 Binary files /dev/null and b/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png b/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 00000000..df0121bb Binary files /dev/null and b/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png b/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 00000000..f4970ad1 Binary files /dev/null and b/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png b/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 00000000..172fc3b5 Binary files /dev/null and b/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png b/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png new file mode 100755 index 00000000..8ded62fb Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png b/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png new file mode 100755 index 00000000..517e9f72 Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png differ diff --git a/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png b/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 00000000..2e06dd01 Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png b/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 00000000..bb19810b Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png differ diff --git a/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 00000000..a92fb1d4 Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 00000000..930ca8d9 Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png b/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 00000000..45a0f1da Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png b/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 00000000..528e554a Binary files /dev/null and b/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png differ diff --git a/res/drawable-xhdpi/abs__list_activated_holo.9.png b/res/drawable-xhdpi/abs__list_activated_holo.9.png new file mode 100755 index 00000000..eda10e61 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_activated_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png b/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 00000000..e62f011d Binary files /dev/null and b/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__list_divider_holo_light.9.png b/res/drawable-xhdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 00000000..65061c0f Binary files /dev/null and b/res/drawable-xhdpi/abs__list_divider_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__list_focused_holo.9.png b/res/drawable-xhdpi/abs__list_focused_holo.9.png new file mode 100755 index 00000000..690cb1eb Binary files /dev/null and b/res/drawable-xhdpi/abs__list_focused_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__list_longpressed_holo.9.png b/res/drawable-xhdpi/abs__list_longpressed_holo.9.png new file mode 100755 index 00000000..eda10e61 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_longpressed_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png b/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png new file mode 100755 index 00000000..e4b33935 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png b/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png new file mode 100755 index 00000000..e4b33935 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png b/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png new file mode 100755 index 00000000..88726b69 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png b/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png new file mode 100755 index 00000000..c6a7d4d8 Binary files /dev/null and b/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png b/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 00000000..e2aff72f Binary files /dev/null and b/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png b/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 00000000..93066c84 Binary files /dev/null and b/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png b/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 00000000..345f5d30 Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png b/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 00000000..c843ef3a Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png b/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 00000000..c6c3f1ec Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png b/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 00000000..c6c3f1ec Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png b/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 00000000..205b66e2 Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png b/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 00000000..205b66e2 Binary files /dev/null and b/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_48_inner_holo.png b/res/drawable-xhdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 00000000..19517c4b Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_48_inner_holo.png differ diff --git a/res/drawable-xhdpi/abs__spinner_48_outer_holo.png b/res/drawable-xhdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 00000000..14143c51 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_48_outer_holo.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png b/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 00000000..d8929fcd Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png b/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 00000000..9174c4e4 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png b/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 00000000..3015d307 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png b/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 00000000..126637d1 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png b/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 00000000..d45c7a86 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png b/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 00000000..29036b90 Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png b/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 00000000..2cb34d7f Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png b/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 00000000..82f752fd Binary files /dev/null and b/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png b/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png new file mode 100755 index 00000000..03cfb094 Binary files /dev/null and b/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__tab_selected_holo.9.png b/res/drawable-xhdpi/abs__tab_selected_holo.9.png new file mode 100755 index 00000000..e4229f26 Binary files /dev/null and b/res/drawable-xhdpi/abs__tab_selected_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png b/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png new file mode 100755 index 00000000..e862cb12 Binary files /dev/null and b/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png b/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png new file mode 100755 index 00000000..f1eb6732 Binary files /dev/null and b/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi/ic_action_clear_log.png b/res/drawable-xhdpi/ic_action_clear_log.png new file mode 100644 index 00000000..447333a0 Binary files /dev/null and b/res/drawable-xhdpi/ic_action_clear_log.png differ diff --git a/res/drawable-xhdpi/ic_action_delete.png b/res/drawable-xhdpi/ic_action_delete.png new file mode 100644 index 00000000..d8f80ea4 Binary files /dev/null and b/res/drawable-xhdpi/ic_action_delete.png differ diff --git a/res/drawable-xhdpi/ic_action_extras.png b/res/drawable-xhdpi/ic_action_extras.png new file mode 100644 index 00000000..a627e48d Binary files /dev/null and b/res/drawable-xhdpi/ic_action_extras.png differ diff --git a/res/drawable-xhdpi/ic_action_info.png b/res/drawable-xhdpi/ic_action_info.png new file mode 100644 index 00000000..42c058ab Binary files /dev/null and b/res/drawable-xhdpi/ic_action_info.png differ diff --git a/res/drawable-xhdpi/ic_action_log.png b/res/drawable-xhdpi/ic_action_log.png new file mode 100755 index 00000000..1027d4bb Binary files /dev/null and b/res/drawable-xhdpi/ic_action_log.png differ diff --git a/res/drawable-xhdpi/ic_action_settings.png b/res/drawable-xhdpi/ic_action_settings.png new file mode 100644 index 00000000..c12fd53a Binary files /dev/null and b/res/drawable-xhdpi/ic_action_settings.png differ diff --git a/res/drawable-xhdpi/ic_action_toggle.png b/res/drawable-xhdpi/ic_action_toggle.png new file mode 100644 index 00000000..82061e96 Binary files /dev/null and b/res/drawable-xhdpi/ic_action_toggle.png differ diff --git a/res/drawable-xhdpi/icon.png b/res/drawable-xhdpi/icon.png new file mode 100644 index 00000000..cfc6fe03 Binary files /dev/null and b/res/drawable-xhdpi/icon.png differ diff --git a/res/drawable-xhdpi/perm_allow_dot.png b/res/drawable-xhdpi/perm_allow_dot.png new file mode 100644 index 00000000..e2aef117 Binary files /dev/null and b/res/drawable-xhdpi/perm_allow_dot.png differ diff --git a/res/drawable-xhdpi/perm_allow_emo.png b/res/drawable-xhdpi/perm_allow_emo.png new file mode 100644 index 00000000..a2702b26 Binary files /dev/null and b/res/drawable-xhdpi/perm_allow_emo.png differ diff --git a/res/drawable-xhdpi/perm_deny_dot.png b/res/drawable-xhdpi/perm_deny_dot.png new file mode 100644 index 00000000..8278ce2b Binary files /dev/null and b/res/drawable-xhdpi/perm_deny_dot.png differ diff --git a/res/drawable-xhdpi/perm_deny_emo.png b/res/drawable-xhdpi/perm_deny_emo.png new file mode 100644 index 00000000..81e94b1e Binary files /dev/null and b/res/drawable-xhdpi/perm_deny_emo.png differ diff --git a/res/drawable-xhdpi/stat_su.png b/res/drawable-xhdpi/stat_su.png new file mode 100644 index 00000000..69d52643 Binary files /dev/null and b/res/drawable-xhdpi/stat_su.png differ diff --git a/res/layout/list_separator.xml b/res/drawable/abs__activated_background_holo_dark.xml old mode 100644 new mode 100755 similarity index 71% rename from res/layout/list_separator.xml rename to res/drawable/abs__activated_background_holo_dark.xml index bc13f54e..85c2c021 --- a/res/layout/list_separator.xml +++ b/res/drawable/abs__activated_background_holo_dark.xml @@ -14,9 +14,7 @@ limitations under the License. --> - - \ No newline at end of file + + + + diff --git a/res/drawable/abs__activated_background_holo_light.xml b/res/drawable/abs__activated_background_holo_light.xml new file mode 100755 index 00000000..85c2c021 --- /dev/null +++ b/res/drawable/abs__activated_background_holo_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/res/drawable/abs__btn_cab_done_holo_dark.xml b/res/drawable/abs__btn_cab_done_holo_dark.xml new file mode 100755 index 00000000..cab89628 --- /dev/null +++ b/res/drawable/abs__btn_cab_done_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/res/drawable/abs__btn_cab_done_holo_light.xml b/res/drawable/abs__btn_cab_done_holo_light.xml new file mode 100755 index 00000000..42ba8a0d --- /dev/null +++ b/res/drawable/abs__btn_cab_done_holo_light.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml b/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml new file mode 100755 index 00000000..2588a492 --- /dev/null +++ b/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml @@ -0,0 +1,18 @@ + + + + + diff --git a/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml b/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml new file mode 100755 index 00000000..e2078c96 --- /dev/null +++ b/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml @@ -0,0 +1,18 @@ + + + + + diff --git a/res/drawable/abs__item_background_holo_dark.xml b/res/drawable/abs__item_background_holo_dark.xml new file mode 100755 index 00000000..d99b7a42 --- /dev/null +++ b/res/drawable/abs__item_background_holo_dark.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/res/drawable/abs__item_background_holo_light.xml b/res/drawable/abs__item_background_holo_light.xml new file mode 100755 index 00000000..da5fb2e8 --- /dev/null +++ b/res/drawable/abs__item_background_holo_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/res/drawable/abs__list_selector_background_transition_holo_dark.xml b/res/drawable/abs__list_selector_background_transition_holo_dark.xml new file mode 100755 index 00000000..b2ce4f0f --- /dev/null +++ b/res/drawable/abs__list_selector_background_transition_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/res/drawable/abs__list_selector_background_transition_holo_light.xml b/res/drawable/abs__list_selector_background_transition_holo_light.xml new file mode 100755 index 00000000..d7e31b1d --- /dev/null +++ b/res/drawable/abs__list_selector_background_transition_holo_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/res/drawable/abs__list_selector_holo_dark.xml b/res/drawable/abs__list_selector_holo_dark.xml new file mode 100755 index 00000000..08b8b12f --- /dev/null +++ b/res/drawable/abs__list_selector_holo_dark.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/res/drawable/abs__list_selector_holo_light.xml b/res/drawable/abs__list_selector_holo_light.xml new file mode 100755 index 00000000..ada490bf --- /dev/null +++ b/res/drawable/abs__list_selector_holo_light.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/res/drawable/abs__progress_horizontal_holo_dark.xml b/res/drawable/abs__progress_horizontal_holo_dark.xml new file mode 100755 index 00000000..bd19140a --- /dev/null +++ b/res/drawable/abs__progress_horizontal_holo_dark.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + diff --git a/res/drawable/abs__progress_horizontal_holo_light.xml b/res/drawable/abs__progress_horizontal_holo_light.xml new file mode 100755 index 00000000..321f07c8 --- /dev/null +++ b/res/drawable/abs__progress_horizontal_holo_light.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + diff --git a/res/drawable/abs__progress_medium_holo.xml b/res/drawable/abs__progress_medium_holo.xml new file mode 100755 index 00000000..6d4814f8 --- /dev/null +++ b/res/drawable/abs__progress_medium_holo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/res/drawable/abs__spinner_ab_holo_dark.xml b/res/drawable/abs__spinner_ab_holo_dark.xml new file mode 100755 index 00000000..4af5e22a --- /dev/null +++ b/res/drawable/abs__spinner_ab_holo_dark.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/res/drawable/abs__spinner_ab_holo_light.xml b/res/drawable/abs__spinner_ab_holo_light.xml new file mode 100755 index 00000000..b7850847 --- /dev/null +++ b/res/drawable/abs__spinner_ab_holo_light.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/res/drawable/abs__tab_indicator_ab_holo.xml b/res/drawable/abs__tab_indicator_ab_holo.xml new file mode 100755 index 00000000..d34e2081 --- /dev/null +++ b/res/drawable/abs__tab_indicator_ab_holo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/res/drawable/app_list_background.xml b/res/drawable/app_list_background.xml new file mode 100644 index 00000000..555a3220 --- /dev/null +++ b/res/drawable/app_list_background.xml @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/res/drawable/app_list_pressed.xml b/res/drawable/app_list_pressed.xml new file mode 100644 index 00000000..399ab677 --- /dev/null +++ b/res/drawable/app_list_pressed.xml @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/res/drawable/app_list_selector.xml b/res/drawable/app_list_selector.xml new file mode 100644 index 00000000..d438f9f1 --- /dev/null +++ b/res/drawable/app_list_selector.xml @@ -0,0 +1,25 @@ + + + + + + \ No newline at end of file diff --git a/res/drawable/btn_dial.xml b/res/drawable/btn_dial.xml new file mode 100644 index 00000000..52f26b13 --- /dev/null +++ b/res/drawable/btn_dial.xml @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/res/drawable/dark_header.9.png b/res/drawable/dark_header.9.png deleted file mode 100644 index ac906cd8..00000000 Binary files a/res/drawable/dark_header.9.png and /dev/null differ diff --git a/res/drawable/expand_button.xml b/res/drawable/expand_button.xml new file mode 100644 index 00000000..512988d8 --- /dev/null +++ b/res/drawable/expand_button.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/expand_button_normal.xml b/res/drawable/expand_button_normal.xml new file mode 100644 index 00000000..555a3220 --- /dev/null +++ b/res/drawable/expand_button_normal.xml @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/res/drawable/ic_menu_clear.png b/res/drawable/ic_menu_clear.png deleted file mode 100644 index 78222ea8..00000000 Binary files a/res/drawable/ic_menu_clear.png and /dev/null differ diff --git a/res/drawable/ic_menu_preferences.png b/res/drawable/ic_menu_preferences.png deleted file mode 100644 index 60dbff6d..00000000 Binary files a/res/drawable/ic_menu_preferences.png and /dev/null differ diff --git a/res/drawable/ic_tab_log.xml b/res/drawable/ic_tab_log.xml deleted file mode 100644 index b2d86290..00000000 --- a/res/drawable/ic_tab_log.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/res/drawable/ic_tab_permissions.xml b/res/drawable/ic_tab_permissions.xml deleted file mode 100644 index 8542cf5c..00000000 --- a/res/drawable/ic_tab_permissions.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/res/drawable/ic_tab_selected_log.png b/res/drawable/ic_tab_selected_log.png deleted file mode 100644 index f539799f..00000000 Binary files a/res/drawable/ic_tab_selected_log.png and /dev/null differ diff --git a/res/drawable/ic_tab_selected_permissions.png b/res/drawable/ic_tab_selected_permissions.png deleted file mode 100644 index 5f07d4b6..00000000 Binary files a/res/drawable/ic_tab_selected_permissions.png and /dev/null differ diff --git a/res/drawable/ic_tab_selected_settings.png b/res/drawable/ic_tab_selected_settings.png deleted file mode 100644 index 66bac791..00000000 Binary files a/res/drawable/ic_tab_selected_settings.png and /dev/null differ diff --git a/res/drawable/ic_tab_settings.xml b/res/drawable/ic_tab_settings.xml deleted file mode 100644 index 71fb0e20..00000000 --- a/res/drawable/ic_tab_settings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/res/drawable/ic_tab_unselected_log.png b/res/drawable/ic_tab_unselected_log.png deleted file mode 100644 index 05981726..00000000 Binary files a/res/drawable/ic_tab_unselected_log.png and /dev/null differ diff --git a/res/drawable/ic_tab_unselected_permissions.png b/res/drawable/ic_tab_unselected_permissions.png deleted file mode 100644 index 6a725136..00000000 Binary files a/res/drawable/ic_tab_unselected_permissions.png and /dev/null differ diff --git a/res/drawable/ic_tab_unselected_settings.png b/res/drawable/ic_tab_unselected_settings.png deleted file mode 100644 index 88df26c7..00000000 Binary files a/res/drawable/ic_tab_unselected_settings.png and /dev/null differ diff --git a/res/drawable/icon.png b/res/drawable/icon.png deleted file mode 100644 index 3b289f5b..00000000 Binary files a/res/drawable/icon.png and /dev/null differ diff --git a/res/drawable/options_button.xml b/res/drawable/options_button.xml new file mode 100644 index 00000000..f66c1521 --- /dev/null +++ b/res/drawable/options_button.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/perm_allow_dot.png b/res/drawable/perm_allow_dot.png deleted file mode 100644 index 22d5683e..00000000 Binary files a/res/drawable/perm_allow_dot.png and /dev/null differ diff --git a/res/drawable/perm_allow_emo.png b/res/drawable/perm_allow_emo.png deleted file mode 100644 index b86602ae..00000000 Binary files a/res/drawable/perm_allow_emo.png and /dev/null differ diff --git a/res/drawable/perm_deny_dot.png b/res/drawable/perm_deny_dot.png deleted file mode 100644 index 9d7620b1..00000000 Binary files a/res/drawable/perm_deny_dot.png and /dev/null differ diff --git a/res/drawable/stat_su.png b/res/drawable/stat_su.png deleted file mode 100644 index 7f29b60f..00000000 Binary files a/res/drawable/stat_su.png and /dev/null differ diff --git a/res/drawable/timepicker_down_btn.xml b/res/drawable/timepicker_down_btn.xml new file mode 100644 index 00000000..61a252a8 --- /dev/null +++ b/res/drawable/timepicker_down_btn.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + diff --git a/res/drawable/timepicker_input.xml b/res/drawable/timepicker_input.xml new file mode 100644 index 00000000..b811d4e3 --- /dev/null +++ b/res/drawable/timepicker_input.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + diff --git a/res/drawable/timepicker_up_btn.xml b/res/drawable/timepicker_up_btn.xml new file mode 100644 index 00000000..5428aeeb --- /dev/null +++ b/res/drawable/timepicker_up_btn.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + diff --git a/res/drawable/title_button.xml b/res/drawable/title_button.xml new file mode 100644 index 00000000..d8c70e1f --- /dev/null +++ b/res/drawable/title_button.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/res/drawable/title_logo.xml b/res/drawable/title_logo.xml new file mode 100644 index 00000000..6d4eee17 --- /dev/null +++ b/res/drawable/title_logo.xml @@ -0,0 +1,20 @@ + + + + + + \ No newline at end of file diff --git a/res/layout-land-v14/request_buttons.xml b/res/layout-land-v14/request_buttons.xml new file mode 100644 index 00000000..11f09329 --- /dev/null +++ b/res/layout-land-v14/request_buttons.xml @@ -0,0 +1,40 @@ + + + + + +