File tree 2 files changed +14
-8
lines changed
build-artifacts/project-template-gradle/app
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
+
1
8
3.3.0
2
9
==
3
10
4
11
## Bug Fixes
5
12
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 )
12
16
13
17
3.2.0
14
18
==
Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ def applyAppGradleConfiguration = { ->
138
138
if (appGradle. exists()) {
139
139
println " \t + applying user-defined configuration from ${ appGradle} "
140
140
apply from : pathToAppGradle
141
+ } else {
142
+ println " \t + couldn't load user-defined configuration from ${ appGradle} . File doesn't exist."
141
143
}
142
144
}
143
145
@@ -183,11 +185,11 @@ android {
183
185
renameResultApks(variant)
184
186
}
185
187
188
+ applyAppGradleConfiguration()
189
+
186
190
def dimensions = applyPluginsIncludeGradleConfigurations()
187
191
188
192
flavorDimensions(* dimensions)
189
-
190
- applyAppGradleConfiguration()
191
193
}
192
194
193
195
def externalRuntimeExists = ! findProject(' :runtime' ). is(null )
You can’t perform that action at this time.
0 commit comments