mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
extend text char limits to match other app stores
We should be compatible with other apps stores unless there is a specific reason not to be. * Google Play, Amazon, and iTunes all have 4000 char descriptions For the summary, we can just bump it up to the same as what Play has * Google Play allows an 80 char "Short Description" https://support.google.com/googleplay/android-developer/answer/113469?hl=en * Amazon allows a 1200 char "Short Description" https://developer.amazon.com/public/support/submitting-your-app/tech-docs/submitting-your-app#Add Metadata and Image Assets
This commit is contained in:
parent
fba632cf07
commit
bd3ae88608
@ -70,8 +70,8 @@ default_config = {
|
||||
'keystore': 'keystore.jks',
|
||||
'smartcardoptions': [],
|
||||
'char_limits': {
|
||||
'Summary': 50,
|
||||
'Description': 1500
|
||||
'Summary': 80,
|
||||
'Description': 4000
|
||||
},
|
||||
'keyaliases': {},
|
||||
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
|
||||
|
Loading…
Reference in New Issue
Block a user