diff --git a/pkgs/development/androidenv/examples/deployment/default.nix b/pkgs/development/androidenv/examples/deployment/default.nix deleted file mode 100644 index 7ef5b1b108c..00000000000 --- a/pkgs/development/androidenv/examples/deployment/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -let - pkgs = import {}; -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 6631e380f6f..00000000000 --- 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 75f1f1de7b6..00000000000 --- 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 a4763d1eece..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/pkgs/development/androidenv/examples/src/myfirstapp/.project b/pkgs/development/androidenv/examples/src/myfirstapp/.project deleted file mode 100644 index c066df34ea1..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - My First App - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - 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 f77b31c2d2c..00000000000 --- 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 12e1877a5a5..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/AndroidManifest.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - \ 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 26263c11aca..00000000000 --- 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 b0971e891ef..00000000000 --- 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 924742adaaa..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/build.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 c37372acb9c..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/ic_launcher-web.png and /dev/null differ diff --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 f2fe1559a21..00000000000 --- 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 9b84a6b4bf9..00000000000 --- 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 67de12decbd..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_action_search.png and /dev/null differ diff --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 a301d5795aa..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-hdpi/ic_launcher.png and /dev/null differ diff --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 2c2a58b2fad..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-ldpi/ic_launcher.png and /dev/null differ diff --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 134d5490bd3..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_action_search.png and /dev/null differ diff --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 f91f736fe7a..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-mdpi/ic_launcher.png and /dev/null differ diff --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 d699c6b37e0..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_action_search.png and /dev/null differ diff --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 96095ec84ba..00000000000 Binary files a/pkgs/development/androidenv/examples/src/myfirstapp/res/drawable-xhdpi/ic_launcher.png and /dev/null differ diff --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 61319561d0f..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_display_message.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - 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 0d867aa0da0..00000000000 --- a/pkgs/development/androidenv/examples/src/myfirstapp/res/layout/activity_main.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - -