Skip to content

Commit 919fde4

Browse files
committed
fix(gradle): Remove renaming hack
1 parent 3156a7f commit 919fde4

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

settings.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
11
include ':app', ':voice', ':ui'
2-
3-
//Read more on renaming gradle files: http://www.developerphil.com/renaming-your-gradle-build-files/
4-
void rename_recursively(project) {
5-
project.buildFileName = "${project.name}.gradle"
6-
project.children.each { child -> rename_recursively(child) }
7-
}
8-
9-
rootProject.children.each { project -> rename_recursively(project) }

ui/ui.gradle renamed to ui/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ android {
1616
}
1717
buildTypes {
1818
release {
19+
matchingFallbacks = ['debug', 'qa', 'release']
1920
minifyEnabled false
2021
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2122
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
}
3838
buildTypes {
3939
release {
40+
matchingFallbacks = ['debug', 'qa', 'release']
4041
minifyEnabled false
4142
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
4243
}

0 commit comments

Comments
 (0)