mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
parent
797958c0b1
commit
c44ab190bd
1 changed files with 11 additions and 11 deletions
|
@ -33,18 +33,18 @@ options = None
|
||||||
|
|
||||||
def get_gradle_compile_commands(build):
|
def get_gradle_compile_commands(build):
|
||||||
compileCommands = ['compile',
|
compileCommands = ['compile',
|
||||||
'provided'
|
'provided',
|
||||||
'apk'
|
'apk',
|
||||||
'implementation'
|
'implementation',
|
||||||
'api'
|
'api',
|
||||||
'compileOnly'
|
'compileOnly',
|
||||||
'runtimeOnly',
|
'runtimeOnly',
|
||||||
'releaseCompile'
|
'releaseCompile',
|
||||||
'releaseProvided'
|
'releaseProvided',
|
||||||
'releaseApk'
|
'releaseApk',
|
||||||
'releaseImplementation'
|
'releaseImplementation',
|
||||||
'releaseApi'
|
'releaseApi',
|
||||||
'releaseCompileOnly'
|
'releaseCompileOnly',
|
||||||
'releaseRuntimeOnly']
|
'releaseRuntimeOnly']
|
||||||
if build.gradle and build.gradle != ['yes']:
|
if build.gradle and build.gradle != ['yes']:
|
||||||
compileCommands += [flavor + 'Compile' for flavor in build.gradle]
|
compileCommands += [flavor + 'Compile' for flavor in build.gradle]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue