summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-20 11:19:42 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-20 11:29:04 +0100
commita034c4b9353b3bbd07d99f9726198791fc3554bb (patch)
treeee595abbeae94c3be75e16ca0b27fa6846202297
parentf0bd33556f8fc22a3953f4385aee45cad2c458bf (diff)
downloadnixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar.gz
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar.bz2
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar.lz
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar.xz
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.tar.zst
nixlib-a034c4b9353b3bbd07d99f9726198791fc3554bb.zip
androidenv: Remove examples directory
As discussed on nix-dev, it's better to use fetchurl to obtain the
source of the examples.
-rw-r--r--pkgs/development/androidenv/examples/deployment/default.nix13
-rw-r--r--pkgs/development/androidenv/examples/deployment/emulate-myfirstapp/default.nix10
-rw-r--r--pkgs/development/androidenv/examples/deployment/myfirstapp/default.nix13
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/.classpath8
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/.project33
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/.settings/org.eclipse.jdt.core.prefs4
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/AndroidManifest.xml32
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/README.txt6
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/ant.properties17
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/build.xml92
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/ic_launcher-web.pngbin37099 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/proguard-project.txt20
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/project.properties14
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_action_search.pngbin3120 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_launcher.pngbin3014 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-ldpi/ic_launcher.pngbin1504 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_action_search.pngbin3030 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_launcher.pngbin1969 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_action_search.pngbin3199 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_launcher.pngbin4006 -> 0 bytes
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_display_message.xml14
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_main.xml19
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_display_message.xml6
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_main.xml6
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/values-v11/styles.xml5
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/values-v14/styles.xml5
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/values/strings.xml11
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/res/values/styles.xml5
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/DisplayMessageActivity.java26
-rw-r--r--pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/MainActivity.java35
30 files changed, 0 insertions, 394 deletions
diff --git a/pkgs/development/androidenv/examples/deployment/default.nix b/pkgs/development/androidenv/examples/deployment/default.nix
deleted file mode 100644
index 7ef5b1b108c4..000000000000
--- a/pkgs/development/androidenv/examples/deployment/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-let
-  pkgs = import <nixpkgs> {};
-in
-rec {
-  myfirstapp = import ./myfirstapp {
-    inherit (pkgs) androidenv;
-  };
-  
-  emulate_myfirstapp = import ./emulate-myfirstapp {
-    inherit (pkgs) androidenv;
-    inherit myfirstapp;
-  };
-}
diff --git a/pkgs/development/androidenv/examples/deployment/emulate-myfirstapp/default.nix b/pkgs/development/androidenv/examples/deployment/emulate-myfirstapp/default.nix
deleted file mode 100644
index 6631e380f6f9..000000000000
--- a/pkgs/development/androidenv/examples/deployment/emulate-myfirstapp/default.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{androidenv, myfirstapp}:
-
-androidenv.emulateApp {
-  name = "MyFirstApp";
-  app = myfirstapp;
-  platformVersion = "16";
-  useGoogleAPIs = true;
-  package = "com.example.my.first.app";
-  activity = "MainActivity";
-}
diff --git a/pkgs/development/androidenv/examples/deployment/myfirstapp/default.nix b/pkgs/development/androidenv/examples/deployment/myfirstapp/default.nix
deleted file mode 100644
index 75f1f1de7b6c..000000000000
--- a/pkgs/development/androidenv/examples/deployment/myfirstapp/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{androidenv}:
-
-androidenv.buildApp {
-  name = "MyFirstApp";
-  src = ../../src/myfirstapp;
-  platformVersions = [ "16" ];
-  useGoogleAPIs = true;
-  /*release = true;
-  keyStore = /home/sander/keystore;
-  keyAlias = "sander";
-  keyStorePassword = "foobar";
-  keyAliasPassword = "foobar";*/
-}
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/.classpath b/pkgs/development/androidenv/examples/src/myfirstapp/.classpath
deleted file mode 100644
index a4763d1eeced..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/.classpath
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" path="src"/>
-	<classpathentry kind="src" path="gen"/>
-	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
-	<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
-	<classpathentry kind="output" path="bin/classes"/>
-</classpath>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/.project b/pkgs/development/androidenv/examples/src/myfirstapp/.project
deleted file mode 100644
index c066df34ea1b..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/.project
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>My First App</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
-</projectDescription>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/.settings/org.eclipse.jdt.core.prefs b/pkgs/development/androidenv/examples/src/myfirstapp/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index f77b31c2d2c0..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
-org.eclipse.jdt.core.compiler.compliance=1.5
-org.eclipse.jdt.core.compiler.source=1.5
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/AndroidManifest.xml b/pkgs/development/androidenv/examples/src/myfirstapp/AndroidManifest.xml
deleted file mode 100644
index 12e1877a5a58..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/AndroidManifest.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.example.my.first.app"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk
-        android:minSdkVersion="8"
-        android:targetSdkVersion="15" />
-
-    <application
-        android:icon="@drawable/ic_launcher"
-        android:label="@string/app_name"
-        android:theme="@style/AppTheme" >
-        <activity
-            android:name=".MainActivity"
-            android:label="@string/title_activity_main" >
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-        </activity>
-        <activity
-            android:name=".DisplayMessageActivity"
-            android:label="@string/title_activity_display_message" >
-            <meta-data
-                android:name="android.support.PARENT_ACTIVITY"
-                android:value="com.example.my.first.app.MainActivity" />
-        </activity>
-    </application>
-
-</manifest>
\ No newline at end of file
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/README.txt b/pkgs/development/androidenv/examples/src/myfirstapp/README.txt
deleted file mode 100644
index 26263c11acad..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/README.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-This is the example application taken from the Goole Android development
-introduction: "Building Your First App":
-
-http://developer.android.com/training/basics/firstapp/index.html
-
-
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/ant.properties b/pkgs/development/androidenv/examples/src/myfirstapp/ant.properties
deleted file mode 100644
index b0971e891efd..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/ant.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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/pkgs/development/androidenv/examples/src/myfirstapp/build.xml b/pkgs/development/androidenv/examples/src/myfirstapp/build.xml
deleted file mode 100644
index 924742adaaa2..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/build.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="MyFirstApp" default="help">
-
-    <!-- The local.properties file is created and updated by the 'android' tool.
-         It contains the path to the SDK. It should *NOT* be checked into
-         Version Control Systems. -->
-    <property file="local.properties" />
-
-    <!-- The ant.properties file can be created by you. It is only edited by the
-         'android' tool to add properties to it.
-         This is the place to change some Ant specific build properties.
-         Here are some properties you may want to change/update:
-
-         source.dir
-             The name of the source directory. Default is 'src'.
-         out.dir
-             The name of the output directory. Default is 'bin'.
-
-         For other overridable properties, look at the beginning of the rules
-         files in the SDK, at tools/ant/build.xml
-
-         Properties related to the SDK location or the project target should
-         be updated using the 'android' tool with the 'update' action.
-
-         This file is an integral part of the build system for your
-         application and should be checked into Version Control Systems.
-
-         -->
-    <property file="ant.properties" />
-
-    <!-- if sdk.dir was not set from one of the property file, then
-         get it from the ANDROID_HOME env var.
-         This must be done before we load project.properties since
-         the proguard config can use sdk.dir -->
-    <property environment="env" />
-    <condition property="sdk.dir" value="${env.ANDROID_HOME}">
-        <isset property="env.ANDROID_HOME" />
-    </condition>
-
-    <!-- The project.properties file is created and updated by the 'android'
-         tool, as well as ADT.
-
-         This contains project specific properties such as project target, and library
-         dependencies. Lower level build properties are stored in ant.properties
-         (or in .classpath for Eclipse projects).
-
-         This file is an integral part of the build system for your
-         application and should be checked into Version Control Systems. -->
-    <loadproperties srcFile="project.properties" />
-
-    <!-- quick check on sdk.dir -->
-    <fail
-            message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
-            unless="sdk.dir"
-    />
-
-    <!--
-        Import per project custom build rules if present at the root of the project.
-        This is the place to put custom intermediary targets such as:
-            -pre-build
-            -pre-compile
-            -post-compile (This is typically used for code obfuscation.
-                           Compiled code location: ${out.classes.absolute.dir}
-                           If this is not done in place, override ${out.dex.input.absolute.dir})
-            -post-package
-            -post-build
-            -pre-clean
-    -->
-    <import file="custom_rules.xml" optional="true" />
-
-    <!-- Import the actual build file.
-
-         To customize existing targets, there are two options:
-         - Customize only one target:
-             - copy/paste the target into this file, *before* the
-               <import> task.
-             - customize it to your needs.
-         - Customize the whole content of build.xml
-             - copy/paste the content of the rules files (minus the top node)
-               into this file, replacing the <import> task.
-             - customize to your needs.
-
-         ***********************
-         ****** IMPORTANT ******
-         ***********************
-         In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
-         in order to avoid having your file be overridden by tools such as "android update project"
-    -->
-    <!-- version-tag: 1 -->
-    <import file="${sdk.dir}/tools/ant/build.xml" />
-
-</project>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/ic_launcher-web.png b/pkgs/development/androidenv/examples/src/myfirstapp/ic_launcher-web.png
deleted file mode 100644
index c37372acb9ce..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/ic_launcher-web.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/proguard-project.txt b/pkgs/development/androidenv/examples/src/myfirstapp/proguard-project.txt
deleted file mode 100644
index f2fe1559a217..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/proguard-project.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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/pkgs/development/androidenv/examples/src/myfirstapp/project.properties b/pkgs/development/androidenv/examples/src/myfirstapp/project.properties
deleted file mode 100644
index 9b84a6b4bf98..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/project.properties
+++ /dev/null
@@ -1,14 +0,0 @@
-# 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-16
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_action_search.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_action_search.png
deleted file mode 100644
index 67de12decbd6..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_action_search.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_launcher.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_launcher.png
deleted file mode 100644
index a301d5795aaa..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_launcher.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-ldpi/ic_launcher.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-ldpi/ic_launcher.png
deleted file mode 100644
index 2c2a58b2fad7..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-ldpi/ic_launcher.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_action_search.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_action_search.png
deleted file mode 100644
index 134d5490bd33..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_action_search.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_launcher.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_launcher.png
deleted file mode 100644
index f91f736fe7a3..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_launcher.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_action_search.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_action_search.png
deleted file mode 100644
index d699c6b37e0d..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_action_search.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_launcher.png b/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_launcher.png
deleted file mode 100644
index 96095ec84ba3..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_launcher.png
+++ /dev/null
Binary files differdiff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_display_message.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_display_message.xml
deleted file mode 100644
index 61319561d0fc..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_display_message.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent" >
-
-    <TextView
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_centerHorizontal="true"
-        android:layout_centerVertical="true"
-        android:text="@string/hello_world"
-        tools:context=".DisplayMessageActivity" />
-
-</RelativeLayout>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_main.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_main.xml
deleted file mode 100644
index 0d867aa0da0f..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_main.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:orientation="horizontal">
-
-    <EditText android:id="@+id/edit_message"
-        android:layout_height="wrap_content"
-        android:hint="@string/edit_message"
-        android:layout_weight="1"
-        android:layout_width="0dp" />
-    
-    <Button
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/button_send"
-        android:onClick="sendMessage" />
-
-</LinearLayout>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_display_message.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_display_message.xml
deleted file mode 100644
index cfc10fd52e83..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_display_message.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<menu xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@+id/menu_settings"
-        android:title="@string/menu_settings"
-        android:orderInCategory="100"
-        android:showAsAction="never" />
-</menu>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_main.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_main.xml
deleted file mode 100644
index cfc10fd52e83..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/menu/activity_main.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<menu xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@+id/menu_settings"
-        android:title="@string/menu_settings"
-        android:orderInCategory="100"
-        android:showAsAction="never" />
-</menu>
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v11/styles.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v11/styles.xml
deleted file mode 100644
index d408cbc37ad4..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v11/styles.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<resources>
-
-    <style name="AppTheme" parent="android:Theme.Holo.Light" />
-
-</resources>
\ No newline at end of file
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v14/styles.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v14/styles.xml
deleted file mode 100644
index 1c089a788c5a..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/values-v14/styles.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<resources>
-
-    <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar" />
-
-</resources>
\ No newline at end of file
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/values/strings.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/values/strings.xml
deleted file mode 100644
index 410a5cba4c07..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/values/strings.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<resources>
-
-    <string name="app_name">My First App</string>
-    <string name="edit_message">Enter a message</string>
-    <string name="button_send">Send</string>
-    <string name="menu_settings">Settings</string>
-    <string name="title_activity_main">MainActivity</string>
-    <string name="hello_world">Hello world!</string>
-    <string name="title_activity_display_message">My Message</string>
-
-</resources>
\ No newline at end of file
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/res/values/styles.xml b/pkgs/development/androidenv/examples/src/myfirstapp/res/values/styles.xml
deleted file mode 100644
index 4dba0d0a4c51..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/res/values/styles.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<resources>
-
-    <style name="AppTheme" parent="android:Theme.Light" />
-
-</resources>
\ No newline at end of file
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/DisplayMessageActivity.java b/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/DisplayMessageActivity.java
deleted file mode 100644
index 20d6760be69c..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/DisplayMessageActivity.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.example.my.first.app;
-
-import android.os.Bundle;
-import android.widget.TextView;
-import android.app.Activity;
-import android.content.Intent;
-
-public class DisplayMessageActivity extends Activity {
-
-    @Override
-    public void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        
-        // Get the message from the intent
-        Intent intent = getIntent();
-        String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
-        
-        // Create the text view
-        TextView textView = new TextView(this);
-        textView.setTextSize(40);
-        textView.setText(message);
-        
-        // Set the text view as the activity layout
-        setContentView(R.layout.activity_display_message);
-    }
-}
diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/MainActivity.java b/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/MainActivity.java
deleted file mode 100644
index 98f1e8877e0c..000000000000
--- a/pkgs/development/androidenv/examples/src/myfirstapp/src/com/example/my/first/app/MainActivity.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.example.my.first.app;
-
-import android.os.Bundle;
-import android.app.Activity;
-import android.content.Intent;
-import android.view.Menu;
-import android.view.View;
-import android.widget.EditText;
-
-public class MainActivity extends Activity {
-
-	public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
-	
-    @Override
-    public void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        setContentView(R.layout.activity_main);
-    }
-
-    @Override
-    public boolean onCreateOptionsMenu(Menu menu) {
-        getMenuInflater().inflate(R.menu.activity_main, menu);
-        return true;
-    }
-    
-    /** Called when the user clicks the Send button */
-    public void sendMessage(View view) {
-        // Do something in response to button
-    	Intent intent = new Intent(this, DisplayMessageActivity.class);
-    	EditText editText = (EditText) findViewById(R.id.edit_message);
-    	String message = editText.getText().toString();
-    	intent.putExtra(EXTRA_MESSAGE, message);
-    	startActivity(intent);
-    }
-}