新增运行aapt脚本

This commit is contained in:
gfdgd_xi 2024-01-29 18:33:14 +08:00
parent 23179c0266
commit ce15113a7a
1 changed files with 14 additions and 0 deletions

14
aapt/run-aapt.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# 判断是不是 Deepin23
cat /etc/deepin_version | grep 23
if [[ $? != 0 ]]; then
# 如果不是
aapt "$@"
exit $?
fi
# 如果是
programPath=$(cd $(dirname $0); pwd)
echo $programPath
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$programPath"
$programPath/aapt "$@"
exit $?