summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml')
-rw-r--r--SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml b/SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml
new file mode 100644
index 000000000..f2e94af08
--- /dev/null
+++ b/SDL_Android/SmartDeviceLinkTester/AndroidManifest.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.smartdevicelink.android"
+ android:versionCode="1"
+ android:versionName="1.1" >
+
+ <uses-permission android:name="android.permission.BLUETOOTH" />
+ <!-- Required to pair Bluetooth devices -->
+ <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
+ <uses-permission android:name="android.permission.INTERNET" />
+ <!-- Required to check if WiFi is enabled -->
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+
+ <application
+ android:debuggable="true"
+ android:icon="@drawable/fiesta"
+ android:label="@string/app_name" >
+ <activity
+ android:name=".activity.SmartDeviceLinkTester"
+ android:label="@string/app_name"
+ android:screenOrientation="portrait" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+ <activity android:label="Locked" android:screenOrientation="portrait" android:name="com.smartdevicelink.android.policies.PoliciesTesterActivity"></activity>
+
+ <service android:name=".service.ProxyService" >
+ </service>
+
+ <receiver android:name=".receivers.SmartDeviceLinkReceiver" >
+ <intent-filter>
+ <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
+ <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
+ <action android:name="android.media.AUDIO_BECOMING_NOISY" />
+ <action android:name="android.intent.action.MEDIA_BUTTON" />
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
+ <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
+ </intent-filter>
+ </receiver>
+ </application>
+
+ <uses-sdk android:minSdkVersion="5" />
+
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
+ </uses-permission>
+
+</manifest>