Skip to content

Commit 6ae5282

Browse files
committed
Initial commit
0 parents  commit 6ae5282

32 files changed

+516
-0
lines changed

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Local configuration file (sdk path, etc)
16+
local.properties

.project

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>commons</name>
4+
<comment></comment>
5+
<projects>
6+
<project>ActionBarSherlock</project>
7+
<project>java-mwapi</project>
8+
</projects>
9+
<buildSpec>
10+
<buildCommand>
11+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
12+
<arguments>
13+
</arguments>
14+
</buildCommand>
15+
<buildCommand>
16+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
17+
<arguments>
18+
</arguments>
19+
</buildCommand>
20+
<buildCommand>
21+
<name>org.eclipse.jdt.core.javabuilder</name>
22+
<arguments>
23+
</arguments>
24+
</buildCommand>
25+
<buildCommand>
26+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
27+
<arguments>
28+
</arguments>
29+
</buildCommand>
30+
</buildSpec>
31+
<natures>
32+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
33+
<nature>org.eclipse.jdt.core.javanature</nature>
34+
</natures>
35+
</projectDescription>

AndroidManifest.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="org.wikimedia.commons"
3+
android:versionCode="1"
4+
android:versionName="1.0" >
5+
6+
<uses-sdk
7+
android:minSdkVersion="8"
8+
android:targetSdkVersion="15" />
9+
10+
<uses-permission android:name="android.permission.INTERNET" />
11+
12+
<application
13+
android:name=".CommonsApplication"
14+
android:icon="@drawable/ic_launcher"
15+
android:label="@string/app_name"
16+
android:theme="@style/AppTheme" >
17+
<activity
18+
android:name=".LoginActivity"
19+
android:label="@string/title_activity_login"
20+
android:theme="@style/NoTitle" >
21+
<intent-filter>
22+
<action android:name="android.intent.action.MAIN" />
23+
24+
<category android:name="android.intent.category.LAUNCHER" />
25+
</intent-filter>
26+
</activity>
27+
<activity
28+
android:name=".ShareActivity"
29+
android:label="@string/title_activity_share" >
30+
<intent-filter>
31+
<action android:name="android.intent.action.SEND" />
32+
<category android:name="android.intent.category.DEFAULT" />
33+
<data android:mimeType="image/*" />
34+
</intent-filter>
35+
</activity>
36+
</application>
37+
38+
</manifest>

ic_launcher-web.png

36.2 KB
Loading

libs/android-support-v4.jar

330 KB
Binary file not shown.

libs/commons-logging-1.1.1.jar

59.3 KB
Binary file not shown.

libs/httpclient-4.2.1.jar

417 KB
Binary file not shown.

libs/httpcore-4.2.1.jar

218 KB
Binary file not shown.

libs/httpmime-4.2.1.jar

26 KB
Binary file not shown.

libs/java-mwapi.jar

725 KB
Binary file not shown.

0 commit comments

Comments
 (0)