Skip to content

Commit

Permalink
Cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 10, 2024
1 parent 4a02e82 commit e73bbc7
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions applications/HelloIOIOService/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@
package="ioio.examples.hello_service">

<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<application
android:theme="@style/Theme.AppCompat.NoActionBar"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.NoActionBar">

<uses-library
android:name="com.android.future.usb.accessory"
android:required="false" />
<service android:name="HelloIOIOService" />

<activity
android:name="MainActivity"
android:launchMode="singleTask"
android:exported="true">
android:exported="true"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -33,5 +35,7 @@
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
</activity>

<service android:name="HelloIOIOService" />
</application>
</manifest>

0 comments on commit e73bbc7

Please sign in to comment.