mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-09 19:50:26 -06:00
27 lines
806 B
Python
27 lines
806 B
Python
import glob
|
|
import os
|
|
import sys
|
|
|
|
from _utils import get_project_dir
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) < 2:
|
|
print("usage: rename_artifacts.py <project dir>")
|
|
exit(-1)
|
|
|
|
project_dir = get_project_dir()
|
|
|
|
files = glob.glob(f"{project_dir}/app/release/*.*")
|
|
for file in files:
|
|
file_relative = file.replace(project_dir + "/", "")
|
|
if "-aligned.apk" in file:
|
|
os.unlink(file)
|
|
elif "-signed.apk" in file:
|
|
new_file = file.replace("-signed.apk", ".apk")
|
|
if os.path.isfile(new_file):
|
|
os.unlink(new_file)
|
|
os.rename(file, new_file)
|
|
elif ".apk" in file or ".aab" in file:
|
|
print("signedReleaseFile=" + file)
|
|
print("signedReleaseFileRelative=" + file_relative)
|