added android-filechooser library
18
third-party/android-filechooser/code/AndroidManifest.xml
vendored
Executable file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2012 Hai Bison
|
||||
|
||||
See the file LICENSE at the root directory of this project for copying
|
||||
permission.
|
||||
-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="group.pals.android.lib.ui.filechooser"
|
||||
android:versionCode="44"
|
||||
android:versionName="5.0" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="16" />
|
||||
|
||||
</manifest>
|
85
third-party/android-filechooser/code/build.xml
vendored
Executable file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="android-filechooser" default="help">
|
||||
|
||||
<!-- The local.properties file is created and updated by the 'android' tool.
|
||||
It contains the path to the SDK. It should *NOT* be checked into
|
||||
Version Control Systems. -->
|
||||
<property file="local.properties" />
|
||||
|
||||
<!-- The ant.properties file can be created by you. It is only edited by the
|
||||
'android' tool to add properties to it.
|
||||
This is the place to change some Ant specific build properties.
|
||||
Here are some properties you may want to change/update:
|
||||
|
||||
source.dir
|
||||
The name of the source directory. Default is 'src'.
|
||||
out.dir
|
||||
The name of the output directory. Default is 'bin'.
|
||||
|
||||
For other overridable properties, look at the beginning of the rules
|
||||
files in the SDK, at tools/ant/build.xml
|
||||
|
||||
Properties related to the SDK location or the project target should
|
||||
be updated using the 'android' tool with the 'update' action.
|
||||
|
||||
This file is an integral part of the build system for your
|
||||
application and should be checked into Version Control Systems.
|
||||
|
||||
-->
|
||||
<property file="ant.properties" />
|
||||
|
||||
<!-- The project.properties file is created and updated by the 'android'
|
||||
tool, as well as ADT.
|
||||
|
||||
This contains project specific properties such as project target, and library
|
||||
dependencies. Lower level build properties are stored in ant.properties
|
||||
(or in .classpath for Eclipse projects).
|
||||
|
||||
This file is an integral part of the build system for your
|
||||
application and should be checked into Version Control Systems. -->
|
||||
<loadproperties srcFile="project.properties" />
|
||||
|
||||
<!-- quick check on sdk.dir -->
|
||||
<fail
|
||||
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
|
||||
unless="sdk.dir"
|
||||
/>
|
||||
|
||||
|
||||
<!-- extension targets. Uncomment the ones where you want to do custom work
|
||||
in between standard targets -->
|
||||
<!--
|
||||
<target name="-pre-build">
|
||||
</target>
|
||||
<target name="-pre-compile">
|
||||
</target>
|
||||
|
||||
/* This is typically used for code obfuscation.
|
||||
Compiled code location: ${out.classes.absolute.dir}
|
||||
If this is not done in place, override ${out.dex.input.absolute.dir} */
|
||||
<target name="-post-compile">
|
||||
</target>
|
||||
-->
|
||||
|
||||
<!-- Import the actual build file.
|
||||
|
||||
To customize existing targets, there are two options:
|
||||
- Customize only one target:
|
||||
- copy/paste the target into this file, *before* the
|
||||
<import> task.
|
||||
- customize it to your needs.
|
||||
- Customize the whole content of build.xml
|
||||
- copy/paste the content of the rules files (minus the top node)
|
||||
into this file, replacing the <import> task.
|
||||
- customize to your needs.
|
||||
|
||||
***********************
|
||||
****** IMPORTANT ******
|
||||
***********************
|
||||
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
|
||||
in order to avoid having your file be overridden by tools such as "android update project"
|
||||
-->
|
||||
<!-- version-tag: 1 -->
|
||||
<import file="${sdk.dir}/tools/ant/build.xml" />
|
||||
|
||||
</project>
|
20
third-party/android-filechooser/code/proguard-project.txt
vendored
Executable file
|
@ -0,0 +1,20 @@
|
|||
# To enable ProGuard in your project, edit project.properties
|
||||
# to define the proguard.config property as described in that file.
|
||||
#
|
||||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in ${sdk.dir}/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the ProGuard
|
||||
# include property in project.properties.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# Add any project specific keep options here:
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
40
third-party/android-filechooser/code/proguard.cfg
vendored
Executable file
|
@ -0,0 +1,40 @@
|
|||
-optimizationpasses 5
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-dontpreverify
|
||||
-verbose
|
||||
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
|
||||
|
||||
-keep public class * extends android.app.Activity
|
||||
-keep public class * extends android.app.Application
|
||||
-keep public class * extends android.app.Service
|
||||
-keep public class * extends android.content.BroadcastReceiver
|
||||
-keep public class * extends android.content.ContentProvider
|
||||
-keep public class * extends android.app.backup.BackupAgentHelper
|
||||
-keep public class * extends android.preference.Preference
|
||||
-keep public class com.android.vending.licensing.ILicensingService
|
||||
|
||||
-keepclasseswithmembernames class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
public <init>(android.content.Context, android.util.AttributeSet);
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
||||
}
|
||||
|
||||
-keepclassmembers class * extends android.app.Activity {
|
||||
public void *(android.view.View);
|
||||
}
|
||||
|
||||
-keepclassmembers enum * {
|
||||
public static **[] values();
|
||||
public static ** valueOf(java.lang.String);
|
||||
}
|
||||
|
||||
-keep class * implements android.os.Parcelable {
|
||||
public static final android.os.Parcelable$Creator *;
|
||||
}
|
12
third-party/android-filechooser/code/project.properties
vendored
Executable file
|
@ -0,0 +1,12 @@
|
|||
# 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 use,
|
||||
# "ant.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-14
|
||||
android.library=true
|
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_gridview.png
vendored
Executable file
After Width: | Height: | Size: 407 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_home.png
vendored
Executable file
After Width: | Height: | Size: 487 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_listview.png
vendored
Executable file
After Width: | Height: | Size: 276 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_reload.png
vendored
Executable file
After Width: | Height: | Size: 722 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_asc.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_desc.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_asc.png
vendored
Executable file
After Width: | Height: | Size: 999 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_desc.png
vendored
Executable file
After Width: | Height: | Size: 1,001 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_asc.png
vendored
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_desc.png
vendored
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_create_folder.png
vendored
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_create_folder_disabled.png
vendored
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_create_folder_pressed.png
vendored
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_grid.png
vendored
Normal file
After Width: | Height: | Size: 744 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_grid_disabled.png
vendored
Normal file
After Width: | Height: | Size: 599 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_grid_pressed.png
vendored
Normal file
After Width: | Height: | Size: 596 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_list.png
vendored
Normal file
After Width: | Height: | Size: 765 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_list_disabled.png
vendored
Normal file
After Width: | Height: | Size: 638 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_folders_view_list_pressed.png
vendored
Normal file
After Width: | Height: | Size: 553 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_left.png
vendored
Normal file
After Width: | Height: | Size: 761 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_left_disabled.png
vendored
Executable file
After Width: | Height: | Size: 718 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_left_pressed.png
vendored
Executable file
After Width: | Height: | Size: 766 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_right.png
vendored
Executable file
After Width: | Height: | Size: 655 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_right_disabled.png
vendored
Executable file
After Width: | Height: | Size: 612 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_navi_right_pressed.png
vendored
Executable file
After Width: | Height: | Size: 660 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_ok_saveas.png
vendored
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_ok_saveas_pressed.png
vendored
Executable file
After Width: | Height: | Size: 5.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_as.png
vendored
Normal file
After Width: | Height: | Size: 600 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_as_disabled.png
vendored
Normal file
After Width: | Height: | Size: 593 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_as_pressed.png
vendored
Normal file
After Width: | Height: | Size: 501 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_de.png
vendored
Normal file
After Width: | Height: | Size: 616 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_de_disabled.png
vendored
Normal file
After Width: | Height: | Size: 590 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_button_sort_de_pressed.png
vendored
Normal file
After Width: | Height: | Size: 514 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_context_menu_item_divider.png
vendored
Executable file
After Width: | Height: | Size: 196 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file.png
vendored
Executable file
After Width: | Height: | Size: 1.8 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file_audio.png
vendored
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file_compressed.png
vendored
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file_image.png
vendored
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file_plain_text.png
vendored
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_file_video.png
vendored
Executable file
After Width: | Height: | Size: 2.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_folder.png
vendored
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_folder_locked.png
vendored
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_gridview.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_home.png
vendored
Executable file
After Width: | Height: | Size: 1.9 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_listview.png
vendored
Executable file
After Width: | Height: | Size: 825 B |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_reload.png
vendored
Executable file
After Width: | Height: | Size: 3 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_date_asc.png
vendored
Executable file
After Width: | Height: | Size: 2.3 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_date_desc.png
vendored
Executable file
After Width: | Height: | Size: 2.4 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_name_asc.png
vendored
Executable file
After Width: | Height: | Size: 1.9 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_name_desc.png
vendored
Executable file
After Width: | Height: | Size: 2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_size_asc.png
vendored
Executable file
After Width: | Height: | Size: 2.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-hdpi/afc_ic_menu_sort_by_size_desc.png
vendored
Executable file
After Width: | Height: | Size: 2.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_gridview.png
vendored
Executable file
After Width: | Height: | Size: 345 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_home.png
vendored
Executable file
After Width: | Height: | Size: 302 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_listview.png
vendored
Executable file
After Width: | Height: | Size: 227 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_reload.png
vendored
Executable file
After Width: | Height: | Size: 415 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_asc.png
vendored
Executable file
After Width: | Height: | Size: 553 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_desc.png
vendored
Executable file
After Width: | Height: | Size: 518 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_asc.png
vendored
Executable file
After Width: | Height: | Size: 525 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_desc.png
vendored
Executable file
After Width: | Height: | Size: 516 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_asc.png
vendored
Executable file
After Width: | Height: | Size: 569 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_desc.png
vendored
Executable file
After Width: | Height: | Size: 590 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_left.png
vendored
Executable file
After Width: | Height: | Size: 1,019 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_left_disabled.png
vendored
Executable file
After Width: | Height: | Size: 1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_left_pressed.png
vendored
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_right.png
vendored
Executable file
After Width: | Height: | Size: 1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_right_disabled.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_navi_right_pressed.png
vendored
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_ok_saveas.png
vendored
Executable file
After Width: | Height: | Size: 752 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_button_ok_saveas_pressed.png
vendored
Executable file
After Width: | Height: | Size: 1.8 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_context_menu_item_divider.png
vendored
Executable file
After Width: | Height: | Size: 162 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file.png
vendored
Executable file
After Width: | Height: | Size: 831 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file_audio.png
vendored
Executable file
After Width: | Height: | Size: 1,009 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file_compressed.png
vendored
Executable file
After Width: | Height: | Size: 1,000 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file_image.png
vendored
Executable file
After Width: | Height: | Size: 1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file_plain_text.png
vendored
Executable file
After Width: | Height: | Size: 999 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_file_video.png
vendored
Executable file
After Width: | Height: | Size: 1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_folder.png
vendored
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_folder_locked.png
vendored
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_gridview.png
vendored
Executable file
After Width: | Height: | Size: 792 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_home.png
vendored
Executable file
After Width: | Height: | Size: 874 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_listview.png
vendored
Executable file
After Width: | Height: | Size: 519 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_reload.png
vendored
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_date_asc.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_date_desc.png
vendored
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_name_asc.png
vendored
Executable file
After Width: | Height: | Size: 997 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_name_desc.png
vendored
Executable file
After Width: | Height: | Size: 1,009 B |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_size_asc.png
vendored
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-ldpi/afc_ic_menu_sort_by_size_desc.png
vendored
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_gridview.png
vendored
Executable file
After Width: | Height: | Size: 443 B |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_home.png
vendored
Executable file
After Width: | Height: | Size: 378 B |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_listview.png
vendored
Executable file
After Width: | Height: | Size: 225 B |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_reload.png
vendored
Executable file
After Width: | Height: | Size: 516 B |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_asc.png
vendored
Executable file
After Width: | Height: | Size: 704 B |
BIN
third-party/android-filechooser/code/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_desc.png
vendored
Executable file
After Width: | Height: | Size: 711 B |