aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/android/AndroidManifest.xml
diff options
context:
space:
mode:
authorGravatar Andrew Harp <andrewharp@google.com>2017-01-11 14:05:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-11 14:26:29 -0800
commit6426c4efd825e80579c478a61f66579c1c3bcef1 (patch)
tree01859f3fcecdc4de174a89aae268270fd0e28cb5 /tensorflow/examples/android/AndroidManifest.xml
parent54e2be2f62dc34fbaef0fd052ad28d656ede6535 (diff)
Android: add image stylization example demo based on "A Learned Representation For Artistic Style"
Change: 144247143
Diffstat (limited to 'tensorflow/examples/android/AndroidManifest.xml')
-rw-r--r--tensorflow/examples/android/AndroidManifest.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/tensorflow/examples/android/AndroidManifest.xml b/tensorflow/examples/android/AndroidManifest.xml
index e388734564..9f229d8b9d 100644
--- a/tensorflow/examples/android/AndroidManifest.xml
+++ b/tensorflow/examples/android/AndroidManifest.xml
@@ -41,7 +41,7 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
-
+
<activity android:name="org.tensorflow.demo.DetectorActivity"
android:screenOrientation="portrait"
android:label="@string/activity_name_detection">
@@ -50,6 +50,15 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+
+ <activity android:name="org.tensorflow.demo.StylizeActivity"
+ android:screenOrientation="portrait"
+ android:label="@string/activity_name_stylize">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
</application>
</manifest>