Skip to content

Commit

Permalink
Merge pull request #16 from elimu-ai/15-Add-build-type-qa_test-
Browse files Browse the repository at this point in the history
#15 Add build type "qa_test"
  • Loading branch information
nya-elimu authored Oct 16, 2020
2 parents 37c120d + be21012 commit 98deec6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ android {
buildConfigField("String", "CONTENT_PROVIDER_APPLICATION_ID", '"ai.elimu.content_provider.debug"')
buildConfigField("String", "ANALYTICS_APPLICATION_ID", '"ai.elimu.analytics.debug"')
}
qa_test {
initWith debug
applicationIdSuffix ".test"
versionNameSuffix "-test"
manifestPlaceholders = [contentProviderApplicationId: "ai.elimu.content_provider.test"]
buildConfigField("String", "CONTENT_PROVIDER_APPLICATION_ID", '"ai.elimu.content_provider.test"')
buildConfigField("String", "ANALYTICS_APPLICATION_ID", '"ai.elimu.analytics.test"')
}
release {
minifyEnabled false
manifestPlaceholders = [contentProviderApplicationId: "ai.elimu.content_provider"]
Expand Down

0 comments on commit 98deec6

Please sign in to comment.