···84848585<section><title>Standard meta-attributes</title>
86868787-<para>The following meta-attributes have a standard
8888-interpretation:</para>
8787+<para>It is expected that each meta-attribute is one of the following:</para>
89889089<variablelist>
9190···113112 </varlistentry>
114113115114 <varlistentry>
115115+ <term><varname>version</varname></term>
116116+ <listitem><para>Package version.</para></listitem>
117117+ </varlistentry>
118118+119119+ <varlistentry>
116120 <term><varname>homepage</varname></term>
117121 <listitem><para>The package’s homepage. Example:
118122 <literal>http://www.gnu.org/software/hello/manual/</literal></para></listitem>
123123+ </varlistentry>
124124+125125+ <varlistentry>
126126+ <term><varname>downloadPage</varname></term>
127127+ <listitem><para>The page where a link to the current version can be found. Example:
128128+ <literal>http://ftp.gnu.org/gnu/hello/</literal></para></listitem>
119129 </varlistentry>
120130121131 <varlistentry>
···195205 they are fixed.</para></listitem>
196206 </varlistentry>
197207208208+ <varlistentry>
209209+ <term><varname>updateWalker</varname></term>
210210+ <listitem><para>If set to <literal>true</literal>, the package is
211211+ tested to be updated correctly by the <literal>update-walker.sh</literal>
212212+ script without additional settings. Such packages have
213213+ <varname>meta.version</varname> set and their homepage (or
214214+ the page specified by <varname>meta.downloadPage</varname>) contains
215215+ a direct link to the package tarball.</para></listitem>
216216+ </varlistentry>
217217+198218</variablelist>
199219200220···256276</variablelist>
257277258278</para>
259259-279279+260280261281</section>
262262-282282+263283264284</chapter>
+9-57
nixos/doc/manual/man-nixos-option.xml
···1717<refsynopsisdiv>
1818 <cmdsynopsis>
1919 <command>nixos-option</command>
2020- <group choice="opt">
2121- <option>-v</option>
2222- <option>-d</option>
2323- <option>-l</option>
2424- </group>
2520 <arg choice='plain'><replaceable>option.name</replaceable></arg>
2621 </cmdsynopsis>
2722</refsynopsisdiv>
···31263227<para>This command evaluates the configuration specified in
3328<filename>/etc/nixos/configuration.nix</filename> and returns the properties
3434-of the option name given as argument. By default, it returns the value of
3535-the option.</para>
2929+of the option name given as argument.</para>
36303731<para>When the option name is not an option, the command prints the list of
3832attributes contained in the attribute set.</para>
39334034</refsection>
41354242-<refsection><title>Options</title>
4343-4444-<para>This command accepts the following options:</para>
4545-4646-<variablelist>
4747-4848- <varlistentry>
4949- <term><option>--value</option>, <option>-v</option></term>
5050- <listitem>
5151- <para>Returns the value of the option. This is the default operation
5252- if no other options are defined.</para>
5353- </listitem>
5454- </varlistentry>
5555-5656- <varlistentry>
5757- <term><option>--description</option>, <option>-d</option></term>
5858- <listitem>
5959- <para>Return the default value, the example and the description of the
6060- option when available.</para>
6161- </listitem>
6262- </varlistentry>
6363-6464- <varlistentry>
6565- <term><option>--lookup</option>, <option>-l</option></term>
6666- <listitem>
6767- <para>Return the locations where the option is declared and where it
6868- is defined. This is extremely useful to find sources of errors in
6969- your configuration.</para>
7070- </listitem>
7171- </varlistentry>
7272-7373-</variablelist>
7474-7575-</refsection>
7676-7777-7836<refsection><title>Environment</title>
79378038<variablelist>
···10361initScript
1046210563$ nixos-option boot.loader.grub.enable
106106-true</screen></para>
6464+Value:
6565+true
10766108108-<para>Prints option information:
6767+Default:
6868+true
10969110110-<screen>$ nixos-option -d networking.hostName
111111-Default: "nixos"
11270Description:
113113-The name of the machine. Leave it empty if you want to obtain
114114-it from a DHCP server (if using DHCP).</screen></para>
115115-116116-<para>Find the locations which are declaring and defining an option:
7171+Whether to enable the GNU GRUB boot loader.
11772118118-<screen>$ nixos-option -l hardware.firmware
11973Declared by:
120120- /mnt/data/nix-sources/nixos/modules/services/hardware/udev.nix
7474+ "/path/to/nixpkgs/nixos/modules/system/boot/loader/grub/grub.nix"
1217512276Defined by:
123123- /path/to/nixpkgs/nixos/modules/system/boot/kernel.nix
124124- /path/to/nixpkgs/nixos/modules/hardware/network/rt73.nix
125125- /path/to/nixpkgs/nixos/modules/hardware/network/intel-3945abg.nix
126126- /path/to/nixpkgs/nixos/modules/hardware/network/intel-2200bg.nix</screen></para>
7777+ "/nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs/nixos/modules/system/boot/loader/grub/grub.nix"
7878+</screen></para>
1277912880</refsection>
12981
+7-7
nixos/modules/config/pulseaudio.nix
···1010 systemWide = cfg.enable && cfg.systemWide;
1111 nonSystemWide = cfg.enable && !cfg.systemWide;
12121313- uid = config.ids.uids.pulseaudio;
1414- gid = config.ids.gids.pulseaudio;
1313+ ids = config.ids;
15141616- stateDir = "/run/pulse";
1515+ uid = ids.uids.pulseaudio;
1616+ gid = ids.gids.pulseaudio;
1717+1818+ stateDir = "/var/run/pulse";
17191820 # Create pulse/client.conf even if PulseAudio is disabled so
1921 # that we can disable the autospawn feature in programs that
···138140 group = "pulse";
139141 extraGroups = [ "audio" ];
140142 description = "PulseAudio system service user";
143143+ home = stateDir;
144144+ createHome = true;
141145 };
142146143147 users.extraGroups.pulse.gid = gid;
···147151 wantedBy = [ "sound.target" ];
148152 before = [ "sound.target" ];
149153 environment.PULSE_RUNTIME_PATH = stateDir;
150150- preStart = ''
151151- mkdir -p --mode 755 ${stateDir}
152152- chown -R pulse:pulse ${stateDir}
153153- '';
154154 serviceConfig = {
155155 ExecStart = "${cfg.package}/bin/pulseaudio -D --log-level=${cfg.daemon.logLevel} --system --use-pid-file -n --file=${cfg.configFile}";
156156 PIDFile = "${stateDir}/pid";
···2020 return @res;
2121}
22222323+sub runCommand {
2424+ my ($cmd) = @_;
2525+ open FILE, "$cmd 2>&1 |" or die "Failed to execute: $cmd\n";
2626+ my @ret = <FILE>;
2727+ close FILE;
2828+ return ($?, @ret);
2929+}
23302431# Process the command line.
2532my $outDir = "/etc/nixos";
···304311305312 # Maybe this is a bind-mount of a filesystem we saw earlier?
306313 if (defined $fsByDev{$fields[2]}) {
307307- my $path = $fields[3]; $path = "" if $path eq "/";
308308- my $base = $fsByDev{$fields[2]};
309309- $base = "" if $base eq "/";
310310- $fileSystems .= <<EOF;
314314+ # Make sure this isn't a btrfs subvolume
315315+ my ($status, @msg) = runCommand("btrfs subvol show $rootDir$mountPoint");
316316+ if (join("", @msg) =~ /ERROR:/) {
317317+ my $path = $fields[3]; $path = "" if $path eq "/";
318318+ my $base = $fsByDev{$fields[2]};
319319+ $base = "" if $base eq "/";
320320+ $fileSystems .= <<EOF;
311321 fileSystems.\"$mountPoint\" =
312322 { device = \"$base$path\";
313323 fsType = \"none\";
···315325 };
316326317327EOF
318318- next;
328328+ next;
329329+ }
319330 }
320331 $fsByDev{$fields[2]} = $mountPoint;
321332···334345 chomp $backer;
335346 $device = $backer;
336347 push @extraOptions, "loop";
348348+ }
349349+ }
350350+351351+ # Is this a btrfs filesystem?
352352+ if ($fsType eq "btrfs") {
353353+ my ($status, @id_info) = runCommand("btrfs subvol show $rootDir$mountPoint");
354354+ if ($status != 0 || join("", @msg) =~ /ERROR:/) {
355355+ die "Failed to retreive subvolume info for $mountPoint\n";
356356+ }
357357+ my @ids = join("", @id_info) =~ m/Object ID:[ \t\n]*([^ \t\n]*)/;
358358+ if ($#ids > 0) {
359359+ die "Btrfs subvol name for $mountPoint listed multiple times in mount\n"
360360+ } elsif ($#ids == 0) {
361361+ my ($status, @path_info) = runCommand("btrfs subvol list $rootDir$mountPoint");
362362+ if ($status != 0) {
363363+ die "Failed to find $mountPoint subvolume id from btrfs\n";
364364+ }
365365+ my @paths = join("", @path_info) =~ m/ID $ids[0] [^\n]* path ([^\n]*)/;
366366+ if ($#paths > 0) {
367367+ die "Btrfs returned multiple paths for a single subvolume id, mountpoint $mountPoint\n";
368368+ } elsif ($#paths != 0) {
369369+ die "Btrfs did not return a path for the subvolume at $mountPoint\n";
370370+ }
371371+ push @extraOptions, "subvol=$paths[0]";
337372 }
338373 }
339374
+4-1
nixos/modules/installer/tools/nixos-install.sh
···77# * nix-env -p /nix/var/nix/profiles/system -i <nix-expr for the configuration>
88# * install the boot loader
991010+# Ensure a consistent umask.
1111+umask 0022
1212+1013# Re-exec ourselves in a private mount namespace so that our bind
1114# mounts get cleaned up automatically.
1215if [ "$(id -u)" = 0 ]; then
···243246# Ask the user to set a root password.
244247if [ -t 0 ] ; then
245248 echo "setting root password..."
246246- chroot $mountPoint passwd
249249+ chroot $mountPoint /var/setuid-wrappers/passwd
247250fi
248251249252
+25-45
nixos/modules/installer/tools/nixos-option.sh
···1111# Process Arguments #
1212#####################
13131414-desc=false
1515-defs=false
1616-value=false
1714xml=false
1815verbose=false
1916···2421 if test -z "$argfun"; then
2522 case $arg in
2623 -*)
2727- longarg=""
2824 sarg="$arg"
2525+ longarg=""
2926 while test "$sarg" != "-"; do
3027 case $sarg in
3128 --*) longarg=$arg; sarg="--";;
3232- -d*) longarg="$longarg --description";;
3333- -v*) longarg="$longarg --value";;
3434- -l*) longarg="$longarg --lookup";;
3529 -*) usage;;
3630 esac
3731 # remove the first letter option
···4236 esac
4337 for larg in $longarg; do
4438 case $larg in
4545- --description) desc=true;;
4646- --value) value=true;;
4747- --lookup) defs=true;;
4839 --xml) xml=true;;
4940 --verbose) verbose=true;;
5041 --help) usage;;
···6758 fi
6859done
69607070-if $xml; then
7171- value=true
7272- desc=true
7373- defs=true
7474-fi
7575-7676-if ! $defs && ! $desc; then
7777- value=true
7878-fi
7979-8061if $verbose; then
8162 set -x
8263else
···9576 local prefix="$1"
9677 local strict="$2"
9778 local suffix="$3"
9898- echo "(import <nixos> {}).$prefix${option:+.$option}${suffix:+.$suffix}" |
9999- evalNix ${strict:+--strict}
7979+ echo "(import <nixos> {}).$prefix${option:+.$option}${suffix:+.$suffix}" | evalNix ${strict:+--strict}
10080}
1018110282evalOpt(){
···189169fi
190170191171if test "$(evalOpt "_type" 2> /dev/null)" = '"option"'; then
192192- $value && evalCfg 1
172172+ echo "Value:"
173173+ evalCfg 1
193174194194- if $desc; then
195195- $value && echo;
175175+ echo
196176197197- if default=$(evalOpt "default" - 2> /dev/null); then
198198- echo "Default: $default"
199199- else
200200- echo "Default: <None>"
201201- fi
202202- if example=$(evalOpt "example" - 2> /dev/null); then
203203- echo "Example: $example"
204204- fi
205205- echo "Description:"
206206- eval printf $(evalOpt "description")
177177+ echo "Default:"
178178+ if default=$(evalOpt "default" - 2> /dev/null); then
179179+ echo "$default"
180180+ else
181181+ echo "<None>"
182182+ fi
183183+ echo
184184+ if example=$(evalOpt "example" - 2> /dev/null); then
185185+ echo "Example: $example"
207186 fi
187187+ echo "Description:"
188188+ echo
189189+ eval printf $(evalOpt "description")
208190209209- if $defs; then
210210- $desc || $value && echo;
191191+ echo $desc;
211192212212- printPath () { echo " $1"; }
193193+ printPath () { echo " $1"; }
213194214214- echo "Declared by:"
215215- nixMap printPath "$(findSources "declarations")"
216216- echo ""
217217- echo "Defined by:"
218218- nixMap printPath "$(findSources "files")"
219219- echo ""
220220- fi
195195+ echo "Declared by:"
196196+ nixMap printPath "$(findSources "declarations")"
197197+ echo
198198+ echo "Defined by:"
199199+ nixMap printPath "$(findSources "files")"
200200+ echo
221201222202else
223203 # echo 1>&2 "Warning: This value is not an option."
···1010 ../profiles/clone-config.nix
1111 ];
12121313+ # FIXME: UUID detection is currently broken
1414+ boot.loader.grub.fsIdentifier = "provided";
1515+1316 # Allow mounting of shared folders.
1417 users.extraUsers.demo.extraGroups = [ "vboxsf" ];
1518
+1
nixos/modules/misc/ids.nix
···150150 zookeeper = 140;
151151 dnsmasq = 141;
152152 uhub = 142;
153153+ yandexdisk=143;
153154154155 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
155156
···11+{ config, lib, pkgs, ... }:
22+with lib;
33+let
44+ cfg = config.services.diod;
55+66+ diodBool = b: if b then "1" else "0";
77+88+ diodConfig = pkgs.writeText "diod.conf" ''
99+ allsquash = ${diodBool cfg.allsquash}
1010+ auth_required = ${diodBool cfg.authRequired}
1111+ exportall = ${diodBool cfg.exportall}
1212+ exportopts = "${concatStringsSep "," cfg.exportopts}"
1313+ exports = { ${concatStringsSep ", " (map (s: ''"${s}"'' ) cfg.exports)} }
1414+ listen = { ${concatStringsSep ", " (map (s: ''"${s}"'' ) cfg.listen)} }
1515+ logdest = "${cfg.logdest}"
1616+ nwthreads = ${toString cfg.nwthreads}
1717+ squashuser = "${cfg.squashuser}"
1818+ statfs_passthru = ${diodBool cfg.statfsPassthru}
1919+ userdb = ${diodBool cfg.userdb}
2020+ ${cfg.extraConfig}
2121+ '';
2222+in
2323+{
2424+ options = {
2525+ services.diod = {
2626+ enable = mkOption {
2727+ type = types.bool;
2828+ default = false;
2929+ description = "Whether to enable the diod 9P file server.";
3030+ };
3131+3232+ listen = mkOption {
3333+ type = types.listOf types.str;
3434+ default = [ ];
3535+ description = ''
3636+ [ "IP:PORT" [,"IP:PORT",...] ]
3737+ List the interfaces and ports that diod should listen on.
3838+ '';
3939+ };
4040+4141+ exports = mkOption {
4242+ type = types.listOf types.path;
4343+ default = [];
4444+ description = ''
4545+ List the file systems that clients will be allowed to mount. All paths should
4646+ be fully qualified. The exports table can include two types of element:
4747+ a string element (as above),
4848+ or an alternate table element form { path="/path", opts="ro" }.
4949+ In the alternate form, the (optional) opts attribute is a comma-separated list
5050+ of export options. The two table element forms can be mixed in the exports
5151+ table. Note that although diod will not traverse file system boundaries for a
5252+ given mount due to inode uniqueness constraints, subdirectories of a file
5353+ system can be separately exported.
5454+ '';
5555+ };
5656+5757+ exportall = mkOption {
5858+ type = types.bool;
5959+ default = true;
6060+ description = ''
6161+ Export all file systems listed in /proc/mounts. If new file systems are mounted
6262+ after diod has started, they will become immediately mountable. If there is a
6363+ duplicate entry for a file system in the exports list, any options listed in
6464+ the exports entry will apply.
6565+ '';
6666+ };
6767+6868+ exportopts = mkOption {
6969+ type = types.listOf types.str;
7070+ default = [];
7171+ description = ''
7272+ Establish a default set of export options. These are overridden, not appended
7373+ to, by opts attributes in an "exports" entry.
7474+ '';
7575+ };
7676+7777+ nwthreads = mkOption {
7878+ type = types.int;
7979+ default = 16;
8080+ description = ''
8181+ Sets the (fixed) number of worker threads created to handle 9P
8282+ requests for a unique aname.
8383+ '';
8484+ };
8585+8686+ authRequired = mkOption {
8787+ type = types.bool;
8888+ default = false;
8989+ description = ''
9090+ Allow clients to connect without authentication, i.e. without a valid MUNGE credential.
9191+ '';
9292+ };
9393+9494+ userdb = mkOption {
9595+ type = types.bool;
9696+ default = false;
9797+ description = ''
9898+ This option disables password/group lookups. It allows any uid to attach and
9999+ assumes gid=uid, and supplementary groups contain only the primary gid.
100100+ '';
101101+ };
102102+103103+ allsquash = mkOption {
104104+ type = types.bool;
105105+ default = true;
106106+ description = ''
107107+ Remap all users to "nobody". The attaching user need not be present in the
108108+ password file.
109109+ '';
110110+ };
111111+112112+ squashuser = mkOption {
113113+ type = types.str;
114114+ default = "nobody";
115115+ description = ''
116116+ Change the squash user. The squash user must be present in the password file.
117117+ '';
118118+ };
119119+120120+ logdest = mkOption {
121121+ type = types.str;
122122+ default = "syslog:daemon:err";
123123+ description = ''
124124+ Set the destination for logging.
125125+ The value has the form of "syslog:facility:level" or "filename".
126126+ '';
127127+ };
128128+129129+130130+ statfsPassthru = mkOption {
131131+ type = types.bool;
132132+ default = false;
133133+ description = ''
134134+ This option configures statfs to return the host file system's type
135135+ rather than V9FS_MAGIC.
136136+ '';
137137+ };
138138+139139+ extraConfig = mkOption {
140140+ type = types.lines;
141141+ default = "";
142142+ description = "Extra configuration options for diod.conf.";
143143+ };
144144+ };
145145+ };
146146+147147+ config = mkIf config.services.diod.enable {
148148+ environment.systemPackages = [ pkgs.diod ];
149149+150150+ systemd.services.diod = {
151151+ description = "diod 9P file server";
152152+ wantedBy = [ "multi-user.target" ];
153153+ after = [ "network.target" ];
154154+ serviceConfig = {
155155+ ExecStart = "${pkgs.diod}/sbin/diod -c ${diodConfig}";
156156+ };
157157+ };
158158+ };
159159+}
···6677 cfg = config.boot.loader.grub;
8899- realGrub = if cfg.version == 1 then pkgs.grub else pkgs.grub2;
99+ realGrub = if cfg.version == 1 then pkgs.grub
1010+ else pkgs.grub2.override { zfsSupport = cfg.zfsSupport; };
10111112 grub =
1213 # Don't include GRUB if we're only generating a GRUB menu (e.g.,
···2526 inherit (cfg)
2627 version extraConfig extraPerEntryConfig extraEntries
2728 extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels timeout
2828- default devices explicitBootRoot;
2929+ default devices fsIdentifier;
2930 path = (makeSearchPath "bin" [
3030- pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils
3131+ pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils pkgs.btrfsProgs
3232+ pkgs.utillinux
3133 ]) + ":" + (makeSearchPath "sbin" [
3232- pkgs.mdadm
3434+ pkgs.mdadm pkgs.utillinux
3335 ]);
3436 });
3537···209211 '';
210212 };
211213212212- explicitBootRoot = mkOption {
213213- default = "";
214214- type = types.str;
214214+ fsIdentifier = mkOption {
215215+ default = "uuid";
216216+ type = types.addCheck types.str
217217+ (type: type == "uuid" || type == "label" || type == "provided");
215218 description = ''
216216- The relative path of /boot within the parent volume. Leave empty
217217- if /boot is not a btrfs subvolume.
219219+ Determines how grub will identify devices when generating the
220220+ configuration file. A value of uuid / label signifies that grub
221221+ will always resolve the uuid or label of the device before using
222222+ it in the configuration. A value of provided means that grub will
223223+ use the device name as show in <command>df</command> or
224224+ <command>mount</command>. Note, zfs zpools / datasets are ignored
225225+ and will always be mounted using their labels.
226226+ '';
227227+ };
228228+229229+ zfsSupport = mkOption {
230230+ default = false;
231231+ type = types.bool;
232232+ description = ''
233233+ Whether grub should be build against libzfs.
218234 '';
219235 };
220236···259275 concatStrings (mapAttrsToList (n: v: ''
260276 ${pkgs.coreutils}/bin/cp -pf "${v}" "/boot/${n}"
261277 '') config.boot.loader.grub.extraFiles);
278278+279279+ assertions = [{ assertion = !cfg.zfsSupport || cfg.version == 2;
280280+ message = "Only grub version 2 provides zfs support";}];
262281263282 })
264283
···11-From 524c9e39a0ca6f2d1699e6e6d9ba3db1ea80d9f9 Mon Sep 17 00:00:00 2001
22-From: Bastien Nocera <hadess@hadess.net>
33-Date: Thu, 15 May 2014 19:28:35 +0200
44-Subject: main: Fix potential data loss when removing multiple files
55-66-We were using a list of GtkTreePaths and deleting the items one-by-one
77-when the user clicked the "Delete" button. But after the first deletion,
88-the tree model would have changed, and instead of pointing to the 2nd
99-item we wanted to delete, the GtkTreePath would have pointed to another
1010-item, usually not one that we wanted to delete.
1111-1212-We now use GtkTreeRowReferences, which will always point to the same
1313-row, as long as it exists.
1414-1515-https://bugzilla.gnome.org/show_bug.cgi?id=729778
1616-1717-diff --git a/src/totem-grilo.c b/src/totem-grilo.c
1818-index 2133d77..0cff0d6 100644
1919---- a/src/totem-grilo.c
2020-+++ b/src/totem-grilo.c
2121-@@ -2074,7 +2074,8 @@ static void
2222- delete_foreach (gpointer data,
2323- gpointer user_data)
2424- {
2525-- GtkTreePath *path = data;
2626-+ GtkTreeRowReference *ref = data;
2727-+ GtkTreePath *path;
2828- GtkTreeModel *view_model = user_data;
2929- GtkTreeIter iter;
3030- GrlSource *source;
3131-@@ -2085,8 +2086,11 @@ delete_foreach (gpointer data,
3232- GtkTreeModel *model;
3333- GtkTreeIter real_model_iter;
3434-3535-- if (!gtk_tree_model_get_iter (view_model, &iter, path))
3636-+ path = gtk_tree_row_reference_get_path (ref);
3737-+ if (!path || !gtk_tree_model_get_iter (view_model, &iter, path)) {
3838-+ g_warning ("An item that was scheduled for removal isn't available any more");
3939- return;
4040-+ }
4141-4242- gtk_tree_model_get (view_model, &iter,
4343- MODEL_RESULTS_CONTENT, &media,
4444-@@ -2151,14 +2155,23 @@ delete_cb (TotemSelectionToolbar *bar,
4545- TotemGrilo *self)
4646- {
4747- GtkTreeModel *model;
4848-- GList *list;
4949-+ GList *list, *l;
5050-5151- g_signal_handlers_block_by_func (self->priv->browser, "view-selection-changed", self);
5252-5353- model = gd_main_view_get_model (GD_MAIN_VIEW (self->priv->browser));
5454- list = gd_main_view_get_selection (GD_MAIN_VIEW (self->priv->browser));
5555-+
5656-+ /* GList of GtkTreePaths to a GList of GtkTreeRowReferences */
5757-+ for (l = list; l != NULL; l = l->next) {
5858-+ GtkTreeRowReference *ref;
5959-+
6060-+ ref = gtk_tree_row_reference_new (model, l->data);
6161-+ gtk_tree_path_free (l->data);
6262-+ l->data = ref;
6363-+ }
6464- g_list_foreach (list, delete_foreach, model);
6565-- g_list_free_full (list, (GDestroyNotify) gtk_tree_path_free);
6666-+ g_list_free_full (list, (GDestroyNotify) gtk_tree_row_reference_free);
6767-6868- g_signal_handlers_unblock_by_func (self->priv->browser, "view-selection-changed", self);
6969-7070---
7171-cgit v0.10.1
7272-
···8282 # Antlr (optional) allows the Java `gjdoc' tool to be built. We want a
8383 # binary distribution here to allow the whole chain to be bootstrapped.
8484 javaAntlr = fetchurl {
8585- url = http://www.antlr.org/download/antlr-3.1.3.jar;
8686- sha256 = "1f41j0y4kjydl71lqlvr73yagrs2jsg1fjymzjz66mjy7al5lh09";
8585+ url = http://www.antlr.org/download/antlr-4.4-complete.jar;
8686+ sha256 = "02lda2imivsvsis8rnzmbrbp8rh1kb8vmq4i67pqhkwz7lf8y6dz";
8787 };
88888989 xlibs = [
···11+{ stdenv, fetchurl, qt }:
22+33+stdenv.mkDerivation rec {
44+ pname = "qscintilla";
55+ version = "2.8.3";
66+77+ name = "${pname}-${version}";
88+99+ src = fetchurl {
1010+ url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-2.8.3/${name}.tar.gz";
1111+ sha256 = "fb94e6d61c3ccd4bf167d5f092629e619f7069d42207469458998b761a7cf505";
1212+ };
1313+1414+ buildInputs = [ qt ];
1515+1616+ preConfigure = ''
1717+ cd Qt4Qt5
1818+ sed -i -e "s,\$\$\\[QT_INSTALL_LIBS\\],$out/libs," \
1919+ -e "s,\$\$\\[QT_INSTALL_HEADERS\\],$out/include/," \
2020+ -e "s,\$\$\\[QT_INSTALL_TRANSLATIONS\\],$out/share/qt/translations," \
2121+ -e "s,\$\$\\[QT_INSTALL_DATA\\],$out/share/qt," \
2222+ qscintilla.pro
2323+ qmake qscintilla.pro
2424+ '';
2525+2626+ # TODO PyQt Support.
2727+2828+ meta = {
2929+ description = "A Qt port of the Scintilla text editing library";
3030+ longDescription = ''
3131+ QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor
3232+ control.
3333+3434+ As well as features found in standard text editing components,
3535+ QScintilla includes features especially useful when editing and
3636+ debugging source code. These include support for syntax styling,
3737+ error indicators, code completion and call tips. The selection
3838+ margin can contain markers like those used in debuggers to
3939+ indicate breakpoints and the current line. Styling choices are
4040+ more open than with many editors, allowing the use of
4141+ proportional fonts, bold and italics, multiple foreground and
4242+ background colours and multiple fonts.
4343+ '';
4444+ homepage = http://www.riverbankcomputing.com/software/qscintilla/intro;
4545+ license = stdenv.lib.licenses.gpl2; # and gpl3 and commercial
4646+ };
4747+}
···1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616-->
1717-<sdk:sdk-addon xmlns:sdk="http://schemas.android.com/sdk/android/addon/5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1717+<sdk:sdk-addon xmlns:sdk="http://schemas.android.com/sdk/android/addon/7" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
18181919- <sdk:license id="android-sdk-license" type="text">Terms and Conditions
2020-2121-This is the Android Software Development Kit License Agreement.
1919+ <sdk:license id="android-sdk-license" type="text">To get started with the Android SDK, you must agree to the following terms and conditions.
22202121+This is the Android SDK License Agreement (the "License Agreement").
232224231. Introduction
25242626-2727-1.1 The Android Software Development Kit (referred to in this License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
2525+1.1 The Android SDK (referred to in the License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and SDK library files and tools , if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
282629271.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
302831291.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
32303131+2. Accepting the License Agreement
33323434-2. Accepting this License Agreement
3333+2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.
35343636-3737-2.1 In order to use the SDK, you must first agree to this License Agreement. You may not use the SDK if you do not accept this License Agreement.
3838-3939-2.2 By clicking to accept, you hereby agree to the terms of this License Agreement.
3535+2.2 By clicking to accept and/or using the SDK, you hereby agree to the terms of the License Agreement.
403641372.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries including the country in which you are resident or from which you use the SDK.
42384343-2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
4444-3939+2.4 If you will use the SDK internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
454046413. SDK License from Google
47424848-4949-3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable and non-exclusive license to use the SDK solely to develop applications to run on the Android platform.
4343+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the SDK, personally or internally within your company or organization, solely to develop and distribute applications to run on the Android platform.
504451453.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
52465353-3.3 You may not use the SDK for any purpose not expressly permitted by this License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK.
4747+3.3 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK.
544855493.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the SDK.
56505757-3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.
5151+3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
585259533.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.
60546161-3.7 Nothing in this License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
5555+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
625663573.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.
6464-655866594. Use of the SDK by You
67606161+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
68626969-4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
6363+4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
70647171-4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) this License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
6565+4.3 You agree that if you use the SDK to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
72667373-4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.
7474-7575-4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.
6767+4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
766877694.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
78707979-4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
8080-7171+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
817282735. Your Developer Credentials
8383-847485755.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
86768787-88776. Privacy and Information
8989-907891796.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
92809393-6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.
9494-8181+6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
958296837. Third Party Applications
9797-988499857.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
10086101877.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
10288103103-7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.
104104-105105-106106-8. Using Android APIs
8989+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
107909191+8. Using Google APIs
10892109109-8.1 Google Data APIs
9393+8.1 Google APIs
11094111958.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
11296113978.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
114989999+9. Terminating the License Agreement
115100116116-9. Terminating this License Agreement
101101+9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.
117102103103+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
118104119119-9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.
105105+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
120106121121-9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
107107+9.4 The License Agreement will automatically terminate without notice or other action when Google ceases to provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service.
122108123123-9.3 Google may at any time, terminate this License Agreement with you if:
124124-(A) you have breached any provision of this License Agreement; or
125125-(B) Google is required to do so by law; or
126126-(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or
127127-(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
109109+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the SDK, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
128110129129-9.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.
130130-131131-132132-10. DISCLAIMER OF WARRANTIES
133133-111111+10. DISCLAIMERS
13411213511310.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
136114137137-10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
115115+10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE SDK MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
13811613911710.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
140118141141-14211911. LIMITATION OF LIABILITY
143143-14412014512111.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
146122147147-14812312. Indemnification
149124150150-151151-12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.
152152-125125+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
15312615412713. Changes to the License Agreement
155128156156-15712913.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.
158158-15913016013114. General Legal Terms
161132162162-163163-14.1 This License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
133133+14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
164134165165-14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
135135+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
166136167167-14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.
137137+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
168138169169-14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.
139139+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
17014017114114.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
172142173173-14.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.
143143+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
174144175175-14.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
145145+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
176146177177-November 13, 2012
147147+June 2014.
178148 </sdk:license>
179149180180- <sdk:license id="android-googletv-license" type="text">Terms and Conditions
181150182182-This is the Google TV Add-on for the Android Software Development Kit License Agreement.
151151+ <sdk:license id="android-sdk-preview-license" type="text">To get started with the Android SDK Preview, you must agree to the following terms and conditions.
152152+As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. The Android SDK Preview is not a stable release, and may contain errors and defects that can result in serious damage to your computer systems, devices and data.
153153+154154+This is the Android SDK Preview License Agreement (the "License Agreement").
1831551841561. Introduction
185157186186-1.1 The Google TV Add-on for the Android Software Development Kit (referred to in this License Agreement as the "Google TV Add-on" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the Google TV Add-on.
158158+1.1 The Android SDK Preview (referred to in the License Agreement as the “Preview” and specifically including the Android system files, packaged APIs, and Preview library files, if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the Preview.
187159188188-1.2 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
160160+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
189161190190-2. Accepting this License Agreement
162162+1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
191163192192-2.1 In order to use the Google TV Add-on, you must first agree to this License Agreement. You may not use the Google TV Add-on if you do not accept this License Agreement.
164164+2. Accepting the License Agreement
193165194194-2.2 You can accept this License Agreement by:
166166+2.1 In order to use the Preview, you must first agree to the License Agreement. You may not use the Preview if you do not accept the License Agreement.
195167196196-(A) clicking to accept or agree to this License Agreement, where this option is made available to you; or
168168+2.2 By clicking to accept and/or using the Preview, you hereby agree to the terms of the License Agreement.
197169198198-(B) by actually using the Google TV Add-on. In this case, you agree that use of the Google TV Add-on constitutes acceptance of the License Agreement from that point onwards.
170170+2.3 You may not use the Preview and may not accept the License Agreement if you are a person barred from receiving the Preview under the laws of the United States or other countries including the country in which you are resident or from which you use the Preview.
199171200200-2.3 You may not use the Google TV Add-on and may not accept the Licensing Agreement if you are a person barred from receiving the Google TV Add-on under the laws of the United States or other countries including the country in which you are resident or from which you use the Google TV Add-on.
172172+2.4 If you will use the Preview internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the Preview on behalf of your employer or other entity.
201173202202-2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the Licensing Agreement or use the Google TV Add-on on behalf of your employer or other entity.
174174+3. Preview License from Google
203175204204-3. Google TV Add-on License from Google
176176+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the Preview, personally or internally within your company or organization, solely to develop applications to run on the Android platform.
205177206206-3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non- assignable and non-exclusive license to use the Google TV Add-on solely to develop applications to run on the Google TV platform.
178178+3.2 You agree that Google or third parties owns all legal right, title and interest in and to the Preview, including any Intellectual Property Rights that subsist in the Preview. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
207179208208-3.2 You agree that Google or third parties own all legal right, title and interest in and to the Google TV Add-on, including any Intellectual Property Rights that subsist in the Google TV Add-on. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
180180+3.3 You may not use the Preview for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Preview or any part of the Preview; or (b) load any part of the Preview onto a mobile handset or any other hardware device except a personal computer, combine any part of the Preview with other software, or distribute any software or device incorporating a part of the Preview.
209181210210-3.3 Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Google TV Add-on or any part of the Google TV Add-on. Except to the extent required by applicable third party licenses, you may not load any part of the Google TV Add-on onto a mobile handset, television, or any other hardware device except a personal computer, combine any part of the Google TV Add-on with other software, or distribute any software or device incorporating a part of the Google TV Add-on.
182182+3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the Preview.
211183212212-3.4 Use, reproduction and distribution of components of the Google TV Add-on licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.
184184+3.5 Use, reproduction and distribution of components of the Preview licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
185185+186186+3.6 You agree that the form and nature of the Preview that Google provides may change without prior notice to you and that future versions of the Preview may be incompatible with applications developed on previous versions of the Preview. You agree that Google may stop (permanently or temporarily) providing the Preview (or any features within the Preview) to you or to users generally at Google's sole discretion, without prior notice to you.
213187214214-3.5 You agree that the form and nature of the Google TV Add-on that Google provides may change without prior notice to you and that future versions of the Google TV Add-on may be incompatible with applications developed on previous versions of the Google TV Add-on. You agree that Google may stop (permanently or temporarily) providing the Google TV Add-on (or any features within the Google TV Add-on) to you or to users generally at Google's sole discretion, without prior notice to you.
188188+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
215189216216-3.6 Nothing in this License Agreement gives you a right to use any of Google's or it’s licensors’ trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
190190+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Preview.
217191218218-3.7 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Google TV Add-on.
192192+4. Use of the Preview by You
219193220220-4. Use of the Google TV Add-on by You
194194+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the Preview, including any intellectual property rights that subsist in those applications.
221195222222-4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the Google TV Add-on, including any intellectual property rights that subsist in those applications.
196196+4.2 You agree to use the Preview and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
223197224224-4.2 You agree to use the Google TV Add-on and write applications only for purposes that are permitted by (a) this License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
198198+4.3 You agree that if you use the Preview to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
225199226226-4.3 You agree that if you use the Google TV Add-on to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, your must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you explicit permission to do so.
200200+4.4 You agree that you will not engage in any activity with the Preview, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
227201228228-4.4 You agree that you will not engage in any activity with the Google TV Add-on, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google, Multichannel Video Program Distributors or any mobile communications carrier.
202202+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
229203230230-4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through the Google TV platform and/or applications for the Google TV platform, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
204204+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
231205232232-4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
206206+4.7 The Preview is in development, and your testing and feedback are an important part of the development process. By using the Preview, you acknowledge that implementation of some features are still under development and that you should not rely on the Preview having the full functionality of a stable release. You agree not to publicly distribute or ship any application using this Preview as this Preview will no longer be supported after the official Android SDK is released.
2332072342085. Your Developer Credentials
235209···2372112382126. Privacy and Information
239213240240-6.1 In order to continually innovate and improve the Google TV Add-on, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Google TV Add-on are being used and how they are being used. Before any of this information is collected, the Google TV Add-on will notify you and seek your consent. If you withhold consent, the information will not be collected.
214214+6.1 In order to continually innovate and improve the Preview, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Preview are being used and how they are being used. Before any of this information is collected, the Preview will notify you and seek your consent. If you withhold consent, the information will not be collected.
241215242242-6.2 The data collected is examined in the aggregate to improve the Google TV Add-on and is maintained in accordance with Google's Privacy Policy.
216216+6.2 The data collected is examined in the aggregate to improve the Preview and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
243217244244-7. Third Party Applications for the Google TV Platform
218218+7. Third Party Applications
245219246246-7.1 If you use the Google TV Add-on to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
220220+7.1 If you use the Preview to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
2472212482227.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
249223250250-7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.
251251-252252-8. Using Google TV APIs
253253-254254-8.1 If you use any Google TV API to retrieve data from Google, you acknowledge that the data (“Google TV API Content”) may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service. Some portions of the Google TV API Content are licensed to Google by third parties, including but not limited to Tribune Media Services
255255-256256-8.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
257257-258258-8.3 Except as explicitly permitted in Section 3 (Google TV Add-on License from Google), you must:
259259-260260-(a) not modify nor format the Google TV API Content except to the extent reasonably and technically necessary to optimize the display such Google TV API Content in your application;
261261-262262-(b) not edit the Google TV API Content in a manner that renders the Google TV API Content inaccurate of alters its inherent meaning (provided that displaying excerpts will not violate the foregoing); or
224224+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
263225264264-(c) not create any commercial audience measurement tool or service using the Google TV API Content
226226+8. Using Google APIs
265227266266-9. Terminating this License Agreement
228228+8.1 Google APIs
267229268268-9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.
230230+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
269231270270-9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the Google TV Add-on and any relevant developer credentials.
232232+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
271233272272-9.3 Google may at any time, terminate this License Agreement with you if:
234234+9. Terminating the License Agreement
273235274274-(A) you have breached any provision of this License Agreement; or
236236+9.1 the License Agreement will continue to apply until terminated by either you or Google as set out below.
275237276276-(B) Google is required to do so by law; or
238238+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the Preview and any relevant developer credentials.
277239278278-(C) the partner with whom Google offered certain parts of Google TV Add-on (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the Google TV Add-on to you; or
240240+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
279241280280-(D) Google decides to no longer providing the Google TV Add-on or certain parts of the Google TV Add-on to users in the country in which you are resident or from which you use the service, or the provision of the Google TV Add-on or certain Google TV Add-on services to you by Google is, in Google's sole discretion, no longer commercially viable.
242242+9.4 The License Agreement will automatically terminate without notice or other action upon the earlier of:
243243+(A) when Google ceases to provide the Preview or certain parts of the Preview to users in the country in which you are resident or from which you use the service; and
244244+(B) Google issues a final release version of the Android SDK.
281245282282-9.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.
246246+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the Preview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
283247284284-10. DISCLAIMER OF WARRANTIES
248248+10. DISCLAIMERS
285249286286-10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GOOGLE TV ADD-ON IS AT YOUR SOLE RISK AND THAT THE GOOGLE TV ADD-ON IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
250250+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR SOLE RISK AND THAT THE PREVIEW IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
287251288288-10.2 YOUR USE OF THE GOOGLE TV ADD-ON AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE GOOGLE TV ADD-ON IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
252252+10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
28925329025410.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29125529225611. LIMITATION OF LIABILITY
293257294294-11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
258258+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
29525929626012. Indemnification
297261298298-12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the Google TV Add-on, (b) any application you develop on the Google TV Add-on that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.
262262+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the Preview, (b) any application you develop on the Preview that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
29926330026413. Changes to the License Agreement
301265302302-13.1 Google may make changes to the License Agreement as it distributes new versions of the Google TV Add-on.
266266+13.1 Google may make changes to the License Agreement as it distributes new versions of the Preview. When these changes are made, Google will make a new version of the License Agreement available on the website where the Preview is made available.
30326730426814. General Legal Terms
305269306306-14.1 This License Agreement constitute the whole legal agreement between you and Google and govern your use of the Google TV Add-on (excluding any services which Google may provide to you under a separate written agreement), and completely replace any prior agreements between you and Google in relation to the Google TV Add-on.
270270+14.1 the License Agreement constitutes the whole legal agreement between you and Google and governs your use of the Preview (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the Preview.
307271308308-14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
272272+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
309273310310-14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.
274274+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
311275312312-14.4 You acknowledge and agree that Google’s API data licensors and each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.
313313-314314-14.5 EXPORT RESTRICTIONS. THE GOOGLE TV ADD-ON IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE GOOGLE TV ADD-ON. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
276276+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
315277316316-14.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.
278278+14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
317279318318-14.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
280280+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
319281282282+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
320283321321-August 15, 2011
284284+June 2014.
322285 </sdk:license>
323286324324- <sdk:license id="google-gdk-license" type="text">This is an early Sneak Peek of the GDK that is subject to change. Please stay tuned for the full Developer Preview coming soon.
325325-326326-Terms and Conditions
287287+ <sdk:license id="android-googletv-license" type="text">Terms and Conditions
327288328328-This is the Glass Development Kit License Agreement.
289289+This is the Google TV Add-on for the Android Software Development Kit License Agreement.
3292903302911. Introduction
331292332332-1.1 The Glass Development Kit (referred to in this License Agreement as the "GDK" and specifically including the Android system files, packaged APIs, and GDK library files, if and when they are made available) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the GDK.
333333-334334-1.2 "Glass" means Glass devices and the Glass software stack for use on Glass devices.
335335-336336-337337-1.3 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
293293+1.1 The Google TV Add-on for the Android Software Development Kit (referred to in this License Agreement as the "Google TV Add-on" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the Google TV Add-on.
338294339339-1.4 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
295295+1.2 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
3402963412972. Accepting this License Agreement
342298343343-2.1 In order to use the GDK, you must first agree to this License Agreement. You may not use the GDK if you do not accept this License Agreement.
299299+2.1 In order to use the Google TV Add-on, you must first agree to this License Agreement. You may not use the Google TV Add-on if you do not accept this License Agreement.
344300345345-2.2 By clicking to accept, you hereby agree to the terms of this License Agreement.
346346-347347-2.3 You may not use the GDK and may not accept the License Agreement if you are a person barred from receiving the GDK under the laws of the United States or other countries including the country in which you are resident or from which you use the GDK.
301301+2.2 You can accept this License Agreement by:
348302349349-2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the GDK on behalf of your employer or other entity.
303303+(A) clicking to accept or agree to this License Agreement, where this option is made available to you; or
350304351351-3. GDK License from Google
305305+(B) by actually using the Google TV Add-on. In this case, you agree that use of the Google TV Add-on constitutes acceptance of the License Agreement from that point onwards.
352306353353-3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable and non-exclusive license to use the GDK solely to develop applications to run on the Glass platform for Glass devices.
307307+2.3 You may not use the Google TV Add-on and may not accept the Licensing Agreement if you are a person barred from receiving the Google TV Add-on under the laws of the United States or other countries including the country in which you are resident or from which you use the Google TV Add-on.
354308355355-3.2 You agree that Google or third parties own all legal right, title and interest in and to the GDK, including any Intellectual Property Rights that subsist in the GDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
309309+2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the Licensing Agreement or use the Google TV Add-on on behalf of your employer or other entity.
356310357357-3.3 You may not use the GDK for any purpose not expressly permitted by this License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the GDK or any part of the GDK; or (b) load any part of the GDK onto a mobile handset or wearable computing device or any other hardware device except a Glass device personal computer, combine any part of the GDK with other software, or distribute any software or device incorporating a part of the GDK.
311311+3. Google TV Add-on License from Google
358312359359-3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Glass, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the GDK.
313313+3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non- assignable and non-exclusive license to use the Google TV Add-on solely to develop applications to run on the Google TV platform.
360314361361-3.5 Use, reproduction and distribution of components of the GDK licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.
315315+3.2 You agree that Google or third parties own all legal right, title and interest in and to the Google TV Add-on, including any Intellectual Property Rights that subsist in the Google TV Add-on. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
362316363363-3.6 You agree that the form and nature of the GDK that Google provides may change without prior notice to you and that future versions of the GDK may be incompatible with applications developed on previous versions of the GDK. You agree that Google may stop (permanently or temporarily) providing the GDK (or any features within the GDK) to you or to users generally at Google's sole discretion, without prior notice to you.
317317+3.3 Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Google TV Add-on or any part of the Google TV Add-on. Except to the extent required by applicable third party licenses, you may not load any part of the Google TV Add-on onto a mobile handset, television, or any other hardware device except a personal computer, combine any part of the Google TV Add-on with other software, or distribute any software or device incorporating a part of the Google TV Add-on.
364318365365-3.7 Nothing in this License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
319319+3.4 Use, reproduction and distribution of components of the Google TV Add-on licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.
366320367367-3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the GDK.
321321+3.5 You agree that the form and nature of the Google TV Add-on that Google provides may change without prior notice to you and that future versions of the Google TV Add-on may be incompatible with applications developed on previous versions of the Google TV Add-on. You agree that Google may stop (permanently or temporarily) providing the Google TV Add-on (or any features within the Google TV Add-on) to you or to users generally at Google's sole discretion, without prior notice to you.
368322323323+3.6 Nothing in this License Agreement gives you a right to use any of Google's or it’s licensors’ trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
369324370370-3.9 Your use of any Android system files, packaged APIs, or other components of the GDK which are part of the Android Software Development Kit is subject to the terms of the Android Software Development Kit License Agreement located at http://developer.android.com/sdk/terms.html. These terms are hereby incorporated by reference into this License Agreement.
325325+3.7 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Google TV Add-on.
371326372372-4. Use of the GDK by You
327327+4. Use of the Google TV Add-on by You
373328374374-4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the GDK, including any intellectual property rights that subsist in those applications.
329329+4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the Google TV Add-on, including any intellectual property rights that subsist in those applications.
375330376376-4.2 You agree to use the GDK and write applications only for purposes that are permitted by (a) this License Agreement, (b) the Glass Platform Developer Policies (located at https://developers.google.com/glass/policies, and hereby incorporated into this License Agreement by reference), and (c) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
331331+4.2 You agree to use the Google TV Add-on and write applications only for purposes that are permitted by (a) this License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
377332378378-4.3 You agree that if you use the GDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.
333333+4.3 You agree that if you use the Google TV Add-on to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, your must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you explicit permission to do so.
379334380380-4.4 You agree that you will not engage in any activity with the GDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google.
335335+4.4 You agree that you will not engage in any activity with the Google TV Add-on, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google, Multichannel Video Program Distributors or any mobile communications carrier.
381336382382-4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Glass and/or applications for Glass, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
337337+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through the Google TV platform and/or applications for the Google TV platform, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
3833383843394.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
385340386386-387387-4.7 The GDK is in development, and your testing and feedback are an important part of the development process. By using the GDK, you acknowledge that implementation of some features are still under development and that you should not rely on the GDK, Glass devices, Glass system software, Google Mirror API, or Glass services having the full functionality of a stable release.
388388-3893415. Your Developer Credentials
3903423913435.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
3923443933456. Privacy and Information
394346347347+6.1 In order to continually innovate and improve the Google TV Add-on, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Google TV Add-on are being used and how they are being used. Before any of this information is collected, the Google TV Add-on will notify you and seek your consent. If you withhold consent, the information will not be collected.
395348396396-6.1 In order to continually innovate and improve the GDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the GDK are being used and how they are being used. Before any of this information is collected, the GDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
349349+6.2 The data collected is examined in the aggregate to improve the Google TV Add-on and is maintained in accordance with Google's Privacy Policy.
397350398398-6.2 The data collected is examined in the aggregate to improve the GDK and is maintained in accordance with Google's Privacy Policy.
399399-400400-7. Third Party Applications
351351+7. Third Party Applications for the Google TV Platform
401352402402-7.1 If you use the GDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
353353+7.1 If you use the Google TV Add-on to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
4033544043557.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
4053564063577.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.
407358408408-8. Using Google APIs
359359+8. Using Google TV APIs
409360410410-8.1 Google APIs
361361+8.1 If you use any Google TV API to retrieve data from Google, you acknowledge that the data (“Google TV API Content”) may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service. Some portions of the Google TV API Content are licensed to Google by third parties, including but not limited to Tribune Media Services
411362412412-8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
363363+8.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
413364414414-8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
365365+8.3 Except as explicitly permitted in Section 3 (Google TV Add-on License from Google), you must:
366366+367367+(a) not modify nor format the Google TV API Content except to the extent reasonably and technically necessary to optimize the display such Google TV API Content in your application;
368368+369369+(b) not edit the Google TV API Content in a manner that renders the Google TV API Content inaccurate of alters its inherent meaning (provided that displaying excerpts will not violate the foregoing); or
370370+371371+(c) not create any commercial audience measurement tool or service using the Google TV API Content
4153724163739. Terminating this License Agreement
4173744183759.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.
419376420420-9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the GDK and any relevant developer credentials.
377377+9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the Google TV Add-on and any relevant developer credentials.
4213784223799.3 Google may at any time, terminate this License Agreement with you if:
380380+423381(A) you have breached any provision of this License Agreement; or
382382+424383(B) Google is required to do so by law; or
425425-(C) the partner with whom Google offered certain parts of GDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the GDK to you; or
426426-(D) Google decides to no longer provide the GDK or certain parts of the GDK to users in the country in which you are resident or from which you use the service, or the provision of the GDK or certain GDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
384384+385385+(C) the partner with whom Google offered certain parts of Google TV Add-on (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the Google TV Add-on to you; or
386386+387387+(D) Google decides to no longer providing the Google TV Add-on or certain parts of the Google TV Add-on to users in the country in which you are resident or from which you use the service, or the provision of the Google TV Add-on or certain Google TV Add-on services to you by Google is, in Google's sole discretion, no longer commercially viable.
4273884283899.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.
42939043039110. DISCLAIMER OF WARRANTIES
431392432432-10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GDK IS AT YOUR SOLE RISK AND THAT THE GDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
393393+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GOOGLE TV ADD-ON IS AT YOUR SOLE RISK AND THAT THE GOOGLE TV ADD-ON IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
433394434434-10.2 YOUR USE OF THE GDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE GDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
395395+10.2 YOUR USE OF THE GOOGLE TV ADD-ON AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE GOOGLE TV ADD-ON IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
43539643639710.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
43739843839911. LIMITATION OF LIABILITY
439400440440-11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
401401+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
44140244240312. Indemnification
443404444444-12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the GDK, (b) any application you develop on the GDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.
405405+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the Google TV Add-on, (b) any application you develop on the Google TV Add-on that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.
44540644640713. Changes to the License Agreement
447408448448-13.1 Google may make changes to the License Agreement as it distributes new versions of the GDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the GDK is made available.
409409+13.1 Google may make changes to the License Agreement as it distributes new versions of the Google TV Add-on.
44941045041114. General Legal Terms
451412452452-14.1 This License Agreement constitutes the whole legal agreement between you and Google and governs your use of the GDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the GDK.
413413+14.1 This License Agreement constitute the whole legal agreement between you and Google and govern your use of the Google TV Add-on (excluding any services which Google may provide to you under a separate written agreement), and completely replace any prior agreements between you and Google in relation to the Google TV Add-on.
45341445441514.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
45541645641714.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.
457418458458-14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.
419419+14.4 You acknowledge and agree that Google’s API data licensors and each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.
459420460460-14.5 EXPORT RESTRICTIONS. THE GDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE GDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
421421+14.5 EXPORT RESTRICTIONS. THE GOOGLE TV ADD-ON IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE GOOGLE TV ADD-ON. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
46142246242314.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.
46342446442514.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
465426466466-November 19, 2013
427427+428428+August 15, 2011
467429 </sdk:license>
468430469431 <!-- ADD-ONS ....................... -->
···479441 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
480442 <sdk:uses-license ref="android-sdk-license"/>
481443 <sdk:archives>
482482- <sdk:archive os="any">
444444+ <sdk:archive>
483445 <sdk:size>34908058</sdk:size>
484446 <sdk:checksum type="sha1">1f92abf3a76be66ae8032257fc7620acbd2b2e3a</sdk:checksum>
485447 <sdk:url>google_apis-3-r03.zip</sdk:url>
···506468 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
507469 <sdk:uses-license ref="android-sdk-license"/>
508470 <sdk:archives>
509509- <sdk:archive os="any">
471471+ <sdk:archive>
510472 <sdk:size>42435735</sdk:size>
511473 <sdk:checksum type="sha1">9b6e86d8568558de4d606a7debc4f6049608dbd0</sdk:checksum>
512474 <sdk:url>google_apis-4_r02.zip</sdk:url>
···534496 <sdk:uses-license ref="android-sdk-license"/>
535497 <sdk:obsolete/>
536498 <sdk:archives>
537537- <sdk:archive os="any">
499499+ <sdk:archive>
538500 <sdk:size>49123776</sdk:size>
539501 <sdk:checksum type="sha1">46eaeb56b645ee7ffa24ede8fa17f3df70db0503</sdk:checksum>
540502 <sdk:url>google_apis-5_r01.zip</sdk:url>
···562524 <sdk:obsolete/>
563525 <sdk:uses-license ref="android-sdk-license"/>
564526 <sdk:archives>
565565- <sdk:archive os="any">
527527+ <sdk:archive>
566528 <sdk:size>53382941</sdk:size>
567529 <sdk:checksum type="sha1">5ff545d96e031e09580a6cf55713015c7d4936b2</sdk:checksum>
568530 <sdk:url>google_apis-6_r01.zip</sdk:url>
···589551 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
590552 <sdk:uses-license ref="android-sdk-license"/>
591553 <sdk:archives>
592592- <sdk:archive os="any">
554554+ <sdk:archive>
593555 <sdk:size>53691339</sdk:size>
594556 <sdk:checksum type="sha1">2e7f91e0fe34fef7f58aeced973c6ae52361b5ac</sdk:checksum>
595557 <sdk:url>google_apis-7_r01.zip</sdk:url>
···616578 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
617579 <sdk:uses-license ref="android-sdk-license"/>
618580 <sdk:archives>
619619- <sdk:archive os="any">
581581+ <sdk:archive>
620582 <sdk:size>59505020</sdk:size>
621583 <sdk:checksum type="sha1">3079958e7ec87222cac1e6b27bc471b27bf2c352</sdk:checksum>
622584 <sdk:url>google_apis-8_r02.zip</sdk:url>
···643605 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
644606 <sdk:uses-license ref="android-sdk-license"/>
645607 <sdk:archives>
646646- <sdk:archive os="any">
608608+ <sdk:archive>
647609 <sdk:size>63401546</sdk:size>
648610 <sdk:checksum type="sha1">78664645a1e9accea4430814f8694291a7f1ea5d</sdk:checksum>
649611 <sdk:url>google_apis-9_r02.zip</sdk:url>
···671633 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
672634 <sdk:uses-license ref="android-sdk-license"/>
673635 <sdk:archives>
674674- <sdk:archive os="any">
636636+ <sdk:archive>
675637 <sdk:size>65781578</sdk:size>
676638 <sdk:checksum type="sha1">cc0711857c881fa7534f90cf8cc09b8fe985484d</sdk:checksum>
677639 <sdk:url>google_apis-10_r02.zip</sdk:url>
···698660 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
699661 <sdk:uses-license ref="android-sdk-license"/>
700662 <sdk:archives>
701701- <sdk:archive os="any">
663663+ <sdk:archive>
702664 <sdk:size>83477179</sdk:size>
703665 <sdk:checksum type="sha1">5eab5e81addee9f3576d456d205208314b5146a5</sdk:checksum>
704666 <sdk:url>google_apis-11_r01.zip</sdk:url>
···725687 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
726688 <sdk:uses-license ref="android-sdk-license"/>
727689 <sdk:archives>
728728- <sdk:archive os="any">
690690+ <sdk:archive>
729691 <sdk:size>86099835</sdk:size>
730692 <sdk:checksum type="sha1">e9999f4fa978812174dfeceec0721c793a636e5d</sdk:checksum>
731693 <sdk:url>google_apis-12_r01.zip</sdk:url>
···752714 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
753715 <sdk:uses-license ref="android-sdk-license"/>
754716 <sdk:archives>
755755- <sdk:archive os="any">
717717+ <sdk:archive>
756718 <sdk:size>88615525</sdk:size>
757719 <sdk:checksum type="sha1">3b153edd211c27dc736c893c658418a4f9041417</sdk:checksum>
758720 <sdk:url>google_apis-13_r01.zip</sdk:url>
···785747 </sdk:lib>
786748 </sdk:libs>
787749 <sdk:archives>
788788- <sdk:archive arch="any" os="any">
750750+ <sdk:archive>
789751 <sdk:size>106533714</sdk:size>
790752 <sdk:checksum type="sha1">f8eb4d96ad0492b4c0db2d7e4f1a1a3836664d39</sdk:checksum>
791753 <sdk:url>google_apis-14_r02.zip</sdk:url>
···814776 </sdk:lib>
815777 </sdk:libs>
816778 <sdk:archives>
817817- <sdk:archive arch="any" os="any">
779779+ <sdk:archive>
818780 <sdk:size>106612472</sdk:size>
819781 <sdk:checksum type="sha1">6757c12788da0ea00c2ab58e54cb438b9f2bcf66</sdk:checksum>
820782 <sdk:url>google_apis-15_r02.zip</sdk:url>
···844806 </sdk:lib>
845807 </sdk:libs>
846808 <sdk:archives>
847847- <sdk:archive arch="any" os="any">
809809+ <sdk:archive>
848810 <sdk:size>127278413</sdk:size>
849811 <sdk:checksum type="sha1">63467dd32f471e3e81e33e9772c22f33235aa3b3</sdk:checksum>
850812 <sdk:url>google_apis-16_r03.zip</sdk:url>
···874836 </sdk:lib>
875837 </sdk:libs>
876838 <sdk:archives>
877877- <sdk:archive arch="any" os="any">
839839+ <sdk:archive>
878840 <sdk:size>137156978</sdk:size>
879841 <sdk:checksum type="sha1">8246f61d24f0408c8e7bc352a1e522b7e2b619ba</sdk:checksum>
880842 <sdk:url>google_apis-17_r03.zip</sdk:url>
···904866 </sdk:lib>
905867 </sdk:libs>
906868 <sdk:archives>
907907- <sdk:archive arch="any" os="any">
869869+ <sdk:archive>
908870 <sdk:size>143149689</sdk:size>
909871 <sdk:checksum type="sha1">147bce09c1163edc17194f3db496ec1086fcf965</sdk:checksum>
910872 <sdk:url>google_apis-18_r03.zip</sdk:url>
···914876 </sdk:add-on>
915877916878 <sdk:add-on>
917917- <!-- Generated at Mon Oct 28 22:29:49 2013 from git_klp-release @ 892118 -->
879879+ <!-- Generated at Wed Jul 30 22:26:20 2014 from git_klp-sdk-release @ 1314097 -->
918880 <sdk:vendor-id>google</sdk:vendor-id>
919881 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
920882 <sdk:name-id>google_apis</sdk:name-id>
921921- <sdk:name-display>Google APIs</sdk:name-display>
883883+ <sdk:name-display>Google APIs (ARM System Image)</sdk:name-display>
922884 <sdk:description>Android + Google APIs</sdk:description>
923885 <sdk:api-level>19</sdk:api-level>
924924- <sdk:revision>1</sdk:revision>
886886+ <sdk:revision>7</sdk:revision>
925887 <sdk:libs>
926888 <sdk:lib>
927889 <sdk:name>com.google.android.maps</sdk:name>
···934896 </sdk:lib>
935897 </sdk:libs>
936898 <sdk:archives>
937937- <sdk:archive arch="any" os="any">
938938- <sdk:size>150689239</sdk:size>
939939- <sdk:checksum type="sha1">6c530a8318446e4da1e3ab7d2abd154bc493bc5a</sdk:checksum>
940940- <sdk:url>google_apis-19_r01.zip</sdk:url>
899899+ <sdk:archive>
900900+ <sdk:size>160661775</sdk:size>
901901+ <sdk:checksum type="sha1">150f5a3fec4f03313ca770b90126605619bd713c</sdk:checksum>
902902+ <sdk:url>google_apis-19_r07.zip</sdk:url>
941903 </sdk:archive>
942904 </sdk:archives>
943905 <sdk:uses-license ref="android-sdk-license"/>
944906 </sdk:add-on>
945945-946907947908 <!-- GOOGLE TV ADDONS ............. -->
948909···957918 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
958919 <sdk:uses-license ref="android-googletv-license"/>
959920 <sdk:archives>
960960- <sdk:archive os="linux">
921921+ <sdk:archive>
961922 <sdk:size>78266751</sdk:size>
962923 <sdk:checksum type="sha1">92128a12e7e8b0fb5bac59153d7779b717e7b840</sdk:checksum>
963924 <sdk:url>google_tv-12_r02.zip</sdk:url>
925925+ <sdk:host-os>linux</sdk:host-os>
964926 </sdk:archive>
965927 </sdk:archives>
966928 <sdk:libs/>
···977939 <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
978940 <sdk:uses-license ref="android-googletv-license"/>
979941 <sdk:archives>
980980- <sdk:archive os="any">
942942+ <sdk:archive>
981943 <sdk:size>87721879</sdk:size>
982944 <sdk:checksum type="sha1">b73f7c66011ac8180b44aa4e83b8d78c66ea9a09</sdk:checksum>
983945 <sdk:url>google_tv-13_r01.zip</sdk:url>
···986948 <sdk:libs/>
987949 </sdk:add-on>
988950989989-990990- <!-- GLASS ADDONS ............. -->
991991-992992- <sdk:add-on>
993993- <sdk:vendor-id>google</sdk:vendor-id>
994994- <sdk:vendor-display>Google Inc.</sdk:vendor-display>
995995- <sdk:name-id>google_gdk</sdk:name-id>
996996- <sdk:name-display>Glass Development Kit Sneak Peek</sdk:name-display>
997997- <sdk:api-level>15</sdk:api-level>
998998- <sdk:revision>01</sdk:revision>
999999- <sdk:description>Sneak peek of the Glass Development Kit</sdk:description>
10001000- <sdk:desc-url>https://developers.google.com/glass/gdk/</sdk:desc-url>
10011001- <sdk:uses-license ref="google-gdk-license"/>
10021002- <sdk:archives>
10031003- <sdk:archive os="any">
10041004- <sdk:size>281839</sdk:size>
10051005- <sdk:checksum type="sha1">a3c7317fb2fe8a0dfc06828a5aabc457372b82a7</sdk:checksum>
10061006- <sdk:url>https://dl-ssl.google.com/glass/xe11/google-gdk.zip</sdk:url>
10071007- </sdk:archive>
10081008- </sdk:archives>
10091009- <sdk:libs>
10101010- <sdk:lib>
10111011- <sdk:name>com.google.android.glass</sdk:name>
10121012- <sdk:description>APIs for Google Glass Development Kit Sneak Peek.</sdk:description>
10131013- </sdk:lib>
10141014- </sdk:libs>
10151015- </sdk:add-on>
10161016-10171017-1018951 <!-- EXTRAS VENDOR=ANDROID ........................ -->
10199521020953 <sdk:extra>
10211021- <!-- Generated at Wed Oct 30 14:52:38 2013 from git_klp-dev @ 894928 -->
10221022- <sdk:revision>19</sdk:revision>
954954+ <!-- Generated at Mon Jun 23 19:18:59 2014 from git_klp-modular-release @ 1246132 -->
955955+ <sdk:revision>
956956+ <sdk:major>20</sdk:major>
957957+ <sdk:minor>0</sdk:minor>
958958+ <sdk:micro>0</sdk:micro>
959959+ </sdk:revision>
1023960 <sdk:vendor-display>Android</sdk:vendor-display>
1024961 <sdk:vendor-id>android</sdk:vendor-id>
1025962 <sdk:name-display>Android Support Library</sdk:name-display>
1026963 <sdk:path>support</sdk:path>
1027964 <sdk:old-paths>compatibility</sdk:old-paths>
1028965 <sdk:archives>
10291029- <sdk:archive arch="any" os="any">
10301030- <sdk:size>4905998</sdk:size>
10311031- <sdk:checksum type="sha1">54b8661595856a08f032d41bb139f375a7609308</sdk:checksum>
10321032- <sdk:url>support_r19.zip</sdk:url>
966966+ <sdk:archive>
967967+ <sdk:size>5508097</sdk:size>
968968+ <sdk:checksum type="sha1">719c260dc3eb950712988f987daaf91afa9e36af</sdk:checksum>
969969+ <sdk:url>support_r20.zip</sdk:url>
1033970 </sdk:archive>
1034971 </sdk:archives>
1035972 <sdk:uses-license ref="android-sdk-license"/>
1036973 </sdk:extra>
10379741038975 <sdk:extra>
10391039- <!-- Generated from git_klp-dev @ 894928 -->
10401040- <sdk:revision>3</sdk:revision>
976976+ <!-- Generated from git_lmp-preview-release @ 1242878 -->
977977+ <sdk:revision>
978978+ <sdk:major>6</sdk:major>
979979+ </sdk:revision>
1041980 <sdk:vendor-display>Android</sdk:vendor-display>
1042981 <sdk:vendor-id>android</sdk:vendor-id>
1043982 <sdk:name-display>Android Support Repository</sdk:name-display>
1044983 <sdk:description>Local Maven repository for Support Libraries</sdk:description>
1045984 <sdk:path>m2repository</sdk:path>
1046985 <sdk:archives>
10471047- <sdk:archive arch="any" os="any">
10481048- <sdk:size>6282146</sdk:size>
10491049- <sdk:checksum type="sha1">db4650f817f1507211ec6186d2d9e72074e6df12</sdk:checksum>
10501050- <sdk:url>android_m2repository_r03.zip</sdk:url>
986986+ <sdk:archive>
987987+ <sdk:size>22271942</sdk:size>
988988+ <sdk:checksum type="sha1">d4874fd330f41a7c16de392ce917c2a3562dd620</sdk:checksum>
989989+ <sdk:url>android_m2repository_r06.zip</sdk:url>
1051990 </sdk:archive>
1052991 </sdk:archives>
10531053- <sdk:uses-license ref="android-sdk-license"/>
992992+ <sdk:uses-license ref="android-sdk-preview-license"/>
1054993 </sdk:extra>
10559941056995 <!-- EXTRAS VENDOR=GOOGLE ....................... -->
···1060999 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
10611000 <sdk:name-display>Google Repository</sdk:name-display>
10621001 <sdk:path>m2repository</sdk:path>
10631063- <sdk:revision>4</sdk:revision>
10021002+ <sdk:revision>
10031003+ <sdk:major>11</sdk:major>
10041004+ </sdk:revision>
10641005 <sdk:description>Local Maven repository for Google Libraries</sdk:description>
10651006 <sdk:uses-license ref="android-sdk-license"/>
10661007 <sdk:archives>
10671067- <sdk:archive os="any">
10681068- <sdk:size>3891592</sdk:size>
10691069- <sdk:checksum type="sha1">c418daafd203a8cb4899d49bd321da83b927586e</sdk:checksum>
10701070- <sdk:url>google_m2repository_r04.zip</sdk:url>
10081008+ <sdk:archive>
10091009+ <sdk:size>18832133</sdk:size>
10101010+ <sdk:checksum type="sha1">08b5114037d187cf3d4b44a25570149ef4f8ab3d</sdk:checksum>
10111011+ <sdk:url>google_m2repository_r11.zip</sdk:url>
10711012 </sdk:archive>
10721013 </sdk:archives>
10731014 </sdk:extra>
···10781019 <sdk:name-display>Google Play Licensing Library</sdk:name-display>
10791020 <sdk:path>play_licensing</sdk:path>
10801021 <sdk:old-paths>market_licensing</sdk:old-paths>
10811081- <sdk:revision>2</sdk:revision>
10221022+ <sdk:revision>
10231023+ <sdk:major>2</sdk:major>
10241024+ </sdk:revision>
10821025 <sdk:description>Google Play Licensing client library</sdk:description>
10831026 <sdk:desc-url>http://developer.android.com/guide/publishing/licensing.html</sdk:desc-url>
10841027 <sdk:archives>
10851085- <sdk:archive os="any">
10281028+ <sdk:archive>
10861029 <sdk:size>75109</sdk:size>
10871030 <sdk:checksum type="sha1">355e8dc304a92a5616db235af8ee7bd554356254</sdk:checksum>
10881031 <sdk:url>market_licensing-r02.zip</sdk:url>
···10971040 <sdk:name-display>Google Play APK Expansion Library</sdk:name-display>
10981041 <sdk:path>play_apk_expansion</sdk:path>
10991042 <sdk:old-paths>market_apk_expansion</sdk:old-paths>
11001100- <sdk:revision>3</sdk:revision>
10431043+ <sdk:revision>
10441044+ <sdk:major>3</sdk:major>
10451045+ </sdk:revision>
11011046 <sdk:description>Google Play APK Expansion library</sdk:description>
11021047 <sdk:desc-url>http://developer.android.com/guide/market/expansion-files.html</sdk:desc-url>
11031048 <sdk:archives>
11041104- <sdk:archive os="any">
10491049+ <sdk:archive>
11051050 <sdk:size>110201</sdk:size>
11061051 <sdk:checksum type="sha1">5305399dc1a56814e86b8459ce24871916f78b8c</sdk:checksum>
11071052 <sdk:url>market_apk_expansion-r03.zip</sdk:url>
···11151060 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
11161061 <sdk:name-display>Google Play services for Froyo</sdk:name-display>
11171062 <sdk:path>google_play_services_froyo</sdk:path>
11181118- <sdk:revision>12</sdk:revision>
10631063+ <sdk:revision>
10641064+ <sdk:major>12</sdk:major>
10651065+ </sdk:revision>
11191066 <sdk:description>Google Play services client library and sample code</sdk:description>
11201067 <sdk:desc-url>https://developers.google.com/android/google-play-services/index</sdk:desc-url>
11211068 <sdk:uses-license ref="android-sdk-license"/>
11221069 <sdk:archives>
11231123- <sdk:archive os="any">
10701070+ <sdk:archive>
11241071 <sdk:size>5265389</sdk:size>
11251072 <sdk:checksum type="sha1">92558dbc380bba3d55d0ec181167fb05ce7c79d9</sdk:checksum>
11261073 <sdk:url>google_play_services_3265130_r12.zip</sdk:url>
···11331080 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
11341081 <sdk:name-display>Google Play services</sdk:name-display>
11351082 <sdk:path>google_play_services</sdk:path>
11361136- <sdk:revision>13</sdk:revision>
10831083+ <sdk:revision>
10841084+ <sdk:major>19</sdk:major>
10851085+ </sdk:revision>
11371086 <sdk:description>Google Play services client library and sample code</sdk:description>
11381087 <sdk:desc-url>https://developers.google.com/android/google-play-services/index</sdk:desc-url>
11391088 <sdk:uses-license ref="android-sdk-license"/>
11401089 <sdk:archives>
11411141- <sdk:archive os="any">
11421142- <sdk:size>7958511</sdk:size>
11431143- <sdk:checksum type="sha1">1be94e8f767616e862f0088ab673e1980a6022c4</sdk:checksum>
11441144- <sdk:url>google_play_services_4030530_r13.zip</sdk:url>
10901090+ <sdk:archive>
10911091+ <sdk:size>13982276</sdk:size>
10921092+ <sdk:checksum type="sha1">847a8806dd3c43effc2afdd7b49fc6ba27f72d5d</sdk:checksum>
10931093+ <sdk:url>google_play_services_5089000_r19.zip</sdk:url>
11451094 </sdk:archive>
11461095 </sdk:archives>
11471096 </sdk:extra>
1148109711491098 <sdk:extra>
11501150- <!-- Generated at Thu Jul 18 16:46:04 PDT 2013 from git_master @ 745409 -->
11511099 <sdk:vendor-id>google</sdk:vendor-id>
11521100 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
11531153- <sdk:name-display>Google USB Driver</sdk:name-display>
11541154- <sdk:path>usb_driver</sdk:path>
11551155- <sdk:revision>8</sdk:revision>
11561156- <sdk:description>USB Driver for Windows, revision 8</sdk:description>
11571157- <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
11011101+ <sdk:name-display>Google Play services for Fit Preview</sdk:name-display>
11021102+ <sdk:path>google_play_services_fit_preview</sdk:path>
11031103+ <sdk:revision>
11041104+ <sdk:major>1</sdk:major>
11051105+ </sdk:revision>
11061106+ <sdk:description>Google Play services client library and sample code</sdk:description>
11071107+ <sdk:desc-url>https://developers.google.com/android/google-play-services/index</sdk:desc-url>
11081108+ <sdk:uses-license ref="android-sdk-preview-license"/>
11091109+ <sdk:archives>
11101110+ <sdk:archive>
11111111+ <sdk:size>15224769</sdk:size>
11121112+ <sdk:checksum type="sha1">34369ca796268ec7274bc49d659d9e8f042b55ae</sdk:checksum>
11131113+ <sdk:url>google_play_services_fit_preview_5208000_r01.zip</sdk:url>
11141114+ </sdk:archive>
11151115+ </sdk:archives>
11161116+ </sdk:extra>
11171117+11181118+ <sdk:extra>
11191119+ <!-- Generated at Tue Jun 10 11:38:56 2014 from git_master-release @ 1216520 -->
11201120+ <sdk:vendor-id>google</sdk:vendor-id>
11581121 <sdk:uses-license ref="android-sdk-license"/>
11221122+ <sdk:desc-url>http://developer.android.com/</sdk:desc-url>
11231123+ <sdk:path>usb_driver</sdk:path>
11241124+ <sdk:description>USB Driver for Windows, revision 10</sdk:description>
11251125+ <sdk:name-display>Google USB Driver</sdk:name-display>
11261126+ <sdk:vendor-display>Google Inc.</sdk:vendor-display>
11271127+ <sdk:revision>
11281128+ <sdk:major>10</sdk:major>
11291129+ </sdk:revision>
11591130 <sdk:archives>
11601160- <sdk:archive os="windows">
11611161- <sdk:size>8682230</sdk:size>
11621162- <sdk:checksum type="sha1">2b2f91098a984a865a70f0bd841a843fb54462fc</sdk:checksum>
11631163- <sdk:url>usb_driver_r08-windows.zip</sdk:url>
11311131+ <sdk:archive>
11321132+ <sdk:url>usb_driver_r10-windows.zip</sdk:url>
11331133+ <sdk:checksum type="sha1">a5f8280829f07bb3144a8d657ec7aa0128443a2c</sdk:checksum>
11341134+ <sdk:size>8682752</sdk:size>
11351135+ <sdk:host-os>windows</sdk:host-os>
11641136 </sdk:archive>
11651137 </sdk:archives>
11661138 </sdk:extra>
···11711143 <sdk:name-display>Google Play Billing Library</sdk:name-display>
11721144 <sdk:path>play_billing</sdk:path>
11731145 <sdk:old-paths>market_billing</sdk:old-paths>
11741174- <sdk:revision>5</sdk:revision>
11461146+ <sdk:revision>
11471147+ <sdk:major>5</sdk:major>
11481148+ </sdk:revision>
11751149 <sdk:description>Google Play Billing files and sample code</sdk:description>
11761150 <sdk:desc-url>http://developer.android.com/google/play/billing/index.html</sdk:desc-url>
11771151 <sdk:archives>
11781178- <sdk:archive os="any">
11521152+ <sdk:archive>
11791153 <sdk:size>436654</sdk:size>
11801154 <sdk:checksum type="sha1">bd2ac5ce7127070ac3229003eb69cfb806628ac9</sdk:checksum>
11811155 <sdk:url>play_billing_r05.zip</sdk:url>
···11891163 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
11901164 <sdk:name-display>Google AdMob Ads SDK</sdk:name-display>
11911165 <sdk:path>admob_ads_sdk</sdk:path>
11921192- <sdk:revision>11</sdk:revision>
11661166+ <sdk:revision>
11671167+ <sdk:major>11</sdk:major>
11681168+ </sdk:revision>
11931169 <sdk:description>AdMob Ads SDK</sdk:description>
11941170 <sdk:desc-url>https://developers.google.com/mobile-ads-sdk/docs/</sdk:desc-url>
11951171 <sdk:archives>
11961196- <sdk:archive os="any">
11721172+ <sdk:archive>
11971173 <sdk:size>704512</sdk:size>
11981174 <sdk:checksum type="sha1">0102859d9575baa0bf4fd5eb422af2ad0fe6cb82</sdk:checksum>
11991175 <sdk:url>https://dl-ssl.google.com/googleadmobadssdk/googleadmobadssdkandroid-6.4.1.zip</sdk:url>
12001176 </sdk:archive>
12011177 </sdk:archives>
12021178 <sdk:uses-license ref="android-sdk-license"/>
11791179+ <sdk:obsolete/>
12031180 </sdk:extra>
1204118112051182 <sdk:extra>
11831183+ <sdk:obsolete/>
12061184 <sdk:vendor-id>google</sdk:vendor-id>
12071185 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
12081186 <sdk:name-display>Google Analytics App Tracking SDK</sdk:name-display>
12091187 <sdk:path>analytics_sdk_v2</sdk:path>
12101210- <sdk:revision>3</sdk:revision>
11881188+ <sdk:revision>
11891189+ <sdk:major>3</sdk:major>
11901190+ </sdk:revision>
12111191 <sdk:description>Analytics App Tracking SDK</sdk:description>
12121192 <sdk:desc-url>http://developers.google.com/analytics/devguides/collection/</sdk:desc-url>
12131193 <sdk:archives>
12141214- <sdk:archive os="any">
11941194+ <sdk:archive>
12151195 <sdk:size>211432</sdk:size>
12161196 <sdk:checksum type="sha1">dc14026bf0ce78315cb5dd00552607de0894de83</sdk:checksum>
12171197 <sdk:url>https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_2.0beta5.zip</sdk:url>
···12251205 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
12261206 <sdk:name-display>Google Web Driver</sdk:name-display>
12271207 <sdk:path>webdriver</sdk:path>
12281228- <sdk:revision>2</sdk:revision>
12081208+ <sdk:revision>
12091209+ <sdk:major>2</sdk:major>
12101210+ </sdk:revision>
12291211 <sdk:description>WebDriver</sdk:description>
12301212 <sdk:desc-url>http://selenium.googlecode.com</sdk:desc-url>
12311213 <sdk:archives>
12321232- <sdk:archive os="any">
12141214+ <sdk:archive>
12331215 <sdk:size>4055193</sdk:size>
12341216 <sdk:checksum type="sha1">13f3a3b2670a5fc04a7342861644be9a01b07e38</sdk:checksum>
12351217 <sdk:url>webdriver_r02.zip</sdk:url>
···12411223 <sdk:extra>
12421224 <sdk:vendor-id>google</sdk:vendor-id>
12431225 <sdk:vendor-display>Google Inc.</sdk:vendor-display>
12441244- <sdk:name-display>[Deprecated] Google Cloud Messaging for Android Library</sdk:name-display>
12261226+ <sdk:name-display>Google Cloud Messaging for Android Library</sdk:name-display>
12451227 <sdk:path>gcm</sdk:path>
12461246- <sdk:revision>3</sdk:revision>
12281228+ <sdk:revision>
12291229+ <sdk:major>3</sdk:major>
12301230+ </sdk:revision>
12471231 <sdk:description>GCM library has been moved to Google Play Services (com.google.android.gms.gcm) and this standalone version is no longer supported</sdk:description>
12481232 <sdk:desc-url>https://developers.google.com/android/gcm/index</sdk:desc-url>
12491233 <sdk:archives>
12501250- <sdk:archive os="any">
12341234+ <sdk:archive>
12511235 <sdk:size>5901400</sdk:size>
12521236 <sdk:checksum type="sha1">ad066fd0dc7fc99d8aadac09c65a3c2519fbc7bf</sdk:checksum>
12531237 <sdk:url>gcm_r03.zip</sdk:url>
12541238 </sdk:archive>
12551239 </sdk:archives>
12561240 <sdk:uses-license ref="android-sdk-license"/>
12411241+ <sdk:obsolete/>
12571242 </sdk:extra>
12581243</sdk:sdk-addon>
···11-#!/bin/sh
22-33-# this shows a list of available xmls
44-android list sdk | grep 'Parse XML:' | cut -f8- -d\ # | xargs -n 1 curl -O
55-66-# we skip the intel addons, as they are Windows+osX only
77-# we skip the default sys-img (arm?) because it is empty
88-curl -o repository-8.xml https://dl-ssl.google.com/android/repository/repository-8.xml
99-curl -o addon.xml https://dl-ssl.google.com/android/repository/addon.xml
1010-curl -o sys-img-mips.xml https://dl-ssl.google.com/android/repository/sys-img/mips/sys-img.xml
1111-curl -o sys-img-x86.xml https://dl-ssl.google.com/android/repository/sys-img/x86/sys-img.xml
1212-1313-./generate-addons.sh
1414-./generate-platforms.sh
1515-./generate-sysimages.sh
+14
pkgs/development/mobile/androidenv/fetch.sh
···11+#!/bin/sh
22+33+# this shows a list of available xmls
44+android list sdk | grep 'Parse XML:' | cut -f8- -d\ # | xargs -n 1 curl -O
55+66+# we skip the intel addons, as they are Windows+osX only
77+# we skip the default sys-img (arm?) because it is empty
88+curl -o repository-10.xml https://dl-ssl.google.com/android/repository/repository-10.xml
99+curl -o addon.xml https://dl-ssl.google.com/android/repository/addon.xml
1010+curl -o sys-img.xml https://dl-ssl.google.com/android/repository/sys-img/android/sys-img.xml
1111+1212+./generate-addons.sh
1313+./generate-platforms.sh
1414+./generate-sysimages.sh
···11+<?xml version="1.0" encoding="UTF-8"?>
22+<!--
33+ * Copyright (C) 2009 The Android Open Source Project
44+ *
55+ * Licensed under the Apache License, version 2.0 (the "License");
66+ * you may not use this file except in compliance with the License.
77+ * You may obtain a copy of the License at
88+ *
99+ * http://www.apache.org/licenses/LICENSE-2.0
1010+ *
1111+ * Unless required by applicable law or agreed to in writing, software
1212+ * distributed under the License is distributed on an "AS IS" BASIS,
1313+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414+ * See the License for the specific language governing permissions and
1515+ * limitations under the License.
1616+-->
1717+<sdk:sdk-repository xmlns:sdk="http://schemas.android.com/sdk/android/repository/10" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1818+1919+ <sdk:license id="android-sdk-license" type="text">To get started with the Android SDK, you must agree to the following terms and conditions.
2020+2121+This is the Android SDK License Agreement (the "License Agreement").
2222+2323+1. Introduction
2424+2525+1.1 The Android SDK (referred to in the License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and SDK library files and tools , if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
2626+2727+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
2828+2929+1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
3030+3131+2. Accepting the License Agreement
3232+3333+2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.
3434+3535+2.2 By clicking to accept and/or using the SDK, you hereby agree to the terms of the License Agreement.
3636+3737+2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries including the country in which you are resident or from which you use the SDK.
3838+3939+2.4 If you will use the SDK internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
4040+4141+3. SDK License from Google
4242+4343+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the SDK, personally or internally within your company or organization, solely to develop and distribute applications to run on the Android platform.
4444+4545+3.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
4646+4747+3.3 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK.
4848+4949+3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the SDK.
5050+5151+3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
5252+5353+3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.
5454+5555+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
5656+5757+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.
5858+5959+4. Use of the SDK by You
6060+6161+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
6262+6363+4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
6464+6565+4.3 You agree that if you use the SDK to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
6666+6767+4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
6868+6969+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
7070+7171+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
7272+7373+5. Your Developer Credentials
7474+7575+5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
7676+7777+6. Privacy and Information
7878+7979+6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
8080+8181+6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
8282+8383+7. Third Party Applications
8484+8585+7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
8686+8787+7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
8888+8989+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
9090+9191+8. Using Google APIs
9292+9393+8.1 Google APIs
9494+9595+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
9696+9797+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
9898+9999+9. Terminating the License Agreement
100100+101101+9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.
102102+103103+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
104104+105105+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
106106+107107+9.4 The License Agreement will automatically terminate without notice or other action when Google ceases to provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service.
108108+109109+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the SDK, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
110110+111111+10. DISCLAIMERS
112112+113113+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
114114+115115+10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE SDK MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
116116+117117+10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
118118+119119+11. LIMITATION OF LIABILITY
120120+121121+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
122122+123123+12. Indemnification
124124+125125+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
126126+127127+13. Changes to the License Agreement
128128+129129+13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.
130130+131131+14. General Legal Terms
132132+133133+14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
134134+135135+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
136136+137137+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
138138+139139+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
140140+141141+14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
142142+143143+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
144144+145145+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
146146+147147+June 2014.
148148+ </sdk:license>
149149+150150+ <sdk:license id="android-sdk-preview-license" type="text">To get started with the Android SDK Preview, you must agree to the following terms and conditions.
151151+As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. The Android SDK Preview is not a stable release, and may contain errors and defects that can result in serious damage to your computer systems, devices and data.
152152+153153+This is the Android SDK Preview License Agreement (the "License Agreement").
154154+155155+1. Introduction
156156+157157+1.1 The Android SDK Preview (referred to in the License Agreement as the “Preview” and specifically including the Android system files, packaged APIs, and Preview library files, if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the Preview.
158158+159159+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
160160+161161+1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
162162+163163+2. Accepting the License Agreement
164164+165165+2.1 In order to use the Preview, you must first agree to the License Agreement. You may not use the Preview if you do not accept the License Agreement.
166166+167167+2.2 By clicking to accept and/or using the Preview, you hereby agree to the terms of the License Agreement.
168168+169169+2.3 You may not use the Preview and may not accept the License Agreement if you are a person barred from receiving the Preview under the laws of the United States or other countries including the country in which you are resident or from which you use the Preview.
170170+171171+2.4 If you will use the Preview internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the Preview on behalf of your employer or other entity.
172172+173173+3. Preview License from Google
174174+175175+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the Preview, personally or internally within your company or organization, solely to develop applications to run on the Android platform.
176176+177177+3.2 You agree that Google or third parties owns all legal right, title and interest in and to the Preview, including any Intellectual Property Rights that subsist in the Preview. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
178178+179179+3.3 You may not use the Preview for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Preview or any part of the Preview; or (b) load any part of the Preview onto a mobile handset or any other hardware device except a personal computer, combine any part of the Preview with other software, or distribute any software or device incorporating a part of the Preview.
180180+181181+3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the Preview.
182182+183183+3.5 Use, reproduction and distribution of components of the Preview licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
184184+185185+3.6 You agree that the form and nature of the Preview that Google provides may change without prior notice to you and that future versions of the Preview may be incompatible with applications developed on previous versions of the Preview. You agree that Google may stop (permanently or temporarily) providing the Preview (or any features within the Preview) to you or to users generally at Google's sole discretion, without prior notice to you.
186186+187187+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
188188+189189+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Preview.
190190+191191+4. Use of the Preview by You
192192+193193+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the Preview, including any intellectual property rights that subsist in those applications.
194194+195195+4.2 You agree to use the Preview and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
196196+197197+4.3 You agree that if you use the Preview to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
198198+199199+4.4 You agree that you will not engage in any activity with the Preview, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
200200+201201+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
202202+203203+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
204204+205205+4.7 The Preview is in development, and your testing and feedback are an important part of the development process. By using the Preview, you acknowledge that implementation of some features are still under development and that you should not rely on the Preview having the full functionality of a stable release. You agree not to publicly distribute or ship any application using this Preview as this Preview will no longer be supported after the official Android SDK is released.
206206+207207+5. Your Developer Credentials
208208+209209+5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
210210+211211+6. Privacy and Information
212212+213213+6.1 In order to continually innovate and improve the Preview, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Preview are being used and how they are being used. Before any of this information is collected, the Preview will notify you and seek your consent. If you withhold consent, the information will not be collected.
214214+215215+6.2 The data collected is examined in the aggregate to improve the Preview and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
216216+217217+7. Third Party Applications
218218+219219+7.1 If you use the Preview to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
220220+221221+7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
222222+223223+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
224224+225225+8. Using Google APIs
226226+227227+8.1 Google APIs
228228+229229+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
230230+231231+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
232232+233233+9. Terminating the License Agreement
234234+235235+9.1 the License Agreement will continue to apply until terminated by either you or Google as set out below.
236236+237237+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the Preview and any relevant developer credentials.
238238+239239+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
240240+241241+9.4 The License Agreement will automatically terminate without notice or other action upon the earlier of:
242242+(A) when Google ceases to provide the Preview or certain parts of the Preview to users in the country in which you are resident or from which you use the service; and
243243+(B) Google issues a final release version of the Android SDK.
244244+245245+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the Preview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
246246+247247+10. DISCLAIMERS
248248+249249+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR SOLE RISK AND THAT THE PREVIEW IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
250250+251251+10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
252252+253253+10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
254254+255255+11. LIMITATION OF LIABILITY
256256+257257+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
258258+259259+12. Indemnification
260260+261261+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the Preview, (b) any application you develop on the Preview that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
262262+263263+13. Changes to the License Agreement
264264+265265+13.1 Google may make changes to the License Agreement as it distributes new versions of the Preview. When these changes are made, Google will make a new version of the License Agreement available on the website where the Preview is made available.
266266+267267+14. General Legal Terms
268268+269269+14.1 the License Agreement constitutes the whole legal agreement between you and Google and governs your use of the Preview (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the Preview.
270270+271271+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
272272+273273+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
274274+275275+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
276276+277277+14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
278278+279279+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
280280+281281+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
282282+283283+June 2014.
284284+ </sdk:license>
285285+286286+ <!-- PLATFORMS ........................ -->
287287+288288+ <sdk:platform>
289289+ <sdk:version>1.1</sdk:version>
290290+ <sdk:api-level>2</sdk:api-level>
291291+ <sdk:revision>1</sdk:revision>
292292+ <sdk:description>Android SDK Platform 1.1_r1</sdk:description>
293293+ <sdk:desc-url>http://developer.android.com/sdk/android-1.1.html</sdk:desc-url>
294294+ <sdk:obsolete/>
295295+ <sdk:archives>
296296+ <sdk:archive>
297297+ <sdk:size>46828615</sdk:size>
298298+ <sdk:checksum type="sha1">a4060f29ed39fc929c302836d488998c53c3002e</sdk:checksum>
299299+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.1_r1-windows.zip</sdk:url>
300300+ <sdk:host-os>windows</sdk:host-os>
301301+ </sdk:archive>
302302+ <sdk:archive>
303303+ <sdk:size>45584305</sdk:size>
304304+ <sdk:checksum type="sha1">e21dbcff45b7356657449ebb3c7e941be2bb5ebe</sdk:checksum>
305305+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.1_r1-macosx.zip</sdk:url>
306306+ <sdk:host-os>macosx</sdk:host-os>
307307+ </sdk:archive>
308308+ <sdk:archive>
309309+ <sdk:size>45476658</sdk:size>
310310+ <sdk:checksum type="sha1">c054d25c9b4c6251fa49c2f9c54336998679d3fe</sdk:checksum>
311311+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.1_r1-linux.zip</sdk:url>
312312+ <sdk:host-os>linux</sdk:host-os>
313313+ </sdk:archive>
314314+ </sdk:archives>
315315+ <sdk:layoutlib>
316316+ <sdk:api>4</sdk:api>
317317+ </sdk:layoutlib>
318318+ <sdk:uses-license ref="android-sdk-license"/>
319319+ </sdk:platform>
320320+321321+ <!-- Generated manually from earlier versions -->
322322+323323+ <sdk:platform>
324324+ <sdk:version>1.5</sdk:version>
325325+ <sdk:api-level>3</sdk:api-level>
326326+ <sdk:revision>04</sdk:revision>
327327+ <sdk:min-tools-rev>
328328+ <sdk:major>6</sdk:major>
329329+ </sdk:min-tools-rev>
330330+ <sdk:description>Android SDK Platform 1.5_r3</sdk:description>
331331+ <sdk:desc-url>http://developer.android.com/sdk/android-1.5.html</sdk:desc-url>
332332+ <sdk:archives>
333333+ <sdk:archive>
334334+ <sdk:size>54624370</sdk:size>
335335+ <sdk:checksum type="sha1">5bb106d2e40d481edd337b0833093843e15fe49a</sdk:checksum>
336336+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.5_r04-windows.zip</sdk:url>
337337+ <sdk:host-os>windows</sdk:host-os>
338338+ </sdk:archive>
339339+ <sdk:archive>
340340+ <sdk:size>52440607</sdk:size>
341341+ <sdk:checksum type="sha1">d3a67c2369afa48b6c3c7624de5031c262018d1e</sdk:checksum>
342342+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.5_r04-macosx.zip</sdk:url>
343343+ <sdk:host-os>macosx</sdk:host-os>
344344+ </sdk:archive>
345345+ <sdk:archive>
346346+ <sdk:size>53348669</sdk:size>
347347+ <sdk:checksum type="sha1">5c134b7df5f4b8bd5b61ba93bdaebada8fa3468c</sdk:checksum>
348348+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.5_r04-linux.zip</sdk:url>
349349+ <sdk:host-os>linux</sdk:host-os>
350350+ </sdk:archive>
351351+ </sdk:archives>
352352+ <sdk:layoutlib>
353353+ <sdk:api>4</sdk:api>
354354+ </sdk:layoutlib>
355355+ <sdk:uses-license ref="android-sdk-license"/>
356356+ </sdk:platform>
357357+358358+ <sdk:platform>
359359+ <sdk:version>1.6</sdk:version>
360360+ <sdk:api-level>4</sdk:api-level>
361361+ <sdk:codename/>
362362+ <sdk:revision>03</sdk:revision>
363363+ <sdk:min-tools-rev>
364364+ <sdk:major>6</sdk:major>
365365+ </sdk:min-tools-rev>
366366+ <sdk:description>Android SDK Platform 1.6_r2</sdk:description>
367367+ <sdk:desc-url>http://developer.android.com/sdk/android-1.6.html</sdk:desc-url>
368368+ <sdk:archives>
369369+ <sdk:archive>
370370+ <sdk:size>63454485</sdk:size>
371371+ <sdk:checksum type="sha1">483ed088e45bbdf3444baaf9250c8b02e5383cb0</sdk:checksum>
372372+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.6_r03-linux.zip</sdk:url>
373373+ <sdk:host-os>linux</sdk:host-os>
374374+ </sdk:archive>
375375+ <sdk:archive>
376376+ <sdk:size>62418496</sdk:size>
377377+ <sdk:checksum type="sha1">bdafad44f5df9f127979bdb21a1fdd87ee3cd625</sdk:checksum>
378378+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.6_r03-macosx.zip</sdk:url>
379379+ <sdk:host-os>macosx</sdk:host-os>
380380+ </sdk:archive>
381381+ <sdk:archive>
382382+ <sdk:size>64654625</sdk:size>
383383+ <sdk:checksum type="sha1">ce0b5e4ffaf12ca4fd07c2da71a8a1ab4a03dc22</sdk:checksum>
384384+ <sdk:url>https://dl-ssl.google.com/android/repository/android-1.6_r03-windows.zip</sdk:url>
385385+ <sdk:host-os>windows</sdk:host-os>
386386+ </sdk:archive>
387387+ </sdk:archives>
388388+ <sdk:layoutlib>
389389+ <sdk:api>4</sdk:api>
390390+ </sdk:layoutlib>
391391+ <sdk:uses-license ref="android-sdk-license"/>
392392+ </sdk:platform>
393393+394394+ <!-- Generated on Thu Oct 22 10:16:34 PDT 2009 using eclair-sdk 17704: Platform. Addon. Tools. Doc. -->
395395+396396+ <sdk:platform>
397397+ <sdk:version>2.0</sdk:version>
398398+ <sdk:api-level>5</sdk:api-level>
399399+ <sdk:codename/>
400400+ <sdk:revision>01</sdk:revision>
401401+ <sdk:min-tools-rev>
402402+ <sdk:major>3</sdk:major>
403403+ </sdk:min-tools-rev>
404404+ <sdk:description>Android SDK Platform 2.0, revision 1</sdk:description>
405405+ <sdk:desc-url>http://developer.android.com/sdk/android-2.0.html</sdk:desc-url>
406406+ <sdk:obsolete/>
407407+ <sdk:archives>
408408+ <sdk:archive>
409409+ <sdk:size>75095268</sdk:size>
410410+ <sdk:checksum type="sha1">be9be6a99ca32875c96ec7f91160ca9fce7e3c7d</sdk:checksum>
411411+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0_r01-linux.zip</sdk:url>
412412+ <sdk:host-os>linux</sdk:host-os>
413413+ </sdk:archive>
414414+ <sdk:archive>
415415+ <sdk:size>74956356</sdk:size>
416416+ <sdk:checksum type="sha1">2a866d0870dbba18e0503cd41e5fae988a21b314</sdk:checksum>
417417+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0_r01-macosx.zip</sdk:url>
418418+ <sdk:host-os>macosx</sdk:host-os>
419419+ </sdk:archive>
420420+ <sdk:archive>
421421+ <sdk:size>76288040</sdk:size>
422422+ <sdk:checksum type="sha1">aeb623217ff88b87216d6eb7dbc846ed53f68f57</sdk:checksum>
423423+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0_r01-windows.zip</sdk:url>
424424+ <sdk:host-os>windows</sdk:host-os>
425425+ </sdk:archive>
426426+ </sdk:archives>
427427+ <sdk:layoutlib>
428428+ <sdk:api>4</sdk:api>
429429+ </sdk:layoutlib>
430430+ <sdk:uses-license ref="android-sdk-license"/>
431431+ </sdk:platform>
432432+433433+ <!-- Generated on Mon Nov 23 14:08:02 PST 2009 using eclair-release 20723: Platform. Addon. -->
434434+435435+ <sdk:platform>
436436+ <sdk:version>2.0.1</sdk:version>
437437+ <sdk:api-level>6</sdk:api-level>
438438+ <sdk:codename/>
439439+ <sdk:revision>01</sdk:revision>
440440+ <sdk:min-tools-rev>
441441+ <sdk:major>4</sdk:major>
442442+ </sdk:min-tools-rev>
443443+ <sdk:description>Android SDK Platform 2.0.1_r1</sdk:description>
444444+ <sdk:desc-url>http://developer.android.com/sdk/android-2.0.1.html</sdk:desc-url>
445445+ <sdk:obsolete/>
446446+ <sdk:archives>
447447+ <sdk:archive>
448448+ <sdk:size>79192618</sdk:size>
449449+ <sdk:checksum type="sha1">ce2c971dce352aa28af06bda92a070116aa5ae1a</sdk:checksum>
450450+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0.1_r01-linux.zip</sdk:url>
451451+ <sdk:host-os>linux</sdk:host-os>
452452+ </sdk:archive>
453453+ <sdk:archive>
454454+ <sdk:size>79035527</sdk:size>
455455+ <sdk:checksum type="sha1">c3096f80d75a6fc8cb38ef8a18aec920e53d42c0</sdk:checksum>
456456+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0.1_r01-macosx.zip</sdk:url>
457457+ <sdk:host-os>macosx</sdk:host-os>
458458+ </sdk:archive>
459459+ <sdk:archive>
460460+ <sdk:size>80385601</sdk:size>
461461+ <sdk:checksum type="sha1">255781ebe4509d9707d0e77edda2815e2bc216e6</sdk:checksum>
462462+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.0.1_r01-windows.zip</sdk:url>
463463+ <sdk:host-os>windows</sdk:host-os>
464464+ </sdk:archive>
465465+ </sdk:archives>
466466+ <sdk:layoutlib>
467467+ <sdk:api>4</sdk:api>
468468+ </sdk:layoutlib>
469469+ <sdk:uses-license ref="android-sdk-license"/>
470470+ </sdk:platform>
471471+472472+ <!-- Generated on Thu May 6 15:57:41 PDT 2010 using eclair 35983: Platform. -->
473473+474474+ <sdk:platform>
475475+ <sdk:version>2.1</sdk:version>
476476+ <sdk:api-level>7</sdk:api-level>
477477+ <sdk:codename/>
478478+ <sdk:revision>03</sdk:revision>
479479+ <sdk:min-tools-rev>
480480+ <sdk:major>8</sdk:major>
481481+ </sdk:min-tools-rev>
482482+ <sdk:description>Android SDK Platform 2.1_r3</sdk:description>
483483+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
484484+ <sdk:archives>
485485+ <sdk:archive>
486486+ <sdk:size>70142829</sdk:size>
487487+ <sdk:checksum type="sha1">5ce51b023ac19f8738500b1007a1da5de2349a1e</sdk:checksum>
488488+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.1_r03-linux.zip</sdk:url>
489489+ </sdk:archive>
490490+ </sdk:archives>
491491+ <sdk:layoutlib>
492492+ <sdk:api>4</sdk:api>
493493+ </sdk:layoutlib>
494494+ <sdk:uses-license ref="android-sdk-license"/>
495495+ </sdk:platform>
496496+497497+ <!-- Generated on Wed Jun 30 16:13:06 PDT 2010 using froyo-release 43546: Platform. Addon. -->
498498+499499+ <sdk:platform>
500500+ <sdk:version>2.2</sdk:version>
501501+ <sdk:api-level>8</sdk:api-level>
502502+ <sdk:codename/>
503503+ <sdk:revision>03</sdk:revision>
504504+ <sdk:min-tools-rev>
505505+ <sdk:major>8</sdk:major>
506506+ </sdk:min-tools-rev>
507507+ <sdk:description>Android SDK Platform 2.2_r3</sdk:description>
508508+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
509509+ <sdk:archives>
510510+ <sdk:archive>
511511+ <sdk:size>74652366</sdk:size>
512512+ <sdk:checksum type="sha1">231262c63eefdff8fd0386e9ccfefeb27a8f9202</sdk:checksum>
513513+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.2_r03-linux.zip</sdk:url>
514514+ </sdk:archive>
515515+ </sdk:archives>
516516+ <sdk:layoutlib>
517517+ <sdk:api>4</sdk:api>
518518+ </sdk:layoutlib>
519519+ <sdk:uses-license ref="android-sdk-license"/>
520520+ </sdk:platform>
521521+522522+ <!-- Generated on Thu Jan 20 09:40:59 PST 2011 using gingerbread-sdk-release 93351: Platform. -->
523523+524524+ <sdk:platform>
525525+ <sdk:version>2.3.1</sdk:version>
526526+ <sdk:api-level>9</sdk:api-level>
527527+ <sdk:codename/>
528528+ <sdk:revision>02</sdk:revision>
529529+ <sdk:min-tools-rev>
530530+ <sdk:major>8</sdk:major>
531531+ </sdk:min-tools-rev>
532532+ <sdk:description>Android SDK Platform 2.3.1_r2</sdk:description>
533533+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
534534+ <sdk:obsolete/>
535535+ <sdk:archives>
536536+ <sdk:archive>
537537+ <sdk:size>78732563</sdk:size>
538538+ <sdk:checksum type="sha1">209f8a7a8b2cb093fce858b8b55fed3ba5206773</sdk:checksum>
539539+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.3.1_r02-linux.zip</sdk:url>
540540+ </sdk:archive>
541541+ </sdk:archives>
542542+ <sdk:layoutlib>
543543+ <sdk:api>4</sdk:api>
544544+ </sdk:layoutlib>
545545+ <sdk:uses-license ref="android-sdk-license"/>
546546+ </sdk:platform>
547547+548548+ <!-- Generated on Fri Feb 4 16:41:27 PST 2011 using gingerbread-release 101070: Platform. -->
549549+550550+ <sdk:platform>
551551+ <sdk:version>2.3.3</sdk:version>
552552+ <sdk:api-level>10</sdk:api-level>
553553+ <sdk:codename/>
554554+ <sdk:revision>02</sdk:revision>
555555+ <sdk:min-tools-rev>
556556+ <sdk:major>8</sdk:major>
557557+ </sdk:min-tools-rev>
558558+ <sdk:description>Android SDK Platform 2.3.3._r2</sdk:description>
559559+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
560560+ <sdk:archives>
561561+ <sdk:archive>
562562+ <sdk:size>85470907</sdk:size>
563563+ <sdk:checksum type="sha1">887e37783ec32f541ea33c2c649dda648e8e6fb3</sdk:checksum>
564564+ <sdk:url>https://dl-ssl.google.com/android/repository/android-2.3.3_r02-linux.zip</sdk:url>
565565+ </sdk:archive>
566566+ </sdk:archives>
567567+ <sdk:layoutlib>
568568+ <sdk:api>4</sdk:api>
569569+ </sdk:layoutlib>
570570+ <sdk:uses-license ref="android-sdk-license"/>
571571+ </sdk:platform>
572572+573573+ <!-- Generated on Thu Feb 17 08:41:10 PST 2011 using honeycomb 104254: Platform. -->
574574+575575+ <sdk:platform>
576576+ <sdk:version>3.0</sdk:version>
577577+ <sdk:api-level>11</sdk:api-level>
578578+ <sdk:codename/>
579579+ <sdk:revision>02</sdk:revision>
580580+ <sdk:min-tools-rev>
581581+ <sdk:major>10</sdk:major>
582582+ </sdk:min-tools-rev>
583583+ <sdk:description>Android SDK Platform 3.0, revision 2</sdk:description>
584584+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
585585+ <sdk:archives>
586586+ <sdk:archive>
587587+ <sdk:size>104513908</sdk:size>
588588+ <sdk:checksum type="sha1">2c7d4bd13f276e76f6bbd87315fe27aba351dd37</sdk:checksum>
589589+ <sdk:url>https://dl-ssl.google.com/android/repository/android-3.0_r02-linux.zip</sdk:url>
590590+ </sdk:archive>
591591+ </sdk:archives>
592592+ <sdk:layoutlib>
593593+ <sdk:api>4</sdk:api>
594594+ </sdk:layoutlib>
595595+ <sdk:uses-license ref="android-sdk-license"/>
596596+ </sdk:platform>
597597+598598+ <!-- Generated on Wed May 4 19:39:17 PDT 2011 using honeycomb-mr1 123685: Platform.
599599+ r2: layoutlib.jar from 3.0 to fix issue with ADT 10.
600600+ -->
601601+602602+ <sdk:platform>
603603+ <sdk:version>3.1</sdk:version>
604604+ <sdk:api-level>12</sdk:api-level>
605605+ <sdk:codename/>
606606+ <sdk:revision>03</sdk:revision>
607607+ <sdk:min-tools-rev>
608608+ <sdk:major>11</sdk:major>
609609+ </sdk:min-tools-rev>
610610+ <sdk:description>Android SDK Platform 3.1, revision 3</sdk:description>
611611+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
612612+ <sdk:archives>
613613+ <sdk:archive>
614614+ <sdk:size>106472351</sdk:size>
615615+ <sdk:checksum type="sha1">4a50a6679cd95bb68bb5fc032e754cd7c5e2b1bf</sdk:checksum>
616616+ <sdk:url>https://dl-ssl.google.com/android/repository/android-3.1_r03-linux.zip</sdk:url>
617617+ </sdk:archive>
618618+ </sdk:archives>
619619+ <sdk:layoutlib>
620620+ <sdk:api>4</sdk:api>
621621+ </sdk:layoutlib>
622622+ <sdk:uses-license ref="android-sdk-license"/>
623623+ </sdk:platform>
624624+625625+ <!-- Generated on Fri Jul 15 11:50:12 PDT 2011 using honeycomb-mr2-release 140714: Platform. -->
626626+627627+ <sdk:platform>
628628+ <sdk:version>3.2</sdk:version>
629629+ <sdk:api-level>13</sdk:api-level>
630630+ <sdk:codename/>
631631+ <sdk:revision>01</sdk:revision>
632632+ <sdk:min-tools-rev>
633633+ <sdk:major>12</sdk:major>
634634+ </sdk:min-tools-rev>
635635+ <sdk:description>Android SDK Platform 3.2, revision 1</sdk:description>
636636+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
637637+ <sdk:archives>
638638+ <sdk:archive>
639639+ <sdk:size>108426536</sdk:size>
640640+ <sdk:checksum type="sha1">6189a500a8c44ae73a439604363de93591163cd9</sdk:checksum>
641641+ <sdk:url>https://dl-ssl.google.com/android/repository/android-3.2_r01-linux.zip</sdk:url>
642642+ </sdk:archive>
643643+ </sdk:archives>
644644+ <sdk:layoutlib>
645645+ <sdk:api>4</sdk:api>
646646+ </sdk:layoutlib>
647647+ <sdk:uses-license ref="android-sdk-license"/>
648648+ </sdk:platform>
649649+650650+ <sdk:platform>
651651+ <!-- Generated at Thu Dec 15 16:53:11 2011 from git_ics-mr0 @ 238991 -->
652652+ <sdk:revision>3</sdk:revision>
653653+ <sdk:description>Android SDK Platform 4.0</sdk:description>
654654+ <sdk:version>4.0</sdk:version>
655655+ <sdk:api-level>14</sdk:api-level>
656656+ <sdk:layoutlib>
657657+ <sdk:api>7</sdk:api>
658658+ <sdk:revision>1</sdk:revision>
659659+ </sdk:layoutlib>
660660+ <sdk:archives>
661661+ <sdk:archive>
662662+ <sdk:size>45919570</sdk:size>
663663+ <sdk:checksum type="sha1">41ba83b51e886461628c41b1b4d47762e0688ed5</sdk:checksum>
664664+ <sdk:url>https://dl-ssl.google.com/android/repository/android-14_r03.zip</sdk:url>
665665+ </sdk:archive>
666666+ </sdk:archives>
667667+ <sdk:uses-license ref="android-sdk-license"/>
668668+ </sdk:platform>
669669+670670+ <sdk:platform>
671671+ <!-- Generated at Fri Mar 16 11:22:43 2012 from ics-mr1 @ 291902 -->
672672+ <sdk:revision>3</sdk:revision>
673673+ <sdk:description>Android SDK Platform 4.0.3</sdk:description>
674674+ <sdk:version>4.0.3</sdk:version>
675675+ <sdk:api-level>15</sdk:api-level>
676676+ <sdk:min-tools-rev>
677677+ <sdk:major>15</sdk:major>
678678+ </sdk:min-tools-rev>
679679+ <sdk:layoutlib>
680680+ <sdk:api>7</sdk:api>
681681+ <sdk:revision>1</sdk:revision>
682682+ </sdk:layoutlib>
683683+ <sdk:archives>
684684+ <sdk:archive>
685685+ <sdk:size>44414679</sdk:size>
686686+ <sdk:checksum type="sha1">23da24610a8da51054c5391001c51ce43a778b97</sdk:checksum>
687687+ <sdk:url>https://dl-ssl.google.com/android/repository/android-15_r03.zip</sdk:url>
688688+ </sdk:archive>
689689+ </sdk:archives>
690690+ <sdk:uses-license ref="android-sdk-license"/>
691691+ </sdk:platform>
692692+693693+ <sdk:platform>
694694+ <!-- Generated at Thu Dec 6 10:54:05 2012 from git_jb-dev @ 543062 -->
695695+ <sdk:revision>4</sdk:revision>
696696+ <sdk:description>Android SDK Platform 4.1.2</sdk:description>
697697+ <sdk:version>4.1.2</sdk:version>
698698+ <sdk:api-level>16</sdk:api-level>
699699+ <sdk:min-tools-rev>
700700+ <sdk:major>21</sdk:major>
701701+ </sdk:min-tools-rev>
702702+ <sdk:layoutlib>
703703+ <sdk:api>9</sdk:api>
704704+ <sdk:revision>1</sdk:revision>
705705+ </sdk:layoutlib>
706706+ <sdk:archives>
707707+ <sdk:archive>
708708+ <sdk:size>48005140</sdk:size>
709709+ <sdk:checksum type="sha1">90b9157b8b45f966be97e11a22fba4591b96c2ee</sdk:checksum>
710710+ <sdk:url>https://dl-ssl.google.com/android/repository/android-16_r04.zip</sdk:url>
711711+ </sdk:archive>
712712+ </sdk:archives>
713713+ <sdk:uses-license ref="android-sdk-license"/>
714714+ </sdk:platform>
715715+716716+ <sdk:platform>
717717+ <!-- Generated at Wed Feb 13 11:27:09 2013 from git_jb-mr1.1-dev @ 576024 -->
718718+ <sdk:revision>2</sdk:revision>
719719+ <sdk:description>Android SDK Platform 4.2.2</sdk:description>
720720+ <sdk:version>4.2.2</sdk:version>
721721+ <sdk:api-level>17</sdk:api-level>
722722+ <sdk:min-tools-rev>
723723+ <sdk:major>21</sdk:major>
724724+ </sdk:min-tools-rev>
725725+ <sdk:layoutlib>
726726+ <sdk:api>9</sdk:api>
727727+ <sdk:revision>1</sdk:revision>
728728+ </sdk:layoutlib>
729729+ <sdk:archives>
730730+ <sdk:archive>
731731+ <sdk:size>48057484</sdk:size>
732732+ <sdk:checksum type="sha1">c442c32c1b702173ab0929a74486e4f86fe528ec</sdk:checksum>
733733+ <sdk:url>https://dl-ssl.google.com/android/repository/android-17_r02.zip</sdk:url>
734734+ </sdk:archive>
735735+ </sdk:archives>
736736+ <sdk:uses-license ref="android-sdk-license"/>
737737+ </sdk:platform>
738738+739739+ <sdk:platform>
740740+ <!-- Generated at Wed Sep 11 18:15:07 2013 from git_jb-mr2-dev @ 819563 -->
741741+ <sdk:revision>2</sdk:revision>
742742+ <sdk:description>Android SDK Platform 4.3</sdk:description>
743743+ <sdk:version>4.3</sdk:version>
744744+ <sdk:api-level>18</sdk:api-level>
745745+ <sdk:min-tools-rev>
746746+ <sdk:major>21</sdk:major>
747747+ </sdk:min-tools-rev>
748748+ <sdk:layoutlib>
749749+ <sdk:api>10</sdk:api>
750750+ <sdk:revision>1</sdk:revision>
751751+ </sdk:layoutlib>
752752+ <sdk:archives>
753753+ <sdk:archive>
754754+ <sdk:size>57319855</sdk:size>
755755+ <sdk:checksum type="sha1">62a9438d4cf6692f4d6510c27a380be195db9534</sdk:checksum>
756756+ <sdk:url>https://dl-ssl.google.com/android/repository/android-18_r02.zip</sdk:url>
757757+ </sdk:archive>
758758+ </sdk:archives>
759759+ <sdk:uses-license ref="android-sdk-license"/>
760760+ </sdk:platform>
761761+762762+ <sdk:platform>
763763+ <!-- Generated at Fri Feb 28 18:03:43 2014 from git_klp-sdk-release @ 1035858 -->
764764+ <sdk:revision>3</sdk:revision>
765765+ <sdk:description>Android SDK Platform 4.4.2</sdk:description>
766766+ <sdk:version>4.4.2</sdk:version>
767767+ <sdk:api-level>19</sdk:api-level>
768768+ <sdk:min-tools-rev>
769769+ <sdk:major>22</sdk:major>
770770+ </sdk:min-tools-rev>
771771+ <sdk:layoutlib>
772772+ <sdk:api>10</sdk:api>
773773+ <sdk:revision>1</sdk:revision>
774774+ </sdk:layoutlib>
775775+ <sdk:archives>
776776+ <sdk:archive>
777777+ <sdk:size>63798840</sdk:size>
778778+ <sdk:checksum type="sha1">5f33d8fd36a384fe2b170035e04a29c274a9ef95</sdk:checksum>
779779+ <sdk:url>https://dl-ssl.google.com/android/repository/android-19_r03.zip</sdk:url>
780780+ </sdk:archive>
781781+ </sdk:archives>
782782+ <sdk:uses-license ref="android-sdk-license"/>
783783+ </sdk:platform>
784784+785785+ <sdk:platform>
786786+ <!-- Generated at Mon Jun 23 19:17:42 2014 from git_klp-modular-release @ 1246132 -->
787787+ <sdk:revision>1</sdk:revision>
788788+ <sdk:description>Android SDK Platform 4.4W</sdk:description>
789789+ <sdk:version>4.4W</sdk:version>
790790+ <sdk:api-level>20</sdk:api-level>
791791+ <sdk:min-tools-rev>
792792+ <sdk:major>22</sdk:major>
793793+ </sdk:min-tools-rev>
794794+ <sdk:layoutlib>
795795+ <sdk:api>10</sdk:api>
796796+ <sdk:revision>1</sdk:revision>
797797+ </sdk:layoutlib>
798798+ <sdk:archives>
799799+ <sdk:archive>
800800+ <sdk:size>63548914</sdk:size>
801801+ <sdk:checksum type="sha1">928b1d181101a5bc06f739eb40501e1249dd4895</sdk:checksum>
802802+ <sdk:url>android-20_r01.zip</sdk:url>
803803+ </sdk:archive>
804804+ </sdk:archives>
805805+ <sdk:uses-license ref="android-sdk-license"/>
806806+ </sdk:platform>
807807+808808+ <sdk:platform>
809809+ <!-- Generated at Fri Jul 11 18:20:46 2014 from git_lmp-preview-dev @ 1272903 -->
810810+ <sdk:revision>3</sdk:revision>
811811+ <sdk:description>Android SDK Platform L</sdk:description>
812812+ <sdk:version>L</sdk:version>
813813+ <sdk:api-level>20</sdk:api-level>
814814+ <sdk:codename>L</sdk:codename>
815815+ <sdk:min-tools-rev>
816816+ <sdk:major>22</sdk:major>
817817+ </sdk:min-tools-rev>
818818+ <sdk:layoutlib>
819819+ <sdk:api>11</sdk:api>
820820+ <sdk:revision>1</sdk:revision>
821821+ </sdk:layoutlib>
822822+ <sdk:archives>
823823+ <sdk:archive>
824824+ <sdk:size>69421660</sdk:size>
825825+ <sdk:checksum type="sha1">76b6da426db06b2e2901dbc5e02d210ba83753c4</sdk:checksum>
826826+ <sdk:url>android-L_r03.zip</sdk:url>
827827+ </sdk:archive>
828828+ </sdk:archives>
829829+ <sdk:uses-license ref="android-sdk-preview-license"/>
830830+ </sdk:platform>
831831+832832+ <!-- SAMPLES ........................ -->
833833+834834+ <!-- Generated on Mon Feb 22 13:39:38 PST 2010 using eclair 25887: Samples. -->
835835+836836+ <sdk:sample>
837837+ <sdk:api-level>7</sdk:api-level>
838838+ <sdk:codename/>
839839+ <sdk:revision>01</sdk:revision>
840840+ <sdk:description>Android SDK Samples for Android API 7, revision 1</sdk:description>
841841+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
842842+ <sdk:archives>
843843+ <sdk:archive>
844844+ <sdk:size>7677831</sdk:size>
845845+ <sdk:checksum type="sha1">51e4907f60f248ede5c58b54ce7b6ae0b473e0ca</sdk:checksum>
846846+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-2.1_r01-linux.zip</sdk:url>
847847+ </sdk:archive>
848848+ </sdk:archives>
849849+ <sdk:uses-license ref="android-sdk-license"/>
850850+ </sdk:sample>
851851+852852+ <!-- Generated on Tue May 11 19:15:20 PDT 2010 using froyo 36658: Samples. -->
853853+854854+ <sdk:sample>
855855+ <sdk:api-level>8</sdk:api-level>
856856+ <sdk:codename/>
857857+ <sdk:revision>01</sdk:revision>
858858+ <sdk:description>Android SDK Samples for Android API 8, revision 1</sdk:description>
859859+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
860860+ <sdk:archives>
861861+ <sdk:archive>
862862+ <sdk:size>7969716</sdk:size>
863863+ <sdk:checksum type="sha1">d16d8bf2dd84cedf73b98b948d66461c8f19d6fb</sdk:checksum>
864864+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-2.2_r01-linux.zip</sdk:url>
865865+ </sdk:archive>
866866+ </sdk:archives>
867867+ <sdk:uses-license ref="android-sdk-license"/>
868868+ </sdk:sample>
869869+870870+ <!-- Generated on Tue Nov 30 19:39:34 PST 2010 using gingerbread 79962: Samples. -->
871871+872872+ <sdk:sample>
873873+ <sdk:api-level>9</sdk:api-level>
874874+ <sdk:codename/>
875875+ <sdk:revision>01</sdk:revision>
876876+ <sdk:description>Android SDK Samples for Android API 9, revision 1</sdk:description>
877877+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
878878+ <sdk:obsolete/>
879879+ <sdk:archives>
880880+ <sdk:archive>
881881+ <sdk:size>8516326</sdk:size>
882882+ <sdk:checksum type="sha1">36f7dd6c8b5dbb50b3cf3e3ac5209f3fe55db2aa</sdk:checksum>
883883+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-2.3_r01-linux.zip</sdk:url>
884884+ </sdk:archive>
885885+ </sdk:archives>
886886+ <sdk:uses-license ref="android-sdk-license"/>
887887+ </sdk:sample>
888888+889889+ <!-- Generated on Tue Feb 8 17:37:15 PST 2011 using gingerbread 102121: Samples. -->
890890+891891+ <sdk:sample>
892892+ <sdk:api-level>10</sdk:api-level>
893893+ <sdk:codename/>
894894+ <sdk:revision>01</sdk:revision>
895895+ <sdk:description>Android SDK Samples for Android API 10, revision 1</sdk:description>
896896+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
897897+ <sdk:archives>
898898+ <sdk:archive>
899899+ <sdk:size>8539583</sdk:size>
900900+ <sdk:checksum type="sha1">93b0c3f3bdf5b07f1f115100b4954f0665297a0d</sdk:checksum>
901901+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-2.3.3_r01-linux.zip</sdk:url>
902902+ </sdk:archive>
903903+ </sdk:archives>
904904+ <sdk:uses-license ref="android-sdk-license"/>
905905+ </sdk:sample>
906906+907907+ <!-- Generated on Thu Feb 17 08:45:49 PST 2011 using honeycomb 104254: Samples. -->
908908+909909+ <sdk:sample>
910910+ <sdk:api-level>11</sdk:api-level>
911911+ <sdk:codename/>
912912+ <sdk:revision>01</sdk:revision>
913913+ <sdk:description>Android SDK Samples for Android API 11, revision 1</sdk:description>
914914+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
915915+ <sdk:archives>
916916+ <sdk:archive>
917917+ <sdk:size>11976920</sdk:size>
918918+ <sdk:checksum type="sha1">3749ace584631270268d65bb1d0ad61b0d691682</sdk:checksum>
919919+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-3.0_r01-linux.zip</sdk:url>
920920+ </sdk:archive>
921921+ </sdk:archives>
922922+ <sdk:uses-license ref="android-sdk-license"/>
923923+ </sdk:sample>
924924+925925+ <!-- Generated on Wed May 4 19:49:56 PDT 2011 using honeycomb-mr1 123685: Samples. -->
926926+927927+ <sdk:sample>
928928+ <sdk:api-level>12</sdk:api-level>
929929+ <sdk:codename/>
930930+ <sdk:revision>01</sdk:revision>
931931+ <sdk:description>Android SDK Samples for Android API 12, revision 1</sdk:description>
932932+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
933933+ <sdk:archives>
934934+ <sdk:archive>
935935+ <sdk:size>12150514</sdk:size>
936936+ <sdk:checksum type="sha1">df0ace37cbca73373fe94080f94c71557cac73a7</sdk:checksum>
937937+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-3.1_r01-linux.zip</sdk:url>
938938+ </sdk:archive>
939939+ </sdk:archives>
940940+ <sdk:uses-license ref="android-sdk-license"/>
941941+ </sdk:sample>
942942+943943+ <!-- Generated on Fri Jul 15 11:52:24 PDT 2011 using honeycomb-mr2 142871: Samples. -->
944944+945945+ <sdk:sample>
946946+ <sdk:api-level>13</sdk:api-level>
947947+ <sdk:codename/>
948948+ <sdk:revision>01</sdk:revision>
949949+ <sdk:description>Android SDK Samples for Android API 13, revision 1</sdk:description>
950950+ <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
951951+ <sdk:archives>
952952+ <sdk:archive>
953953+ <sdk:size>12193502</sdk:size>
954954+ <sdk:checksum type="sha1">078bcf1abc1cb8921f3fa482c252963a782bed60</sdk:checksum>
955955+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-3.2_r01-linux.zip</sdk:url>
956956+ </sdk:archive>
957957+ </sdk:archives>
958958+ <sdk:uses-license ref="android-sdk-license"/>
959959+ </sdk:sample>
960960+961961+ <sdk:sample>
962962+ <!-- Generated at Wed Dec 7 13:48:27 2011 from git_ics-mr0 @ 234950 -->
963963+ <sdk:revision>2</sdk:revision>
964964+ <sdk:api-level>14</sdk:api-level>
965965+ <sdk:archives>
966966+ <sdk:archive>
967967+ <sdk:size>16253619</sdk:size>
968968+ <sdk:checksum type="sha1">1312c22ab0b650e26835cc3945d4ff8cea183416</sdk:checksum>
969969+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-14_r02.zip</sdk:url>
970970+ </sdk:archive>
971971+ </sdk:archives>
972972+ <sdk:uses-license ref="android-sdk-license"/>
973973+ </sdk:sample>
974974+975975+ <sdk:sample>
976976+ <!-- Generated at Fri Mar 16 11:27:52 2012 from ics-mr1 @ 291902 -->
977977+ <sdk:revision>2</sdk:revision>
978978+ <sdk:api-level>15</sdk:api-level>
979979+ <sdk:archives>
980980+ <sdk:archive>
981981+ <sdk:size>16366656</sdk:size>
982982+ <sdk:checksum type="sha1">042f368c5b09eca4d278264e6dbf9c12c5f73d1f</sdk:checksum>
983983+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-15_r02.zip</sdk:url>
984984+ </sdk:archive>
985985+ </sdk:archives>
986986+ <sdk:uses-license ref="android-sdk-license"/>
987987+ </sdk:sample>
988988+989989+ <sdk:sample>
990990+ <!-- Generated at Sun Jun 24 14:02:06 2012 from git_jb-release @ 391408 -->
991991+ <sdk:revision>1</sdk:revision>
992992+ <sdk:api-level>16</sdk:api-level>
993993+ <sdk:archives>
994994+ <sdk:archive>
995995+ <sdk:size>14729945</sdk:size>
996996+ <sdk:checksum type="sha1">dce3a2d41db50a381ef47ee8bddbe928520e685e</sdk:checksum>
997997+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-16_r01.zip</sdk:url>
998998+ </sdk:archive>
999999+ </sdk:archives>
10001000+ <sdk:uses-license ref="android-sdk-license"/>
10011001+ </sdk:sample>
10021002+10031003+ <sdk:sample>
10041004+ <!-- Generated at Mon Nov 12 17:18:09 2012 from git_jb-mr1-dev @ 526865 -->
10051005+ <sdk:revision>1</sdk:revision>
10061006+ <sdk:api-level>17</sdk:api-level>
10071007+ <sdk:archives>
10081008+ <sdk:archive>
10091009+ <sdk:size>14840030</sdk:size>
10101010+ <sdk:checksum type="sha1">12d58cb26503610fc05bd7618c434cc6f983bc41</sdk:checksum>
10111011+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-17_r01.zip</sdk:url>
10121012+ </sdk:archive>
10131013+ </sdk:archives>
10141014+ <sdk:uses-license ref="android-sdk-license"/>
10151015+ </sdk:sample>
10161016+10171017+ <sdk:sample>
10181018+ <!-- Generated at Tue Jul 23 17:17:22 2013 from git_jb-mr2-ub-dev @ 751786 -->
10191019+ <sdk:revision>1</sdk:revision>
10201020+ <sdk:api-level>18</sdk:api-level>
10211021+ <sdk:archives>
10221022+ <sdk:archive>
10231023+ <sdk:size>19897793</sdk:size>
10241024+ <sdk:checksum type="sha1">73e879ce46c04a6e63ad1a9107018b4782945007</sdk:checksum>
10251025+ <sdk:url>https://dl-ssl.google.com/android/repository/samples-18_r01.zip</sdk:url>
10261026+ </sdk:archive>
10271027+ </sdk:archives>
10281028+ <sdk:uses-license ref="android-sdk-license"/>
10291029+ </sdk:sample>
10301030+10311031+ <sdk:sample>
10321032+ <!-- Generated at Wed Aug 27 10:42:00 2014 from git_klp-docs @ 1377789 -->
10331033+ <sdk:revision>6</sdk:revision>
10341034+ <sdk:api-level>19</sdk:api-level>
10351035+ <sdk:archives>
10361036+ <sdk:archive>
10371037+ <sdk:size>31900752</sdk:size>
10381038+ <sdk:checksum type="sha1">19593662771934b0b1e3be56ed18d13e6489bcd4</sdk:checksum>
10391039+ <sdk:url>samples-19_r06.zip</sdk:url>
10401040+ </sdk:archive>
10411041+ </sdk:archives>
10421042+ <sdk:uses-license ref="android-sdk-license"/>
10431043+ </sdk:sample>
10441044+10451045+ <sdk:sample>
10461046+ <!-- Generated at Wed Jul 23 12:59:18 2014 from git_klp-modular-mr0-release @ 1298572 -->
10471047+ <sdk:revision>2</sdk:revision>
10481048+ <sdk:api-level>20</sdk:api-level>
10491049+ <sdk:archives>
10501050+ <sdk:archive>
10511051+ <sdk:size>49718791</sdk:size>
10521052+ <sdk:checksum type="sha1">4b906c46057ee8f502b4f27c23670fd87a49d6ff</sdk:checksum>
10531053+ <sdk:url>samples-20_r02.zip</sdk:url>
10541054+ </sdk:archive>
10551055+ </sdk:archives>
10561056+ <sdk:uses-license ref="android-sdk-license"/>
10571057+ </sdk:sample>
10581058+10591059+ <sdk:sample>
10601060+ <!-- Generated at Wed Aug 27 10:44:44 2014 from git_lmp-preview-dev @ 1378586 -->
10611061+ <sdk:revision>2</sdk:revision>
10621062+ <sdk:api-level>20</sdk:api-level>
10631063+ <sdk:codename>L</sdk:codename>
10641064+ <sdk:archives>
10651065+ <sdk:archive>
10661066+ <sdk:size>41182182</sdk:size>
10671067+ <sdk:checksum type="sha1">4afc36cf3f53051881729f733fe9bb571104c48f</sdk:checksum>
10681068+ <sdk:url>samples-L_r02.zip</sdk:url>
10691069+ </sdk:archive>
10701070+ </sdk:archives>
10711071+ <sdk:uses-license ref="android-sdk-preview-license"/>
10721072+ </sdk:sample>
10731073+10741074+ <!-- PLATFORM-TOOLS ........................ -->
10751075+10761076+ <sdk:platform-tool>
10771077+ <!-- Generated at Mon Jun 23 19:20:39 2014 from git_lmp-preview-dev @ 1244090 -->
10781078+ <sdk:revision>
10791079+ <sdk:major>20</sdk:major>
10801080+ <sdk:minor>0</sdk:minor>
10811081+ <sdk:micro>0</sdk:micro>
10821082+ </sdk:revision>
10831083+ <sdk:archives>
10841084+ <sdk:archive>
10851085+ <sdk:size>1741113</sdk:size>
10861086+ <sdk:checksum type="sha1">72c34cc6a991f53e2588f9d5487559f013bc30f9</sdk:checksum>
10871087+ <sdk:url>platform-tools_r20-windows.zip</sdk:url>
10881088+ <sdk:host-os>windows</sdk:host-os>
10891089+ </sdk:archive>
10901090+ <sdk:archive>
10911091+ <sdk:size>1753061</sdk:size>
10921092+ <sdk:checksum type="sha1">fb120ce85b6698b801cb4788b204693c1d682b87</sdk:checksum>
10931093+ <sdk:url>platform-tools_r20-linux.zip</sdk:url>
10941094+ <sdk:host-os>linux</sdk:host-os>
10951095+ </sdk:archive>
10961096+ <sdk:archive>
10971097+ <sdk:size>1666257</sdk:size>
10981098+ <sdk:checksum type="sha1">f2c65c58caf76169d9bebf25eef5c69ff99670b5</sdk:checksum>
10991099+ <sdk:url>platform-tools_r20-macosx.zip</sdk:url>
11001100+ <sdk:host-os>macosx</sdk:host-os>
11011101+ </sdk:archive>
11021102+ </sdk:archives>
11031103+ <sdk:uses-license ref="android-sdk-license"/>
11041104+ </sdk:platform-tool>
11051105+11061106+ <!-- BUILD-TOOLS ........................ -->
11071107+11081108+ <sdk:build-tool>
11091109+ <!-- Generated at Tue May 14 16:40:25 2013 from git_jb-mr1.1-dev @ 673949 -->
11101110+ <sdk:revision>
11111111+ <sdk:major>17</sdk:major>
11121112+ <sdk:minor>0</sdk:minor>
11131113+ <sdk:micro>0</sdk:micro>
11141114+ </sdk:revision>
11151115+ <sdk:archives>
11161116+ <sdk:archive>
11171117+ <sdk:size>11004914</sdk:size>
11181118+ <sdk:checksum type="sha1">899897d327b0bad492d3a40d3db4d96119c15bc0</sdk:checksum>
11191119+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r17-windows.zip</sdk:url>
11201120+ <sdk:host-os>windows</sdk:host-os>
11211121+ </sdk:archive>
11221122+ <sdk:archive>
11231123+ <sdk:size>11696007</sdk:size>
11241124+ <sdk:checksum type="sha1">2c2872bc3806aabf16a12e3959c2183ddc866e6d</sdk:checksum>
11251125+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r17-linux.zip</sdk:url>
11261126+ <sdk:host-os>linux</sdk:host-os>
11271127+ </sdk:archive>
11281128+ <sdk:archive>
11291129+ <sdk:size>12208114</sdk:size>
11301130+ <sdk:checksum type="sha1">602ee709be9dbb8f179b1e4075148a57f9419930</sdk:checksum>
11311131+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r17-macosx.zip</sdk:url>
11321132+ <sdk:host-os>macosx</sdk:host-os>
11331133+ </sdk:archive>
11341134+ </sdk:archives>
11351135+ <sdk:uses-license ref="android-sdk-license"/>
11361136+ </sdk:build-tool>
11371137+11381138+ <!-- Build tools version 18.0.0 was broken for renderscript, so it has been removed -->
11391139+11401140+ <sdk:build-tool>
11411141+ <!-- Generated at Mon Jul 29 15:14:00 2013 from git_jb-mr2-dev @ 754669 -->
11421142+ <sdk:revision>
11431143+ <sdk:major>18</sdk:major>
11441144+ <sdk:minor>0</sdk:minor>
11451145+ <sdk:micro>1</sdk:micro>
11461146+ </sdk:revision>
11471147+ <sdk:archives>
11481148+ <sdk:archive>
11491149+ <sdk:size>15413527</sdk:size>
11501150+ <sdk:checksum type="sha1">a6c2afd0b6289d589351956d2f5212b37014ca7d</sdk:checksum>
11511151+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.0.1-windows.zip</sdk:url>
11521152+ <sdk:host-os>windows</sdk:host-os>
11531153+ </sdk:archive>
11541154+ <sdk:archive>
11551155+ <sdk:size>16627330</sdk:size>
11561156+ <sdk:checksum type="sha1">f11618492b0d2270c332325d45d752d3656a9640</sdk:checksum>
11571157+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.0.1-linux.zip</sdk:url>
11581158+ <sdk:host-os>linux</sdk:host-os>
11591159+ </sdk:archive>
11601160+ <sdk:archive>
11611161+ <sdk:size>16633121</sdk:size>
11621162+ <sdk:checksum type="sha1">d84f5692fb44d60fc53e5b2507cebf9f24626902</sdk:checksum>
11631163+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.0.1-macosx.zip</sdk:url>
11641164+ <sdk:host-os>macosx</sdk:host-os>
11651165+ </sdk:archive>
11661166+ </sdk:archives>
11671167+ <sdk:uses-license ref="android-sdk-license"/>
11681168+ </sdk:build-tool>
11691169+11701170+ <sdk:build-tool>
11711171+ <!-- Generated at Wed Sep 11 17:41:47 2013 from git_jb-mr2-dev @ 819563 -->
11721172+ <sdk:revision>
11731173+ <sdk:major>18</sdk:major>
11741174+ <sdk:minor>1</sdk:minor>
11751175+ <sdk:micro>0</sdk:micro>
11761176+ </sdk:revision>
11771177+ <sdk:archives>
11781178+ <sdk:archive>
11791179+ <sdk:size>19659547</sdk:size>
11801180+ <sdk:checksum type="sha1">3a9810fc8559ab03c09378f07531e8cae2f1db30</sdk:checksum>
11811181+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1-windows.zip</sdk:url>
11821182+ <sdk:host-os>windows</sdk:host-os>
11831183+ </sdk:archive>
11841184+ <sdk:archive>
11851185+ <sdk:size>20229298</sdk:size>
11861186+ <sdk:checksum type="sha1">f314a0599e51397f0886fe888b50dd98f2f050d8</sdk:checksum>
11871187+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1-linux.zip</sdk:url>
11881188+ <sdk:host-os>linux</sdk:host-os>
11891189+ </sdk:archive>
11901190+ <sdk:archive>
11911191+ <sdk:size>20451524</sdk:size>
11921192+ <sdk:checksum type="sha1">16ddb299b8b43063e5bb3387ec17147c5053dfd8</sdk:checksum>
11931193+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1-macosx.zip</sdk:url>
11941194+ <sdk:host-os>macosx</sdk:host-os>
11951195+ </sdk:archive>
11961196+ </sdk:archives>
11971197+ <sdk:uses-license ref="android-sdk-license"/>
11981198+ </sdk:build-tool>
11991199+12001200+ <sdk:build-tool>
12011201+ <!-- Generated at Thu Oct 10 14:18:15 2013 from git_jb-mr2-dev @ 867478 -->
12021202+ <sdk:revision>
12031203+ <sdk:major>18</sdk:major>
12041204+ <sdk:minor>1</sdk:minor>
12051205+ <sdk:micro>1</sdk:micro>
12061206+ </sdk:revision>
12071207+ <sdk:archives>
12081208+ <sdk:archive>
12091209+ <sdk:size>19660000</sdk:size>
12101210+ <sdk:checksum type="sha1">c4605066e2f851387ea70bc1442b1968bd7b4a15</sdk:checksum>
12111211+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1.1-windows.zip</sdk:url>
12121212+ <sdk:host-os>windows</sdk:host-os>
12131213+ </sdk:archive>
12141214+ <sdk:archive>
12151215+ <sdk:size>20229760</sdk:size>
12161216+ <sdk:checksum type="sha1">68c9acbfc0cec2d51b19efaed39831a17055d998</sdk:checksum>
12171217+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1.1-linux.zip</sdk:url>
12181218+ <sdk:host-os>linux</sdk:host-os>
12191219+ </sdk:archive>
12201220+ <sdk:archive>
12211221+ <sdk:size>20452157</sdk:size>
12221222+ <sdk:checksum type="sha1">a9d9d37f6ddf859e57abc78802a77aaa166e48d4</sdk:checksum>
12231223+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r18.1.1-macosx.zip</sdk:url>
12241224+ <sdk:host-os>macosx</sdk:host-os>
12251225+ </sdk:archive>
12261226+ </sdk:archives>
12271227+ <sdk:uses-license ref="android-sdk-license"/>
12281228+ </sdk:build-tool>
12291229+12301230+ <sdk:build-tool>
12311231+ <!-- Generated at Mon Oct 28 23:12:03 2013 from git_klp-release @ 886418 -->
12321232+ <sdk:revision>
12331233+ <sdk:major>19</sdk:major>
12341234+ <sdk:minor>0</sdk:minor>
12351235+ <sdk:micro>0</sdk:micro>
12361236+ </sdk:revision>
12371237+ <sdk:archives>
12381238+ <sdk:archive>
12391239+ <sdk:size>20611447</sdk:size>
12401240+ <sdk:checksum type="sha1">6edf505c20f5ece9c48fa0aff9a90488f9654d52</sdk:checksum>
12411241+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19-windows.zip</sdk:url>
12421242+ <sdk:host-os>windows</sdk:host-os>
12431243+ </sdk:archive>
12441244+ <sdk:archive>
12451245+ <sdk:size>21339943</sdk:size>
12461246+ <sdk:checksum type="sha1">55c1a6cf632e7d346f0002b275ec41fd3137fd83</sdk:checksum>
12471247+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19-linux.zip</sdk:url>
12481248+ <sdk:host-os>linux</sdk:host-os>
12491249+ </sdk:archive>
12501250+ <sdk:archive>
12511251+ <sdk:size>21441270</sdk:size>
12521252+ <sdk:checksum type="sha1">86ec1c12db1bc446b7bcaefc5cc14eb361044e90</sdk:checksum>
12531253+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19-macosx.zip</sdk:url>
12541254+ <sdk:host-os>macosx</sdk:host-os>
12551255+ </sdk:archive>
12561256+ </sdk:archives>
12571257+ <sdk:uses-license ref="android-sdk-license"/>
12581258+ </sdk:build-tool>
12591259+12601260+ <sdk:build-tool>
12611261+ <!-- Generated at Thu Dec 5 14:01:45 2013 from git_klp-dev @ 938007 -->
12621262+ <sdk:revision>
12631263+ <sdk:major>19</sdk:major>
12641264+ <sdk:minor>0</sdk:minor>
12651265+ <sdk:micro>1</sdk:micro>
12661266+ </sdk:revision>
12671267+ <sdk:archives>
12681268+ <sdk:archive>
12691269+ <sdk:size>20500648</sdk:size>
12701270+ <sdk:checksum type="sha1">5ef422bac5b28f4ced108319ed4a6bc7050a6234</sdk:checksum>
12711271+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.1-windows.zip</sdk:url>
12721272+ <sdk:host-os>windows</sdk:host-os>
12731273+ </sdk:archive>
12741274+ <sdk:archive>
12751275+ <sdk:size>21229048</sdk:size>
12761276+ <sdk:checksum type="sha1">18d2312dc4368858914213087f4e61445aca4517</sdk:checksum>
12771277+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.1-linux.zip</sdk:url>
12781278+ <sdk:host-os>linux</sdk:host-os>
12791279+ </sdk:archive>
12801280+ <sdk:archive>
12811281+ <sdk:size>21450597</sdk:size>
12821282+ <sdk:checksum type="sha1">efaf50fb19a3edb8d03efbff76f89a249ad2920b</sdk:checksum>
12831283+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.1-macosx.zip</sdk:url>
12841284+ <sdk:host-os>macosx</sdk:host-os>
12851285+ </sdk:archive>
12861286+ </sdk:archives>
12871287+ <sdk:uses-license ref="android-sdk-license"/>
12881288+ </sdk:build-tool>
12891289+12901290+ <sdk:build-tool>
12911291+ <!-- Generated at Wed Feb 12 12:38:29 2014 from git_klp-sdk-release @ 1009316 -->
12921292+ <sdk:revision>
12931293+ <sdk:major>19</sdk:major>
12941294+ <sdk:minor>0</sdk:minor>
12951295+ <sdk:micro>2</sdk:micro>
12961296+ </sdk:revision>
12971297+ <sdk:archives>
12981298+ <sdk:archive>
12991299+ <sdk:size>20621117</sdk:size>
13001300+ <sdk:checksum type="sha1">af664672d0d709c9ae30937b1062317d3ade7f95</sdk:checksum>
13011301+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.2-windows.zip</sdk:url>
13021302+ <sdk:host-os>windows</sdk:host-os>
13031303+ </sdk:archive>
13041304+ <sdk:archive>
13051305+ <sdk:size>21352552</sdk:size>
13061306+ <sdk:checksum type="sha1">a03a6bdea0091aea32e1b35b90a7294c9f04e3dd</sdk:checksum>
13071307+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.2-linux.zip</sdk:url>
13081308+ <sdk:host-os>linux</sdk:host-os>
13091309+ </sdk:archive>
13101310+ <sdk:archive>
13111311+ <sdk:size>21453726</sdk:size>
13121312+ <sdk:checksum type="sha1">145bc43065d45f756d99d87329d899052b9a9288</sdk:checksum>
13131313+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.2-macosx.zip</sdk:url>
13141314+ <sdk:host-os>macosx</sdk:host-os>
13151315+ </sdk:archive>
13161316+ </sdk:archives>
13171317+ <sdk:uses-license ref="android-sdk-license"/>
13181318+ </sdk:build-tool>
13191319+13201320+ <sdk:build-tool>
13211321+ <!-- Generated at Fri Feb 28 17:11:02 2014 from git_klp-sdk-release @ 1035858 -->
13221322+ <sdk:revision>
13231323+ <sdk:major>19</sdk:major>
13241324+ <sdk:minor>0</sdk:minor>
13251325+ <sdk:micro>3</sdk:micro>
13261326+ </sdk:revision>
13271327+ <sdk:archives>
13281328+ <sdk:archive>
13291329+ <sdk:size>20730715</sdk:size>
13301330+ <sdk:checksum type="sha1">cb46b433b67a0a6910ff00db84be8b527ea3102f</sdk:checksum>
13311331+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.3-windows.zip</sdk:url>
13321332+ <sdk:host-os>windows</sdk:host-os>
13331333+ </sdk:archive>
13341334+ <sdk:archive>
13351335+ <sdk:size>21462150</sdk:size>
13361336+ <sdk:checksum type="sha1">c2d6055478e9d2d4fba476ee85f99181ddd1160c</sdk:checksum>
13371337+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.3-linux.zip</sdk:url>
13381338+ <sdk:host-os>linux</sdk:host-os>
13391339+ </sdk:archive>
13401340+ <sdk:archive>
13411341+ <sdk:size>21563992</sdk:size>
13421342+ <sdk:checksum type="sha1">651cf8754373b2d52e7f6aab2c52eabffe4e9ea4</sdk:checksum>
13431343+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.0.3-macosx.zip</sdk:url>
13441344+ <sdk:host-os>macosx</sdk:host-os>
13451345+ </sdk:archive>
13461346+ </sdk:archives>
13471347+ <sdk:uses-license ref="android-sdk-license"/>
13481348+ </sdk:build-tool>
13491349+13501350+ <sdk:build-tool>
13511351+ <!-- Generated at Tue May 6 14:19:40 2014 from git_klp-sdk-release @ 1153987 -->
13521352+ <sdk:revision>
13531353+ <sdk:major>19</sdk:major>
13541354+ <sdk:minor>1</sdk:minor>
13551355+ <sdk:micro>0</sdk:micro>
13561356+ </sdk:revision>
13571357+ <sdk:archives>
13581358+ <sdk:archive>
13591359+ <sdk:size>20812533</sdk:size>
13601360+ <sdk:checksum type="sha1">13b367fbdbff8132cb4356f716e8dc8a8df745c5</sdk:checksum>
13611361+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.1-windows.zip</sdk:url>
13621362+ <sdk:host-os>windows</sdk:host-os>
13631363+ </sdk:archive>
13641364+ <sdk:archive>
13651365+ <sdk:size>21490972</sdk:size>
13661366+ <sdk:checksum type="sha1">1ff20ac15fa47a75d00346ec12f180d531b3ca89</sdk:checksum>
13671367+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.1-linux.zip</sdk:url>
13681368+ <sdk:host-os>linux</sdk:host-os>
13691369+ </sdk:archive>
13701370+ <sdk:archive>
13711371+ <sdk:size>21590160</sdk:size>
13721372+ <sdk:checksum type="sha1">0d11aae3417de1efb4b9a0e0a7855904a61bcec1</sdk:checksum>
13731373+ <sdk:url>https://dl-ssl.google.com/android/repository/build-tools_r19.1-macosx.zip</sdk:url>
13741374+ <sdk:host-os>macosx</sdk:host-os>
13751375+ </sdk:archive>
13761376+ </sdk:archives>
13771377+ <sdk:uses-license ref="android-sdk-license"/>
13781378+ </sdk:build-tool>
13791379+13801380+ <sdk:build-tool>
13811381+ <!-- Generated at Mon Jun 23 19:17:29 2014 from git_klp-modular-release @ 1246132 -->
13821382+ <sdk:revision>
13831383+ <sdk:major>20</sdk:major>
13841384+ <sdk:minor>0</sdk:minor>
13851385+ <sdk:micro>0</sdk:micro>
13861386+ </sdk:revision>
13871387+ <sdk:archives>
13881388+ <sdk:archive>
13891389+ <sdk:size>20828006</sdk:size>
13901390+ <sdk:checksum type="sha1">cf20720e452b642d5eb59dabe05c0c729b36ec75</sdk:checksum>
13911391+ <sdk:url>build-tools_r20-windows.zip</sdk:url>
13921392+ <sdk:host-os>windows</sdk:host-os>
13931393+ </sdk:archive>
13941394+ <sdk:archive>
13951395+ <sdk:size>21445463</sdk:size>
13961396+ <sdk:checksum type="sha1">b688905526a5584d1327a662d871a635ff502758</sdk:checksum>
13971397+ <sdk:url>build-tools_r20-linux.zip</sdk:url>
13981398+ <sdk:host-os>linux</sdk:host-os>
13991399+ </sdk:archive>
14001400+ <sdk:archive>
14011401+ <sdk:size>21650508</sdk:size>
14021402+ <sdk:checksum type="sha1">1240f629411c108a714c4ddd756937c7fab93f83</sdk:checksum>
14031403+ <sdk:url>build-tools_r20-macosx.zip</sdk:url>
14041404+ <sdk:host-os>macosx</sdk:host-os>
14051405+ </sdk:archive>
14061406+ </sdk:archives>
14071407+ <sdk:uses-license ref="android-sdk-license"/>
14081408+ </sdk:build-tool>
14091409+14101410+ <!-- TOOLS ........................ -->
14111411+14121412+ <sdk:tool>
14131413+ <!-- Generated at Wed Jul 2 12:10:55 2014 from git_ub-tools-idea133-milestone @ 1259578 -->
14141414+ <sdk:revision>
14151415+ <sdk:major>23</sdk:major>
14161416+ <sdk:minor>0</sdk:minor>
14171417+ <sdk:micro>2</sdk:micro>
14181418+ </sdk:revision>
14191419+ <sdk:min-platform-tools-rev>
14201420+ <sdk:major>20</sdk:major>
14211421+ </sdk:min-platform-tools-rev>
14221422+ <sdk:archives>
14231423+ <sdk:archive>
14241424+ <sdk:size>141154615</sdk:size>
14251425+ <sdk:checksum type="sha1">0a64ec9b7777bb00ff299c94c359163ef5e443ae</sdk:checksum>
14261426+ <sdk:url>tools_r23.0.2-windows.zip</sdk:url>
14271427+ <sdk:host-os>windows</sdk:host-os>
14281428+ </sdk:archive>
14291429+ <sdk:archive>
14301430+ <sdk:size>141930870</sdk:size>
14311431+ <sdk:checksum type="sha1">e8a2d55d750adeaded60a3daad48e62b09aa472a</sdk:checksum>
14321432+ <sdk:url>tools_r23.0.2-linux.zip</sdk:url>
14331433+ <sdk:host-os>linux</sdk:host-os>
14341434+ </sdk:archive>
14351435+ <sdk:archive>
14361436+ <sdk:size>90920343</sdk:size>
14371437+ <sdk:checksum type="sha1">c46b1e173188ba82a56d6b9e349fdae4e8922bab</sdk:checksum>
14381438+ <sdk:url>tools_r23.0.2-macosx.zip</sdk:url>
14391439+ <sdk:host-os>macosx</sdk:host-os>
14401440+ </sdk:archive>
14411441+ </sdk:archives>
14421442+ <sdk:uses-license ref="android-sdk-license"/>
14431443+ </sdk:tool>
14441444+14451445+ <!-- DOCS ........................ -->
14461446+14471447+ <sdk:doc>
14481448+ <!-- Generated at Mon Jun 23 19:19:47 2014 from git_lmp-preview-release @ 1242878 -->
14491449+ <sdk:revision>1</sdk:revision>
14501450+ <sdk:api-level>20</sdk:api-level>
14511451+ <sdk:codename>L</sdk:codename>
14521452+ <sdk:archives>
14531453+ <sdk:archive>
14541454+ <sdk:size>207889084</sdk:size>
14551455+ <sdk:checksum type="sha1">58a94248c7c960829db3d779c84534e5e783210f</sdk:checksum>
14561456+ <sdk:url>docs-L_r01.zip</sdk:url>
14571457+ </sdk:archive>
14581458+ </sdk:archives>
14591459+ <sdk:uses-license ref="android-sdk-preview-license"/>
14601460+ </sdk:doc>
14611461+14621462+ <!-- SOURCES ........................ -->
14631463+14641464+ <sdk:source>
14651465+ <!-- Generated at Wed Dec 7 13:48:11 2011 from git_ics-mr0 @ 234950 -->
14661466+ <sdk:revision>1</sdk:revision>
14671467+ <sdk:api-level>14</sdk:api-level>
14681468+ <sdk:archives>
14691469+ <sdk:archive>
14701470+ <sdk:size>16152383</sdk:size>
14711471+ <sdk:checksum type="sha1">eaf4ed7dcac46e68516a1b4aa5b0d9e5a39a7555</sdk:checksum>
14721472+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-14_r01.zip</sdk:url>
14731473+ </sdk:archive>
14741474+ </sdk:archives>
14751475+ <sdk:uses-license ref="android-sdk-license"/>
14761476+ </sdk:source>
14771477+14781478+ <sdk:source>
14791479+ <!-- Generated at Fri Mar 30 10:43:44 2012 from ics-mr1 @ 302030 -->
14801480+ <sdk:revision>2</sdk:revision>
14811481+ <sdk:api-level>15</sdk:api-level>
14821482+ <sdk:archives>
14831483+ <sdk:archive>
14841484+ <sdk:size>16468746</sdk:size>
14851485+ <sdk:checksum type="sha1">e5992a5747c9590783fbbdd700337bf0c9f6b1fa</sdk:checksum>
14861486+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-15_r02.zip</sdk:url>
14871487+ </sdk:archive>
14881488+ </sdk:archives>
14891489+ <sdk:uses-license ref="android-sdk-license"/>
14901490+ </sdk:source>
14911491+14921492+ <sdk:source>
14931493+ <!-- Generated at Thu Jul 19 18:39:42 2012 from git_jb-release @ 403059 -->
14941494+ <sdk:revision>2</sdk:revision>
14951495+ <sdk:api-level>16</sdk:api-level>
14961496+ <sdk:archives>
14971497+ <sdk:archive>
14981498+ <sdk:size>17876720</sdk:size>
14991499+ <sdk:checksum type="sha1">0f83c14ed333c45d962279ab5d6bc98a0269ef84</sdk:checksum>
15001500+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-16_r02.zip</sdk:url>
15011501+ </sdk:archive>
15021502+ </sdk:archives>
15031503+ <sdk:uses-license ref="android-sdk-license"/>
15041504+ </sdk:source>
15051505+15061506+ <sdk:source>
15071507+ <!-- Generated at Mon Nov 12 17:16:08 2012 from git_jb-mr1-dev @ 526865 -->
15081508+ <sdk:revision>1</sdk:revision>
15091509+ <sdk:api-level>17</sdk:api-level>
15101510+ <sdk:archives>
15111511+ <sdk:archive>
15121512+ <sdk:size>18976816</sdk:size>
15131513+ <sdk:checksum type="sha1">6f1f18cd2d2b1852d7f6892df9cee3823349d43a</sdk:checksum>
15141514+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-17_r01.zip</sdk:url>
15151515+ </sdk:archive>
15161516+ </sdk:archives>
15171517+ <sdk:uses-license ref="android-sdk-license"/>
15181518+ </sdk:source>
15191519+15201520+ <sdk:source>
15211521+ <!-- Generated at Tue Jul 23 17:18:30 2013 from git_jb-mr2-release @ 737497 -->
15221522+ <sdk:revision>1</sdk:revision>
15231523+ <sdk:api-level>18</sdk:api-level>
15241524+ <sdk:archives>
15251525+ <sdk:archive>
15261526+ <sdk:size>20226735</sdk:size>
15271527+ <sdk:checksum type="sha1">8b49fdf7433f4881a2bfb559b5dd05d8ec65fb78</sdk:checksum>
15281528+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-18_r01.zip</sdk:url>
15291529+ </sdk:archive>
15301530+ </sdk:archives>
15311531+ <sdk:uses-license ref="android-sdk-license"/>
15321532+ </sdk:source>
15331533+15341534+ <sdk:source>
15351535+ <!-- Generated at Thu Dec 5 14:04:22 2013 from git_klp-dev @ 938007 -->
15361536+ <sdk:revision>2</sdk:revision>
15371537+ <sdk:api-level>19</sdk:api-level>
15381538+ <sdk:archives>
15391539+ <sdk:archive>
15401540+ <sdk:size>21819439</sdk:size>
15411541+ <sdk:checksum type="sha1">433a1d043ef77561571250e94cb7a0ef24a202e7</sdk:checksum>
15421542+ <sdk:url>https://dl-ssl.google.com/android/repository/sources-19_r02.zip</sdk:url>
15431543+ </sdk:archive>
15441544+ </sdk:archives>
15451545+ <sdk:uses-license ref="android-sdk-license"/>
15461546+ </sdk:source>
15471547+15481548+ <sdk:source>
15491549+ <!-- Generated at Mon Jun 23 19:18:43 2014 from git_klp-modular-release @ 1246132 -->
15501550+ <sdk:revision>1</sdk:revision>
15511551+ <sdk:api-level>20</sdk:api-level>
15521552+ <sdk:archives>
15531553+ <sdk:archive>
15541554+ <sdk:size>23367603</sdk:size>
15551555+ <sdk:checksum type="sha1">8da3e40f2625f9f7ef38b7e403f49f67226c0d76</sdk:checksum>
15561556+ <sdk:url>sources-20_r01.zip</sdk:url>
15571557+ </sdk:archive>
15581558+ </sdk:archives>
15591559+ <sdk:uses-license ref="android-sdk-license"/>
15601560+ </sdk:source>
15611561+</sdk:sdk-repository>
15621562+
···11-<?xml version="1.0" encoding="UTF-8"?>
22-<!--
33- * Copyright (C) 2009 The Android Open Source Project
44- *
55- * Licensed under the Apache License, version 2.0 (the "License");
66- * you may not use this file except in compliance with the License.
77- * You may obtain a copy of the License at
88- *
99- * http://www.apache.org/licenses/LICENSE-2.0
1010- *
1111- * Unless required by applicable law or agreed to in writing, software
1212- * distributed under the License is distributed on an "AS IS" BASIS,
1313- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414- * See the License for the specific language governing permissions and
1515- * limitations under the License.
1616--->
1717-<sdk:sdk-repository xmlns:sdk="http://schemas.android.com/sdk/android/repository/8" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1818-1919- <sdk:license id="android-sdk-license" type="text">Terms and Conditions
2020-2121-This is the Android Software Development Kit License Agreement.
2222-2323-2424-1. Introduction
2525-2626-2727-1.1 The Android Software Development Kit (referred to in this License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
2828-2929-1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
3030-3131-1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
3232-3333-3434-2. Accepting this License Agreement
3535-3636-3737-2.1 In order to use the SDK, you must first agree to this License Agreement. You may not use the SDK if you do not accept this License Agreement.
3838-3939-2.2 By clicking to accept, you hereby agree to the terms of this License Agreement.
4040-4141-2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries including the country in which you are resident or from which you use the SDK.
4242-4343-2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
4444-4545-4646-3. SDK License from Google
4747-4848-4949-3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable and non-exclusive license to use the SDK solely to develop applications to run on the Android platform.
5050-5151-3.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
5252-5353-3.3 You may not use the SDK for any purpose not expressly permitted by this License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK.
5454-5555-3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the SDK.
5656-5757-3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.
5858-5959-3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.
6060-6161-3.7 Nothing in this License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
6262-6363-3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.
6464-6565-6666-4. Use of the SDK by You
6767-6868-6969-4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
7070-7171-4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) this License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
7272-7373-4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.
7474-7575-4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.
7676-7777-4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
7878-7979-4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
8080-8181-8282-5. Your Developer Credentials
8383-8484-8585-5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
8686-8787-8888-6. Privacy and Information
8989-9090-9191-6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
9292-9393-6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.
9494-9595-9696-7. Third Party Applications
9797-9898-9999-7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
100100-101101-7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
102102-103103-7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.
104104-105105-106106-8. Using Android APIs
107107-108108-109109-8.1 Google Data APIs
110110-111111-8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
112112-113113-8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
114114-115115-116116-9. Terminating this License Agreement
117117-118118-119119-9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.
120120-121121-9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
122122-123123-9.3 Google may at any time, terminate this License Agreement with you if:
124124-(A) you have breached any provision of this License Agreement; or
125125-(B) Google is required to do so by law; or
126126-(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or
127127-(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
128128-129129-9.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.
130130-131131-132132-10. DISCLAIMER OF WARRANTIES
133133-134134-135135-10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
136136-137137-10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
138138-139139-10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
140140-141141-142142-11. LIMITATION OF LIABILITY
143143-144144-145145-11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
146146-147147-148148-12. Indemnification
149149-150150-151151-12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.
152152-153153-154154-13. Changes to the License Agreement
155155-156156-157157-13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.
158158-159159-160160-14. General Legal Terms
161161-162162-163163-14.1 This License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
164164-165165-14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
166166-167167-14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.
168168-169169-14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.
170170-171171-14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
172172-173173-14.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.
174174-175175-14.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
176176-177177-November 13, 2012
178178- </sdk:license>
179179-180180- <!-- PLATFORMS ........................ -->
181181-182182- <sdk:platform>
183183- <sdk:version>1.1</sdk:version>
184184- <sdk:api-level>2</sdk:api-level>
185185- <sdk:revision>1</sdk:revision>
186186- <sdk:description>Android SDK Platform 1.1_r1</sdk:description>
187187- <sdk:desc-url>http://developer.android.com/sdk/android-1.1.html</sdk:desc-url>
188188- <sdk:obsolete/>
189189- <sdk:archives>
190190- <sdk:archive arch="any" os="windows">
191191- <sdk:size>46828615</sdk:size>
192192- <sdk:checksum type="sha1">a4060f29ed39fc929c302836d488998c53c3002e</sdk:checksum>
193193- <sdk:url>android-1.1_r1-windows.zip</sdk:url>
194194- </sdk:archive>
195195- <sdk:archive arch="any" os="macosx">
196196- <sdk:size>45584305</sdk:size>
197197- <sdk:checksum type="sha1">e21dbcff45b7356657449ebb3c7e941be2bb5ebe</sdk:checksum>
198198- <sdk:url>android-1.1_r1-macosx.zip</sdk:url>
199199- </sdk:archive>
200200- <sdk:archive arch="any" os="linux">
201201- <sdk:size>45476658</sdk:size>
202202- <sdk:checksum type="sha1">c054d25c9b4c6251fa49c2f9c54336998679d3fe</sdk:checksum>
203203- <sdk:url>android-1.1_r1-linux.zip</sdk:url>
204204- </sdk:archive>
205205- </sdk:archives>
206206- <sdk:layoutlib>
207207- <sdk:api>4</sdk:api>
208208- </sdk:layoutlib>
209209- <sdk:uses-license ref="android-sdk-license"/>
210210- </sdk:platform>
211211-212212- <!-- Generated manually from earlier versions -->
213213-214214- <sdk:platform>
215215- <sdk:version>1.5</sdk:version>
216216- <sdk:api-level>3</sdk:api-level>
217217- <sdk:revision>04</sdk:revision>
218218- <sdk:min-tools-rev>
219219- <sdk:major>6</sdk:major>
220220- </sdk:min-tools-rev>
221221- <sdk:description>Android SDK Platform 1.5_r3</sdk:description>
222222- <sdk:desc-url>http://developer.android.com/sdk/android-1.5.html</sdk:desc-url>
223223- <sdk:archives>
224224- <sdk:archive arch="any" os="windows">
225225- <sdk:size>54624370</sdk:size>
226226- <sdk:checksum type="sha1">5bb106d2e40d481edd337b0833093843e15fe49a</sdk:checksum>
227227- <sdk:url>android-1.5_r04-windows.zip</sdk:url>
228228- </sdk:archive>
229229- <sdk:archive arch="any" os="macosx">
230230- <sdk:size>52440607</sdk:size>
231231- <sdk:checksum type="sha1">d3a67c2369afa48b6c3c7624de5031c262018d1e</sdk:checksum>
232232- <sdk:url>android-1.5_r04-macosx.zip</sdk:url>
233233- </sdk:archive>
234234- <sdk:archive arch="any" os="linux">
235235- <sdk:size>53348669</sdk:size>
236236- <sdk:checksum type="sha1">5c134b7df5f4b8bd5b61ba93bdaebada8fa3468c</sdk:checksum>
237237- <sdk:url>android-1.5_r04-linux.zip</sdk:url>
238238- </sdk:archive>
239239- </sdk:archives>
240240- <sdk:layoutlib>
241241- <sdk:api>4</sdk:api>
242242- </sdk:layoutlib>
243243- <sdk:uses-license ref="android-sdk-license"/>
244244- </sdk:platform>
245245-246246- <sdk:platform>
247247- <sdk:version>1.6</sdk:version>
248248- <sdk:api-level>4</sdk:api-level>
249249- <sdk:codename/>
250250- <sdk:revision>03</sdk:revision>
251251- <sdk:min-tools-rev>
252252- <sdk:major>6</sdk:major>
253253- </sdk:min-tools-rev>
254254- <sdk:description>Android SDK Platform 1.6_r2</sdk:description>
255255- <sdk:desc-url>http://developer.android.com/sdk/android-1.6.html</sdk:desc-url>
256256- <sdk:archives>
257257- <sdk:archive arch="any" os="linux">
258258- <sdk:size>63454485</sdk:size>
259259- <sdk:checksum type="sha1">483ed088e45bbdf3444baaf9250c8b02e5383cb0</sdk:checksum>
260260- <sdk:url>android-1.6_r03-linux.zip</sdk:url>
261261- </sdk:archive>
262262- <sdk:archive arch="any" os="macosx">
263263- <sdk:size>62418496</sdk:size>
264264- <sdk:checksum type="sha1">bdafad44f5df9f127979bdb21a1fdd87ee3cd625</sdk:checksum>
265265- <sdk:url>android-1.6_r03-macosx.zip</sdk:url>
266266- </sdk:archive>
267267- <sdk:archive arch="any" os="windows">
268268- <sdk:size>64654625</sdk:size>
269269- <sdk:checksum type="sha1">ce0b5e4ffaf12ca4fd07c2da71a8a1ab4a03dc22</sdk:checksum>
270270- <sdk:url>android-1.6_r03-windows.zip</sdk:url>
271271- </sdk:archive>
272272- </sdk:archives>
273273- <sdk:layoutlib>
274274- <sdk:api>4</sdk:api>
275275- </sdk:layoutlib>
276276- <sdk:uses-license ref="android-sdk-license"/>
277277- </sdk:platform>
278278-279279- <!-- Generated on Thu Oct 22 10:16:34 PDT 2009 using eclair-sdk 17704: Platform. Addon. Tools. Doc. -->
280280-281281- <sdk:platform>
282282- <sdk:version>2.0</sdk:version>
283283- <sdk:api-level>5</sdk:api-level>
284284- <sdk:codename/>
285285- <sdk:revision>01</sdk:revision>
286286- <sdk:min-tools-rev>
287287- <sdk:major>3</sdk:major>
288288- </sdk:min-tools-rev>
289289- <sdk:description>Android SDK Platform 2.0, revision 1</sdk:description>
290290- <sdk:desc-url>http://developer.android.com/sdk/android-2.0.html</sdk:desc-url>
291291- <sdk:obsolete/>
292292- <sdk:archives>
293293- <sdk:archive arch="any" os="linux">
294294- <sdk:size>75095268</sdk:size>
295295- <sdk:checksum type="sha1">be9be6a99ca32875c96ec7f91160ca9fce7e3c7d</sdk:checksum>
296296- <sdk:url>android-2.0_r01-linux.zip</sdk:url>
297297- </sdk:archive>
298298- <sdk:archive arch="any" os="macosx">
299299- <sdk:size>74956356</sdk:size>
300300- <sdk:checksum type="sha1">2a866d0870dbba18e0503cd41e5fae988a21b314</sdk:checksum>
301301- <sdk:url>android-2.0_r01-macosx.zip</sdk:url>
302302- </sdk:archive>
303303- <sdk:archive arch="any" os="windows">
304304- <sdk:size>76288040</sdk:size>
305305- <sdk:checksum type="sha1">aeb623217ff88b87216d6eb7dbc846ed53f68f57</sdk:checksum>
306306- <sdk:url>android-2.0_r01-windows.zip</sdk:url>
307307- </sdk:archive>
308308- </sdk:archives>
309309- <sdk:layoutlib>
310310- <sdk:api>4</sdk:api>
311311- </sdk:layoutlib>
312312- <sdk:uses-license ref="android-sdk-license"/>
313313- </sdk:platform>
314314-315315- <!-- Generated on Mon Nov 23 14:08:02 PST 2009 using eclair-release 20723: Platform. Addon. -->
316316-317317- <sdk:platform>
318318- <sdk:version>2.0.1</sdk:version>
319319- <sdk:api-level>6</sdk:api-level>
320320- <sdk:codename/>
321321- <sdk:revision>01</sdk:revision>
322322- <sdk:min-tools-rev>
323323- <sdk:major>4</sdk:major>
324324- </sdk:min-tools-rev>
325325- <sdk:description>Android SDK Platform 2.0.1_r1</sdk:description>
326326- <sdk:desc-url>http://developer.android.com/sdk/android-2.0.1.html</sdk:desc-url>
327327- <sdk:obsolete/>
328328- <sdk:archives>
329329- <sdk:archive arch="any" os="linux">
330330- <sdk:size>79192618</sdk:size>
331331- <sdk:checksum type="sha1">ce2c971dce352aa28af06bda92a070116aa5ae1a</sdk:checksum>
332332- <sdk:url>android-2.0.1_r01-linux.zip</sdk:url>
333333- </sdk:archive>
334334- <sdk:archive arch="any" os="macosx">
335335- <sdk:size>79035527</sdk:size>
336336- <sdk:checksum type="sha1">c3096f80d75a6fc8cb38ef8a18aec920e53d42c0</sdk:checksum>
337337- <sdk:url>android-2.0.1_r01-macosx.zip</sdk:url>
338338- </sdk:archive>
339339- <sdk:archive arch="any" os="windows">
340340- <sdk:size>80385601</sdk:size>
341341- <sdk:checksum type="sha1">255781ebe4509d9707d0e77edda2815e2bc216e6</sdk:checksum>
342342- <sdk:url>android-2.0.1_r01-windows.zip</sdk:url>
343343- </sdk:archive>
344344- </sdk:archives>
345345- <sdk:layoutlib>
346346- <sdk:api>4</sdk:api>
347347- </sdk:layoutlib>
348348- <sdk:uses-license ref="android-sdk-license"/>
349349- </sdk:platform>
350350-351351- <!-- Generated on Thu May 6 15:57:41 PDT 2010 using eclair 35983: Platform. -->
352352-353353- <sdk:platform>
354354- <sdk:version>2.1</sdk:version>
355355- <sdk:api-level>7</sdk:api-level>
356356- <sdk:codename/>
357357- <sdk:revision>03</sdk:revision>
358358- <sdk:min-tools-rev>
359359- <sdk:major>8</sdk:major>
360360- </sdk:min-tools-rev>
361361- <sdk:description>Android SDK Platform 2.1_r3</sdk:description>
362362- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
363363- <sdk:archives>
364364- <sdk:archive arch="any" os="any">
365365- <sdk:size>70142829</sdk:size>
366366- <sdk:checksum type="sha1">5ce51b023ac19f8738500b1007a1da5de2349a1e</sdk:checksum>
367367- <sdk:url>android-2.1_r03-linux.zip</sdk:url>
368368- </sdk:archive>
369369- </sdk:archives>
370370- <sdk:layoutlib>
371371- <sdk:api>4</sdk:api>
372372- </sdk:layoutlib>
373373- <sdk:uses-license ref="android-sdk-license"/>
374374- </sdk:platform>
375375-376376- <!-- Generated on Wed Jun 30 16:13:06 PDT 2010 using froyo-release 43546: Platform. Addon. -->
377377-378378- <sdk:platform>
379379- <sdk:version>2.2</sdk:version>
380380- <sdk:api-level>8</sdk:api-level>
381381- <sdk:codename/>
382382- <sdk:revision>03</sdk:revision>
383383- <sdk:min-tools-rev>
384384- <sdk:major>8</sdk:major>
385385- </sdk:min-tools-rev>
386386- <sdk:description>Android SDK Platform 2.2_r3</sdk:description>
387387- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
388388- <sdk:archives>
389389- <sdk:archive arch="any" os="any">
390390- <sdk:size>74652366</sdk:size>
391391- <sdk:checksum type="sha1">231262c63eefdff8fd0386e9ccfefeb27a8f9202</sdk:checksum>
392392- <sdk:url>android-2.2_r03-linux.zip</sdk:url>
393393- </sdk:archive>
394394- </sdk:archives>
395395- <sdk:layoutlib>
396396- <sdk:api>4</sdk:api>
397397- </sdk:layoutlib>
398398- <sdk:uses-license ref="android-sdk-license"/>
399399- </sdk:platform>
400400-401401- <!-- Generated on Thu Jan 20 09:40:59 PST 2011 using gingerbread-sdk-release 93351: Platform. -->
402402-403403- <sdk:platform>
404404- <sdk:version>2.3.1</sdk:version>
405405- <sdk:api-level>9</sdk:api-level>
406406- <sdk:codename/>
407407- <sdk:revision>02</sdk:revision>
408408- <sdk:min-tools-rev>
409409- <sdk:major>8</sdk:major>
410410- </sdk:min-tools-rev>
411411- <sdk:description>Android SDK Platform 2.3.1_r2</sdk:description>
412412- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
413413- <sdk:obsolete/>
414414- <sdk:archives>
415415- <sdk:archive arch="any" os="any">
416416- <sdk:size>78732563</sdk:size>
417417- <sdk:checksum type="sha1">209f8a7a8b2cb093fce858b8b55fed3ba5206773</sdk:checksum>
418418- <sdk:url>android-2.3.1_r02-linux.zip</sdk:url>
419419- </sdk:archive>
420420- </sdk:archives>
421421- <sdk:layoutlib>
422422- <sdk:api>4</sdk:api>
423423- </sdk:layoutlib>
424424- <sdk:uses-license ref="android-sdk-license"/>
425425- </sdk:platform>
426426-427427- <!-- Generated on Fri Feb 4 16:41:27 PST 2011 using gingerbread-release 101070: Platform. -->
428428-429429- <sdk:platform>
430430- <sdk:version>2.3.3</sdk:version>
431431- <sdk:api-level>10</sdk:api-level>
432432- <sdk:codename/>
433433- <sdk:revision>02</sdk:revision>
434434- <sdk:min-tools-rev>
435435- <sdk:major>8</sdk:major>
436436- </sdk:min-tools-rev>
437437- <sdk:description>Android SDK Platform 2.3.3._r2</sdk:description>
438438- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
439439- <sdk:archives>
440440- <sdk:archive arch="any" os="any">
441441- <sdk:size>85470907</sdk:size>
442442- <sdk:checksum type="sha1">887e37783ec32f541ea33c2c649dda648e8e6fb3</sdk:checksum>
443443- <sdk:url>android-2.3.3_r02-linux.zip</sdk:url>
444444- </sdk:archive>
445445- </sdk:archives>
446446- <sdk:layoutlib>
447447- <sdk:api>4</sdk:api>
448448- </sdk:layoutlib>
449449- <sdk:uses-license ref="android-sdk-license"/>
450450- </sdk:platform>
451451-452452- <!-- Generated on Thu Feb 17 08:41:10 PST 2011 using honeycomb 104254: Platform. -->
453453-454454- <sdk:platform>
455455- <sdk:version>3.0</sdk:version>
456456- <sdk:api-level>11</sdk:api-level>
457457- <sdk:codename/>
458458- <sdk:revision>02</sdk:revision>
459459- <sdk:min-tools-rev>
460460- <sdk:major>10</sdk:major>
461461- </sdk:min-tools-rev>
462462- <sdk:description>Android SDK Platform 3.0, revision 2</sdk:description>
463463- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
464464- <sdk:archives>
465465- <sdk:archive arch="any" os="any">
466466- <sdk:size>104513908</sdk:size>
467467- <sdk:checksum type="sha1">2c7d4bd13f276e76f6bbd87315fe27aba351dd37</sdk:checksum>
468468- <sdk:url>android-3.0_r02-linux.zip</sdk:url>
469469- </sdk:archive>
470470- </sdk:archives>
471471- <sdk:layoutlib>
472472- <sdk:api>4</sdk:api>
473473- </sdk:layoutlib>
474474- <sdk:uses-license ref="android-sdk-license"/>
475475- </sdk:platform>
476476-477477- <!-- Generated on Wed May 4 19:39:17 PDT 2011 using honeycomb-mr1 123685: Platform.
478478- r2: layoutlib.jar from 3.0 to fix issue with ADT 10.
479479- -->
480480-481481- <sdk:platform>
482482- <sdk:version>3.1</sdk:version>
483483- <sdk:api-level>12</sdk:api-level>
484484- <sdk:codename/>
485485- <sdk:revision>03</sdk:revision>
486486- <sdk:min-tools-rev>
487487- <sdk:major>11</sdk:major>
488488- </sdk:min-tools-rev>
489489- <sdk:description>Android SDK Platform 3.1, revision 3</sdk:description>
490490- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
491491- <sdk:archives>
492492- <sdk:archive arch="any" os="any">
493493- <sdk:size>106472351</sdk:size>
494494- <sdk:checksum type="sha1">4a50a6679cd95bb68bb5fc032e754cd7c5e2b1bf</sdk:checksum>
495495- <sdk:url>android-3.1_r03-linux.zip</sdk:url>
496496- </sdk:archive>
497497- </sdk:archives>
498498- <sdk:layoutlib>
499499- <sdk:api>4</sdk:api>
500500- </sdk:layoutlib>
501501- <sdk:uses-license ref="android-sdk-license"/>
502502- </sdk:platform>
503503-504504- <!-- Generated on Fri Jul 15 11:50:12 PDT 2011 using honeycomb-mr2-release 140714: Platform. -->
505505-506506- <sdk:platform>
507507- <sdk:version>3.2</sdk:version>
508508- <sdk:api-level>13</sdk:api-level>
509509- <sdk:codename/>
510510- <sdk:revision>01</sdk:revision>
511511- <sdk:min-tools-rev>
512512- <sdk:major>12</sdk:major>
513513- </sdk:min-tools-rev>
514514- <sdk:description>Android SDK Platform 3.2, revision 1</sdk:description>
515515- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
516516- <sdk:archives>
517517- <sdk:archive arch="any" os="any">
518518- <sdk:size>108426536</sdk:size>
519519- <sdk:checksum type="sha1">6189a500a8c44ae73a439604363de93591163cd9</sdk:checksum>
520520- <sdk:url>android-3.2_r01-linux.zip</sdk:url>
521521- </sdk:archive>
522522- </sdk:archives>
523523- <sdk:layoutlib>
524524- <sdk:api>4</sdk:api>
525525- </sdk:layoutlib>
526526- <sdk:uses-license ref="android-sdk-license"/>
527527- </sdk:platform>
528528-529529- <sdk:platform>
530530- <!-- Generated at Thu Dec 15 16:53:11 2011 from git_ics-mr0 @ 238991 -->
531531- <sdk:revision>3</sdk:revision>
532532- <sdk:description>Android SDK Platform 4.0</sdk:description>
533533- <sdk:version>4.0</sdk:version>
534534- <sdk:api-level>14</sdk:api-level>
535535- <sdk:layoutlib>
536536- <sdk:api>7</sdk:api>
537537- <sdk:revision>1</sdk:revision>
538538- </sdk:layoutlib>
539539- <sdk:archives>
540540- <sdk:archive arch="any" os="any">
541541- <sdk:size>45919570</sdk:size>
542542- <sdk:checksum type="sha1">41ba83b51e886461628c41b1b4d47762e0688ed5</sdk:checksum>
543543- <sdk:url>android-14_r03.zip</sdk:url>
544544- </sdk:archive>
545545- </sdk:archives>
546546- <sdk:uses-license ref="android-sdk-license"/>
547547- </sdk:platform>
548548-549549- <sdk:platform>
550550- <!-- Generated at Fri Mar 16 11:22:43 2012 from ics-mr1 @ 291902 -->
551551- <sdk:revision>3</sdk:revision>
552552- <sdk:description>Android SDK Platform 4.0.3</sdk:description>
553553- <sdk:version>4.0.3</sdk:version>
554554- <sdk:api-level>15</sdk:api-level>
555555- <sdk:min-tools-rev>
556556- <sdk:major>15</sdk:major>
557557- </sdk:min-tools-rev>
558558- <sdk:layoutlib>
559559- <sdk:api>7</sdk:api>
560560- <sdk:revision>1</sdk:revision>
561561- </sdk:layoutlib>
562562- <sdk:archives>
563563- <sdk:archive arch="any" os="any">
564564- <sdk:size>44414679</sdk:size>
565565- <sdk:checksum type="sha1">23da24610a8da51054c5391001c51ce43a778b97</sdk:checksum>
566566- <sdk:url>android-15_r03.zip</sdk:url>
567567- </sdk:archive>
568568- </sdk:archives>
569569- <sdk:uses-license ref="android-sdk-license"/>
570570- </sdk:platform>
571571-572572- <sdk:platform>
573573- <!-- Generated at Thu Dec 6 10:54:05 2012 from git_jb-dev @ 543062 -->
574574- <sdk:revision>4</sdk:revision>
575575- <sdk:description>Android SDK Platform 4.1.2</sdk:description>
576576- <sdk:version>4.1.2</sdk:version>
577577- <sdk:api-level>16</sdk:api-level>
578578- <sdk:min-tools-rev>
579579- <sdk:major>21</sdk:major>
580580- </sdk:min-tools-rev>
581581- <sdk:layoutlib>
582582- <sdk:api>9</sdk:api>
583583- <sdk:revision>1</sdk:revision>
584584- </sdk:layoutlib>
585585- <sdk:archives>
586586- <sdk:archive arch="any" os="any">
587587- <sdk:size>48005140</sdk:size>
588588- <sdk:checksum type="sha1">90b9157b8b45f966be97e11a22fba4591b96c2ee</sdk:checksum>
589589- <sdk:url>android-16_r04.zip</sdk:url>
590590- </sdk:archive>
591591- </sdk:archives>
592592- <sdk:uses-license ref="android-sdk-license"/>
593593- </sdk:platform>
594594-595595- <sdk:platform>
596596- <!-- Generated at Wed Feb 13 11:27:09 2013 from git_jb-mr1.1-dev @ 576024 -->
597597- <sdk:revision>2</sdk:revision>
598598- <sdk:description>Android SDK Platform 4.2.2</sdk:description>
599599- <sdk:version>4.2.2</sdk:version>
600600- <sdk:api-level>17</sdk:api-level>
601601- <sdk:min-tools-rev>
602602- <sdk:major>21</sdk:major>
603603- </sdk:min-tools-rev>
604604- <sdk:layoutlib>
605605- <sdk:api>9</sdk:api>
606606- <sdk:revision>1</sdk:revision>
607607- </sdk:layoutlib>
608608- <sdk:archives>
609609- <sdk:archive arch="any" os="any">
610610- <sdk:size>48057484</sdk:size>
611611- <sdk:checksum type="sha1">c442c32c1b702173ab0929a74486e4f86fe528ec</sdk:checksum>
612612- <sdk:url>android-17_r02.zip</sdk:url>
613613- </sdk:archive>
614614- </sdk:archives>
615615- <sdk:uses-license ref="android-sdk-license"/>
616616- </sdk:platform>
617617-618618- <sdk:platform>
619619- <!-- Generated at Wed Sep 11 18:15:07 2013 from git_jb-mr2-dev @ 819563 -->
620620- <sdk:revision>2</sdk:revision>
621621- <sdk:description>Android SDK Platform 4.3</sdk:description>
622622- <sdk:version>4.3</sdk:version>
623623- <sdk:api-level>18</sdk:api-level>
624624- <sdk:min-tools-rev>
625625- <sdk:major>21</sdk:major>
626626- </sdk:min-tools-rev>
627627- <sdk:layoutlib>
628628- <sdk:api>10</sdk:api>
629629- <sdk:revision>1</sdk:revision>
630630- </sdk:layoutlib>
631631- <sdk:archives>
632632- <sdk:archive arch="any" os="any">
633633- <sdk:size>57319855</sdk:size>
634634- <sdk:checksum type="sha1">62a9438d4cf6692f4d6510c27a380be195db9534</sdk:checksum>
635635- <sdk:url>android-18_r02.zip</sdk:url>
636636- </sdk:archive>
637637- </sdk:archives>
638638- <sdk:uses-license ref="android-sdk-license"/>
639639- </sdk:platform>
640640-641641- <sdk:platform>
642642- <!-- Generated at Mon Oct 28 23:34:31 2013 from git_klp-release @ 892118 -->
643643- <sdk:revision>1</sdk:revision>
644644- <sdk:description>Android SDK Platform 4.4</sdk:description>
645645- <sdk:version>4.4</sdk:version>
646646- <sdk:api-level>19</sdk:api-level>
647647- <sdk:min-tools-rev>
648648- <sdk:major>22</sdk:major>
649649- </sdk:min-tools-rev>
650650- <sdk:layoutlib>
651651- <sdk:api>10</sdk:api>
652652- <sdk:revision>1</sdk:revision>
653653- </sdk:layoutlib>
654654- <sdk:archives>
655655- <sdk:archive arch="any" os="any">
656656- <sdk:size>59279956</sdk:size>
657657- <sdk:checksum type="sha1">96281811998272dce46e8285d15fce444a3d5a96</sdk:checksum>
658658- <sdk:url>android-19_r01.zip</sdk:url>
659659- </sdk:archive>
660660- </sdk:archives>
661661- <sdk:uses-license ref="android-sdk-license"/>
662662- </sdk:platform>
663663-664664-665665- <!-- SYSTEM IMAGES ........................ -->
666666-667667- <sdk:system-image>
668668- <!-- Generated at Wed Dec 7 13:47:01 2011 from git_ics-mr0 @ 229537 -->
669669- <sdk:revision>2</sdk:revision>
670670- <sdk:description>Android SDK Platform 4.0</sdk:description>
671671- <sdk:api-level>14</sdk:api-level>
672672- <sdk:abi>armeabi-v7a</sdk:abi>
673673- <sdk:archives>
674674- <sdk:archive arch="any" os="any">
675675- <sdk:size>99621822</sdk:size>
676676- <sdk:checksum type="sha1">d8991b0c06b18d7d6ed4169d67460ee1add6661b</sdk:checksum>
677677- <sdk:url>sysimg_armv7a-14_r02.zip</sdk:url>
678678- </sdk:archive>
679679- </sdk:archives>
680680- <sdk:uses-license ref="android-sdk-license"/>
681681- </sdk:system-image>
682682-683683- <sdk:system-image>
684684- <!-- Generated at Fri Mar 30 10:43:23 2012 from ics-mr1 @ 302030 -->
685685- <sdk:revision>2</sdk:revision>
686686- <sdk:description>Android SDK Platform 4.0.3</sdk:description>
687687- <sdk:api-level>15</sdk:api-level>
688688- <sdk:abi>armeabi-v7a</sdk:abi>
689689- <sdk:archives>
690690- <sdk:archive arch="any" os="any">
691691- <sdk:size>96227377</sdk:size>
692692- <sdk:checksum type="sha1">1bf977d6cb4e0ad38dceac0c4863d1caa21f326e</sdk:checksum>
693693- <sdk:url>sysimg_armv7a-15_r02.zip</sdk:url>
694694- </sdk:archive>
695695- </sdk:archives>
696696- <sdk:uses-license ref="android-sdk-license"/>
697697- </sdk:system-image>
698698-699699- <sdk:system-image>
700700- <!-- Generated at Tue Oct 9 13:43:08 2012 from git_jb-dev @ 495790 -->
701701- <sdk:revision>3</sdk:revision>
702702- <sdk:description>Android SDK Platform 4.1</sdk:description>
703703- <sdk:api-level>16</sdk:api-level>
704704- <sdk:abi>armeabi-v7a</sdk:abi>
705705- <sdk:archives>
706706- <sdk:archive arch="any" os="any">
707707- <sdk:size>112528368</sdk:size>
708708- <sdk:checksum type="sha1">d1cddb23f17aad5821a089c403d4cddad2cf9ef7</sdk:checksum>
709709- <sdk:url>sysimg_armv7a-16_r03.zip</sdk:url>
710710- </sdk:archive>
711711- </sdk:archives>
712712- <sdk:uses-license ref="android-sdk-license"/>
713713- </sdk:system-image>
714714-715715- <sdk:system-image>
716716- <!-- Generated at Wed Feb 13 11:29:12 2013 from git_jb-mr1.1-dev @ 576024 -->
717717- <sdk:revision>2</sdk:revision>
718718- <sdk:description>Android SDK Platform 4.2.2</sdk:description>
719719- <sdk:api-level>17</sdk:api-level>
720720- <sdk:abi>armeabi-v7a</sdk:abi>
721721- <sdk:archives>
722722- <sdk:archive arch="any" os="any">
723723- <sdk:size>116553808</sdk:size>
724724- <sdk:checksum type="sha1">1c321cda1af793b84d47d1a8d15f85444d265e3c</sdk:checksum>
725725- <sdk:url>sysimg_armv7a-17_r02.zip</sdk:url>
726726- </sdk:archive>
727727- </sdk:archives>
728728- <sdk:uses-license ref="android-sdk-license"/>
729729- </sdk:system-image>
730730-731731- <sdk:system-image>
732732- <!-- Generated at Mon Aug 12 12:43:28 2013 from git_jb-mr2-dev @ 774058 -->
733733- <sdk:revision>2</sdk:revision>
734734- <sdk:description>Android SDK Platform 4.3</sdk:description>
735735- <sdk:api-level>18</sdk:api-level>
736736- <sdk:abi>armeabi-v7a</sdk:abi>
737737- <sdk:archives>
738738- <sdk:archive arch="any" os="any">
739739- <sdk:size>125457135</sdk:size>
740740- <sdk:checksum type="sha1">4a1a93200210d8c42793324362868846f67401ab</sdk:checksum>
741741- <sdk:url>sysimg_armv7a-18_r02.zip</sdk:url>
742742- </sdk:archive>
743743- </sdk:archives>
744744- <sdk:uses-license ref="android-sdk-license"/>
745745- </sdk:system-image>
746746-747747- <sdk:system-image>
748748- <!-- Generated at Mon Oct 28 23:36:43 2013 from git_klp-release @ 892118 -->
749749- <sdk:revision>1</sdk:revision>
750750- <sdk:description>Android SDK Platform 4.4</sdk:description>
751751- <sdk:api-level>19</sdk:api-level>
752752- <sdk:abi>armeabi-v7a</sdk:abi>
753753- <sdk:archives>
754754- <sdk:archive arch="any" os="any">
755755- <sdk:size>155838103</sdk:size>
756756- <sdk:checksum type="sha1">12dd1187dfd953b1ffcef5067d94578590f9e600</sdk:checksum>
757757- <sdk:url>sysimg_armv7a-19_r01.zip</sdk:url>
758758- </sdk:archive>
759759- </sdk:archives>
760760- <sdk:uses-license ref="android-sdk-license"/>
761761- </sdk:system-image>
762762-763763-764764- <!-- SAMPLES ........................ -->
765765-766766- <!-- Generated on Mon Feb 22 13:39:38 PST 2010 using eclair 25887: Samples. -->
767767-768768- <sdk:sample>
769769- <sdk:api-level>7</sdk:api-level>
770770- <sdk:codename/>
771771- <sdk:revision>01</sdk:revision>
772772- <sdk:description>Android SDK Samples for Android API 7, revision 1</sdk:description>
773773- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
774774- <sdk:archives>
775775- <sdk:archive arch="any" os="any">
776776- <sdk:size>7677831</sdk:size>
777777- <sdk:checksum type="sha1">51e4907f60f248ede5c58b54ce7b6ae0b473e0ca</sdk:checksum>
778778- <sdk:url>samples-2.1_r01-linux.zip</sdk:url>
779779- </sdk:archive>
780780- </sdk:archives>
781781- <sdk:uses-license ref="android-sdk-license"/>
782782- </sdk:sample>
783783-784784- <!-- Generated on Tue May 11 19:15:20 PDT 2010 using froyo 36658: Samples. -->
785785-786786- <sdk:sample>
787787- <sdk:api-level>8</sdk:api-level>
788788- <sdk:codename/>
789789- <sdk:revision>01</sdk:revision>
790790- <sdk:description>Android SDK Samples for Android API 8, revision 1</sdk:description>
791791- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
792792- <sdk:archives>
793793- <sdk:archive arch="any" os="any">
794794- <sdk:size>7969716</sdk:size>
795795- <sdk:checksum type="sha1">d16d8bf2dd84cedf73b98b948d66461c8f19d6fb</sdk:checksum>
796796- <sdk:url>samples-2.2_r01-linux.zip</sdk:url>
797797- </sdk:archive>
798798- </sdk:archives>
799799- <sdk:uses-license ref="android-sdk-license"/>
800800- </sdk:sample>
801801-802802- <!-- Generated on Tue Nov 30 19:39:34 PST 2010 using gingerbread 79962: Samples. -->
803803-804804- <sdk:sample>
805805- <sdk:api-level>9</sdk:api-level>
806806- <sdk:codename/>
807807- <sdk:revision>01</sdk:revision>
808808- <sdk:description>Android SDK Samples for Android API 9, revision 1</sdk:description>
809809- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
810810- <sdk:obsolete/>
811811- <sdk:archives>
812812- <sdk:archive arch="any" os="any">
813813- <sdk:size>8516326</sdk:size>
814814- <sdk:checksum type="sha1">36f7dd6c8b5dbb50b3cf3e3ac5209f3fe55db2aa</sdk:checksum>
815815- <sdk:url>samples-2.3_r01-linux.zip</sdk:url>
816816- </sdk:archive>
817817- </sdk:archives>
818818- <sdk:uses-license ref="android-sdk-license"/>
819819- </sdk:sample>
820820-821821- <!-- Generated on Tue Feb 8 17:37:15 PST 2011 using gingerbread 102121: Samples. -->
822822-823823- <sdk:sample>
824824- <sdk:api-level>10</sdk:api-level>
825825- <sdk:codename/>
826826- <sdk:revision>01</sdk:revision>
827827- <sdk:description>Android SDK Samples for Android API 10, revision 1</sdk:description>
828828- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
829829- <sdk:archives>
830830- <sdk:archive arch="any" os="any">
831831- <sdk:size>8539583</sdk:size>
832832- <sdk:checksum type="sha1">93b0c3f3bdf5b07f1f115100b4954f0665297a0d</sdk:checksum>
833833- <sdk:url>samples-2.3.3_r01-linux.zip</sdk:url>
834834- </sdk:archive>
835835- </sdk:archives>
836836- <sdk:uses-license ref="android-sdk-license"/>
837837- </sdk:sample>
838838-839839- <!-- Generated on Thu Feb 17 08:45:49 PST 2011 using honeycomb 104254: Samples. -->
840840-841841- <sdk:sample>
842842- <sdk:api-level>11</sdk:api-level>
843843- <sdk:codename/>
844844- <sdk:revision>01</sdk:revision>
845845- <sdk:description>Android SDK Samples for Android API 11, revision 1</sdk:description>
846846- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
847847- <sdk:archives>
848848- <sdk:archive arch="any" os="any">
849849- <sdk:size>11976920</sdk:size>
850850- <sdk:checksum type="sha1">3749ace584631270268d65bb1d0ad61b0d691682</sdk:checksum>
851851- <sdk:url>samples-3.0_r01-linux.zip</sdk:url>
852852- </sdk:archive>
853853- </sdk:archives>
854854- <sdk:uses-license ref="android-sdk-license"/>
855855- </sdk:sample>
856856-857857- <!-- Generated on Wed May 4 19:49:56 PDT 2011 using honeycomb-mr1 123685: Samples. -->
858858-859859- <sdk:sample>
860860- <sdk:api-level>12</sdk:api-level>
861861- <sdk:codename/>
862862- <sdk:revision>01</sdk:revision>
863863- <sdk:description>Android SDK Samples for Android API 12, revision 1</sdk:description>
864864- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
865865- <sdk:archives>
866866- <sdk:archive arch="any" os="any">
867867- <sdk:size>12150514</sdk:size>
868868- <sdk:checksum type="sha1">df0ace37cbca73373fe94080f94c71557cac73a7</sdk:checksum>
869869- <sdk:url>samples-3.1_r01-linux.zip</sdk:url>
870870- </sdk:archive>
871871- </sdk:archives>
872872- <sdk:uses-license ref="android-sdk-license"/>
873873- </sdk:sample>
874874-875875- <!-- Generated on Fri Jul 15 11:52:24 PDT 2011 using honeycomb-mr2 142871: Samples. -->
876876-877877- <sdk:sample>
878878- <sdk:api-level>13</sdk:api-level>
879879- <sdk:codename/>
880880- <sdk:revision>01</sdk:revision>
881881- <sdk:description>Android SDK Samples for Android API 13, revision 1</sdk:description>
882882- <sdk:desc-url>http://developer.android.com/sdk/</sdk:desc-url>
883883- <sdk:archives>
884884- <sdk:archive arch="any" os="any">
885885- <sdk:size>12193502</sdk:size>
886886- <sdk:checksum type="sha1">078bcf1abc1cb8921f3fa482c252963a782bed60</sdk:checksum>
887887- <sdk:url>samples-3.2_r01-linux.zip</sdk:url>
888888- </sdk:archive>
889889- </sdk:archives>
890890- <sdk:uses-license ref="android-sdk-license"/>
891891- </sdk:sample>
892892-893893- <sdk:sample>
894894- <!-- Generated at Wed Dec 7 13:48:27 2011 from git_ics-mr0 @ 234950 -->
895895- <sdk:revision>2</sdk:revision>
896896- <sdk:api-level>14</sdk:api-level>
897897- <sdk:archives>
898898- <sdk:archive arch="any" os="any">
899899- <sdk:size>16253619</sdk:size>
900900- <sdk:checksum type="sha1">1312c22ab0b650e26835cc3945d4ff8cea183416</sdk:checksum>
901901- <sdk:url>samples-14_r02.zip</sdk:url>
902902- </sdk:archive>
903903- </sdk:archives>
904904- <sdk:uses-license ref="android-sdk-license"/>
905905- </sdk:sample>
906906-907907- <sdk:sample>
908908- <!-- Generated at Fri Mar 16 11:27:52 2012 from ics-mr1 @ 291902 -->
909909- <sdk:revision>2</sdk:revision>
910910- <sdk:api-level>15</sdk:api-level>
911911- <sdk:archives>
912912- <sdk:archive arch="any" os="any">
913913- <sdk:size>16366656</sdk:size>
914914- <sdk:checksum type="sha1">042f368c5b09eca4d278264e6dbf9c12c5f73d1f</sdk:checksum>
915915- <sdk:url>samples-15_r02.zip</sdk:url>
916916- </sdk:archive>
917917- </sdk:archives>
918918- <sdk:uses-license ref="android-sdk-license"/>
919919- </sdk:sample>
920920-921921- <sdk:sample>
922922- <!-- Generated at Sun Jun 24 14:02:06 2012 from git_jb-release @ 391408 -->
923923- <sdk:revision>1</sdk:revision>
924924- <sdk:api-level>16</sdk:api-level>
925925- <sdk:archives>
926926- <sdk:archive arch="any" os="any">
927927- <sdk:size>14729945</sdk:size>
928928- <sdk:checksum type="sha1">dce3a2d41db50a381ef47ee8bddbe928520e685e</sdk:checksum>
929929- <sdk:url>samples-16_r01.zip</sdk:url>
930930- </sdk:archive>
931931- </sdk:archives>
932932- <sdk:uses-license ref="android-sdk-license"/>
933933- </sdk:sample>
934934-935935- <sdk:sample>
936936- <!-- Generated at Mon Nov 12 17:18:09 2012 from git_jb-mr1-dev @ 526865 -->
937937- <sdk:revision>1</sdk:revision>
938938- <sdk:api-level>17</sdk:api-level>
939939- <sdk:archives>
940940- <sdk:archive arch="any" os="any">
941941- <sdk:size>14840030</sdk:size>
942942- <sdk:checksum type="sha1">12d58cb26503610fc05bd7618c434cc6f983bc41</sdk:checksum>
943943- <sdk:url>samples-17_r01.zip</sdk:url>
944944- </sdk:archive>
945945- </sdk:archives>
946946- <sdk:uses-license ref="android-sdk-license"/>
947947- </sdk:sample>
948948-949949- <sdk:sample>
950950- <!-- Generated at Tue Jul 23 17:17:22 2013 from git_jb-mr2-ub-dev @ 751786 -->
951951- <sdk:revision>1</sdk:revision>
952952- <sdk:api-level>18</sdk:api-level>
953953- <sdk:archives>
954954- <sdk:archive arch="any" os="any">
955955- <sdk:size>19897793</sdk:size>
956956- <sdk:checksum type="sha1">73e879ce46c04a6e63ad1a9107018b4782945007</sdk:checksum>
957957- <sdk:url>samples-18_r01.zip</sdk:url>
958958- </sdk:archive>
959959- </sdk:archives>
960960- <sdk:uses-license ref="android-sdk-license"/>
961961- </sdk:sample>
962962-963963- <sdk:sample>
964964- <!-- Generated at Wed Oct 30 20:26:32 2013 from git_klp-dev @ 896074 -->
965965- <sdk:revision>1</sdk:revision>
966966- <sdk:api-level>19</sdk:api-level>
967967- <sdk:archives>
968968- <sdk:archive arch="any" os="any">
969969- <sdk:size>20697510</sdk:size>
970970- <sdk:checksum type="sha1">c2007694b5e5ad6737f647db8160155d5258cb7f</sdk:checksum>
971971- <sdk:url>samples-19_r01.zip</sdk:url>
972972- </sdk:archive>
973973- </sdk:archives>
974974- <sdk:uses-license ref="android-sdk-license"/>
975975- </sdk:sample>
976976-977977- <!-- PLATFORM-TOOLS ........................ -->
978978-979979- <sdk:platform-tool>
980980- <!-- Generated at Mon Oct 28 23:35:14 2013 from git_klp-release @ 886418 -->
981981- <sdk:revision>
982982- <sdk:major>19</sdk:major>
983983- <sdk:minor>0</sdk:minor>
984984- <sdk:micro>0</sdk:micro>
985985- </sdk:revision>
986986- <sdk:archives>
987987- <sdk:archive arch="any" os="windows">
988988- <sdk:size>1116358</sdk:size>
989989- <sdk:checksum type="sha1">755dcb5b5b72bbca90dd055eec4c8d0b1fce7cfd</sdk:checksum>
990990- <sdk:url>platform-tools_r19-windows.zip</sdk:url>
991991- </sdk:archive>
992992- <sdk:archive arch="any" os="linux">
993993- <sdk:size>1172749</sdk:size>
994994- <sdk:checksum type="sha1">66ee37daf8a2a8f1aa8939ccd4093658e30aa49b</sdk:checksum>
995995- <sdk:url>platform-tools_r19-linux.zip</sdk:url>
996996- </sdk:archive>
997997- <sdk:archive arch="any" os="macosx">
998998- <sdk:size>1120849</sdk:size>
999999- <sdk:checksum type="sha1">69af30f488163dfc3da8cef1bb6cc7e8a6df5681</sdk:checksum>
10001000- <sdk:url>platform-tools_r19-macosx.zip</sdk:url>
10011001- </sdk:archive>
10021002- </sdk:archives>
10031003- <sdk:uses-license ref="android-sdk-license"/>
10041004- </sdk:platform-tool>
10051005-10061006- <!-- BUILD-TOOLS ........................ -->
10071007-10081008- <sdk:build-tool>
10091009- <!-- Generated at Tue May 14 16:40:25 2013 from git_jb-mr1.1-dev @ 673949 -->
10101010- <sdk:revision>
10111011- <sdk:major>17</sdk:major>
10121012- <sdk:minor>0</sdk:minor>
10131013- <sdk:micro>0</sdk:micro>
10141014- </sdk:revision>
10151015- <sdk:archives>
10161016- <sdk:archive arch="any" os="windows">
10171017- <sdk:size>11004914</sdk:size>
10181018- <sdk:checksum type="sha1">899897d327b0bad492d3a40d3db4d96119c15bc0</sdk:checksum>
10191019- <sdk:url>build-tools_r17-windows.zip</sdk:url>
10201020- </sdk:archive>
10211021- <sdk:archive arch="any" os="linux">
10221022- <sdk:size>11696007</sdk:size>
10231023- <sdk:checksum type="sha1">2c2872bc3806aabf16a12e3959c2183ddc866e6d</sdk:checksum>
10241024- <sdk:url>build-tools_r17-linux.zip</sdk:url>
10251025- </sdk:archive>
10261026- <sdk:archive arch="any" os="macosx">
10271027- <sdk:size>12208114</sdk:size>
10281028- <sdk:checksum type="sha1">602ee709be9dbb8f179b1e4075148a57f9419930</sdk:checksum>
10291029- <sdk:url>build-tools_r17-macosx.zip</sdk:url>
10301030- </sdk:archive>
10311031- </sdk:archives>
10321032- <sdk:uses-license ref="android-sdk-license"/>
10331033- </sdk:build-tool>
10341034-10351035- <!-- Build tools version 18.0.0 was broken for renderscript, so it has been removed -->
10361036-10371037- <sdk:build-tool>
10381038- <!-- Generated at Mon Jul 29 15:14:00 2013 from git_jb-mr2-dev @ 754669 -->
10391039- <sdk:revision>
10401040- <sdk:major>18</sdk:major>
10411041- <sdk:minor>0</sdk:minor>
10421042- <sdk:micro>1</sdk:micro>
10431043- </sdk:revision>
10441044- <sdk:archives>
10451045- <sdk:archive arch="any" os="windows">
10461046- <sdk:size>15413527</sdk:size>
10471047- <sdk:checksum type="sha1">a6c2afd0b6289d589351956d2f5212b37014ca7d</sdk:checksum>
10481048- <sdk:url>build-tools_r18.0.1-windows.zip</sdk:url>
10491049- </sdk:archive>
10501050- <sdk:archive arch="any" os="linux">
10511051- <sdk:size>16627330</sdk:size>
10521052- <sdk:checksum type="sha1">f11618492b0d2270c332325d45d752d3656a9640</sdk:checksum>
10531053- <sdk:url>build-tools_r18.0.1-linux.zip</sdk:url>
10541054- </sdk:archive>
10551055- <sdk:archive arch="any" os="macosx">
10561056- <sdk:size>16633121</sdk:size>
10571057- <sdk:checksum type="sha1">d84f5692fb44d60fc53e5b2507cebf9f24626902</sdk:checksum>
10581058- <sdk:url>build-tools_r18.0.1-macosx.zip</sdk:url>
10591059- </sdk:archive>
10601060- </sdk:archives>
10611061- <sdk:uses-license ref="android-sdk-license"/>
10621062- </sdk:build-tool>
10631063-10641064- <sdk:build-tool>
10651065- <!-- Generated at Wed Sep 11 17:41:47 2013 from git_jb-mr2-dev @ 819563 -->
10661066- <sdk:revision>
10671067- <sdk:major>18</sdk:major>
10681068- <sdk:minor>1</sdk:minor>
10691069- <sdk:micro>0</sdk:micro>
10701070- </sdk:revision>
10711071- <sdk:archives>
10721072- <sdk:archive arch="any" os="windows">
10731073- <sdk:size>19659547</sdk:size>
10741074- <sdk:checksum type="sha1">3a9810fc8559ab03c09378f07531e8cae2f1db30</sdk:checksum>
10751075- <sdk:url>build-tools_r18.1-windows.zip</sdk:url>
10761076- </sdk:archive>
10771077- <sdk:archive arch="any" os="linux">
10781078- <sdk:size>20229298</sdk:size>
10791079- <sdk:checksum type="sha1">f314a0599e51397f0886fe888b50dd98f2f050d8</sdk:checksum>
10801080- <sdk:url>build-tools_r18.1-linux.zip</sdk:url>
10811081- </sdk:archive>
10821082- <sdk:archive arch="any" os="macosx">
10831083- <sdk:size>20451524</sdk:size>
10841084- <sdk:checksum type="sha1">16ddb299b8b43063e5bb3387ec17147c5053dfd8</sdk:checksum>
10851085- <sdk:url>build-tools_r18.1-macosx.zip</sdk:url>
10861086- </sdk:archive>
10871087- </sdk:archives>
10881088- <sdk:uses-license ref="android-sdk-license"/>
10891089- </sdk:build-tool>
10901090-10911091- <sdk:build-tool>
10921092- <!-- Generated at Thu Oct 10 14:18:15 2013 from git_jb-mr2-dev @ 867478 -->
10931093- <sdk:revision>
10941094- <sdk:major>18</sdk:major>
10951095- <sdk:minor>1</sdk:minor>
10961096- <sdk:micro>1</sdk:micro>
10971097- </sdk:revision>
10981098- <sdk:archives>
10991099- <sdk:archive arch="any" os="windows">
11001100- <sdk:size>19660000</sdk:size>
11011101- <sdk:checksum type="sha1">c4605066e2f851387ea70bc1442b1968bd7b4a15</sdk:checksum>
11021102- <sdk:url>build-tools_r18.1.1-windows.zip</sdk:url>
11031103- </sdk:archive>
11041104- <sdk:archive arch="any" os="linux">
11051105- <sdk:size>20229760</sdk:size>
11061106- <sdk:checksum type="sha1">68c9acbfc0cec2d51b19efaed39831a17055d998</sdk:checksum>
11071107- <sdk:url>build-tools_r18.1.1-linux.zip</sdk:url>
11081108- </sdk:archive>
11091109- <sdk:archive arch="any" os="macosx">
11101110- <sdk:size>20452157</sdk:size>
11111111- <sdk:checksum type="sha1">a9d9d37f6ddf859e57abc78802a77aaa166e48d4</sdk:checksum>
11121112- <sdk:url>build-tools_r18.1.1-macosx.zip</sdk:url>
11131113- </sdk:archive>
11141114- </sdk:archives>
11151115- <sdk:uses-license ref="android-sdk-license"/>
11161116- </sdk:build-tool>
11171117-11181118- <sdk:build-tool>
11191119- <!-- Generated at Mon Oct 28 23:12:03 2013 from git_klp-release @ 886418 -->
11201120- <sdk:revision>
11211121- <sdk:major>19</sdk:major>
11221122- <sdk:minor>0</sdk:minor>
11231123- <sdk:micro>0</sdk:micro>
11241124- </sdk:revision>
11251125- <sdk:archives>
11261126- <sdk:archive arch="any" os="windows">
11271127- <sdk:size>20611447</sdk:size>
11281128- <sdk:checksum type="sha1">6edf505c20f5ece9c48fa0aff9a90488f9654d52</sdk:checksum>
11291129- <sdk:url>build-tools_r19-windows.zip</sdk:url>
11301130- </sdk:archive>
11311131- <sdk:archive arch="any" os="linux">
11321132- <sdk:size>21339943</sdk:size>
11331133- <sdk:checksum type="sha1">55c1a6cf632e7d346f0002b275ec41fd3137fd83</sdk:checksum>
11341134- <sdk:url>build-tools_r19-linux.zip</sdk:url>
11351135- </sdk:archive>
11361136- <sdk:archive arch="any" os="macosx">
11371137- <sdk:size>21441270</sdk:size>
11381138- <sdk:checksum type="sha1">86ec1c12db1bc446b7bcaefc5cc14eb361044e90</sdk:checksum>
11391139- <sdk:url>build-tools_r19-macosx.zip</sdk:url>
11401140- </sdk:archive>
11411141- </sdk:archives>
11421142- <sdk:uses-license ref="android-sdk-license"/>
11431143- </sdk:build-tool>
11441144-11451145- <!-- TOOLS ........................ -->
11461146-11471147- <sdk:tool>
11481148- <!-- Generated at Mon Oct 28 23:45:30 2013 from git_mirror-aosp-tools_r22.2 @ 887826 -->
11491149- <sdk:revision>
11501150- <sdk:major>22</sdk:major>
11511151- <sdk:minor>3</sdk:minor>
11521152- </sdk:revision>
11531153- <sdk:min-platform-tools-rev>
11541154- <sdk:major>18</sdk:major>
11551155- </sdk:min-platform-tools-rev>
11561156- <sdk:archives>
11571157- <sdk:archive arch="any" os="windows">
11581158- <sdk:size>108726734</sdk:size>
11591159- <sdk:checksum type="sha1">1cdc825c9a84ccf69b4a6386076a881d962dd7a9</sdk:checksum>
11601160- <sdk:url>tools_r22.3-windows.zip</sdk:url>
11611161- </sdk:archive>
11621162- <sdk:archive arch="any" os="linux">
11631163- <sdk:size>101224750</sdk:size>
11641164- <sdk:checksum type="sha1">f76251916a23cb3d85e579f01cc6711a334f9064</sdk:checksum>
11651165- <sdk:url>tools_r22.3-linux.zip</sdk:url>
11661166- </sdk:archive>
11671167- <sdk:archive arch="any" os="macosx">
11681168- <sdk:size>74859563</sdk:size>
11691169- <sdk:checksum type="sha1">697d7f6fa44f02e6894d0eeb948ea97e3cdc8c3c</sdk:checksum>
11701170- <sdk:url>tools_r22.3-macosx.zip</sdk:url>
11711171- </sdk:archive>
11721172- </sdk:archives>
11731173- <sdk:uses-license ref="android-sdk-license"/>
11741174- </sdk:tool>
11751175-11761176- <!-- DOCS ........................ -->
11771177-11781178- <sdk:doc>
11791179- <!-- Generated at Wed Oct 30 22:52:09 2013 from git_klp-dev @ 896129 -->
11801180- <sdk:revision>1</sdk:revision>
11811181- <sdk:api-level>19</sdk:api-level>
11821182- <sdk:archives>
11831183- <sdk:archive arch="any" os="any">
11841184- <sdk:size>181765706</sdk:size>
11851185- <sdk:checksum type="sha1">6c92bb045f75a2eabfbdc3e26ff64ce0a7a2b3fc</sdk:checksum>
11861186- <sdk:url>docs-19_r01.zip</sdk:url>
11871187- </sdk:archive>
11881188- </sdk:archives>
11891189- <sdk:uses-license ref="android-sdk-license"/>
11901190- </sdk:doc>
11911191-11921192- <!-- SOURCES ........................ -->
11931193-11941194- <sdk:source>
11951195- <!-- Generated at Wed Dec 7 13:48:11 2011 from git_ics-mr0 @ 234950 -->
11961196- <sdk:revision>1</sdk:revision>
11971197- <sdk:api-level>14</sdk:api-level>
11981198- <sdk:archives>
11991199- <sdk:archive arch="any" os="any">
12001200- <sdk:size>16152383</sdk:size>
12011201- <sdk:checksum type="sha1">eaf4ed7dcac46e68516a1b4aa5b0d9e5a39a7555</sdk:checksum>
12021202- <sdk:url>sources-14_r01.zip</sdk:url>
12031203- </sdk:archive>
12041204- </sdk:archives>
12051205- <sdk:uses-license ref="android-sdk-license"/>
12061206- </sdk:source>
12071207-12081208- <sdk:source>
12091209- <!-- Generated at Fri Mar 30 10:43:44 2012 from ics-mr1 @ 302030 -->
12101210- <sdk:revision>2</sdk:revision>
12111211- <sdk:api-level>15</sdk:api-level>
12121212- <sdk:archives>
12131213- <sdk:archive arch="any" os="any">
12141214- <sdk:size>16468746</sdk:size>
12151215- <sdk:checksum type="sha1">e5992a5747c9590783fbbdd700337bf0c9f6b1fa</sdk:checksum>
12161216- <sdk:url>sources-15_r02.zip</sdk:url>
12171217- </sdk:archive>
12181218- </sdk:archives>
12191219- <sdk:uses-license ref="android-sdk-license"/>
12201220- </sdk:source>
12211221-12221222- <sdk:source>
12231223- <!-- Generated at Thu Jul 19 18:39:42 2012 from git_jb-release @ 403059 -->
12241224- <sdk:revision>2</sdk:revision>
12251225- <sdk:api-level>16</sdk:api-level>
12261226- <sdk:archives>
12271227- <sdk:archive arch="any" os="any">
12281228- <sdk:size>17876720</sdk:size>
12291229- <sdk:checksum type="sha1">0f83c14ed333c45d962279ab5d6bc98a0269ef84</sdk:checksum>
12301230- <sdk:url>sources-16_r02.zip</sdk:url>
12311231- </sdk:archive>
12321232- </sdk:archives>
12331233- <sdk:uses-license ref="android-sdk-license"/>
12341234- </sdk:source>
12351235-12361236- <sdk:source>
12371237- <!-- Generated at Mon Nov 12 17:16:08 2012 from git_jb-mr1-dev @ 526865 -->
12381238- <sdk:revision>1</sdk:revision>
12391239- <sdk:api-level>17</sdk:api-level>
12401240- <sdk:archives>
12411241- <sdk:archive arch="any" os="any">
12421242- <sdk:size>18976816</sdk:size>
12431243- <sdk:checksum type="sha1">6f1f18cd2d2b1852d7f6892df9cee3823349d43a</sdk:checksum>
12441244- <sdk:url>sources-17_r01.zip</sdk:url>
12451245- </sdk:archive>
12461246- </sdk:archives>
12471247- <sdk:uses-license ref="android-sdk-license"/>
12481248- </sdk:source>
12491249-12501250- <sdk:source>
12511251- <!-- Generated at Tue Jul 23 17:18:30 2013 from git_jb-mr2-release @ 737497 -->
12521252- <sdk:revision>1</sdk:revision>
12531253- <sdk:api-level>18</sdk:api-level>
12541254- <sdk:archives>
12551255- <sdk:archive arch="any" os="any">
12561256- <sdk:size>20226735</sdk:size>
12571257- <sdk:checksum type="sha1">8b49fdf7433f4881a2bfb559b5dd05d8ec65fb78</sdk:checksum>
12581258- <sdk:url>sources-18_r01.zip</sdk:url>
12591259- </sdk:archive>
12601260- </sdk:archives>
12611261- <sdk:uses-license ref="android-sdk-license"/>
12621262- </sdk:source>
12631263-12641264- <sdk:source>
12651265- <!-- Generated at Mon Oct 28 23:37:07 2013 from git_klp-release @ 892118 -->
12661266- <sdk:revision>1</sdk:revision>
12671267- <sdk:api-level>19</sdk:api-level>
12681268- <sdk:archives>
12691269- <sdk:archive arch="any" os="any">
12701270- <sdk:size>21656670</sdk:size>
12711271- <sdk:checksum type="sha1">91d9f5f4117723eecc4434b7de0e7f6295ea0508</sdk:checksum>
12721272- <sdk:url>sources-19_r01.zip</sdk:url>
12731273- </sdk:archive>
12741274- </sdk:archives>
12751275- <sdk:uses-license ref="android-sdk-license"/>
12761276- </sdk:source>
12771277-</sdk:sdk-repository>
···11-<?xml version="1.0" encoding="UTF-8"?>
22-<!--
33- * Copyright (C) 2012 The Android Open Source Project
44- *
55- * Licensed under the Apache License, version 2.0 (the "License");
66- * you may not use this file except in compliance with the License.
77- * You may obtain a copy of the License at
88- *
99- * http://www.apache.org/licenses/LICENSE-2.0
1010- *
1111- * Unless required by applicable law or agreed to in writing, software
1212- * distributed under the License is distributed on an "AS IS" BASIS,
1313- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414- * See the License for the specific language governing permissions and
1515- * limitations under the License.
1616--->
1717-<sdk:sdk-sys-img xmlns:sdk="http://schemas.android.com/sdk/android/sys-img/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1818-1919- <sdk:license id="mips-android-sysimage-license" type="text">
2020- <![CDATA[
2121-MIPS Technologies, Inc. (“MIPS”) Internal Evaluation License Agreement for MIPS Android™ System Images for Android Software Development Kit (SDK):
2222-This Internal Evaluation License Agreement (this "Agreement") is entered into by and between MIPS and you (as an individual developer or a legal entity -- identified below as “Recipient”). MIPS shall make the Evaluation Software available to Recipient as described in accordance with the terms and conditions set forth below.
2323-2424-By clicking on the “Accept” button, downloading, installing, or otherwise using the Evaluation Materials (defined below), you agree to be bound by the terms of this Agreement effective as of the date you click “Accept” (the “Effective Date”), and if doing so on behalf of an entity, you represent that you are authorized to bind the entity to the terms and conditions of this Agreement. If you do not agree to be bound by the terms and conditions of this Agreement, do not download, install, or use the Evaluation Materials.
2525-2626-1. DEFINITIONS. These terms shall have the following meanings:
2727-2828-1.1 “MIPS” shall mean MIPS Technologies, Inc., a Delaware corporation having a principal place of business at: 955 East Arques Ave., Sunnyvale, CA 94085
2929-3030-1.2 “Evaluation Software” shall mean MIPS Android™ emulator system images for Android Software Development Kit (SDK), as made available to Recipient.
3131-3232-1.3 “Evaluation Materials" means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications, reference manuals, and other related materials) related to the Evaluation Software as made available to Recipient.
3333-3434-1.4 “Open Source Software” means any software that requires (as a condition of use, modification and/or distribution of such software) that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).
3535-3636-1.5 “Pre-Release Materials” means “alpha” or “beta” designated pre-release features, which may not be fully functional, which MIPS may substantially modify in producing any production version of the Evaluation Materials, and/or which is still under development by MIPS and/or MIPS’ suppliers.
3737-3838-2. PURPOSE. MIPS desires to make the Evaluation Materials available to Recipient solely for Recipient's internal evaluation of the Evaluation Software to evaluate the desirability of cooperating with MIPS in developing products that are compatible with the Evaluation Software and/or to advise MIPS as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute, modify (except to facilitate the above-mentioned internal evaluation), or make commercial use of the Evaluation Materials or any modifications of the Evaluation Materials.
3939-4040-THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE MODIFIED (EXCEPT TO FACILITATE THE INTERNAL EVALUATION) OR DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENT’S PRODUCTS OR SOFTWARE. PLEASE CONTACT A MIPS SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERCIAL VERSION OF THE EVALUATION SOFTWARE.
4141-4242-3. TITLE. Title to the Evaluation Materials remains with MIPS or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.
4343-4444-4. LICENSE. MIPS grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above and only for a period beginning on the Effective Date and extending to the first anniversary of the Effective Date (the “Evaluation Period”). Unless otherwise communicated in writing by MIPS to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a “Release”) the license grant in this Section 4 and the Evaluation Period shall apply to each Release, in which case the Evaluation Period shall begin on the date that the Release is made generally available and continue to the first anniversary of such date. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software that is not provided to Recipient in source code form.
4545-4646-4747-EXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER MIPS INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT. OTHER THAN AS EXPLICITLY SET FORTH IN PARAGRAPH 2 ABOVE, NO RIGHT TO COPY, TO REPRODUCE, TO MODIFY, OR TO CREATE DERIVATIVE WORKS OF, THE EVALUATION MATERIALS IS GRANTED HEREIN.
4848-4949-5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from MIPS. MIPS and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.
5050-5151-6. MODIFICATIONS. This Agreement does not obligate Recipient to provide MIPS with comments or suggestions regarding Evaluation Materials. However, should Recipient provide MIPS with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) MIPS products or processes which may embody the Evaluation Materials, then Recipient agrees to grant and hereby grants to MIPS a non-exclusive, irrevocable, worldwide, fully paid-up, royalty-free license, with the right to sublicense MIPS’ licensees and customers, under Recipient’s Intellectual property rights, to use and disclose such comments and suggestions in any manner MIPS chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of MIPS’ and its sublicensee’s products embodying such comments and suggestions in any manner and via any media MIPS chooses, without reference to the source.
5252-5353-7. WARRANTY DISCLAIMER. MIPS AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT WITH RESPECT TO THIRD PARTY INTELLECTUAL PROPERTY. RECIPIENT ACKNOWLEDGES AND AGREES THAT THE EVALUATION MATERIALS ARE PROVIDED “AS IS,” WITHOUT WARRANTY OF ANY KIND.
5454-5555-8. LIMITATION OF LIABILITY. MIPS AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR FOR ANY DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED OR ALLEGED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE, INCLUDING WITHOUT LIMITATION, UNDER TORT OR OTHER LEGAL THEORY. MIPS AND ITS SUPPLIERS DISCLAIM ANY AND ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS OF ANY KIND RELATING TO THE EVALUATION MATERIALS.
5656-5757-9. EXPIRATION. MIPS may terminate this Agreement immediately after a breach by Recipient or otherwise at MIPS’ reasonable discretion and upon five (5) business days’ notice to Recipient.
5858-5959-10. GENERAL.
6060-6161-10.1 Controlling Law. This Agreement shall be governed by California law excluding its choice of law rules. With the exception of MIPS’ rights to enforce its intellectual property rights and any confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, all disputes and any claims arising under or relating to this Agreement shall be subject to the exclusive jurisdiction and venue of the state and federal courts located in Santa Clara County, California. Each party hereby agrees to jurisdiction and venue in the courts set forth in the preceding sentence. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.
6262-6363-10.2 Remedies. Recipient acknowledges and agrees that any breach of confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, as well as any disclosure, commercialization, or public use of the Evaluation Materials, would cause irreparable injury to MIPS, and therefore Recipient agrees to consent to, and hereby consents to, the grant of an injunction by any court of competent jurisdiction in the event of an actual or threatened breach.
6464-6565-10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipient’s rights, obligations, or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without MIPS’ express prior written consent, shall be ineffective, null and void. MIPS may freely assign this Agreement, and its rights and obligations hereunder, in its sole discretion.
6666-6767-10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and MIPS and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and MIPS with respect to the subject matter hereof. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed or otherwise accepted by duly authorized representatives of Recipient and MIPS.
6868-6969-10.5 Severability. In the event that any provision of this Agreement is finally adjudicated to be unenforceable or invalid under any applicable law, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such unenforceable or invalid provision shall be interpreted so as to best accomplish the objectives of such provision within the limits of applicable law or applicable court decisions.
7070-7171-10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other necessary approval from the U.S. Department of Commerce or any other governing agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all applicable laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is "deemed" to take place when information is released to a foreign national wherever located.
7272-7373-10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments or may not be suitable for certain applications and (iv) MIPS can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . MIPS is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.
7474-7575-ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS” AND “AS AVAILABLE”, POSSIBLY WITH FAULTS, AND WITHOUT REPRESENTATION OR WARRANTY OF ANY KIND.
7676-7777-10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header as indicated in the Evaluation Software. Additional detail may be available (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement.
7878- ]]>
7979- </sdk:license>
8080-8181- <sdk:system-image>
8282- <sdk:revision>1</sdk:revision>
8383- <sdk:description>Android 4.0.4</sdk:description>
8484- <sdk:api-level>15</sdk:api-level>
8585- <sdk:abi>mips</sdk:abi>
8686- <sdk:uses-license ref="mips-android-sysimage-license"/>
8787- <sdk:archives>
8888- <sdk:archive os="any">
8989- <sdk:size>117503178</sdk:size>
9090- <sdk:checksum type="sha1">a753bb4a6783124dad726c500ce9aec9d2c1b2d9</sdk:checksum>
9191- <sdk:url>sysimg_mips-15_r01.zip</sdk:url>
9292- </sdk:archive>
9393- </sdk:archives>
9494- </sdk:system-image>
9595-9696- <sdk:system-image>
9797- <sdk:revision>4</sdk:revision>
9898- <!-- mipsia repo tag qa-dev-mips-jb-20130123,
9999- github.com/MIPS branch dev-mips-jb, tag mips-jb-4.1.2_r1m1
100100- repo init -u git://github.com/MIPS/manifests.git
101101- -b dev-mips-jb -m mips-jb-4.1.2_r1m1.xml -->
102102- <sdk:description>Android 4.1.2</sdk:description>
103103- <sdk:api-level>16</sdk:api-level>
104104- <sdk:abi>mips</sdk:abi>
105105- <sdk:uses-license ref="mips-android-sysimage-license"/>
106106- <sdk:archives>
107107- <sdk:archive os="any">
108108- <sdk:size>122482530</sdk:size>
109109- <sdk:checksum type="sha1">67943c54fb3943943ffeb05fdd39c0b753681f6e</sdk:checksum>
110110- <sdk:url>sysimg_mips-16_r04.zip</sdk:url>
111111- </sdk:archive>
112112- </sdk:archives>
113113- </sdk:system-image>
114114-115115- <sdk:system-image>
116116- <sdk:revision>1</sdk:revision>
117117- <!-- mipsia repo tag qa-dev-mips-jb-mr1-20121219,
118118- github.com/MIPS tag mips-jb-4.2.1_r1 -->
119119- <sdk:description>Android 4.2.1</sdk:description>
120120- <sdk:api-level>17</sdk:api-level>
121121- <sdk:abi>mips</sdk:abi>
122122- <sdk:uses-license ref="mips-android-sysimage-license"/>
123123- <sdk:archives>
124124- <sdk:archive os="any">
125125- <sdk:size>131781761</sdk:size>
126126- <sdk:checksum type="sha1">f0c6e153bd584c29e51b5c9723cfbf30f996a05d</sdk:checksum>
127127- <sdk:url>sysimg_mips-17_r01.zip</sdk:url>
128128- </sdk:archive>
129129- </sdk:archives>
130130- </sdk:system-image>
131131-132132-</sdk:sdk-sys-img>
···11-<!--
22-* Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
33--->
44-<sdk:sdk-sys-img xmlns:sdk="http://schemas.android.com/sdk/android/sys-img/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55-66-<sdk:license id="intel-android-sysimage-license" type="text">
77-<![CDATA[
88-Intel Corporation Internal Evaluation License Agreement for x86 Android* System Images for Android Software Development Kit (SDK)
99-This Internal Evaluation License Agreement (this "Agreement") is entered into by and between Intel and you (as an individual developer or a legal entity -- identified below as Recipient). Intel shall provide the Evaluation Software to Recipient as described in accordance with the Internal Evaluation License Terms and Conditions.
1010-1111-Definitions.
1212-These terms shall have the following meanings:
1313-1414-"Intel" or "INTEL"
1515-Intel Corporation
1616-With an Address of:
1717-2200 Mission College Blvd.
1818-Santa Clara, CA 95052
1919-Office of the General Counsel
2020-Mail Stop: RNB-4-51
2121-Attn: Software and Services Group Legal
2222-2323-"Evaluation Software"
2424-The x86 Android* emulator system images for Android Software Development Kit (SDK), as provided by Intel.
2525-2626-INTERNAL EVALUATION LICENSE TERMS AND CONDITIONS
2727-2828-1. DEFINITIONS.
2929-3030-1.1 Additional Defined Terms. "Agreement", "Evaluation Software", "Intel", "Non-disclosure Agreement", "Recipient", and "Effective Date" shall have the meanings ascribed to them on the signature page(s) of this Agreement.
3131-3232-1.2 Evaluation Materials means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications and other related materials) related to the Evaluation Software.
3333-3434-1.3 "Open Source Software" means any software that requires as a condition of use, modification and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNUs General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).
3535-3636-1.4 "Pre-Release Materials" means "alpha" or "beta" designated pre-release features, which may not be fully functional, which Intel may substantially modify in producing any production version of the Evaluation Materials and/or is still under development by Intel and/or Intels suppliers.
3737-3838-2. PURPOSE. Intel desires to provide the Evaluation Materials to Recipient solely for Recipient's internal evaluation of the Evaluation Software and other Intel products, to evaluate the desirability of cooperating with Intel in developing products based on the Evaluation Software and/or to advise Intel as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute or make commercial use of the Evaluation Materials or any modifications to the Evaluation Materials.
3939-THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENTS PRODUCTS OR SOFTWARE. PLEASE CONTACT AN INTEL SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERICAL VERSION OF THE EVALUATION SOFTWARE.
4040-4141-3. TITLE. Title to the Evaluation Materials remains with Intel or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.
4242-4343-4. LICENSE. Intel grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above. Unless otherwise communicated in writing by Intel to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a "Release") the license grant in this Section 4 and the Evaluation Period shall apply to each Release. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software not provided to Recipient in source code form.
4444-EXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT.
4545-4646-5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from Intel. Intel and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.
4747-4848-6. MODIFICATIONS. This Agreement does NOT obligate Recipient to provide Intel with comments or suggestions regarding Evaluation Materials. However, should Recipient provide Intel with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) Intel products or processes which may embody the Evaluation Materials, Recipient grants to Intel a non-exclusive, irrevocable, worldwide, royalty-free license, with the right to sublicense Intels licensees and customers, under Recipient intellectual property rights, the rights to use and disclose such comments and suggestions in any manner Intel chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of Intels and its sublicensees products embodying such comments and suggestions in any manner and via any media Intel chooses, without reference to the source.
4949-5050-7. WARRANTY DISCLAIMER. INTEL AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT. THE EVALUATION MATERIALS ARE PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
5151-5252-8. LIMITATION OF LIABILITY. INTEL AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR ANY SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE. INTEL AND ITS SUPPLIERS DISCLAIM ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS RELATING TO THE EVALUATION MATERIALS.
5353-5454-9. EXPIRATION. Intel may terminate this Agreement immediately after a breach by Recipient.
5555-5656-10. GENERAL.
5757-5858-10.1 Controlling Law. Any claims arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. Each party hereby agrees to jurisdiction and venue in the courts of the State of Delaware for all disputes and litigation arising under or relating to this Agreement. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.
5959-6060-10.2 Remedies. Recipient acknowledges that any disclosure, commercialization, or public use of the Evaluation Materials would cause irreparable injury to Intel and consents to the grant of an injunction by any court of competent jurisdiction in the event of a threatened breach.
6161-6262-10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipients rights or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without Intels express prior written consent, shall be null and void. Intel may assign this Agreement, and its rights and obligations hereunder, in its sole discretion.
6363-6464-10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and Intel and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and Intel with respect to the subject matter hereof. This Agreement supersedes any and all "click-to-accept" or shrink-wrapped licenses, in hard-copy or electronic form, embedded in or included with the Evaluation Materials. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed by duly authorized representatives of Recipient and Intel. Without limiting the foregoing, terms and conditions on any purchase orders or similar materials submitted by Recipient to Intel, and any terms contained in Intels standard acknowledgment form that are in conflict with these terms, shall be of no force or effect.
6565-6666-10.5 Severability. In the event that any provision of this Agreement shall be unenforceable or invalid under any applicable law or be so held by applicable court decision, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions.
6767-6868-10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other approval from the U.S. Department of Commerce or any other agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is "deemed" to take place when information is released to a foreign national wherever located.
6969-7070-10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments and (iv) Intel can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . Intel is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.
7171-7272-10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header provided with Evaluation Software. Additional detail may be provided (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement.
7373-ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED POSSIBLY WITH FAULTS
7474-]]>
7575-</sdk:license>
7676-7777-<!-- SYSTEM IMAGES ........................ -->
7878-7979-<sdk:system-image>
8080- <sdk:description>Android SDK Platform 2.3.7</sdk:description>
8181- <sdk:revision>2</sdk:revision>
8282- <sdk:api-level>10</sdk:api-level>
8383- <sdk:abi>x86</sdk:abi>
8484- <sdk:uses-license ref="intel-android-sysimage-license"/>
8585- <sdk:archives>
8686- <sdk:archive arch="any" os="any">
8787- <sdk:size>55463895</sdk:size>
8888- <sdk:checksum type="sha1">34e2436f69606cdfe35d3ef9112f0c64e3ff021d</sdk:checksum>
8989- <sdk:url>sysimg_x86-10_r02.zip</sdk:url>
9090- </sdk:archive>
9191- </sdk:archives>
9292-</sdk:system-image>
9393-9494-<sdk:system-image>
9595- <sdk:description>Android SDK Platform 4.0.4</sdk:description>
9696- <sdk:revision>1</sdk:revision>
9797- <sdk:api-level>15</sdk:api-level>
9898- <sdk:abi>x86</sdk:abi>
9999- <sdk:uses-license ref="intel-android-sysimage-license"/>
100100- <sdk:archives>
101101- <sdk:archive arch="any" os="any">
102102- <sdk:size>112619605</sdk:size>
103103- <sdk:checksum type="sha1">d540325952e0f097509622b9e685737584b83e40</sdk:checksum>
104104- <sdk:url>sysimg_x86-15_r01.zip</sdk:url>
105105- </sdk:archive>
106106- </sdk:archives>
107107-</sdk:system-image>
108108-109109-<sdk:system-image>
110110- <sdk:description>Android SDK Platform 4.1.1</sdk:description>
111111- <sdk:revision>1</sdk:revision>
112112- <sdk:api-level>16</sdk:api-level>
113113- <sdk:abi>x86</sdk:abi>
114114- <sdk:uses-license ref="intel-android-sysimage-license"/>
115115- <sdk:archives>
116116- <sdk:archive arch="any" os="any">
117117- <sdk:size>131840348</sdk:size>
118118- <sdk:checksum type="sha1">9d35bcaa4f9b40443941f32b8a50337f413c021a</sdk:checksum>
119119- <sdk:url>sysimg_x86-16_r01.zip</sdk:url>
120120- </sdk:archive>
121121- </sdk:archives>
122122-</sdk:system-image>
123123-124124-<sdk:system-image>
125125- <sdk:description>Android SDK Platform 4.2</sdk:description>
126126- <sdk:revision>1</sdk:revision>
127127- <sdk:api-level>17</sdk:api-level>
128128- <sdk:abi>x86</sdk:abi>
129129- <sdk:uses-license ref="intel-android-sysimage-license"/>
130130- <sdk:archives>
131131- <sdk:archive arch="any" os="any">
132132- <sdk:size>138799122</sdk:size>
133133- <sdk:checksum type="sha1">ddb3313e8dcd07926003f7b828eafea1115ea35b</sdk:checksum>
134134- <sdk:url>sysimg_x86-17_r01.zip</sdk:url>
135135- </sdk:archive>
136136- </sdk:archives>
137137-</sdk:system-image>
138138-139139-<sdk:system-image>
140140- <sdk:description>Android SDK Platform 4.3</sdk:description>
141141- <sdk:revision>1</sdk:revision>
142142- <sdk:api-level>18</sdk:api-level>
143143- <sdk:abi>x86</sdk:abi>
144144- <sdk:uses-license ref="intel-android-sysimage-license"/>
145145- <sdk:archives>
146146- <sdk:archive arch="any" os="any">
147147- <sdk:size>155656419</sdk:size>
148148- <sdk:checksum type="sha1">f11bc9fccd3e7e46c07d8b26e112a8d0b45966c1</sdk:checksum>
149149- <sdk:url>sysimg_x86-18_r01.zip</sdk:url>
150150- </sdk:archive>
151151- </sdk:archives>
152152-</sdk:system-image>
153153-154154-</sdk:sdk-sys-img>
+712
pkgs/development/mobile/androidenv/sys-img.xml
···11+<!--
22+* Copyright (C) 2012 The Android Open Source Project
33+*
44+* Licensed under the Apache License, version 2.0 (the "License");
55+* you may not use this file except in compliance with the License.
66+* You may obtain a copy of the License at
77+*
88+* http://www.apache.org/licenses/LICENSE-2.0
99+*
1010+* Unless required by applicable law or agreed to in writing, software
1111+* distributed under the License is distributed on an "AS IS" BASIS,
1212+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313+* See the License for the specific language governing permissions and
1414+* limitations under the License.
1515+-->
1616+<sdk:sdk-sys-img xmlns:sdk="http://schemas.android.com/sdk/android/sys-img/3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1717+1818+1919+ <sdk:license id="android-sdk-license" type="text">To get started with the Android SDK, you must agree to the following terms and conditions.
2020+2121+This is the Android SDK License Agreement (the "License Agreement").
2222+2323+1. Introduction
2424+2525+1.1 The Android SDK (referred to in the License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and SDK library files and tools , if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
2626+2727+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
2828+2929+1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
3030+3131+2. Accepting the License Agreement
3232+3333+2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.
3434+3535+2.2 By clicking to accept and/or using the SDK, you hereby agree to the terms of the License Agreement.
3636+3737+2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries including the country in which you are resident or from which you use the SDK.
3838+3939+2.4 If you will use the SDK internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
4040+4141+3. SDK License from Google
4242+4343+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the SDK, personally or internally within your company or organization, solely to develop and distribute applications to run on the Android platform.
4444+4545+3.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
4646+4747+3.3 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK.
4848+4949+3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the SDK.
5050+5151+3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
5252+5353+3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.
5454+5555+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
5656+5757+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.
5858+5959+4. Use of the SDK by You
6060+6161+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
6262+6363+4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
6464+6565+4.3 You agree that if you use the SDK to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
6666+6767+4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
6868+6969+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
7070+7171+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
7272+7373+5. Your Developer Credentials
7474+7575+5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
7676+7777+6. Privacy and Information
7878+7979+6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
8080+8181+6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
8282+8383+7. Third Party Applications
8484+8585+7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
8686+8787+7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
8888+8989+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
9090+9191+8. Using Google APIs
9292+9393+8.1 Google APIs
9494+9595+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
9696+9797+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
9898+9999+9. Terminating the License Agreement
100100+101101+9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.
102102+103103+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
104104+105105+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
106106+107107+9.4 The License Agreement will automatically terminate without notice or other action when Google ceases to provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service.
108108+109109+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the SDK, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
110110+111111+10. DISCLAIMERS
112112+113113+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
114114+115115+10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE SDK MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
116116+117117+10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
118118+119119+11. LIMITATION OF LIABILITY
120120+121121+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
122122+123123+12. Indemnification
124124+125125+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
126126+127127+13. Changes to the License Agreement
128128+129129+13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.
130130+131131+14. General Legal Terms
132132+133133+14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
134134+135135+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
136136+137137+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
138138+139139+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
140140+141141+14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
142142+143143+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
144144+145145+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
146146+147147+June 2014.
148148+ </sdk:license>
149149+150150+ <sdk:license id="android-sdk-preview-license" type="text">To get started with the Android SDK Preview, you must agree to the following terms and conditions.
151151+As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. The Android SDK Preview is not a stable release, and may contain errors and defects that can result in serious damage to your computer systems, devices and data.
152152+153153+This is the Android SDK Preview License Agreement (the "License Agreement").
154154+155155+1. Introduction
156156+157157+1.1 The Android SDK Preview (referred to in the License Agreement as the “Preview” and specifically including the Android system files, packaged APIs, and Preview library files, if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the Preview.
158158+159159+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
160160+161161+1.3 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
162162+163163+2. Accepting the License Agreement
164164+165165+2.1 In order to use the Preview, you must first agree to the License Agreement. You may not use the Preview if you do not accept the License Agreement.
166166+167167+2.2 By clicking to accept and/or using the Preview, you hereby agree to the terms of the License Agreement.
168168+169169+2.3 You may not use the Preview and may not accept the License Agreement if you are a person barred from receiving the Preview under the laws of the United States or other countries including the country in which you are resident or from which you use the Preview.
170170+171171+2.4 If you will use the Preview internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the Preview on behalf of your employer or other entity.
172172+173173+3. Preview License from Google
174174+175175+3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the Preview, personally or internally within your company or organization, solely to develop applications to run on the Android platform.
176176+177177+3.2 You agree that Google or third parties owns all legal right, title and interest in and to the Preview, including any Intellectual Property Rights that subsist in the Preview. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
178178+179179+3.3 You may not use the Preview for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Preview or any part of the Preview; or (b) load any part of the Preview onto a mobile handset or any other hardware device except a personal computer, combine any part of the Preview with other software, or distribute any software or device incorporating a part of the Preview.
180180+181181+3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the Preview.
182182+183183+3.5 Use, reproduction and distribution of components of the Preview licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.
184184+185185+3.6 You agree that the form and nature of the Preview that Google provides may change without prior notice to you and that future versions of the Preview may be incompatible with applications developed on previous versions of the Preview. You agree that Google may stop (permanently or temporarily) providing the Preview (or any features within the Preview) to you or to users generally at Google's sole discretion, without prior notice to you.
186186+187187+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
188188+189189+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Preview.
190190+191191+4. Use of the Preview by You
192192+193193+4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the Preview, including any intellectual property rights that subsist in those applications.
194194+195195+4.2 You agree to use the Preview and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
196196+197197+4.3 You agree that if you use the Preview to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.
198198+199199+4.4 You agree that you will not engage in any activity with the Preview, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.
200200+201201+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
202202+203203+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
204204+205205+4.7 The Preview is in development, and your testing and feedback are an important part of the development process. By using the Preview, you acknowledge that implementation of some features are still under development and that you should not rely on the Preview having the full functionality of a stable release. You agree not to publicly distribute or ship any application using this Preview as this Preview will no longer be supported after the official Android SDK is released.
206206+207207+5. Your Developer Credentials
208208+209209+5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
210210+211211+6. Privacy and Information
212212+213213+6.1 In order to continually innovate and improve the Preview, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Preview are being used and how they are being used. Before any of this information is collected, the Preview will notify you and seek your consent. If you withhold consent, the information will not be collected.
214214+215215+6.2 The data collected is examined in the aggregate to improve the Preview and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.
216216+217217+7. Third Party Applications
218218+219219+7.1 If you use the Preview to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
220220+221221+7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
222222+223223+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.
224224+225225+8. Using Google APIs
226226+227227+8.1 Google APIs
228228+229229+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
230230+231231+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.
232232+233233+9. Terminating the License Agreement
234234+235235+9.1 the License Agreement will continue to apply until terminated by either you or Google as set out below.
236236+237237+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the Preview and any relevant developer credentials.
238238+239239+9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.
240240+241241+9.4 The License Agreement will automatically terminate without notice or other action upon the earlier of:
242242+(A) when Google ceases to provide the Preview or certain parts of the Preview to users in the country in which you are resident or from which you use the service; and
243243+(B) Google issues a final release version of the Android SDK.
244244+245245+9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the Preview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.
246246+247247+10. DISCLAIMERS
248248+249249+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR SOLE RISK AND THAT THE PREVIEW IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
250250+251251+10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
252252+253253+10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
254254+255255+11. LIMITATION OF LIABILITY
256256+257257+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
258258+259259+12. Indemnification
260260+261261+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the Preview, (b) any application you develop on the Preview that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.
262262+263263+13. Changes to the License Agreement
264264+265265+13.1 Google may make changes to the License Agreement as it distributes new versions of the Preview. When these changes are made, Google will make a new version of the License Agreement available on the website where the Preview is made available.
266266+267267+14. General Legal Terms
268268+269269+14.1 the License Agreement constitutes the whole legal agreement between you and Google and governs your use of the Preview (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the Preview.
270270+271271+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
272272+273273+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
274274+275275+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
276276+277277+14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
278278+279279+14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.
280280+281281+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
282282+283283+June 2014.
284284+ </sdk:license>
285285+286286+ <sdk:license id="intel-android-sysimage-license" type="text">
287287+<![CDATA[
288288+Intel Corporation Internal Evaluation License Agreement for x86 Android* System Images for Android Software Development Kit (SDK)
289289+This Internal Evaluation License Agreement (this "Agreement") is entered into by and between Intel and you (as an individual developer or a legal entity -- identified below as Recipient). Intel shall provide the Evaluation Software to Recipient as described in accordance with the Internal Evaluation License Terms and Conditions.
290290+291291+Definitions.
292292+These terms shall have the following meanings:
293293+294294+"Intel" or "INTEL"
295295+Intel Corporation
296296+With an Address of:
297297+2200 Mission College Blvd.
298298+Santa Clara, CA 95052
299299+Office of the General Counsel
300300+Mail Stop: RNB-4-51
301301+Attn: Software and Services Group Legal
302302+303303+"Evaluation Software"
304304+The x86 Android* emulator system images for Android Software Development Kit (SDK), as provided by Intel.
305305+306306+INTERNAL EVALUATION LICENSE TERMS AND CONDITIONS
307307+308308+1. DEFINITIONS.
309309+310310+1.1 Additional Defined Terms. "Agreement", "Evaluation Software", "Intel", "Non-disclosure Agreement", "Recipient", and "Effective Date" shall have the meanings ascribed to them on the signature page(s) of this Agreement.
311311+312312+1.2 Evaluation Materials means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications and other related materials) related to the Evaluation Software.
313313+314314+1.3 "Open Source Software" means any software that requires as a condition of use, modification and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNUs General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).
315315+316316+1.4 "Pre-Release Materials" means "alpha" or "beta" designated pre-release features, which may not be fully functional, which Intel may substantially modify in producing any production version of the Evaluation Materials and/or is still under development by Intel and/or Intels suppliers.
317317+318318+2. PURPOSE. Intel desires to provide the Evaluation Materials to Recipient solely for Recipient's internal evaluation of the Evaluation Software and other Intel products, to evaluate the desirability of cooperating with Intel in developing products based on the Evaluation Software and/or to advise Intel as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute or make commercial use of the Evaluation Materials or any modifications to the Evaluation Materials.
319319+THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENTS PRODUCTS OR SOFTWARE. PLEASE CONTACT AN INTEL SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERICAL VERSION OF THE EVALUATION SOFTWARE.
320320+321321+3. TITLE. Title to the Evaluation Materials remains with Intel or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.
322322+323323+4. LICENSE. Intel grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above. Unless otherwise communicated in writing by Intel to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a "Release") the license grant in this Section 4 and the Evaluation Period shall apply to each Release. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software not provided to Recipient in source code form.
324324+EXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT.
325325+326326+5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from Intel. Intel and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.
327327+328328+6. MODIFICATIONS. This Agreement does NOT obligate Recipient to provide Intel with comments or suggestions regarding Evaluation Materials. However, should Recipient provide Intel with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) Intel products or processes which may embody the Evaluation Materials, Recipient grants to Intel a non-exclusive, irrevocable, worldwide, royalty-free license, with the right to sublicense Intels licensees and customers, under Recipient intellectual property rights, the rights to use and disclose such comments and suggestions in any manner Intel chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of Intels and its sublicensees products embodying such comments and suggestions in any manner and via any media Intel chooses, without reference to the source.
329329+330330+7. WARRANTY DISCLAIMER. INTEL AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT. THE EVALUATION MATERIALS ARE PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
331331+332332+8. LIMITATION OF LIABILITY. INTEL AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR ANY SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE. INTEL AND ITS SUPPLIERS DISCLAIM ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS RELATING TO THE EVALUATION MATERIALS.
333333+334334+9. EXPIRATION. Intel may terminate this Agreement immediately after a breach by Recipient.
335335+336336+10. GENERAL.
337337+338338+10.1 Controlling Law. Any claims arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. Each party hereby agrees to jurisdiction and venue in the courts of the State of Delaware for all disputes and litigation arising under or relating to this Agreement. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.
339339+340340+10.2 Remedies. Recipient acknowledges that any disclosure, commercialization, or public use of the Evaluation Materials would cause irreparable injury to Intel and consents to the grant of an injunction by any court of competent jurisdiction in the event of a threatened breach.
341341+342342+10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipients rights or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without Intels express prior written consent, shall be null and void. Intel may assign this Agreement, and its rights and obligations hereunder, in its sole discretion.
343343+344344+10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and Intel and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and Intel with respect to the subject matter hereof. This Agreement supersedes any and all "click-to-accept" or shrink-wrapped licenses, in hard-copy or electronic form, embedded in or included with the Evaluation Materials. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed by duly authorized representatives of Recipient and Intel. Without limiting the foregoing, terms and conditions on any purchase orders or similar materials submitted by Recipient to Intel, and any terms contained in Intels standard acknowledgment form that are in conflict with these terms, shall be of no force or effect.
345345+346346+10.5 Severability. In the event that any provision of this Agreement shall be unenforceable or invalid under any applicable law or be so held by applicable court decision, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions.
347347+348348+10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other approval from the U.S. Department of Commerce or any other agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is "deemed" to take place when information is released to a foreign national wherever located.
349349+350350+10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments and (iv) Intel can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . Intel is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.
351351+352352+10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header provided with Evaluation Software. Additional detail may be provided (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement.
353353+ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED POSSIBLY WITH FAULTS
354354+]]>
355355+ </sdk:license>
356356+ <sdk:license id="mips-android-sysimage-license" type="text">
357357+<![CDATA[
358358+MIPS Technologies, Inc. (“MIPS”) Internal Evaluation License Agreement for MIPS Android™ System Images for Android Software Development Kit (SDK):
359359+This Internal Evaluation License Agreement (this "Agreement") is entered into by and between MIPS and you (as an individual developer or a legal entity -- identified below as “Recipient”). MIPS shall make the Evaluation Software available to Recipient as described in accordance with the terms and conditions set forth below.
360360+361361+By clicking on the “Accept” button, downloading, installing, or otherwise using the Evaluation Materials (defined below), you agree to be bound by the terms of this Agreement effective as of the date you click “Accept” (the “Effective Date”), and if doing so on behalf of an entity, you represent that you are authorized to bind the entity to the terms and conditions of this Agreement. If you do not agree to be bound by the terms and conditions of this Agreement, do not download, install, or use the Evaluation Materials.
362362+363363+1. DEFINITIONS. These terms shall have the following meanings:
364364+365365+1.1 “MIPS” shall mean MIPS Technologies, Inc., a Delaware corporation having a principal place of business at: 955 East Arques Ave., Sunnyvale, CA 94085
366366+367367+1.2 “Evaluation Software” shall mean MIPS Android™ emulator system images for Android Software Development Kit (SDK), as made available to Recipient.
368368+369369+1.3 “Evaluation Materials" means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications, reference manuals, and other related materials) related to the Evaluation Software as made available to Recipient.
370370+371371+1.4 “Open Source Software” means any software that requires (as a condition of use, modification and/or distribution of such software) that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).
372372+373373+1.5 “Pre-Release Materials” means “alpha” or “beta” designated pre-release features, which may not be fully functional, which MIPS may substantially modify in producing any production version of the Evaluation Materials, and/or which is still under development by MIPS and/or MIPS’ suppliers.
374374+375375+2. PURPOSE. MIPS desires to make the Evaluation Materials available to Recipient solely for Recipient's internal evaluation of the Evaluation Software to evaluate the desirability of cooperating with MIPS in developing products that are compatible with the Evaluation Software and/or to advise MIPS as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute, modify (except to facilitate the above-mentioned internal evaluation), or make commercial use of the Evaluation Materials or any modifications of the Evaluation Materials.
376376+377377+THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE MODIFIED (EXCEPT TO FACILITATE THE INTERNAL EVALUATION) OR DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENT’S PRODUCTS OR SOFTWARE. PLEASE CONTACT A MIPS SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERCIAL VERSION OF THE EVALUATION SOFTWARE.
378378+379379+3. TITLE. Title to the Evaluation Materials remains with MIPS or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.
380380+381381+4. LICENSE. MIPS grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above and only for a period beginning on the Effective Date and extending to the first anniversary of the Effective Date (the “Evaluation Period”). Unless otherwise communicated in writing by MIPS to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a “Release”) the license grant in this Section 4 and the Evaluation Period shall apply to each Release, in which case the Evaluation Period shall begin on the date that the Release is made generally available and continue to the first anniversary of such date. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software that is not provided to Recipient in source code form.
382382+383383+384384+EXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER MIPS INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT. OTHER THAN AS EXPLICITLY SET FORTH IN PARAGRAPH 2 ABOVE, NO RIGHT TO COPY, TO REPRODUCE, TO MODIFY, OR TO CREATE DERIVATIVE WORKS OF, THE EVALUATION MATERIALS IS GRANTED HEREIN.
385385+386386+5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from MIPS. MIPS and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.
387387+388388+6. MODIFICATIONS. This Agreement does not obligate Recipient to provide MIPS with comments or suggestions regarding Evaluation Materials. However, should Recipient provide MIPS with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) MIPS products or processes which may embody the Evaluation Materials, then Recipient agrees to grant and hereby grants to MIPS a non-exclusive, irrevocable, worldwide, fully paid-up, royalty-free license, with the right to sublicense MIPS’ licensees and customers, under Recipient’s Intellectual property rights, to use and disclose such comments and suggestions in any manner MIPS chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of MIPS’ and its sublicensee’s products embodying such comments and suggestions in any manner and via any media MIPS chooses, without reference to the source.
389389+390390+7. WARRANTY DISCLAIMER. MIPS AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT WITH RESPECT TO THIRD PARTY INTELLECTUAL PROPERTY. RECIPIENT ACKNOWLEDGES AND AGREES THAT THE EVALUATION MATERIALS ARE PROVIDED “AS IS,” WITHOUT WARRANTY OF ANY KIND.
391391+392392+8. LIMITATION OF LIABILITY. MIPS AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR FOR ANY DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED OR ALLEGED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE, INCLUDING WITHOUT LIMITATION, UNDER TORT OR OTHER LEGAL THEORY. MIPS AND ITS SUPPLIERS DISCLAIM ANY AND ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS OF ANY KIND RELATING TO THE EVALUATION MATERIALS.
393393+394394+9. EXPIRATION. MIPS may terminate this Agreement immediately after a breach by Recipient or otherwise at MIPS’ reasonable discretion and upon five (5) business days’ notice to Recipient.
395395+396396+10. GENERAL.
397397+398398+10.1 Controlling Law. This Agreement shall be governed by California law excluding its choice of law rules. With the exception of MIPS’ rights to enforce its intellectual property rights and any confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, all disputes and any claims arising under or relating to this Agreement shall be subject to the exclusive jurisdiction and venue of the state and federal courts located in Santa Clara County, California. Each party hereby agrees to jurisdiction and venue in the courts set forth in the preceding sentence. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.
399399+400400+10.2 Remedies. Recipient acknowledges and agrees that any breach of confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, as well as any disclosure, commercialization, or public use of the Evaluation Materials, would cause irreparable injury to MIPS, and therefore Recipient agrees to consent to, and hereby consents to, the grant of an injunction by any court of competent jurisdiction in the event of an actual or threatened breach.
401401+402402+10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipient’s rights, obligations, or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without MIPS’ express prior written consent, shall be ineffective, null and void. MIPS may freely assign this Agreement, and its rights and obligations hereunder, in its sole discretion.
403403+404404+10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and MIPS and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and MIPS with respect to the subject matter hereof. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed or otherwise accepted by duly authorized representatives of Recipient and MIPS.
405405+406406+10.5 Severability. In the event that any provision of this Agreement is finally adjudicated to be unenforceable or invalid under any applicable law, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such unenforceable or invalid provision shall be interpreted so as to best accomplish the objectives of such provision within the limits of applicable law or applicable court decisions.
407407+408408+10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other necessary approval from the U.S. Department of Commerce or any other governing agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all applicable laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is "deemed" to take place when information is released to a foreign national wherever located.
409409+410410+10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments or may not be suitable for certain applications and (iv) MIPS can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . MIPS is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.
411411+412412+ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS” AND “AS AVAILABLE”, POSSIBLY WITH FAULTS, AND WITHOUT REPRESENTATION OR WARRANTY OF ANY KIND.
413413+414414+10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header as indicated in the Evaluation Software. Additional detail may be available (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement.
415415+ ]]>
416416+ </sdk:license>
417417+418418+ <!-- ARM SYSTEM IMAGES ........................ -->
419419+420420+ <sdk:system-image>
421421+ <!-- Generated at Wed Dec 7 13:47:01 2011 from git_ics-mr0 @ 229537 -->
422422+ <sdk:revision>2</sdk:revision>
423423+ <sdk:description>Android SDK Platform 4.0</sdk:description>
424424+ <sdk:api-level>14</sdk:api-level>
425425+ <sdk:abi>armeabi-v7a</sdk:abi>
426426+ <sdk:archives>
427427+ <sdk:archive>
428428+ <sdk:size>99621822</sdk:size>
429429+ <sdk:checksum type="sha1">d8991b0c06b18d7d6ed4169d67460ee1add6661b</sdk:checksum>
430430+ <sdk:url>sysimg_armv7a-14_r02.zip</sdk:url>
431431+ </sdk:archive>
432432+ </sdk:archives>
433433+ <sdk:uses-license ref="android-sdk-license"/>
434434+ <sdk:tag-id>default</sdk:tag-id>
435435+ </sdk:system-image>
436436+437437+ <sdk:system-image>
438438+ <!-- Generated at Fri Mar 30 10:43:23 2012 from ics-mr1 @ 302030 -->
439439+ <sdk:revision>2</sdk:revision>
440440+ <sdk:description>Android SDK Platform 4.0.3</sdk:description>
441441+ <sdk:api-level>15</sdk:api-level>
442442+ <sdk:abi>armeabi-v7a</sdk:abi>
443443+ <sdk:archives>
444444+ <sdk:archive>
445445+ <sdk:size>96227377</sdk:size>
446446+ <sdk:checksum type="sha1">1bf977d6cb4e0ad38dceac0c4863d1caa21f326e</sdk:checksum>
447447+ <sdk:url>sysimg_armv7a-15_r02.zip</sdk:url>
448448+ </sdk:archive>
449449+ </sdk:archives>
450450+ <sdk:uses-license ref="android-sdk-license"/>
451451+ <sdk:tag-id>default</sdk:tag-id>
452452+ </sdk:system-image>
453453+454454+ <sdk:system-image>
455455+ <!-- Generated at Tue Oct 9 13:43:08 2012 from git_jb-dev @ 495790 -->
456456+ <sdk:revision>3</sdk:revision>
457457+ <sdk:description>Android SDK Platform 4.1</sdk:description>
458458+ <sdk:api-level>16</sdk:api-level>
459459+ <sdk:abi>armeabi-v7a</sdk:abi>
460460+ <sdk:archives>
461461+ <sdk:archive>
462462+ <sdk:size>112528368</sdk:size>
463463+ <sdk:checksum type="sha1">d1cddb23f17aad5821a089c403d4cddad2cf9ef7</sdk:checksum>
464464+ <sdk:url>sysimg_armv7a-16_r03.zip</sdk:url>
465465+ </sdk:archive>
466466+ </sdk:archives>
467467+ <sdk:uses-license ref="android-sdk-license"/>
468468+ <sdk:tag-id>default</sdk:tag-id>
469469+ </sdk:system-image>
470470+471471+ <sdk:system-image>
472472+ <!-- Generated at Wed Feb 13 11:29:12 2013 from git_jb-mr1.1-dev @ 576024 -->
473473+ <sdk:revision>2</sdk:revision>
474474+ <sdk:description>Android SDK Platform 4.2.2</sdk:description>
475475+ <sdk:api-level>17</sdk:api-level>
476476+ <sdk:abi>armeabi-v7a</sdk:abi>
477477+ <sdk:archives>
478478+ <sdk:archive>
479479+ <sdk:size>116553808</sdk:size>
480480+ <sdk:checksum type="sha1">1c321cda1af793b84d47d1a8d15f85444d265e3c</sdk:checksum>
481481+ <sdk:url>sysimg_armv7a-17_r02.zip</sdk:url>
482482+ </sdk:archive>
483483+ </sdk:archives>
484484+ <sdk:uses-license ref="android-sdk-license"/>
485485+ <sdk:tag-id>default</sdk:tag-id>
486486+ </sdk:system-image>
487487+488488+ <sdk:system-image>
489489+ <!-- Generated at Mon Aug 12 12:43:28 2013 from git_jb-mr2-dev @ 774058 -->
490490+ <sdk:revision>2</sdk:revision>
491491+ <sdk:description>Android SDK Platform 4.3</sdk:description>
492492+ <sdk:api-level>18</sdk:api-level>
493493+ <sdk:abi>armeabi-v7a</sdk:abi>
494494+ <sdk:archives>
495495+ <sdk:archive>
496496+ <sdk:size>125457135</sdk:size>
497497+ <sdk:checksum type="sha1">4a1a93200210d8c42793324362868846f67401ab</sdk:checksum>
498498+ <sdk:url>sysimg_armv7a-18_r02.zip</sdk:url>
499499+ </sdk:archive>
500500+ </sdk:archives>
501501+ <sdk:uses-license ref="android-sdk-license"/>
502502+ <sdk:tag-id>default</sdk:tag-id>
503503+ </sdk:system-image>
504504+505505+ <sdk:system-image>
506506+ <!-- Generated at Thu Dec 5 14:04:05 2013 from git_klp-dev @ 938007 -->
507507+ <sdk:revision>2</sdk:revision>
508508+ <sdk:description>Android SDK Platform 4.4.2</sdk:description>
509509+ <sdk:api-level>19</sdk:api-level>
510510+ <sdk:abi>armeabi-v7a</sdk:abi>
511511+ <sdk:archives>
512512+ <sdk:archive>
513513+ <sdk:size>158478012</sdk:size>
514514+ <sdk:checksum type="sha1">e0d375397e28e3d5d9577a00132463a4696248e5</sdk:checksum>
515515+ <sdk:url>sysimg_armv7a-19_r02.zip</sdk:url>
516516+ </sdk:archive>
517517+ </sdk:archives>
518518+ <sdk:uses-license ref="android-sdk-license"/>
519519+ <sdk:tag-id>default</sdk:tag-id>
520520+ </sdk:system-image>
521521+522522+ <sdk:system-image>
523523+ <!-- Generated at Mon Jun 23 19:22:34 2014 from git_lmp-preview-release @ 1242878 -->
524524+ <sdk:revision>1</sdk:revision>
525525+ <sdk:description>Android SDK Platform L</sdk:description>
526526+ <sdk:api-level>20</sdk:api-level>
527527+ <sdk:codename>L</sdk:codename>
528528+ <sdk:abi>armeabi-v7a</sdk:abi>
529529+ <sdk:tag-id>default</sdk:tag-id>
530530+ <sdk:archives>
531531+ <sdk:archive>
532532+ <sdk:size>227716008</sdk:size>
533533+ <sdk:checksum type="sha1">1d5d81a7078b5b2a685620d93e1e04a51d2e786a</sdk:checksum>
534534+ <sdk:url>sysimg_armv7a-L_r01.zip</sdk:url>
535535+ </sdk:archive>
536536+ </sdk:archives>
537537+ <sdk:uses-license ref="android-sdk-preview-license"/>
538538+ </sdk:system-image>
539539+540540+ <sdk:system-image>
541541+ <!-- Generated at Mon Jun 23 19:23:13 2014 from git_lmp-preview-release @ 1242878 -->
542542+ <sdk:revision>1</sdk:revision>
543543+ <sdk:description>Android SDK Platform L</sdk:description>
544544+ <sdk:api-level>20</sdk:api-level>
545545+ <sdk:codename>L</sdk:codename>
546546+ <sdk:abi>x86</sdk:abi>
547547+ <sdk:tag-id>default</sdk:tag-id>
548548+ <sdk:archives>
549549+ <sdk:archive>
550550+ <sdk:size>245850484</sdk:size>
551551+ <sdk:checksum type="sha1">c2d32d6244821ff59f370469778525f6a5345010</sdk:checksum>
552552+ <sdk:url>sysimg_x86-L_r01.zip</sdk:url>
553553+ </sdk:archive>
554554+ </sdk:archives>
555555+ <sdk:uses-license ref="android-sdk-preview-license"/>
556556+ </sdk:system-image>
557557+ <!-- X86 SYSTEM IMAGES ........................ -->
558558+559559+ <sdk:system-image>
560560+ <sdk:description>Android SDK Platform 2.3.7</sdk:description>
561561+ <sdk:revision>2</sdk:revision>
562562+ <sdk:api-level>10</sdk:api-level>
563563+ <sdk:abi>x86</sdk:abi>
564564+ <sdk:uses-license ref="intel-android-sysimage-license"/>
565565+ <sdk:archives>
566566+ <sdk:archive>
567567+ <sdk:size>55463895</sdk:size>
568568+ <sdk:checksum type="sha1">34e2436f69606cdfe35d3ef9112f0c64e3ff021d</sdk:checksum>
569569+ <sdk:url>https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-10_r02.zip</sdk:url>
570570+ </sdk:archive>
571571+ </sdk:archives>
572572+ <sdk:tag-id>default</sdk:tag-id>
573573+ </sdk:system-image>
574574+575575+ <sdk:system-image>
576576+ <sdk:description>Android SDK Platform 4.0.4</sdk:description>
577577+ <sdk:revision>1</sdk:revision>
578578+ <sdk:api-level>15</sdk:api-level>
579579+ <sdk:abi>x86</sdk:abi>
580580+ <sdk:uses-license ref="intel-android-sysimage-license"/>
581581+ <sdk:archives>
582582+ <sdk:archive>
583583+ <sdk:size>112619605</sdk:size>
584584+ <sdk:checksum type="sha1">d540325952e0f097509622b9e685737584b83e40</sdk:checksum>
585585+ <sdk:url>https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-15_r01.zip</sdk:url>
586586+ </sdk:archive>
587587+ </sdk:archives>
588588+ <sdk:tag-id>default</sdk:tag-id>
589589+ </sdk:system-image>
590590+591591+ <sdk:system-image>
592592+ <sdk:description>Android SDK Platform 4.1.1</sdk:description>
593593+ <sdk:revision>1</sdk:revision>
594594+ <sdk:api-level>16</sdk:api-level>
595595+ <sdk:abi>x86</sdk:abi>
596596+ <sdk:uses-license ref="intel-android-sysimage-license"/>
597597+ <sdk:archives>
598598+ <sdk:archive>
599599+ <sdk:size>131840348</sdk:size>
600600+ <sdk:checksum type="sha1">9d35bcaa4f9b40443941f32b8a50337f413c021a</sdk:checksum>
601601+ <sdk:url>https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-16_r01.zip</sdk:url>
602602+ </sdk:archive>
603603+ </sdk:archives>
604604+ <sdk:tag-id>default</sdk:tag-id>
605605+ </sdk:system-image>
606606+607607+ <sdk:system-image>
608608+ <sdk:description>Android SDK Platform 4.2</sdk:description>
609609+ <sdk:revision>1</sdk:revision>
610610+ <sdk:api-level>17</sdk:api-level>
611611+ <sdk:abi>x86</sdk:abi>
612612+ <sdk:uses-license ref="intel-android-sysimage-license"/>
613613+ <sdk:archives>
614614+ <sdk:archive>
615615+ <sdk:size>138799122</sdk:size>
616616+ <sdk:checksum type="sha1">ddb3313e8dcd07926003f7b828eafea1115ea35b</sdk:checksum>
617617+ <sdk:url>https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-17_r01.zip</sdk:url>
618618+ </sdk:archive>
619619+ </sdk:archives>
620620+ <sdk:tag-id>default</sdk:tag-id>
621621+ </sdk:system-image>
622622+623623+ <sdk:system-image>
624624+ <sdk:description>Android SDK Platform 4.3</sdk:description>
625625+ <sdk:revision>1</sdk:revision>
626626+ <sdk:api-level>18</sdk:api-level>
627627+ <sdk:abi>x86</sdk:abi>
628628+ <sdk:uses-license ref="intel-android-sysimage-license"/>
629629+ <sdk:archives>
630630+ <sdk:archive>
631631+ <sdk:size>155656419</sdk:size>
632632+ <sdk:checksum type="sha1">f11bc9fccd3e7e46c07d8b26e112a8d0b45966c1</sdk:checksum>
633633+ <sdk:url>https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-18_r01.zip</sdk:url>
634634+ </sdk:archive>
635635+ </sdk:archives>
636636+ <sdk:tag-id>default</sdk:tag-id>
637637+ </sdk:system-image>
638638+639639+ <sdk:system-image>
640640+ <!-- Generated at Thu Feb 20 15:52:49 2014 from git_klp-sdk-release @ 999428 -->
641641+ <sdk:revision>2</sdk:revision>
642642+ <sdk:description>Android SDK Platform 4.4.2</sdk:description>
643643+ <sdk:api-level>19</sdk:api-level>
644644+ <sdk:abi>x86</sdk:abi>
645645+ <sdk:archives>
646646+ <sdk:archive>
647647+ <sdk:size>178922720</sdk:size>
648648+ <sdk:checksum type="sha1">8889cb418984a2a7916a359da7c429d2431ed060</sdk:checksum>
649649+ <sdk:url>sysimg_x86-19_r02.zip</sdk:url>
650650+ </sdk:archive>
651651+ </sdk:archives>
652652+ <sdk:uses-license ref="android-sdk-license"/>
653653+ <sdk:tag-id>default</sdk:tag-id>
654654+ </sdk:system-image>
655655+656656+ <!-- MIPS SYSTEM IMAGES ........................ -->
657657+658658+ <sdk:system-image>
659659+ <sdk:revision>1</sdk:revision>
660660+ <sdk:description>Android 4.0.4</sdk:description>
661661+ <sdk:api-level>15</sdk:api-level>
662662+ <sdk:abi>mips</sdk:abi>
663663+ <sdk:uses-license ref="mips-android-sysimage-license"/>
664664+ <sdk:archives>
665665+ <sdk:archive>
666666+ <sdk:size>117503178</sdk:size>
667667+ <sdk:checksum type="sha1">a753bb4a6783124dad726c500ce9aec9d2c1b2d9</sdk:checksum>
668668+ <sdk:url>sysimg_mips-15_r01.zip</sdk:url>
669669+ </sdk:archive>
670670+ </sdk:archives>
671671+ <sdk:tag-id>default</sdk:tag-id>
672672+ </sdk:system-image>
673673+674674+ <sdk:system-image>
675675+ <sdk:revision>4</sdk:revision>
676676+ <!-- mipsia repo tag qa-dev-mips-jb-20130123,
677677+ github.com/MIPS branch dev-mips-jb, tag mips-jb-4.1.2_r1m1
678678+ repo init -u git://github.com/MIPS/manifests.git
679679+ -b dev-mips-jb -m mips-jb-4.1.2_r1m1.xml -->
680680+ <sdk:description>Android 4.1.2</sdk:description>
681681+ <sdk:api-level>16</sdk:api-level>
682682+ <sdk:abi>mips</sdk:abi>
683683+ <sdk:uses-license ref="mips-android-sysimage-license"/>
684684+ <sdk:archives>
685685+ <sdk:archive>
686686+ <sdk:size>122482530</sdk:size>
687687+ <sdk:checksum type="sha1">67943c54fb3943943ffeb05fdd39c0b753681f6e</sdk:checksum>
688688+ <sdk:url>sysimg_mips-16_r04.zip</sdk:url>
689689+ </sdk:archive>
690690+ </sdk:archives>
691691+ <sdk:tag-id>default</sdk:tag-id>
692692+ </sdk:system-image>
693693+694694+ <sdk:system-image>
695695+ <sdk:revision>1</sdk:revision>
696696+ <!-- mipsia repo tag qa-dev-mips-jb-mr1-20121219,
697697+ github.com/MIPS tag mips-jb-4.2.1_r1 -->
698698+ <sdk:description>Android 4.2.1</sdk:description>
699699+ <sdk:api-level>17</sdk:api-level>
700700+ <sdk:abi>mips</sdk:abi>
701701+ <sdk:uses-license ref="mips-android-sysimage-license"/>
702702+ <sdk:archives>
703703+ <sdk:archive>
704704+ <sdk:size>131781761</sdk:size>
705705+ <sdk:checksum type="sha1">f0c6e153bd584c29e51b5c9723cfbf30f996a05d</sdk:checksum>
706706+ <sdk:url>sysimg_mips-17_r01.zip</sdk:url>
707707+ </sdk:archive>
708708+ </sdk:archives>
709709+ <sdk:tag-id>default</sdk:tag-id>
710710+ </sdk:system-image>
711711+712712+</sdk:sdk-sys-img>
···1818(cd $out/lib && ln -s libananke.so.1 libananke.so)
1919oldRPath=$(patchelf --print-rpath $out/bin/higan)
2020patchelf --set-rpath $oldRPath:$out/lib $out/bin/higan
2121+2222+# A dirty workaround, suggested by @cpages:
2323+# we create a first-run script to populate
2424+# the local $HOME with all the auxiliary
2525+# stuff needed by higan at runtime
2626+2727+cat <<EOF > $out/bin/higan-config.sh
2828+#!${shell}
2929+3030+cp --update --recursive $out/share/higan \$HOME/.config
3131+chmod --recursive u+w \$HOME/.config/higan
3232+3333+EOF
3434+3535+chmod +x $out/bin/higan-config.sh
+2-1
pkgs/misc/emulators/higan/default.nix
···4444# TODO:
4545# - options to choose profiles (accuracy, balanced, performance)
4646# and different GUIs (gtk2, qt4)
4747-# - fix the BML and BIOS paths - maybe a custom patch to Higan project?
4747+# - fix the BML and BIOS paths - maybe submitting
4848+# a custom patch to Higan project would not be a bad idea...
4849#
···1616 asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
1717 ];
18181919+ patches = [ ./multiple_mounts.patch ];
2020+1921 # for btrfs to get the rpath to libgcc_s, needed for pthread_cancel to work
2022 NIX_CFLAGS_LINK = "-lgcc_s";
2123