aboutsummaryrefslogtreecommitdiff
path: root/PrinterRecommendationExample/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'PrinterRecommendationExample/app/src/main/AndroidManifest.xml')
-rw-r--r--PrinterRecommendationExample/app/src/main/AndroidManifest.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/PrinterRecommendationExample/app/src/main/AndroidManifest.xml b/PrinterRecommendationExample/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..745ec0c
--- /dev/null
+++ b/PrinterRecommendationExample/app/src/main/AndroidManifest.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.android.discovery.recommendation" >
+
+ <uses-permission android:name="android.permission.INTERNET"/>
+ <application
+ android:allowBackup="false"
+ android:fullBackupContent="false"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:supportsRtl="true"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name=".DeviceList"
+ android:label="@string/title_activity_device_list"
+ android:theme="@style/AppTheme.NoActionBar" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>