From: David A. Velasco Date: Thu, 9 Jan 2014 15:32:18 +0000 (+0100) Subject: Created empty sample project to show oc_framework functionality X-Git-Tag: oc-android-1.5.5~69^2~26 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/21f4c7e6a830f4d14b9c55ff5c7d00c67ee03528?ds=inline Created empty sample project to show oc_framework functionality --- diff --git a/oc_framework/sample_client/AndroidManifest.xml b/oc_framework/sample_client/AndroidManifest.xml new file mode 100644 index 00000000..949e7091 --- /dev/null +++ b/oc_framework/sample_client/AndroidManifest.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/oc_framework/sample_client/ant.properties b/oc_framework/sample_client/ant.properties new file mode 100644 index 00000000..b0971e89 --- /dev/null +++ b/oc_framework/sample_client/ant.properties @@ -0,0 +1,17 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked into Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + diff --git a/oc_framework/sample_client/build.xml b/oc_framework/sample_client/build.xml new file mode 100644 index 00000000..a10a9149 --- /dev/null +++ b/oc_framework/sample_client/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/oc_framework/sample_client/project.properties b/oc_framework/sample_client/project.properties new file mode 100644 index 00000000..4ab12569 --- /dev/null +++ b/oc_framework/sample_client/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-19 diff --git a/oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png b/oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 00000000..96a442e5 Binary files /dev/null and b/oc_framework/sample_client/res/drawable-hdpi/ic_launcher.png differ diff --git a/oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png b/oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 00000000..99238729 Binary files /dev/null and b/oc_framework/sample_client/res/drawable-ldpi/ic_launcher.png differ diff --git a/oc_framework/sample_client/res/drawable-mdpi/ic_launcher.png b/oc_framework/sample_client/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 00000000..359047df Binary files /dev/null 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 new file mode 100644 index 00000000..71c6d760 Binary files /dev/null and b/oc_framework/sample_client/res/drawable-xhdpi/ic_launcher.png differ diff --git a/oc_framework/sample_client/res/layout/main.xml b/oc_framework/sample_client/res/layout/main.xml new file mode 100644 index 00000000..e745f639 --- /dev/null +++ b/oc_framework/sample_client/res/layout/main.xml @@ -0,0 +1,13 @@ + + + + + diff --git a/oc_framework/sample_client/res/values/strings.xml b/oc_framework/sample_client/res/values/strings.xml new file mode 100644 index 00000000..0be16474 --- /dev/null +++ b/oc_framework/sample_client/res/values/strings.xml @@ -0,0 +1,4 @@ + + + MainActivity + diff --git a/oc_framework/sample_client/src/com/owncloud/android/oc_framework/sampleclient/MainActivity.java b/oc_framework/sample_client/src/com/owncloud/android/oc_framework/sampleclient/MainActivity.java new file mode 100644 index 00000000..9b557a5a --- /dev/null +++ b/oc_framework/sample_client/src/com/owncloud/android/oc_framework/sampleclient/MainActivity.java @@ -0,0 +1,15 @@ +package com.owncloud.android.oc_framework.sampleclient; + +import android.app.Activity; +import android.os.Bundle; + +public class MainActivity extends Activity +{ + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) + { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + } +}