We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9384a4c commit 8a04e8eCopy full SHA for 8a04e8e
pythonforandroid/bdistapk.py
@@ -16,7 +16,6 @@ def argv_contains(t):
16
17
18
class Bdist(Command):
19
- description = 'Create an APK with python-for-android'
20
21
user_options = []
22
@@ -133,14 +132,22 @@ def prepare_build_dir(self):
133
132
134
135
class BdistAPK(Bdist):
136
- """"""
+ """
+ distutil command handler for 'apk'
137
138
+ description = 'Create an APK with python-for-android'
139
+
140
@property
141
def package_type(self):
142
return "apk"
143
144
145
class BdistAAR(Bdist):
146
147
+ distutil command handler for 'aar'
148
149
+ description = 'Create an AAR with python-for-android'
150
151
152
153
return "aar"
0 commit comments