Skip to content
This repository has been archived by the owner on Mar 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #45 from googlesamples/release-yamabe
Browse files Browse the repository at this point in the history
release-yamabe
  • Loading branch information
jguomoto committed Oct 15, 2015
2 parents 7f7d9b2 + 90bc469 commit f89352e
Show file tree
Hide file tree
Showing 73 changed files with 3,221 additions and 972 deletions.
2 changes: 1 addition & 1 deletion AreaLearningJava/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ if (project.hasProperty("Tango.catkin_devel_prefix")) {
}

dependencies {
compile fileTree(dir: external_lib_prefix + '/jar', include: ['**/*.jar'])
compile(name: 'TangoUtils', ext: 'aar')
compile 'org.rajawali3d:rajawali:1.0.294-SNAPSHOT@aar'
}

repositories{
Expand Down
6 changes: 3 additions & 3 deletions AreaLearningJava/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<activity
android:name="com.projecttango.experiments.javaarealearning.ALStartActivity"
android:label="@string/menu_name"
android:screenOrientation="landscape" >
android:screenOrientation="nosensor" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -46,12 +46,12 @@
<activity
android:name="com.projecttango.experiments.javaarealearning.AreaLearningActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
android:screenOrientation="nosensor">
</activity>
<activity
android:name="com.projecttango.experiments.javaarealearning.ADFUUIDListViewActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
android:screenOrientation="nosensor">
</activity>
</application>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import android.widget.Toast;

import java.util.ArrayList;
import java.util.List;

/**
* This class interfaces a Tango Object and maintains a full list of ADF UUIds. Whenever an adf is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import java.io.File;
import java.util.Arrays;


/**
* This class lets you manage ADFs between this class's Application Package folder and API private
* space. This show cases mainly three things: Import, Export, Delete an ADF file from API private
Expand Down Expand Up @@ -241,13 +242,12 @@ public void onAdfNameOk(String name, String uuid) {
mUUIDListView.setAdapter(mADFAdapter);
}


/**
* Implements SetADFNameDialog.CallbackListener.
*/
@Override
public void onAdfNameCancelled() {
// Nothing to do here.
// Nothing to do here.
}
}

Expand Down

This file was deleted.

Loading

0 comments on commit f89352e

Please sign in to comment.