Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
770b588
修复无障碍权限,app进程无法访问script进程的无障碍权限实例导致的bug
xcl199f Apr 5, 2026
a8d0315
- 添加传统的获取的截屏权限的方式(不跳转回AutoXJs界面)images.requestScreenCaptureLegacy()
xcl199f Apr 5, 2026
e78e271
暴露DevPlugin接口给脚本,增加以下函数,让脚本触发App的连接到电脑或开启UsbDebug
xcl199f Apr 5, 2026
b296259
- 修复serviceConnection.runScript报错后导致scope取消,脚本无法再运行的bug
xcl199f Apr 5, 2026
edc0bd7
脚本悬浮窗FloatyWindow新增一个setCoverStatusBar(bool)函数,允许悬浮窗拖动到系统状态栏上
xcl199f Apr 5, 2026
9d0dc53
替换paddleOcr为v4版本,提升文本识别准确率
xcl199f Apr 5, 2026
9f68490
fix: 修复PR报告的异常处理和缓冲区安全问题
xcl199f Apr 6, 2026
0f98904
fix: 修复截屏服务内存泄漏
xcl199f Apr 8, 2026
55bb7d1
修复paddle.ts参数类型定义
xcl199f Apr 28, 2026
1322046
修复paddle内存泄漏
xcl199f May 14, 2026
bff9f53
paddle OCR版本升级为V5
xcl199f May 18, 2026
c0b2038
侧边栏新增允许自动获取PROJECT_MEDIA权限的开关
xcl199f May 18, 2026
21a7fd2
Merge branch 'ncnn' into setup-v7
xcl199f May 18, 2026
a4b7ed2
侧边栏新增获取悬浮窗权限的开关
xcl199f May 18, 2026
0e7d69e
opencv-mobile更改为4.13.0
xcl199f May 19, 2026
b0091b5
移除无用import和文件
xcl199f May 19, 2026
1f66cbf
修改paddleOCR初始化测试位置
xcl199f May 19, 2026
adfece9
Update android-test.yml
xcl199f May 21, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/android-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
run: |
./gradlew autojs:buildJsModule
./gradlew :inrt:assemble
./gradlew :app:assembleRelease
./gradlew :app:assembleRelease --info
- uses: actions/upload-artifact@v6
with:
name: apks(no signing)
path: app/build/outputs/apk/v7/release/*.apk
path: app/build/outputs/apk/v7/release/*.apk
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