Skip to content

Commit 2c27797

Browse files
authored
Merge pull request #883 from NativeScript/pete/merge-release-master
merge release (3.3.1) changes into master
2 parents 86f1fd9 + 6dee163 commit 2c27797

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1+
3.3.1
2+
==
3+
4+
## Bug Fixes
5+
6+
- [app.gradle applies before other plugin gradle scripts (#878)](https://github.com/NativeScript/android-runtime/issues/878)
7+
18
3.3.0
29
==
310

411
## Bug Fixes
512

6-
- [Provide better error message while parsing js files (#833)]
7-
(https://github.com/NativeScript/android-runtime/issues/833)
8-
- [Improve JavaScript Metadata generation (#832)]
9-
(https://github.com/NativeScript/android-runtime/issues/832)
10-
- [Improve Error handling incorrectly implementing Java interface (#836)]
11-
(https://github.com/NativeScript/android-runtime/issues/836)
13+
- [Provide better error message while parsing js files (#833)](https://github.com/NativeScript/android-runtime/issues/833)
14+
- [Improve JavaScript Metadata generation (#832)](https://github.com/NativeScript/android-runtime/issues/832)
15+
- [Improve Error handling incorrectly implementing Java interface (#836)](https://github.com/NativeScript/android-runtime/issues/836)
1216

1317
3.2.0
1418
==

build-artifacts/project-template-gradle/app/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ def applyAppGradleConfiguration = { ->
138138
if (appGradle.exists()) {
139139
println "\t + applying user-defined configuration from ${appGradle}"
140140
apply from: pathToAppGradle
141+
} else {
142+
println "\t + couldn't load user-defined configuration from ${appGradle}. File doesn't exist."
141143
}
142144
}
143145

@@ -183,11 +185,11 @@ android {
183185
renameResultApks(variant)
184186
}
185187

188+
applyAppGradleConfiguration()
189+
186190
def dimensions = applyPluginsIncludeGradleConfigurations()
187191

188192
flavorDimensions(*dimensions)
189-
190-
applyAppGradleConfiguration()
191193
}
192194

193195
def externalRuntimeExists = !findProject(':runtime').is(null)

0 commit comments

Comments
 (0)