Keyman for Android 2.8 Open Source

Copy over the Android source
Update build.sh scripts for new paths
KMEA/build.sh also updated to build KMW and use the artifacts
This commit is contained in:
darcywong00 2017-07-21 11:52:22 +07:00
parent 77ac8bc786
commit 6d26d7cd9e
945 changed files with 47539 additions and 0 deletions

10
android/.editorconfig Normal file
View file

@ -0,0 +1,10 @@
# top-most EditorConfig file
root = true
; applies to all files
[*]
indent_style = space
[*.{java, sh, css, html, xml}]
indent_size = 2

34
android/.gitignore vendored Normal file
View file

@ -0,0 +1,34 @@
# Covers JetBrains IDE: Android Studio
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# Built application files
**/build/
# Local configuration file (sdk path, etc)
**/local.properties
# User-specific stuff:
**/.idea/libraries/
**/.idea/codeStyleSettings.xml
**/.idea/dictionaries
**/.idea/workspace.xml
**/.idea/gradle.xml
**/.idea/tasks.xml
**/.idea/misc.xml
**/.idea/modules.xml
**/.idea/vcs.xml
**/*.iml
# Gradle generated files
**/.gradle/
# OS-specific files
**/.DS_Store
# This is the file output from KMEA; it's part of our build process.
**/libs/keyman-engine.aar
# keymanweb dependencies
KMEA/app/src/main/assets/
KMAPro/assets/keyman.js

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

1
android/KMAPro/.idea/.name generated Normal file
View file

@ -0,0 +1 @@
KMAPro

22
android/KMAPro/.idea/compiler.xml generated Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<resourceExtensions />
<wildcardResourcePatterns>
<entry name="!?*.java" />
<entry name="!?*.form" />
<entry name="!?*.class" />
<entry name="!?*.groovy" />
<entry name="!?*.scala" />
<entry name="!?*.flex" />
<entry name="!?*.kt" />
<entry name="!?*.clj" />
<entry name="!?*.aj" />
</wildcardResourcePatterns>
<annotationProcessing>
<profile default="true" name="Default" enabled="false">
<processorPath useClasspath="true" />
</profile>
</annotationProcessing>
</component>
</project>

View file

@ -0,0 +1,3 @@
<component name="CopyrightManager">
<settings default="" />
</component>

6
android/KMAPro/.idea/encodings.xml generated Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="PROJECT" charset="UTF-8" />
</component>
</project>

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>

View file

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tavultesoft.kmapro"
android:versionCode="8"
android:versionName="2.5" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="com.tavultesoft.kmapro.NetworkStateReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<service
android:name="com.keyman.android.SystemKeyboard"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:permission="android.permission.BIND_INPUT_METHOD" >
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data
android:name="android.view.im"
android:resource="@xml/method" />
</service>
<activity
android:name="com.tavultesoft.kmapro.MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:launchMode="singleTask" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="keyman" android:host="localhost" android:path="/open"/>
</intent-filter>
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardPickerActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.LanguageListActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardListActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardInfoActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.InfoActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.GetStartedActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.FBShareActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.facebook.LoginActivity"
android:label="" />
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/app_id" />
</application>
</manifest>

View file

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tavultesoft.kmapro"
android:versionCode="8"
android:versionName="2.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="com.tavultesoft.kmapro.NetworkStateReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<service
android:name="com.keyman.android.SystemKeyboard"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:permission="android.permission.BIND_INPUT_METHOD" >
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data
android:name="android.view.im"
android:resource="@xml/method" />
</service>
<activity
android:name="com.tavultesoft.kmapro.MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:launchMode="singleTask" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="keyman" android:host="localhost" android:path="/open"/>
</intent-filter>
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardPickerActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.LanguageListActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardListActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmea.KeyboardInfoActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.InfoActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.GetStartedActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
<activity
android:name="com.tavultesoft.kmapro.FBShareActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.facebook.LoginActivity"
android:label="" />
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/app_id" />
</application>
</manifest>

330
android/KMAPro/bin/R.txt Normal file
View file

@ -0,0 +1,330 @@
int anim fade_in 0x7f040000
int anim fade_out 0x7f040001
int anim hold 0x7f040002
int anim key_preview_fade_in 0x7f040003
int anim key_preview_fade_out 0x7f040004
int attr confirm_logout 0x7f01000c
int attr done_button_background 0x7f010006
int attr done_button_text 0x7f010004
int attr extra_fields 0x7f010001
int attr fetch_user_info 0x7f01000d
int attr is_cropped 0x7f010011
int attr login_text 0x7f01000e
int attr logout_text 0x7f01000f
int attr multi_select 0x7f010007
int attr preset_size 0x7f010010
int attr radius_in_meters 0x7f010008
int attr results_limit 0x7f010009
int attr search_text 0x7f01000a
int attr show_pictures 0x7f010000
int attr show_search_box 0x7f01000b
int attr show_title_bar 0x7f010002
int attr title_bar_background 0x7f010005
int attr title_text 0x7f010003
int color activated_bg 0x7f080007
int color com_facebook_blue 0x7f080002
int color com_facebook_loginview_text_color 0x7f080006
int color com_facebook_picker_search_bar_background 0x7f080000
int color com_facebook_picker_search_bar_text 0x7f080001
int color com_facebook_usersettingsfragment_connected_shadow_color 0x7f080004
int color com_facebook_usersettingsfragment_connected_text_color 0x7f080003
int color com_facebook_usersettingsfragment_not_connected_text_color 0x7f080005
int color key_preview_bg 0x7f08000b
int color key_preview_bg2 0x7f08000c
int color key_preview_border 0x7f08000d
int color keyman_blue 0x7f080011
int color keyman_orange 0x7f08000f
int color keyman_red 0x7f080010
int color popup_bg 0x7f080008
int color popup_bg2 0x7f080009
int color popup_border 0x7f08000a
int color yellow_background 0x7f08000e
int dimen activity_horizontal_margin 0x7f07001a
int dimen activity_vertical_margin 0x7f07001b
int dimen com_facebook_loginview_compound_drawable_padding 0x7f070008
int dimen com_facebook_loginview_padding_bottom 0x7f070007
int dimen com_facebook_loginview_padding_left 0x7f070004
int dimen com_facebook_loginview_padding_right 0x7f070005
int dimen com_facebook_loginview_padding_top 0x7f070006
int dimen com_facebook_loginview_text_size 0x7f070009
int dimen com_facebook_picker_divider_width 0x7f070001
int dimen com_facebook_picker_place_image_size 0x7f070000
int dimen com_facebook_profilepictureview_preset_size_large 0x7f07000c
int dimen com_facebook_profilepictureview_preset_size_normal 0x7f07000b
int dimen com_facebook_profilepictureview_preset_size_small 0x7f07000a
int dimen com_facebook_tooltip_horizontal_padding 0x7f07000d
int dimen com_facebook_usersettingsfragment_profile_picture_height 0x7f070003
int dimen com_facebook_usersettingsfragment_profile_picture_width 0x7f070002
int dimen help_bubble_height 0x7f070017
int dimen help_bubble_offset_x 0x7f070018
int dimen help_bubble_offset_y 0x7f070019
int dimen help_bubble_width 0x7f070016
int dimen key_height 0x7f070010
int dimen key_width 0x7f07000f
int dimen keyboard_height 0x7f07000e
int dimen popup_arrow_height 0x7f070012
int dimen popup_arrow_width 0x7f070011
int dimen popup_margin 0x7f070013
int dimen popup_offset_y 0x7f070015
int dimen popup_padding 0x7f070014
int drawable com_facebook_button_blue 0x7f020000
int drawable com_facebook_button_blue_focused 0x7f020001
int drawable com_facebook_button_blue_normal 0x7f020002
int drawable com_facebook_button_blue_pressed 0x7f020003
int drawable com_facebook_button_check 0x7f020004
int drawable com_facebook_button_check_off 0x7f020005
int drawable com_facebook_button_check_on 0x7f020006
int drawable com_facebook_button_grey_focused 0x7f020007
int drawable com_facebook_button_grey_normal 0x7f020008
int drawable com_facebook_button_grey_pressed 0x7f020009
int drawable com_facebook_close 0x7f02000a
int drawable com_facebook_inverse_icon 0x7f02000b
int drawable com_facebook_list_divider 0x7f02000c
int drawable com_facebook_list_section_header_background 0x7f02000d
int drawable com_facebook_loginbutton_silver 0x7f02000e
int drawable com_facebook_logo 0x7f02000f
int drawable com_facebook_picker_default_separator_color 0x7f02003e
int drawable com_facebook_picker_item_background 0x7f020010
int drawable com_facebook_picker_list_focused 0x7f020011
int drawable com_facebook_picker_list_longpressed 0x7f020012
int drawable com_facebook_picker_list_pressed 0x7f020013
int drawable com_facebook_picker_list_selector 0x7f020014
int drawable com_facebook_picker_list_selector_background_transition 0x7f020015
int drawable com_facebook_picker_list_selector_disabled 0x7f020016
int drawable com_facebook_picker_magnifier 0x7f020017
int drawable com_facebook_picker_top_button 0x7f020018
int drawable com_facebook_place_default_icon 0x7f020019
int drawable com_facebook_profile_default_icon 0x7f02001a
int drawable com_facebook_profile_picture_blank_portrait 0x7f02001b
int drawable com_facebook_profile_picture_blank_square 0x7f02001c
int drawable com_facebook_tooltip_black_background 0x7f02001d
int drawable com_facebook_tooltip_black_bottomnub 0x7f02001e
int drawable com_facebook_tooltip_black_topnub 0x7f02001f
int drawable com_facebook_tooltip_black_xout 0x7f020020
int drawable com_facebook_tooltip_blue_background 0x7f020021
int drawable com_facebook_tooltip_blue_bottomnub 0x7f020022
int drawable com_facebook_tooltip_blue_topnub 0x7f020023
int drawable com_facebook_tooltip_blue_xout 0x7f020024
int drawable com_facebook_top_background 0x7f020025
int drawable com_facebook_top_button 0x7f020026
int drawable com_facebook_usersettingsfragment_background_gradient 0x7f020027
int drawable ic_action_accept 0x7f020028
int drawable ic_action_back 0x7f020029
int drawable ic_action_get_started 0x7f02002a
int drawable ic_action_next 0x7f02002b
int drawable ic_action_no1 0x7f02002c
int drawable ic_action_no2 0x7f02002d
int drawable ic_facebook_logo 0x7f02002e
int drawable ic_launcher 0x7f02002f
int drawable ic_light_action_info 0x7f020030
int drawable ic_light_action_overflow 0x7f020031
int drawable ic_light_action_share 0x7f020032
int drawable ic_light_action_textsize 0x7f020033
int drawable ic_light_action_trash 0x7f020034
int drawable ic_light_dialog_textsize_down 0x7f020035
int drawable ic_light_dialog_textsize_up 0x7f020036
int drawable keyman_logo 0x7f020037
int drawable list_header 0x7f020038
int drawable list_item 0x7f020039
int drawable oval_button 0x7f02003a
int drawable subkey_phone 0x7f02003b
int drawable subkey_tablet 0x7f02003c
int drawable textview_bg 0x7f02003d
int id action_clear_text 0x7f06003c
int id action_get_started 0x7f06003e
int id action_info 0x7f06003d
int id action_overflow 0x7f06003b
int id action_share 0x7f060039
int id action_text_size 0x7f06003a
int id bar_title 0x7f060031
int id button1 0x7f060033
int id checkBox1 0x7f060023
int id close_button 0x7f060027
int id com_facebook_body_frame 0x7f06001a
int id com_facebook_button_xout 0x7f06001c
int id com_facebook_login_activity_progress_bar 0x7f06000a
int id com_facebook_picker_activity_circle 0x7f060009
int id com_facebook_picker_checkbox 0x7f06000c
int id com_facebook_picker_checkbox_stub 0x7f060010
int id com_facebook_picker_divider 0x7f060014
int id com_facebook_picker_done_button 0x7f060013
int id com_facebook_picker_image 0x7f06000d
int id com_facebook_picker_list_section_header 0x7f060011
int id com_facebook_picker_list_view 0x7f060008
int id com_facebook_picker_profile_pic_stub 0x7f06000e
int id com_facebook_picker_row_activity_circle 0x7f06000b
int id com_facebook_picker_search_text 0x7f060019
int id com_facebook_picker_title 0x7f06000f
int id com_facebook_picker_title_bar 0x7f060016
int id com_facebook_picker_title_bar_stub 0x7f060015
int id com_facebook_picker_top_bar 0x7f060012
int id com_facebook_search_bar_view 0x7f060018
int id com_facebook_tooltip_bubble_view_bottom_pointer 0x7f06001e
int id com_facebook_tooltip_bubble_view_text_body 0x7f06001d
int id com_facebook_tooltip_bubble_view_top_pointer 0x7f06001b
int id com_facebook_usersettingsfragment_login_button 0x7f060021
int id com_facebook_usersettingsfragment_logo_image 0x7f06001f
int id com_facebook_usersettingsfragment_profile_name 0x7f060020
int id grid 0x7f060035
int id image1 0x7f06002c
int id imageButton1 0x7f06002f
int id kmKeyPreviewView 0x7f06002a
int id kmPopoverView 0x7f060028
int id kmTextView1 0x7f060007
int id large 0x7f060002
int id left_button 0x7f060030
int id left_icon 0x7f060024
int id linearLayout1 0x7f06002e
int id listView 0x7f060022
int id loginButton 0x7f060004
int id menu_title 0x7f060026
int id normal 0x7f060001
int id picker_subtitle 0x7f060017
int id popup_delete 0x7f06003f
int id right_button 0x7f060032
int id seekBar 0x7f060037
int id shareButton 0x7f060005
int id small 0x7f060000
int id subkey_button 0x7f060034
int id text 0x7f060025
int id text1 0x7f06002b
int id text2 0x7f06002d
int id textSizeDownButton 0x7f060036
int id textSizeUpButton 0x7f060038
int id textView 0x7f060003
int id textView1 0x7f060029
int id webView1 0x7f060006
int layout activity_fbshare 0x7f030000
int layout activity_info 0x7f030001
int layout activity_main 0x7f030002
int layout com_facebook_friendpickerfragment 0x7f030003
int layout com_facebook_login_activity_layout 0x7f030004
int layout com_facebook_picker_activity_circle_row 0x7f030005
int layout com_facebook_picker_checkbox 0x7f030006
int layout com_facebook_picker_image 0x7f030007
int layout com_facebook_picker_list_row 0x7f030008
int layout com_facebook_picker_list_section_header 0x7f030009
int layout com_facebook_picker_search_box 0x7f03000a
int layout com_facebook_picker_title_bar 0x7f03000b
int layout com_facebook_picker_title_bar_stub 0x7f03000c
int layout com_facebook_placepickerfragment 0x7f03000d
int layout com_facebook_placepickerfragment_list_row 0x7f03000e
int layout com_facebook_search_bar_layout 0x7f03000f
int layout com_facebook_tooltip_bubble 0x7f030010
int layout com_facebook_usersettingsfragment 0x7f030011
int layout get_started_list_layout 0x7f030012
int layout get_started_row_layout 0x7f030013
int layout get_started_title_layout 0x7f030014
int layout help_bubble_layout 0x7f030015
int layout key_preview_layout 0x7f030016
int layout list_layout 0x7f030017
int layout list_row_layout1 0x7f030018
int layout list_row_layout2 0x7f030019
int layout list_row_layout3 0x7f03001a
int layout list_title_layout1 0x7f03001b
int layout list_title_layout2 0x7f03001c
int layout overlay_layout 0x7f03001d
int layout subkey_layout 0x7f03001e
int layout subkeys_popup_layout 0x7f03001f
int layout text_size_controller 0x7f030020
int menu main 0x7f0b0000
int menu popup 0x7f0b0001
int string action_clear_text 0x7f09002e
int string action_info 0x7f09002f
int string action_overflow 0x7f09002d
int string action_settings 0x7f09001c
int string action_share 0x7f09002b
int string action_text_size 0x7f09002c
int string allow 0x7f09003a
int string app_id 0x7f09002a
int string app_name 0x7f09001b
int string application_error 0x7f09003b
int string buy_button 0x7f09003f
int string check_license 0x7f090037
int string checking_license 0x7f090038
int string com_facebook_choose_friends 0x7f09000f
int string com_facebook_dialogloginactivity_ok_button 0x7f090000
int string com_facebook_internet_permission_error_message 0x7f090013
int string com_facebook_internet_permission_error_title 0x7f090012
int string com_facebook_loading 0x7f090011
int string com_facebook_loginview_cancel_action 0x7f090006
int string com_facebook_loginview_log_in_button 0x7f090002
int string com_facebook_loginview_log_out_action 0x7f090005
int string com_facebook_loginview_log_out_button 0x7f090001
int string com_facebook_loginview_logged_in_as 0x7f090003
int string com_facebook_loginview_logged_in_using_facebook 0x7f090004
int string com_facebook_logo_content_description 0x7f090007
int string com_facebook_nearby 0x7f090010
int string com_facebook_picker_done_button_text 0x7f09000e
int string com_facebook_placepicker_subtitle_catetory_only_format 0x7f09000c
int string com_facebook_placepicker_subtitle_format 0x7f09000b
int string com_facebook_placepicker_subtitle_were_here_only_format 0x7f09000d
int string com_facebook_requesterror_password_changed 0x7f090016
int string com_facebook_requesterror_permissions 0x7f090018
int string com_facebook_requesterror_reconnect 0x7f090017
int string com_facebook_requesterror_relogin 0x7f090015
int string com_facebook_requesterror_web_login 0x7f090014
int string com_facebook_tooltip_default 0x7f090019
int string com_facebook_usersettingsfragment_log_in_button 0x7f090008
int string com_facebook_usersettingsfragment_logged_in 0x7f090009
int string com_facebook_usersettingsfragment_not_logged_in 0x7f09000a
int string device_type 0x7f09001a
int string dont_allow 0x7f090039
int string dont_show_again 0x7f090036
int string get_started 0x7f090035
int string help_bubble_text 0x7f090027
int string ic_text_size_down 0x7f090031
int string ic_text_size_up 0x7f090030
int string image_button 0x7f090023
int string image_view 0x7f090024
int string kma_prefs_name 0x7f090026
int string label_action_button 0x7f09001f
int string label_add 0x7f090021
int string label_back 0x7f090022
int string label_done 0x7f090020
int string popup_menu_delete 0x7f090025
int string quit_button 0x7f090041
int string reactivate 0x7f090029
int string retry_button 0x7f090040
int string share 0x7f090034
int string textview_hint 0x7f090033
int string title_add_keyboard 0x7f09001e
int string title_keyboards 0x7f09001d
int string top_bar_line 0x7f090032
int string trial_expired 0x7f090028
int string unlicensed_dialog_body 0x7f09003d
int string unlicensed_dialog_retry_body 0x7f09003e
int string unlicensed_dialog_title 0x7f09003c
int style AppBaseTheme 0x7f0a0003
int style AppTheme 0x7f0a0004
int style KeyPreviewAnim 0x7f0a0006
int style KeymanActionBar 0x7f0a0008
int style PopupAnim 0x7f0a0005
int style com_facebook_loginview_default_style 0x7f0a0000
int style com_facebook_loginview_silver_style 0x7f0a0001
int style subkey_button 0x7f0a0007
int style tooltip_bubble_text 0x7f0a0002
int[] styleable com_facebook_friend_picker_fragment { 0x7f010007 }
int styleable com_facebook_friend_picker_fragment_multi_select 0
int[] styleable com_facebook_login_view { 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f }
int styleable com_facebook_login_view_confirm_logout 0
int styleable com_facebook_login_view_fetch_user_info 1
int styleable com_facebook_login_view_login_text 2
int styleable com_facebook_login_view_logout_text 3
int[] styleable com_facebook_picker_fragment { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }
int styleable com_facebook_picker_fragment_done_button_background 6
int styleable com_facebook_picker_fragment_done_button_text 4
int styleable com_facebook_picker_fragment_extra_fields 1
int styleable com_facebook_picker_fragment_show_pictures 0
int styleable com_facebook_picker_fragment_show_title_bar 2
int styleable com_facebook_picker_fragment_title_bar_background 5
int styleable com_facebook_picker_fragment_title_text 3
int[] styleable com_facebook_place_picker_fragment { 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b }
int styleable com_facebook_place_picker_fragment_radius_in_meters 0
int styleable com_facebook_place_picker_fragment_results_limit 1
int styleable com_facebook_place_picker_fragment_search_text 2
int styleable com_facebook_place_picker_fragment_show_search_box 3
int[] styleable com_facebook_profile_picture_view { 0x7f010010, 0x7f010011 }
int styleable com_facebook_profile_picture_view_is_cropped 1
int styleable com_facebook_profile_picture_view_preset_size 0
int xml method 0x7f050000

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more