Skip to content

Commit

Permalink
Created OnBootReceiver for KnoxVNC
Browse files Browse the repository at this point in the history
Boot Receiver Change
  • Loading branch information
electrondefuser committed Jan 16, 2025
1 parent aa4d097 commit f106b4f
Show file tree
Hide file tree
Showing 7 changed files with 178 additions and 488 deletions.
9 changes: 8 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">

<receiver android:name=".BootReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>

<service
android:name="com.appknox.vnc.VNCService"
android:enabled="true"
Expand Down Expand Up @@ -53,7 +60,7 @@
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

Expand Down
Loading

0 comments on commit f106b4f

Please sign in to comment.