Skip to content

Instantly share code, notes, and snippets.

@akira-sasaki
Created December 5, 2014 04:51
Show Gist options
  • Save akira-sasaki/8c99c9ac1c9fa400af8c to your computer and use it in GitHub Desktop.
Save akira-sasaki/8c99c9ac1c9fa400af8c to your computer and use it in GitHub Desktop.
AndroidManifest.xml BLE Sample
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="gclue.com.myble" >
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MyActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment