Skip to content

Commit fd6d5ea

Browse files
author
zhenya
committed
Initial commit
0 parents  commit fd6d5ea

20 files changed

Lines changed: 346 additions & 0 deletions

AndroidManifest.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.iusenko.filechooser"
3+
android:versionCode="1"
4+
android:versionName="1.0" >
5+
6+
<uses-sdk
7+
android:minSdkVersion="8"
8+
android:targetSdkVersion="15" />
9+
10+
<application
11+
android:icon="@drawable/ic_launcher"
12+
android:label="@string/app_name"
13+
android:theme="@style/AppTheme" >
14+
<activity android:name="FileChooserActivity"></activity>
15+
</application>
16+
17+
</manifest>

libs/android-support-v4.jar

330 KB
Binary file not shown.

project.properties

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-16
15+
android.library=true
3.05 KB
Loading

res/drawable-hdpi/ic_launcher.png

4.88 KB
Loading
2.96 KB
Loading

res/drawable-mdpi/ic_launcher.png

2.99 KB
Loading
3.12 KB
Loading

res/drawable-xhdpi/ic_launcher.png

6.52 KB
Loading

res/drawable/ic_file.png

5.29 KB
Loading

0 commit comments

Comments
 (0)