Skip to content

Commit

Permalink
Merge pull request #375 from ytai/Cosmetic
Browse files Browse the repository at this point in the history
Cosmetic
  • Loading branch information
hannesa2 authored May 10, 2024
2 parents 4a02e82 + e73bbc7 commit 9b05cfd
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 9b05cfd

Please sign in to comment.