-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildozer.spec
More file actions
91 lines (68 loc) · 1.74 KB
/
Copy pathbuildozer.spec
File metadata and controls
91 lines (68 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[app]
# Title of your application
title = Manim Animation
# Package name (lowercase, alphanumeric only)
package.name = manimanim
# Package domain (use reverse domain notation)
package.domain = org.manim
# Source code location
source.dir = .
# Include patterns
source.include_exts = py,png,jpg,kv,atlas,ttf,json,txt
# Exclude patterns (to reduce APK size)
source.exclude_patterns = tests/*,docs/*,.git/*,.github/*
# Version
version = 0.1.0
# Application requirements (dependencies)
requirements = \
python3, \
kivy, \
numpy, \
scipy, \
matplotlib, \
pillow, \
sympy, \
pydub, \
requests, \
watchdog, \
opencv, \
scikit-image, \
imageio, \
imageio-ffmpeg
# Orientation (portrait/landscape/sensor)
orientation = portrait
# Allow fullscreen
fullscreen = 0
# Icon (optional - 512x512 PNG)
#icon.filename = %(source.dir)s/data/icon.png
# Presplash image (optional - loading screen)
#presplash.filename = %(source.dir)s/data/presplash.png
# Android permissions
android.permissions = \
INTERNET, \
ACCESS_NETWORK_STATE, \
WRITE_EXTERNAL_STORAGE, \
READ_EXTERNAL_STORAGE
# Android features
android.features = android.hardware.screen.landscape
# Android API version
android.api = 31
# Minimum Android API version
android.minapi = 21
# Android NDK version
android.ndk = 25.2.9519653
# Accept Android SDK licenses
android.accept_sdk_license = True
# Architecture (arm64-v8a for modern devices)
android.arch = arm64-v8a
# Allow backup
android.allow_backup = True
# Gradle dependencies
android.gradle_dependencies = androidx.appcompat:appcompat:1.6.1
# Log level
android.logcat_filters = *:S python:D
[buildozer]
# Log level (0=error, 1=info, 2=debug)
log_level = 2
# Warn on root
warn_on_root = 1