Skip to content

Commit 28ec249

Browse files
committed
Upload file
1 parent 653ff3d commit 28ec249

5 files changed

Lines changed: 13 additions & 2 deletions

File tree

Version.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
**Version: 1.2.7 (30-1-2026)**
44

55
+ Transfer build configuration items into the project.
6+
+ Add a cancel button while the script is running.
67
+ Repair the entire APK
78

89
**Version: 1.2.6 (8-1-2026)**

common/src/main/java/com/omarea/common/ui/DialogHelper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ class DialogHelper {
427427
if (isFloating) {
428428
val d = bg.toDrawable()
429429
setBackgroundDrawable(d)
430-
setDimAmount(0.9f)
430+
setDimAmount(0.95f)
431431
return
432432
} else {
433433
if (wallpaperMode || isNightMode(context)) {

pio/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
android:supportsRtl="true"
2626
android:enableOnBackInvokedCallback="true"
2727
android:theme="@style/AppTheme"
28+
android:localeConfig="@xml/locale_config"
2829
tools:ignore="GoogleAppIndexingWarning" >
2930
<meta-data
3031
android:name="android.max_aspect"

pio/src/main/assets/root/executor.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ export xu=xu
6767
fi
6868

6969
if [ "$CPU_ABI" != 'arm64-v8a' ];then
70-
echo "Only arm64-v8a devices supported"
70+
text_error="Only arm64-v8a devices supported"
71+
showtoast "$text_error"
72+
echo "$text_error" >&2
7173
sleep 10
7274
exit 1
7375
else
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
2+
<locale android:name="en-US" />
3+
<locale android:name="vi-VN" />
4+
<locale android:name="ru-RU" />
5+
<locale android:name="zh-CN" />
6+
<locale android:name="hu-HU" />
7+
</locale-config>

0 commit comments

Comments
 (0)