Skip to content

Commit

Permalink
Fixed project properties. Again.
Browse files Browse the repository at this point in the history
  • Loading branch information
alt236 committed Jan 7, 2013
1 parent 64bb763 commit 7b22526
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="lib" path="libs/gson-1.6.jar"/>
<classpathentry kind="lib" path="libs/jackson-core-asl-1.7.1.jar"/>
<classpathentry kind="lib" path="libs/json_simple-1.1.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
24 changes: 17 additions & 7 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.martinadamek.jsonandroid"
android:versionCode="1"
android:versionName="1.0">
<application android:label="JSON Android Compare" android:icon="@drawable/icon">
<activity android:name="MainActivity"
android:label="@string/app_name">
package="com.martinadamek.jsonandroid"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="JSON Android Compare" >
<activity
android:name="com.martinadamek.jsonandroid.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

</manifest>

0 comments on commit 7b22526

Please sign in to comment.