Skip to content

Commit 907c65b

Browse files
committed
1.0.0 release
1 parent 512dbd7 commit 907c65b

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
SHELL=/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

1717
run: c.profile
@@ -21,5 +21,6 @@ run: c.profile
2121
test:
2222
python test.py
2323

24-
dump: app_data/mock/*.dump
24+
.PHONY: dump
25+
dump:
2526
python dump.py

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

buildozer.spec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ android.accept_sdk_license = True
3737
android.archs = arm64-v8a, armeabi-v7a
3838
android.release_artifact = apk
3939
android.debug_artifact = apk
40+
android.api = 30
41+
android.minapi = 30
4042
4143
#####################################
4244
# #

0 commit comments

Comments
 (0)