Commit f07960e9 authored by Daniel Kornhauser's avatar Daniel Kornhauser

Adding minimize duplicates workflow

parent b376108e
...@@ -41,7 +41,14 @@ ...@@ -41,7 +41,14 @@
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name=".IntentTransferingFeatures"> <activity android:name=".intents.IntentSearchFeatures">
<intent-filter>
<action android:name="com.auriclon.search" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".intents.IntentTransferingFeatures">
<intent-filter> <intent-filter>
<action android:name="com.auriclon.features" /> <action android:name="com.auriclon.features" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
......
package com.aluxoft.earrecognition.intents;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import com.aluxoft.earrecognition.activities.SelectFollowupActivity;
/**
* Created by dkor on 11/13/15.
*/
public class IntentSearchFeatures extends Activity{
@Override
protected void onCreate(Bundle saveInstanceState) {
super.onCreate(saveInstanceState);
Intent returningIntent = new Intent(getIntent());
returningIntent.putExtra(
"ear_search_result",
"Juan");
this.setResult(Activity.RESULT_OK, returningIntent);
finish();
}
}
package com.aluxoft.earrecognition; package com.aluxoft.earrecognition.intents;
import android.app.Activity; import android.app.Activity;
import android.app.ProgressDialog; import android.app.ProgressDialog;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment