fix: Add build script and fix manifest
- Add build-apk.sh for easy compilation - Simplify AndroidManifest.xml - Fix themes.xml to use basic Android themes - Enable BuildConfig - Add okhttp-dnsoverhttps dependency
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/assets/res/any/colors.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2012 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<bool name="kg_enable_camera_default_widget">false</bool>
|
||||
<bool name="kg_top_align_page_shrink_on_bouncer_visible">true</bool>
|
||||
<bool name="kg_share_status_area">false</bool>
|
||||
<bool name="kg_sim_puk_account_full_screen">false</bool>
|
||||
</resources>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<resources>
|
||||
<integer name="config_dockedStackDividerSnapMode">2</integer>
|
||||
</resources>
|
||||
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
**
|
||||
** Copyright 2010, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<!-- Default height of a key in the password keyboard for alpha -->
|
||||
<dimen name="password_keyboard_key_height_alpha">47dip</dimen>
|
||||
<!-- Default height of a key in the password keyboard for numeric -->
|
||||
<dimen name="password_keyboard_key_height_numeric">50dip</dimen>
|
||||
<!-- Default correction for the space key in the password keyboard -->
|
||||
<dimen name="password_keyboard_spacebar_vertical_correction">2dip</dimen>
|
||||
<dimen name="preference_widget_width">72dp</dimen>
|
||||
|
||||
<!-- Height of the status bar -->
|
||||
<dimen name="status_bar_height">@dimen/status_bar_height_landscape</dimen>
|
||||
<!-- Height of area above QQS where battery/time go -->
|
||||
<dimen name="quick_qs_offset_height">48dp</dimen>
|
||||
<!-- Default height of an action bar. -->
|
||||
<dimen name="action_bar_default_height">40dip</dimen>
|
||||
<!-- Vertical padding around action bar icons. -->
|
||||
<dimen name="action_bar_icon_vertical_padding">4dip</dimen>
|
||||
<!-- Text size for action bar titles -->
|
||||
<dimen name="action_bar_title_text_size">16dp</dimen>
|
||||
<!-- Text size for action bar subtitles -->
|
||||
<dimen name="action_bar_subtitle_text_size">12dp</dimen>
|
||||
<!-- Top margin for action bar subtitles -->
|
||||
<dimen name="action_bar_subtitle_top_margin">-2dp</dimen>
|
||||
<!-- Bottom margin for action bar subtitles -->
|
||||
<dimen name="action_bar_subtitle_bottom_margin">4dip</dimen>
|
||||
|
||||
<!-- Size of clock font in LockScreen on Unsecure unlock screen. -->
|
||||
<dimen name="keyguard_lockscreen_clock_font_size">70sp</dimen>
|
||||
|
||||
<!-- Shift emergency button from the left edge by this amount. Used by landscape layout on
|
||||
phones -->
|
||||
<dimen name="kg_emergency_button_shift">30dp</dimen>
|
||||
|
||||
<!-- Space reserved at the bottom of secure views (pin/pattern/password/SIM pin/SIM puk) -->
|
||||
<dimen name="kg_secure_padding_height">0dp</dimen>
|
||||
|
||||
<!-- Top padding for the widget pager -->
|
||||
<dimen name="kg_widget_pager_top_padding">0dp</dimen>
|
||||
|
||||
<!-- Bottom padding for the widget pager -->
|
||||
<dimen name="kg_widget_pager_bottom_padding">0dp</dimen>
|
||||
|
||||
<!-- If the height if keyguard drops below this threshold (most likely
|
||||
due to the appearance of the IME), then drop the multiuser selector.
|
||||
Landscape's layout allows this to be smaller than for portrait. -->
|
||||
<dimen name="kg_squashed_layout_threshold">400dp</dimen>
|
||||
|
||||
<!-- New TimePicker dimensions. -->
|
||||
<dimen name="timepicker_left_side_width">250dip</dimen>
|
||||
|
||||
<!-- width of ImmersiveModeConfirmation (-1 for match_parent) -->
|
||||
<dimen name="immersive_mode_cling_width">380dp</dimen>
|
||||
|
||||
<!-- Floating toolbar dimensions -->
|
||||
<dimen name="floating_toolbar_preferred_width">544dp</dimen>
|
||||
|
||||
<dimen name="chooser_preview_width">412dp</dimen>
|
||||
|
||||
<dimen name="toast_y_offset">24dp</dimen>
|
||||
</resources>
|
||||
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2014 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<!-- Default height of an action bar. -->
|
||||
<dimen name="action_bar_default_height_material">48dp</dimen>
|
||||
<!-- Default text size for action bar title.-->
|
||||
<dimen name="text_size_title_material_toolbar">14dp</dimen>
|
||||
<!-- Default text size for action bar subtitle.-->
|
||||
<dimen name="text_size_subtitle_material_toolbar">12dp</dimen>
|
||||
|
||||
<!-- Floating window margins are small until we hit sw380dp-land. -->
|
||||
<dimen name="floating_window_margin_left">16dp</dimen>
|
||||
<dimen name="floating_window_margin_top">4dp</dimen>
|
||||
<dimen name="floating_window_margin_right">16dp</dimen>
|
||||
<dimen name="floating_window_margin_bottom">16dp</dimen>
|
||||
|
||||
<!-- Material time picker dimensions. -->
|
||||
<!-- Text size for the time picker header HH:MM label. This value is large
|
||||
enough that we don't need to use scaled pixels, dp is fine. -->
|
||||
<dimen name="timepicker_time_label_size">48dp</dimen>
|
||||
<dimen name="timepicker_ampm_label_size">16sp</dimen>
|
||||
<dimen name="timepicker_am_top_padding">8dp</dimen>
|
||||
<dimen name="timepicker_pm_top_padding">3dp</dimen>
|
||||
<!-- Radial picker is small until we hit sw380dp-land. -->
|
||||
<dimen name="timepicker_radial_picker_dimen">180dp</dimen>
|
||||
<dimen name="timepicker_radial_picker_top_margin">16dp</dimen>
|
||||
<dimen name="timepicker_radial_picker_horizontal_margin">24dp</dimen>
|
||||
|
||||
<!-- Used by RadialTimePicker in clock-style TimePicker. -->
|
||||
<dimen name="timepicker_text_inset_normal">22dp</dimen>
|
||||
<!-- Landscape inset is small until we hit sw380dp-land. -->
|
||||
<dimen name="timepicker_text_inset_inner">46dp</dimen>
|
||||
<dimen name="timepicker_text_size_normal">14sp</dimen>
|
||||
<dimen name="timepicker_text_size_inner">12sp</dimen>
|
||||
|
||||
<!-- Used by Material-style SimpleMonthView -->
|
||||
<dimen name="date_picker_month_height">40dp</dimen>
|
||||
<dimen name="date_picker_day_of_week_height">14dp</dimen>
|
||||
<dimen name="date_picker_day_height">32dp</dimen>
|
||||
<dimen name="date_picker_day_width">46dp</dimen>
|
||||
<dimen name="date_picker_day_selector_radius">16dp</dimen>
|
||||
<dimen name="day_picker_padding_horizontal">18dp</dimen>
|
||||
<dimen name="day_picker_padding_top">0dp</dimen>
|
||||
<dimen name="day_picker_button_margin_top">-8dp</dimen>
|
||||
</resources>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/assets/res/any/strings.xml
|
||||
**
|
||||
** Copyright 2009, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- @hide DO NOT TRANSLATE. Workaround for resource race condition in lockscreen -->
|
||||
<bool name="lockscreen_isPortrait">false</bool>
|
||||
</resources>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2012, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<resources>
|
||||
<!-- Gravity to make KeyguardSelectorView work in multiple orientations
|
||||
0x13 == "left|center_vertical" -->
|
||||
<integer name="kg_selector_gravity">0x13</integer>
|
||||
<integer name="kg_widget_region_weight">45</integer>
|
||||
<integer name="kg_security_flipper_weight">55</integer>
|
||||
<integer name="kg_glowpad_rotation_offset">-90</integer>
|
||||
|
||||
<integer name="date_picker_header_max_lines_material">4</integer>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user