From be569984b893e8cb412b9cc2b3826c92fd4c9d81 Mon Sep 17 00:00:00 2001 From: Dominik Date: Mon, 19 Nov 2012 17:56:58 +0100 Subject: rename main folders --- APG-API-Demo/.gitignore | 23 +++ APG-API-Demo/AndroidManifest.xml | 36 ++++ APG-API-Demo/build.xml | 83 +++++++++ APG-API-Demo/proguard-project.txt | 20 +++ APG-API-Demo/project.properties | 12 ++ APG-API-Demo/res/drawable-hdpi/icon.png | Bin 0 -> 5308 bytes APG-API-Demo/res/drawable-ldpi/icon.png | Bin 0 -> 2027 bytes APG-API-Demo/res/drawable-mdpi/icon.png | Bin 0 -> 3035 bytes APG-API-Demo/res/drawable-xhdpi/icon.png | Bin 0 -> 8165 bytes APG-API-Demo/res/layout/aidl_demo.xml | 72 ++++++++ APG-API-Demo/res/layout/intent_demo.xml | 93 +++++++++++ APG-API-Demo/res/xml/base_preference.xml | 15 ++ .../android/apg/demo/AidlDemoActivity.java | 185 +++++++++++++++++++++ .../thialfihar/android/apg/demo/BaseActivity.java | 69 ++++++++ .../android/apg/demo/IntentDemoActivity.java | 110 ++++++++++++ 15 files changed, 718 insertions(+) create mode 100644 APG-API-Demo/.gitignore create mode 100644 APG-API-Demo/AndroidManifest.xml create mode 100644 APG-API-Demo/build.xml create mode 100644 APG-API-Demo/proguard-project.txt create mode 100644 APG-API-Demo/project.properties create mode 100644 APG-API-Demo/res/drawable-hdpi/icon.png create mode 100644 APG-API-Demo/res/drawable-ldpi/icon.png create mode 100644 APG-API-Demo/res/drawable-mdpi/icon.png create mode 100644 APG-API-Demo/res/drawable-xhdpi/icon.png create mode 100644 APG-API-Demo/res/layout/aidl_demo.xml create mode 100644 APG-API-Demo/res/layout/intent_demo.xml create mode 100644 APG-API-Demo/res/xml/base_preference.xml create mode 100644 APG-API-Demo/src/org/thialfihar/android/apg/demo/AidlDemoActivity.java create mode 100644 APG-API-Demo/src/org/thialfihar/android/apg/demo/BaseActivity.java create mode 100644 APG-API-Demo/src/org/thialfihar/android/apg/demo/IntentDemoActivity.java (limited to 'APG-API-Demo') diff --git a/APG-API-Demo/.gitignore b/APG-API-Demo/.gitignore new file mode 100644 index 000000000..2e423e1a3 --- /dev/null +++ b/APG-API-Demo/.gitignore @@ -0,0 +1,23 @@ +#Android generated +bin +gen +obj +libs/armeabi +lint.xml +local.properties + +#Eclipse +.project +.classpath +.settings + +#IntelliJ IDEA +.idea +*.iml + +#Maven +target +release.properties + +#Mac +.DS_Store \ No newline at end of file diff --git a/APG-API-Demo/AndroidManifest.xml b/APG-API-Demo/AndroidManifest.xml new file mode 100644 index 000000000..8d7a9e970 --- /dev/null +++ b/APG-API-Demo/AndroidManifest.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/APG-API-Demo/build.xml b/APG-API-Demo/build.xml new file mode 100644 index 000000000..e72865c84 --- /dev/null +++ b/APG-API-Demo/build.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/APG-API-Demo/proguard-project.txt b/APG-API-Demo/proguard-project.txt new file mode 100644 index 000000000..f2fe1559a --- /dev/null +++ b/APG-API-Demo/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/APG-API-Demo/project.properties b/APG-API-Demo/project.properties new file mode 100644 index 000000000..8abe35df9 --- /dev/null +++ b/APG-API-Demo/project.properties @@ -0,0 +1,12 @@ +# 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 use, +# "ant.properties", and override values to adapt the script to your +# project structure. + +# Project target. +target=android-15 +android.library.reference.1=../org_apg_integration_lib diff --git a/APG-API-Demo/res/drawable-hdpi/icon.png b/APG-API-Demo/res/drawable-hdpi/icon.png new file mode 100644 index 000000000..6b8cc3d73 Binary files /dev/null and b/APG-API-Demo/res/drawable-hdpi/icon.png differ diff --git a/APG-API-Demo/res/drawable-ldpi/icon.png b/APG-API-Demo/res/drawable-ldpi/icon.png new file mode 100644 index 000000000..a1adf6bcb Binary files /dev/null and b/APG-API-Demo/res/drawable-ldpi/icon.png differ diff --git a/APG-API-Demo/res/drawable-mdpi/icon.png b/APG-API-Demo/res/drawable-mdpi/icon.png new file mode 100644 index 000000000..6b10a2ad3 Binary files /dev/null and b/APG-API-Demo/res/drawable-mdpi/icon.png differ diff --git a/APG-API-Demo/res/drawable-xhdpi/icon.png b/APG-API-Demo/res/drawable-xhdpi/icon.png new file mode 100644 index 000000000..03ee31bbd Binary files /dev/null and b/APG-API-Demo/res/drawable-xhdpi/icon.png differ diff --git a/APG-API-Demo/res/layout/aidl_demo.xml b/APG-API-Demo/res/layout/aidl_demo.xml new file mode 100644 index 000000000..59977869d --- /dev/null +++ b/APG-API-Demo/res/layout/aidl_demo.xml @@ -0,0 +1,72 @@ + + + + + +