removed ABS depdency in favor of AppCompat
|
@ -14,7 +14,7 @@
|
||||||
<application android:name=".OrbotApp" android:icon="@drawable/ic_launcher"
|
<application android:name=".OrbotApp" android:icon="@drawable/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:configChanges="locale|orientation|screenSize"
|
android:configChanges="locale|orientation|screenSize"
|
||||||
android:theme="@style/Theme.Sherlock"
|
android:theme="@style/Theme.AppCompat"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
android:allowClearUserData="true"
|
android:allowClearUserData="true"
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||||
|
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="src" path="gen"/>
|
||||||
|
<classpathentry kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||||
|
<classpathentry exported="true" kind="lib" path="libs/android-support-v4.jar"/>
|
||||||
|
<classpathentry exported="true" kind="lib" path="libs/android-support-v7-appcompat.jar"/>
|
||||||
|
<classpathentry kind="output" path="bin/classes"/>
|
||||||
|
</classpath>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>android-support-v7-appcompat</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
|
@ -0,0 +1,4 @@
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||||
|
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||||
|
org.eclipse.jdt.core.compiler.source=1.6
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?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.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="android.support.v7.appcompat">
|
||||||
|
<uses-sdk android:minSdkVersion="7"/>
|
||||||
|
<application />
|
||||||
|
</manifest>
|
|
@ -0,0 +1,10 @@
|
||||||
|
Library Project including compatibility ActionBar.
|
||||||
|
|
||||||
|
This can be used by an Android project to provide
|
||||||
|
access to ActionBar on applications running on API 7+.
|
||||||
|
|
||||||
|
There is technically no source, but the src folder is necessary
|
||||||
|
to ensure that the build system works. The content is actually
|
||||||
|
located in libs/android-support-v7-appcompat.jar.
|
||||||
|
The accompanying resources must also be included in the application.
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
# This file is automatically generated by Android Tools.
|
||||||
|
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||||
|
#
|
||||||
|
# This file must be checked in Version Control Systems.
|
||||||
|
#
|
||||||
|
# To customize properties used by the Ant build system edit
|
||||||
|
# "ant.properties", and override values to adapt the script to your
|
||||||
|
# project structure.
|
||||||
|
#
|
||||||
|
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||||
|
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||||
|
|
||||||
|
# Project target.
|
||||||
|
target=android-19
|
||||||
|
android.library=true
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/decelerate_interpolator"
|
||||||
|
android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime" />
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/decelerate_interpolator"
|
||||||
|
android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime" />
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/decelerate_interpolator"
|
||||||
|
android:fromYDelta="50%p" android:toYDelta="0"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime"/>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/decelerate_interpolator"
|
||||||
|
android:fromYDelta="-50%p" android:toYDelta="0"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime"/>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/accelerate_interpolator"
|
||||||
|
android:fromYDelta="0" android:toYDelta="50%p"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime"/>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:interpolator="@android:anim/accelerate_interpolator"
|
||||||
|
android:fromYDelta="0" android:toYDelta="-50%p"
|
||||||
|
android:duration="@android:integer/config_mediumAnimTime"/>
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2013 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.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
|
||||||
|
<item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
|
||||||
|
<item android:color="@color/abc_search_url_text_normal"/> <!-- not selected -->
|
||||||
|
</selector>
|
After Width: | Height: | Size: 144 B |
After Width: | Height: | Size: 144 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 135 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 134 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 146 B |
After Width: | Height: | Size: 145 B |
After Width: | Height: | Size: 146 B |
After Width: | Height: | Size: 146 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 139 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 133 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 145 B |
BIN
external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 149 B |
BIN
external/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 145 B |
BIN
external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 147 B |
BIN
external/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 147 B |
After Width: | Height: | Size: 602 B |
After Width: | Height: | Size: 546 B |
After Width: | Height: | Size: 713 B |
After Width: | Height: | Size: 737 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.9 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png
vendored
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png
vendored
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png
vendored
Normal file
After Width: | Height: | Size: 597 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png
vendored
Normal file
After Width: | Height: | Size: 616 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.2 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
vendored
Normal file
After Width: | Height: | Size: 144 B |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
vendored
Normal file
After Width: | Height: | Size: 148 B |
After Width: | Height: | Size: 467 B |
After Width: | Height: | Size: 505 B |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.0 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png
vendored
Normal file
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 78 B |
After Width: | Height: | Size: 76 B |
After Width: | Height: | Size: 191 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 159 B |
BIN
external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 189 B |
BIN
external/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 189 B |
BIN
external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 875 B |
BIN
external/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 850 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 316 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 318 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 316 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 316 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 507 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 510 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 450 B |
BIN
external/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 450 B |
After Width: | Height: | Size: 147 B |
After Width: | Height: | Size: 148 B |
After Width: | Height: | Size: 147 B |
After Width: | Height: | Size: 145 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 110 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 105 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 108 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 103 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 114 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 111 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png
vendored
Normal file
After Width: | Height: | Size: 114 B |
BIN
external/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png
vendored
Normal file
After Width: | Height: | Size: 112 B |
After Width: | Height: | Size: 134 B |
After Width: | Height: | Size: 134 B |
BIN
external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 123 B |
BIN
external/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 123 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 122 B |
After Width: | Height: | Size: 133 B |
After Width: | Height: | Size: 133 B |
After Width: | Height: | Size: 134 B |
After Width: | Height: | Size: 133 B |
BIN
external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 127 B |
BIN
external/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png
vendored
Normal file
After Width: | Height: | Size: 123 B |
After Width: | Height: | Size: 139 B |
After Width: | Height: | Size: 133 B |