File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed
build-artifacts/project-template-gradle/app Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 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+
183.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
13173.2.0
1418==
Original file line number Diff line number Diff 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
193195def externalRuntimeExists = ! findProject(' :runtime' ). is(null )
You can’t perform that action at this time.
0 commit comments