Basic update of resources in ownCloud sample client for oc_framework
authorDavid A. Velasco <dvelasco@solidgear.es>
Thu, 9 Jan 2014 16:12:25 +0000 (17:12 +0100)
committerDavid A. Velasco <dvelasco@solidgear.es>
Thu, 9 Jan 2014 16:12:25 +0000 (17:12 +0100)
oc_framework/sample_client/.classpath
oc_framework/sample_client/.project
oc_framework/sample_client/AndroidManifest.xml
oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png
oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png
oc_framework/sample_client/res/drawable-mdpi/ic_launcher.png
oc_framework/sample_client/res/drawable-xhdpi/ic_launcher.png [deleted file]
oc_framework/sample_client/res/layout/main.xml
oc_framework/sample_client/res/values/strings.xml

index ed9fc35..7bc01d9 100644 (file)
@@ -5,5 +5,5 @@
        <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>
index 3ba6a91..d1b8743 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-       <name>MainActivity</name>
+       <name>ownCloud Sample Client</name>
        <comment></comment>
        <projects>
        </projects>
index 949e709..0bb3be7 100644 (file)
@@ -3,6 +3,9 @@
       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">
index 96a442e..6fe153b 100644 (file)
Binary files a/oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png and b/oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png differ
index 9923872..1bc470b 100644 (file)
Binary files a/oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png and b/oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png differ
index 359047d..9008b9d 100644 (file)
Binary files a/oc_framework/sample_client/res/drawable-mdpi/ic_launcher.png and b/oc_framework/sample_client/res/drawable-mdpi/ic_launcher.png differ
diff --git a/oc_framework/sample_client/res/drawable-xhdpi/ic_launcher.png b/oc_framework/sample_client/res/drawable-xhdpi/ic_launcher.png
deleted file mode 100644 (file)
index 71c6d76..0000000
Binary files a/oc_framework/sample_client/res/drawable-xhdpi/ic_launcher.png and /dev/null differ
index e745f63..fe9b7ab 100644 (file)
@@ -7,7 +7,7 @@
 <TextView
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
-    android:text="Hello World, MainActivity"
+    android:text="@string/hello_word"
     />
 </LinearLayout>
 
index 0be1647..c6d9c69 100644 (file)
@@ -1,4 +1,5 @@
 <?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>