Skip to content
Snippets Groups Projects
Commit 06e24ffa authored by Duncan McNamara's avatar Duncan McNamara
Browse files

Webserver: add dev build variant

This is to avoid falling back to debug when building with compile.sh.
It would build all the java, then when build all modules the webserver
will not have a dev variante, causing vlc-android to fallback to the
debug variant.
parent d5e23571
Branches master
No related tags found
No related merge requests found
......@@ -27,6 +27,10 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
dev {
initWith debug
matchingFallbacks = ['debug']
}
}
task webCopy(type: Copy) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment