Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit c4ce7ed

Browse files
author
caticer
committed
some build script fixes
1 parent ea9c176 commit c4ce7ed

File tree

6 files changed

+30
-59
lines changed

6 files changed

+30
-59
lines changed

App/apktool.bat

Lines changed: 0 additions & 42 deletions
This file was deleted.

App/apktool.jar

-16.8 MB
Binary file not shown.

App/build.bat

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
@echo off
2-
echo Downloading Apktool...
3-
wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/windows/apktool.bat -q --show-progress
2+
echo Removing old builds
3+
if exist "out\CaticerCamera.apk" del "out\CaticerCamera.apk"
4+
5+
if not exist "out\" mkdir "out\"
6+
7+
if not exist apktool.bat echo apktool.bat not found. downloading... & wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/windows/apktool.bat -q --show-progress
8+
echo -
9+
if not exist apktool.jar echo apktool.jar not found. downloading... & wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.4.1.jar -q --show-progress
410
cls
5-
echo Downloading Apktool...
6-
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.4.1.jar -q --show-progress
7-
cls
8-
move apktool_2.4.1.jar apktool.jar
11+
12+
move apktool*.jar apktool.jar
913
del .wget-hsts
1014
cls
11-
echo Downloading Apktool... done.
15+
1216
echo Building App...
1317
powershell.exe ./apktool.bat b .\application\
1418
echo Building App... done.
15-
mkdir out
1619
move .\application\dist\MiuiCamera.apk out\CaticerCamera.apk
20+
21+
if exist "out\CaticerCamera.apk" ( echo Build Done.
22+
) else ( echo PROCESS FAILED.. )
1723
pause

Module/customize.sh

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# getprop ro.product.name | grep daisy || abort "only daisy suported"
2-
ui_print " @Caticer"
3-
ui_print "- Warning! Beta version may cause some bugs!"
2+
ui_print "-------------------------------------------------------"
3+
ui_print "Developer: @Caticer"
4+
ui_print "Joind my channel for updates: t.me/caticerstuff"
5+
ui_print "Warning! Beta versions may cause some bugs!"
6+
ui_print "-------------------------------------------------------"
47
ui_print "- For Android 8.1/9/10/11 Roms and GSI's"
5-
ui_print "- V2 version"
6-
ui_print "- 32s manuel Shutter speed"
7-
ui_print "- 4K video"
8-
ui_print "- And more+"
8+
ui_print "- Verison: V3-Beta"
9+
ui_print "-------------------------------------------------------"
10+
ui_print "Changelog:"
11+
ui_print "- Fixed random crash"
12+
ui_print "- New App icon"
13+
ui_print "- Full Hal3 complatible"
14+
ui_print "- Fixed no portraid and HDR pro option whith pixel props"
15+
ui_print "- Added more bugs to fix later"

Module/module.prop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name=Caticer Camera
33
version=3
44
versionCode=3
55
author=Caticer / FDoop
6-
description=Modded Stock Camera for Android 8/9/10/11 GSI/Custom Roms
6+
description=Modded Miui Camera for Android 8/9/10/11 GSI/Custom Roms

create_magisk_module.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
2-
powershell Compress-Archive -Path module\* debug.zip
3-
echo Done!
2+
echo wip
3+
echo Create manually lol
44
pause

0 commit comments

Comments
 (0)