File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed
Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 11SHELL =/bin/bash
22
3- debug : bin/* .apk
3+ .PHONY : debug
4+ debug :
45 buildozer -v android debug
56
6- release : bin/* aab
7+ .PHONY : release
8+ release :
79 buildozer -v android release
810
9- .PHONY : adb-run-debug
10- adb-run-debug :
11+ adb-run-debug : debug
1112 buildozer android debug deploy run logcat
1213
13- .PHONY : adb-run
14- adb-run :
14+ adb-run : release
1515 buildozer android release deploy run logcat
1616
1717run : c.profile
@@ -21,5 +21,6 @@ run: c.profile
2121test :
2222 python test.py
2323
24- dump : app_data/mock/* .dump
24+ .PHONY : dump
25+ dump :
2526 python dump.py
Original file line number Diff line number Diff line change @@ -35,10 +35,14 @@ Software Engineering Project for IU (www.iu-fernstudium.de)
3535 - [x] Light mode (** experimental!!!** )
3636
3737[ Sign-In] ( doc/gif/sign_in.gif )
38+
3839[ Course Browser] ( doc/gif/course_resources.gif )
40+
3941[ Course Management] ( doc/gif/booking.gif )
42+
4043[ Exam results] ( doc/gif/grades.gif )
41- [ Calendar] ( calendar.gif )
44+
45+ [ Calendar] ( doc/gif/calendar.gif )
4246
4347## Deployment
4448
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ android.accept_sdk_license = True
3737android.archs = arm64-v8a, armeabi-v7a
3838android.release_artifact = apk
3939android.debug_artifact = apk
40+ android.api = 30
41+ android.minapi = 30
4042
4143#####################################
4244# #
You can’t perform that action at this time.
0 commit comments