Removed unnecessary file

Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/d68798b3
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/d68798b3
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/d68798b3

Branch: refs/heads/master
Commit: d68798b32adcf45c036792872448c636cab87720
Parents: 926aea0
Author: therajanmaurya <rajanmaurya...@gmail.com>
Authored: Wed Mar 9 19:52:40 2016 +0530
Committer: therajanmaurya <rajanmaurya...@gmail.com>
Committed: Wed Mar 9 19:52:40 2016 +0530

----------------------------------------------------------------------
 app/build.gradle                                |   1 -
 .../fragments/NavigationDrawerFragment.java     | 315 -------------------
 .../main/res/drawable-hdpi/drawer_shadow.9.png  | Bin 161 -> 0 bytes
 app/src/main/res/drawable-hdpi/ic_drawer.png    | Bin 2829 -> 0 bytes
 .../main/res/drawable-mdpi/drawer_shadow.9.png  | Bin 142 -> 0 bytes
 app/src/main/res/drawable-mdpi/ic_drawer.png    | Bin 2820 -> 0 bytes
 .../main/res/drawable-xhdpi/drawer_shadow.9.png | Bin 174 -> 0 bytes
 app/src/main/res/drawable-xhdpi/ic_drawer.png   | Bin 2836 -> 0 bytes
 .../res/drawable-xxhdpi/drawer_shadow.9.png     | Bin 208 -> 0 bytes
 app/src/main/res/drawable-xxhdpi/ic_drawer.png  | Bin 202 -> 0 bytes
 .../res/layout/fragment_navigation_drawer.xml   |  64 ----
 app/src/main/res/values/strings.xml             |   3 -
 build/intermediates/dex-cache/cache.xml         |  82 ++++-
 13 files changed, 81 insertions(+), 384 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/build.gradle
----------------------------------------------------------------------
diff --git a/app/build.gradle b/app/build.gradle
index f34a2e5..dac69c2 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -31,6 +31,5 @@ dependencies {
     compile 'com.android.support:recyclerview-v7:21.0.0'
     compile 'com.android.support:support-v4:21.0.0'
     compile files('libs/dropbox-android-sdk-1.6.3.jar')
-    compile 'com.nineoldandroids:library:2.4.+'
     compile 'com.android.support:design:22.2.0'
 }

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/java/org/apache/taverna/mobile/fragments/NavigationDrawerFragment.java
----------------------------------------------------------------------
diff --git 
a/app/src/main/java/org/apache/taverna/mobile/fragments/NavigationDrawerFragment.java
 
b/app/src/main/java/org/apache/taverna/mobile/fragments/NavigationDrawerFragment.java
deleted file mode 100644
index f3aaed0..0000000
--- 
a/app/src/main/java/org/apache/taverna/mobile/fragments/NavigationDrawerFragment.java
+++ /dev/null
@@ -1,315 +0,0 @@
-package org.apache.taverna.mobile.fragments;
-
-/*
-* Apache Taverna Mobile
-* Copyright 2015 The Apache Software Foundation
-
-* This product includes software developed at
-* The Apache Software Foundation (http://www.apache.org/).
-
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements. See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership. The ASF licenses this file
-* to you 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.
-*/
-
-import android.support.v7.app.ActionBarActivity;
-import android.app.Activity;
-import android.support.v7.app.ActionBar;
-import android.support.v4.app.Fragment;
-import android.support.v4.app.ActionBarDrawerToggle;
-import android.support.v4.view.GravityCompat;
-import android.support.v4.widget.DrawerLayout;
-import android.content.SharedPreferences;
-import android.content.res.Configuration;
-import android.os.Bundle;
-import android.preference.PreferenceManager;
-import android.view.LayoutInflater;
-import android.view.Menu;
-import android.view.MenuInflater;
-import android.view.MenuItem;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.AdapterView;
-import android.widget.ArrayAdapter;
-import android.widget.ListView;
-import android.widget.Toast;
-
-import org.apache.taverna.mobile.R;
-import org.apache.taverna.mobile.adapters.SliderMenuAdapter;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * Fragment used for managing interactions for and presentation of a 
navigation drawer.
- * See the <a 
href="https://developer.android.com/design/patterns/navigation-drawer.html#Interaction";>
- * design guidelines</a> for a complete explanation of the behaviors 
implemented here.
- */
-public class NavigationDrawerFragment extends Fragment {
-
-    /**
-     * Remember the position of the selected item.
-     */
-    private static final String STATE_SELECTED_POSITION = 
"selected_navigation_drawer_position";
-
-    /**
-     * Per the design guidelines, you should show the drawer on launch until 
the user manually
-     * expands it. This shared preference tracks this.
-     */
-    private static final String PREF_USER_LEARNED_DRAWER = 
"navigation_drawer_learned";
-
-    /**
-     * A pointer to the current callbacks instance (the Activity).
-     */
-    private NavigationDrawerCallbacks mCallbacks;
-
-    /**
-     * Helper component that ties the action bar to the navigation drawer.
-     */
-    private ActionBarDrawerToggle mDrawerToggle;
-
-    private DrawerLayout mDrawerLayout;
-    private ListView mDrawerListView;
-    private View mFragmentContainerView;
-
-    private int mCurrentSelectedPosition = 0;
-    private boolean mFromSavedInstanceState;
-    private boolean mUserLearnedDrawer;
-
-    public NavigationDrawerFragment() {
-    }
-
-    @Override
-    public void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-
-        // Read in the flag indicating whether or not the user has 
demonstrated awareness of the
-        // drawer. See PREF_USER_LEARNED_DRAWER for details.
-        SharedPreferences sp = 
PreferenceManager.getDefaultSharedPreferences(getActivity());
-        mUserLearnedDrawer = sp.getBoolean(PREF_USER_LEARNED_DRAWER, true);
-
-        if (savedInstanceState != null) {
-            mCurrentSelectedPosition = 
savedInstanceState.getInt(STATE_SELECTED_POSITION);
-            mFromSavedInstanceState = true;
-        }
-
-        // Select either the default item (0) or the last selected item.
-        selectItem(mCurrentSelectedPosition);
-    }
-
-    @Override
-    public void onActivityCreated(Bundle savedInstanceState) {
-        super.onActivityCreated(savedInstanceState);
-        // Indicate that this fragment would like to influence the set of 
actions in the action bar.
-        setHasOptionsMenu(true);
-    }
-
-    @Override
-    public View onCreateView(LayoutInflater inflater, ViewGroup container,
-                             Bundle savedInstanceState) {
-        View nview = inflater.inflate(R.layout.fragment_navigation_drawer, 
null, false);
-        if(nview == null){
-            nview = inflater.inflate(R.layout.fragment_navigation_drawer, 
container, false);
-        }
-
-        mDrawerListView = (ListView) 
nview.findViewById(R.id.navigation_drawer_listview);
-        //((ViewGroup) 
mDrawerListView.getParent()).removeView(mDrawerListView);
-        mDrawerListView.setOnItemClickListener(new 
AdapterView.OnItemClickListener() {
-            @Override
-            public void onItemClick(AdapterView<?> parent, View view, int 
position, long id) {
-                selectItem(position);
-            }
-        });
-        List<String> mlist = new ArrayList<String>();
-        mlist.add(getString(R.string.title_explore));
-        mlist.add(getString(R.string.title_openworkflow));
-        mlist.add(getString(R.string.title_usage));
-        mlist.add(getString(R.string.title_about));
-        mlist.add(getString(R.string.title_activity_settings));
-        mlist.add(getString(R.string.title_exit));
-
-        mDrawerListView.setAdapter(new SliderMenuAdapter(getActivity(), 
mlist));
-        mDrawerListView.setItemChecked(mCurrentSelectedPosition, true);
-
-        return nview;
-    }
-
-    public boolean isDrawerOpen() {
-        return mDrawerLayout != null && 
mDrawerLayout.isDrawerOpen(mFragmentContainerView);
-    }
-
-    /**
-     * Users of this fragment must call this method to set up the navigation 
drawer interactions.
-     *
-     * @param fragmentId   The android:id of this fragment in its activity's 
layout.
-     * @param drawerLayout The DrawerLayout containing this fragment's UI.
-     */
-    public void setUp(int fragmentId, DrawerLayout drawerLayout) {
-        mFragmentContainerView = getActivity().findViewById(fragmentId);
-        mDrawerLayout = drawerLayout;
-
-        // set a custom shadow that overlays the main content when the drawer 
opens
-        mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow, 
GravityCompat.START);
-        // set up the drawer's list view with items and click listener
-
-        ActionBar actionBar = getActionBar();
-        actionBar.setDisplayHomeAsUpEnabled(true);
-        actionBar.setHomeButtonEnabled(true);
-
-        // ActionBarDrawerToggle ties together the proper interactions
-        // between the navigation drawer and the action bar app icon.
-        mDrawerToggle = new ActionBarDrawerToggle(
-                getActivity(),                    /* host Activity */
-                mDrawerLayout,                    /* DrawerLayout object */
-                R.drawable.ic_drawer,             /* nav drawer image to 
replace 'Up' caret */
-                R.string.navigation_drawer_open,  /* "open drawer" description 
for accessibility */
-                R.string.navigation_drawer_close  /* "close drawer" 
description for accessibility */
-        ) {
-            @Override
-            public void onDrawerClosed(View drawerView) {
-                super.onDrawerClosed(drawerView);
-                if (!isAdded()) {
-                    return;
-                }
-
-                getActivity().supportInvalidateOptionsMenu(); // calls 
onPrepareOptionsMenu()
-            }
-
-            @Override
-            public void onDrawerOpened(View drawerView) {
-                super.onDrawerOpened(drawerView);
-                if (!isAdded()) {
-                    return;
-                }
-
-              /*  if (!mUserLearnedDrawer) {
-                    // The user manually opened the drawer; store this flag to 
prevent auto-showing
-                    // the navigation drawer automatically in the future.
-                    mUserLearnedDrawer = true;
-                    SharedPreferences sp = PreferenceManager
-                            .getDefaultSharedPreferences(getActivity());
-                    sp.edit().putBoolean(PREF_USER_LEARNED_DRAWER, 
true).apply();
-                }
-*/
-                getActivity().supportInvalidateOptionsMenu(); // calls 
onPrepareOptionsMenu()
-            }
-        };
-
-        // If the user hasn't 'learned' about the drawer, open it to introduce 
them to the drawer,
-        // per the navigation drawer design guidelines.
-        if (!mUserLearnedDrawer && !mFromSavedInstanceState) {
-            mDrawerLayout.openDrawer(mFragmentContainerView);
-        }
-
-        // Defer code dependent on restoration of previous instance state.
-        mDrawerLayout.post(new Runnable() {
-            @Override
-            public void run() {
-                mDrawerToggle.syncState();
-            }
-        });
-
-        mDrawerLayout.setDrawerListener(mDrawerToggle);
-    }
-
-    private void selectItem(int position) {
-        mCurrentSelectedPosition = position;
-        if (mDrawerListView != null) {
-            mDrawerListView.setItemChecked(position, true);
-        }
-        if (mDrawerLayout != null) {
-            mDrawerLayout.closeDrawer(mFragmentContainerView);
-        }
-        if (mCallbacks != null) {
-            mCallbacks.onNavigationDrawerItemSelected(position);
-        }
-    }
-
-    /**
-     * Lifecycle Callback where the fragment could Ensure that the host 
activity implements the communication interface declared by the fragment
-     * @param activity the host activity within which the fragment is managed
-     */
-    @Override
-    public void onAttach(Activity activity) {
-        super.onAttach(activity);
-        try {
-            mCallbacks = (NavigationDrawerCallbacks) activity;
-        } catch (ClassCastException e) {
-            throw new ClassCastException("Activity must implement 
NavigationDrawerCallbacks.");
-        }
-    }
-
-    @Override
-    public void onDetach() {
-        super.onDetach();
-        mCallbacks = null;
-    }
-
-    @Override
-    public void onSaveInstanceState(Bundle outState) {
-        super.onSaveInstanceState(outState);
-        outState.putInt(STATE_SELECTED_POSITION, mCurrentSelectedPosition);
-    }
-
-    @Override
-    public void onConfigurationChanged(Configuration newConfig) {
-        super.onConfigurationChanged(newConfig);
-        // Forward the new configuration the drawer toggle component.
-        mDrawerToggle.onConfigurationChanged(newConfig);
-    }
-
-    @Override
-    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
-        // showGlobalContextActionBar, which controls the top-left area of the 
action bar.
-        if(isDrawerOpen())
-            showGlobalContextActionBar();
-        super.onCreateOptionsMenu(menu, inflater);
-    }
-
-    @Override
-    public boolean onOptionsItemSelected(MenuItem item) {
-        if (mDrawerToggle.onOptionsItemSelected(item)) {
-            return true;
-        }
-
-        return super.onOptionsItemSelected(item);
-    }
-
-    /**
-     * Per the navigation drawer design guidelines, updates the action bar to 
show the global app
-     * 'context', rather than just what's in the current screen.
-     */
-    private void showGlobalContextActionBar() {
-        ActionBar actionBar = getActionBar();
-        actionBar.setDisplayShowTitleEnabled(true);
-        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
-        actionBar.setTitle(R.string.app_name);
-    }
-
-    private ActionBar getActionBar() {
-        return ((ActionBarActivity) getActivity()).getSupportActionBar();
-    }
-
-    /**
-     * Callbacks interface that all activities using this fragment must 
implement.
-     */
-    public static interface NavigationDrawerCallbacks {
-        /**
-         * Called when an item in the navigation drawer is selected.
-         */
-        void onNavigationDrawerItemSelected(int position);
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-hdpi/drawer_shadow.9.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-hdpi/drawer_shadow.9.png 
b/app/src/main/res/drawable-hdpi/drawer_shadow.9.png
deleted file mode 100644
index 236bff5..0000000
Binary files a/app/src/main/res/drawable-hdpi/drawer_shadow.9.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-hdpi/ic_drawer.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-hdpi/ic_drawer.png 
b/app/src/main/res/drawable-hdpi/ic_drawer.png
deleted file mode 100644
index c59f601..0000000
Binary files a/app/src/main/res/drawable-hdpi/ic_drawer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-mdpi/drawer_shadow.9.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-mdpi/drawer_shadow.9.png 
b/app/src/main/res/drawable-mdpi/drawer_shadow.9.png
deleted file mode 100644
index ffe3a28..0000000
Binary files a/app/src/main/res/drawable-mdpi/drawer_shadow.9.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-mdpi/ic_drawer.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-mdpi/ic_drawer.png 
b/app/src/main/res/drawable-mdpi/ic_drawer.png
deleted file mode 100644
index 1ed2c56..0000000
Binary files a/app/src/main/res/drawable-mdpi/ic_drawer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png 
b/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png
deleted file mode 100644
index fabe9d9..0000000
Binary files a/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-xhdpi/ic_drawer.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-xhdpi/ic_drawer.png 
b/app/src/main/res/drawable-xhdpi/ic_drawer.png
deleted file mode 100644
index a5fa74d..0000000
Binary files a/app/src/main/res/drawable-xhdpi/ic_drawer.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png 
b/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
deleted file mode 100644
index b91e9d7..0000000
Binary files a/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/drawable-xxhdpi/ic_drawer.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/drawable-xxhdpi/ic_drawer.png 
b/app/src/main/res/drawable-xxhdpi/ic_drawer.png
deleted file mode 100644
index 9c4685d..0000000
Binary files a/app/src/main/res/drawable-xxhdpi/ic_drawer.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/layout/fragment_navigation_drawer.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/fragment_navigation_drawer.xml 
b/app/src/main/res/layout/fragment_navigation_drawer.xml
deleted file mode 100644
index 90ddd3a..0000000
--- a/app/src/main/res/layout/fragment_navigation_drawer.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<!--
-Apache Taverna Mobile
-Copyright 2015 The Apache Software Foundation
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You 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.
--->
-<LinearLayout
-    xmlns:android="http://schemas.android.com/apk/res/android";
-    xmlns:tools="http://schemas.android.com/tools";
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:orientation="vertical"
-    android:background="#ccc">
-
-    <LinearLayout
-        android:orientation="vertical"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:background="@drawable/sliding_header">
-
-        <ImageView
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:id="@+id/imageView4"
-            android:layout_gravity="center_horizontal"
-            android:src="@mipmap/icuserprofiles"
-            android:contentDescription="@string/app_name"
-            android:scaleType="fitStart" />
-    </LinearLayout>
-
-    <ListView
-    android:id="@+id/navigation_drawer_listview"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:choiceMode="singleChoice"
-    android:divider="@android:color/holo_blue_light"
-    android:dividerHeight="2dp"
-    android:background="#cccc"
-    
tools:context="org.apache.taverna.mobile.fragments.NavigationDrawerFragment"
-     />
-
-    <TextView
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:textAppearance="?android:attr/textAppearanceMedium"
-        android:text="@string/completebrand"
-        android:id="@+id/textView8"
-        android:hint="@string/brand"
-        android:layout_gravity="center_horizontal"
-        android:layout_marginTop="30dp" />
-</LinearLayout>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/app/src/main/res/values/strings.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values/strings.xml 
b/app/src/main/res/values/strings.xml
index 25c2755..e7c3f7c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -42,9 +42,6 @@ limitations under the License.
     <string name="title_openworkflow">Open Workflow</string>
     <string name="menu_search">Search</string>
 
-    <string name="navigation_drawer_open">Open navigation drawer</string>
-    <string name="navigation_drawer_close">Close navigation drawer</string>
-
     <string name="action_example">Example action</string>
     <string name="completebrand">Powered By Apache Taverna</string>
     <string name="search_hint"> Search workflows by name</string>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/d68798b3/build/intermediates/dex-cache/cache.xml
----------------------------------------------------------------------
diff --git a/build/intermediates/dex-cache/cache.xml 
b/build/intermediates/dex-cache/cache.xml
index fba8db8..eb8357d 100644
--- a/build/intermediates/dex-cache/cache.xml
+++ b/build/intermediates/dex-cache/cache.xml
@@ -1,2 +1,82 @@
 <?xml version="1.0" encoding="utf-8"?>
-<items version="2" />
+<items version="2" >
+
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/21.0.0/jars/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="efeda77c808750cb670ee9c48d8a1835d89dbcb2">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/com.android.support-recyclerview-v7-21.0.0_ffe00cee4da14048d4da2b688f0047cd3e32837b.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/libs/json_simple-1.1.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="5e303a03d04e6788dddfa3655272580ae0fc13bb">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/json_simple-1.1_cd6653da78129a68b8cbedea62916659e93c834e.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/design/22.2.0/jars/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="fc63b820d54c8a27a3a614bdd93920e0076581c2">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/com.android.support-design-22.2.0_2d9b0f6871148bed9dd969ce4d913c949ae46ca7.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/Android/Sdk/extras/android/m2repository/com/android/support/support-annotations/22.2.0/support-annotations-22.2.0.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="66b42a1f3eb7676070b7ef7f14b603483aecbee1">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/support-annotations-22.2.0_7c42f072b739f3ebe9b9221da2591c1b97f9df8f.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/jars/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="73753982da6bde518f3a4c6b372749981d14d1a0">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/com.android.support-appcompat-v7-22.2.0_35f4f1ac690bdfe44f1bf7628e6fc7c456ba416a.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="1ee588ff2c4daf7b97c1cbf922a6c7f027285c2f">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/com.android.support-support-v4-22.2.0_d1332965635ade763476657a01c9c99693d7c8e6.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/libs/sjxp-2.2.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="d7072ec248612a8f861f895a950eb7cc480de9c0">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/sjxp-2.2_184ac6b09e0df575506fce425eb5050279b187c2.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/libs/internal_impl-22.2.0.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="57f2ab85c164ff1676ec64dee787981c046fab79">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/internal_impl-22.2.0_824fcf48329030f71a596f8ebac10a5904be3d7c.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/exploded-aar/com.android.support/cardview-v7/21.0.0/jars/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="7d2525cba8ed61fff102977caed964fc22061e34">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/com.android.support-cardview-v7-21.0.0_987211323e8eb77686cf79c312fd2afeaee1c9dd.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/libs/dropbox-android-sdk-1.6.3.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="986e7a58e925c6f91b88ae8d3224a0550b65acc7">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/dropbox-android-sdk-1.6.3_308774ab2f30f0e69ac39aaf8fea9fc16df66a2c.jar"
 />
+    </item>
+    <item
+        
jar="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/libs/simple-xml-2.7.1.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="083623424bcfa03bd598e709765bad0816c2375d">
+        <dex 
dex="/home/rajan/AndroidStudioProjects/incubator-taverna-mobile/app/build/intermediates/pre-dexed/debug/simple-xml-2.7.1_f8a8993e65cf41daf477a58becc315c08b6357f9.jar"
 />
+    </item>
+
+</items>

Reply via email to