force use of fdroid flavor for development
apparently, the google version hits the method limit. there is no reason to build the google version for debugging, so might as well just limit that (and document it) to avoid confusing developers who are new to the code base. see https://github.com/open-keychain/open-keychain/issues/2124
This commit is contained in:
@@ -252,6 +252,12 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
variantFilter { variant ->
|
||||
if(variant.buildType.name.equals('debug') && variant.getFlavors().get(0).name.equals('google')) {
|
||||
variant.setIgnore(true);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* To sign release build, create file gradle.properties in ~/.gradle/ with this content:
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user