<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="output" path="bin/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>MainActivity</name>
+ <name>ownCloud Sample Client</name>
<comment></comment>
<projects>
</projects>
package="com.owncloud.android.oc_framework.sampleclient"
android:versionCode="1"
android:versionName="1.0">
+ <uses-sdk
+ android:minSdkVersion="8"
+ android:targetSdkVersion="19" />
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name="MainActivity"
android:label="@string/app_name">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:text="Hello World, MainActivity"
+ android:text="@string/hello_word"
/>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <string name="app_name">MainActivity</string>
+ <string name="app_name">ownCloud Sample Client</string>
+ <string name="hello_word">Hello World. This is the ownCloud sample client app before doing nothing ownCloud-related.</string>
</resources>