Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ android {
sourceSets {
getByName("main") {
res.srcDirs("src/main/res", "src/main/res-i18n")
aidl {
srcDirs("src/main/aidl", "src/main/java")
}
}
}
configurations.all {
Expand Down
23 changes: 22 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,22 @@
</intent-filter>
</activity-alias>

<service
android:name="org.autojs.autojs.devplugin.DevPluginServiceImpl"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="org.autojs.autojs.devplugin.IDevPluginService" />
</intent-filter>
</service>
<service
android:name="org.autojs.autojs.tool.AccessibilityProxyServiceImpl"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="com.stardust.autojs.core.accessibility.IAccessibilityProxyService" />
</intent-filter>
</service>
<service
android:name="org.autojs.autojs.external.tile.LayoutBoundsTile"
android:exported="true"
Expand Down Expand Up @@ -224,6 +240,11 @@
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<service
android:name="com.stardust.autojs.core.accessibility.AccessibilityProxyService"
android:process="@string/text_script_process_name"
android:enabled="true"
android:exported="true" />

<receiver
android:name="org.autojs.autojs.external.receiver.StaticBroadcastReceiver"
Expand Down Expand Up @@ -278,7 +299,7 @@

<activity
android:name="org.autojs.autojs.external.open.RunIntentActivity"
android:enabled="false"
android:enabled="true"
android:exported="true"
android:icon="@drawable/autojs_logo"
android:label="@string/text_run_script"
Expand Down
Loading
Loading