From ee3ef2bcf3656e3e7a02d86d43858cc8145508da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 12 Feb 2014 22:33:14 +0100 Subject: Android : 02-Intents: add --- Android/02-Intents/IntentsLab/AndroidManifest.xml | 22 +++++ Android/02-Intents/IntentsLab/ant.properties | 17 ++++ Android/02-Intents/IntentsLab/build.xml | 92 +++++++++++++++++++++ Android/02-Intents/IntentsLab/local.properties | 10 +++ Android/02-Intents/IntentsLab/proguard-project.txt | 20 +++++ Android/02-Intents/IntentsLab/project.properties | 14 ++++ .../IntentsLab/res/drawable-hdpi/ic_launcher.png | Bin 0 -> 9397 bytes .../IntentsLab/res/drawable-ldpi/ic_launcher.png | Bin 0 -> 2729 bytes .../IntentsLab/res/drawable-mdpi/ic_launcher.png | Bin 0 -> 5237 bytes .../IntentsLab/res/drawable-xhdpi/ic_launcher.png | Bin 0 -> 14383 bytes .../res/layout/activity_loader_activity.xml | 25 ++++++ .../res/layout/explicitly_loaded_activity.xml | 33 ++++++++ .../02-Intents/IntentsLab/res/values/strings.xml | 25 ++++++ .../02-Intents/IntentsLab/res/values/styles.xml | 20 +++++ .../labs/intentslab/ActivityLoaderActivity.java | 85 +++++++++++++++++++ .../labs/intentslab/ExplicitlyLoadedActivity.java | 47 +++++++++++ .../IntentsLab/tests/AndroidManifest.xml | 21 +++++ Android/02-Intents/IntentsLab/tests/ant.properties | 18 ++++ Android/02-Intents/IntentsLab/tests/build.xml | 92 +++++++++++++++++++++ .../tests/libs/robotium-solo-5.0.2-SNAPSHOT.jar | Bin 0 -> 111376 bytes .../02-Intents/IntentsLab/tests/local.properties | 10 +++ .../IntentsLab/tests/proguard-project.txt | 20 +++++ .../02-Intents/IntentsLab/tests/project.properties | 14 ++++ .../src/course/labs/intentslab/ExplicitTest.java | 72 ++++++++++++++++ .../src/course/labs/intentslab/ImplicitTest.java | 58 +++++++++++++ Android/02-Intents/Lab-Intents.pdf | Bin 0 -> 1060438 bytes Android/02-Intents/MyBrowser/AndroidManifest.xml | 21 +++++ Android/02-Intents/MyBrowser/ant.properties | 17 ++++ Android/02-Intents/MyBrowser/build.xml | 92 +++++++++++++++++++++ Android/02-Intents/MyBrowser/local.properties | 10 +++ Android/02-Intents/MyBrowser/proguard-project.txt | 20 +++++ Android/02-Intents/MyBrowser/project.properties | 14 ++++ .../MyBrowser/res/drawable-hdpi/ic_launcher.png | Bin 0 -> 9397 bytes .../MyBrowser/res/drawable-ldpi/ic_launcher.png | Bin 0 -> 2729 bytes .../MyBrowser/res/drawable-mdpi/ic_launcher.png | Bin 0 -> 5237 bytes .../MyBrowser/res/drawable-xhdpi/ic_launcher.png | Bin 0 -> 14383 bytes .../MyBrowser/res/layout/my_browser_activity.xml | 14 ++++ Android/02-Intents/MyBrowser/res/values/dimens.xml | 7 ++ .../02-Intents/MyBrowser/res/values/strings.xml | 8 ++ Android/02-Intents/MyBrowser/res/values/styles.xml | 20 +++++ .../course/labs/intentslab/MyBrowserActivity.java | 24 ++++++ 41 files changed, 962 insertions(+) create mode 100644 Android/02-Intents/IntentsLab/AndroidManifest.xml create mode 100644 Android/02-Intents/IntentsLab/ant.properties create mode 100644 Android/02-Intents/IntentsLab/build.xml create mode 100644 Android/02-Intents/IntentsLab/local.properties create mode 100644 Android/02-Intents/IntentsLab/proguard-project.txt create mode 100644 Android/02-Intents/IntentsLab/project.properties create mode 100644 Android/02-Intents/IntentsLab/res/drawable-hdpi/ic_launcher.png create mode 100644 Android/02-Intents/IntentsLab/res/drawable-ldpi/ic_launcher.png create mode 100644 Android/02-Intents/IntentsLab/res/drawable-mdpi/ic_launcher.png create mode 100644 Android/02-Intents/IntentsLab/res/drawable-xhdpi/ic_launcher.png create mode 100644 Android/02-Intents/IntentsLab/res/layout/activity_loader_activity.xml create mode 100644 Android/02-Intents/IntentsLab/res/layout/explicitly_loaded_activity.xml create mode 100644 Android/02-Intents/IntentsLab/res/values/strings.xml create mode 100644 Android/02-Intents/IntentsLab/res/values/styles.xml create mode 100644 Android/02-Intents/IntentsLab/src/course/labs/intentslab/ActivityLoaderActivity.java create mode 100644 Android/02-Intents/IntentsLab/src/course/labs/intentslab/ExplicitlyLoadedActivity.java create mode 100644 Android/02-Intents/IntentsLab/tests/AndroidManifest.xml create mode 100644 Android/02-Intents/IntentsLab/tests/ant.properties create mode 100644 Android/02-Intents/IntentsLab/tests/build.xml create mode 100644 Android/02-Intents/IntentsLab/tests/libs/robotium-solo-5.0.2-SNAPSHOT.jar create mode 100644 Android/02-Intents/IntentsLab/tests/local.properties create mode 100644 Android/02-Intents/IntentsLab/tests/proguard-project.txt create mode 100644 Android/02-Intents/IntentsLab/tests/project.properties create mode 100644 Android/02-Intents/IntentsLab/tests/src/course/labs/intentslab/ExplicitTest.java create mode 100644 Android/02-Intents/IntentsLab/tests/src/course/labs/intentslab/ImplicitTest.java create mode 100644 Android/02-Intents/Lab-Intents.pdf create mode 100644 Android/02-Intents/MyBrowser/AndroidManifest.xml create mode 100644 Android/02-Intents/MyBrowser/ant.properties create mode 100644 Android/02-Intents/MyBrowser/build.xml create mode 100644 Android/02-Intents/MyBrowser/local.properties create mode 100644 Android/02-Intents/MyBrowser/proguard-project.txt create mode 100644 Android/02-Intents/MyBrowser/project.properties create mode 100644 Android/02-Intents/MyBrowser/res/drawable-hdpi/ic_launcher.png create mode 100644 Android/02-Intents/MyBrowser/res/drawable-ldpi/ic_launcher.png create mode 100644 Android/02-Intents/MyBrowser/res/drawable-mdpi/ic_launcher.png create mode 100644 Android/02-Intents/MyBrowser/res/drawable-xhdpi/ic_launcher.png create mode 100644 Android/02-Intents/MyBrowser/res/layout/my_browser_activity.xml create mode 100644 Android/02-Intents/MyBrowser/res/values/dimens.xml create mode 100644 Android/02-Intents/MyBrowser/res/values/strings.xml create mode 100644 Android/02-Intents/MyBrowser/res/values/styles.xml create mode 100644 Android/02-Intents/MyBrowser/src/course/labs/intentslab/MyBrowserActivity.java diff --git a/Android/02-Intents/IntentsLab/AndroidManifest.xml b/Android/02-Intents/IntentsLab/AndroidManifest.xml new file mode 100644 index 0000000..3b7fda7 --- /dev/null +++ b/Android/02-Intents/IntentsLab/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/Android/02-Intents/IntentsLab/ant.properties b/Android/02-Intents/IntentsLab/ant.properties new file mode 100644 index 0000000..b0971e8 --- /dev/null +++ b/Android/02-Intents/IntentsLab/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/Android/02-Intents/IntentsLab/build.xml b/Android/02-Intents/IntentsLab/build.xml new file mode 100644 index 0000000..46e44ec --- /dev/null +++ b/Android/02-Intents/IntentsLab/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Android/02-Intents/IntentsLab/local.properties b/Android/02-Intents/IntentsLab/local.properties new file mode 100644 index 0000000..12a0114 --- /dev/null +++ b/Android/02-Intents/IntentsLab/local.properties @@ -0,0 +1,10 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. + +# location of the SDK. This is only used by Ant +# For customization when using a Version Control System, please read the +# header note. +sdk.dir=/opt/android-sdk diff --git a/Android/02-Intents/IntentsLab/proguard-project.txt b/Android/02-Intents/IntentsLab/proguard-project.txt new file mode 100644 index 0000000..f2fe155 --- /dev/null +++ b/Android/02-Intents/IntentsLab/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/Android/02-Intents/IntentsLab/project.properties b/Android/02-Intents/IntentsLab/project.properties new file mode 100644 index 0000000..ce39f2d --- /dev/null +++ b/Android/02-Intents/IntentsLab/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-18 diff --git a/Android/02-Intents/IntentsLab/res/drawable-hdpi/ic_launcher.png b/Android/02-Intents/IntentsLab/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000..96a442e Binary files /dev/null and b/Android/02-Intents/IntentsLab/res/drawable-hdpi/ic_launcher.png differ diff --git a/Android/02-Intents/IntentsLab/res/drawable-ldpi/ic_launcher.png b/Android/02-Intents/IntentsLab/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 0000000..9923872 Binary files /dev/null and b/Android/02-Intents/IntentsLab/res/drawable-ldpi/ic_launcher.png differ diff --git a/Android/02-Intents/IntentsLab/res/drawable-mdpi/ic_launcher.png b/Android/02-Intents/IntentsLab/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 0000000..359047d Binary files /dev/null and b/Android/02-Intents/IntentsLab/res/drawable-mdpi/ic_launcher.png differ diff --git a/Android/02-Intents/IntentsLab/res/drawable-xhdpi/ic_launcher.png b/Android/02-Intents/IntentsLab/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 0000000..71c6d76 Binary files /dev/null and b/Android/02-Intents/IntentsLab/res/drawable-xhdpi/ic_launcher.png differ diff --git a/Android/02-Intents/IntentsLab/res/layout/activity_loader_activity.xml b/Android/02-Intents/IntentsLab/res/layout/activity_loader_activity.xml new file mode 100644 index 0000000..00218cb --- /dev/null +++ b/Android/02-Intents/IntentsLab/res/layout/activity_loader_activity.xml @@ -0,0 +1,25 @@ + + +