File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -222,13 +222,22 @@ def test_301_build_project_with_space_release(self):
222
222
self .app_name_space + "/" + TnsAsserts .PLATFORM_ANDROID_SRC_MAIN_PATH + "AndroidManifest.xml" )
223
223
assert app_identifier in output .lower ()
224
224
225
- def test_310_build_android_with_custom_compile_sdk (self ):
225
+ def test_310_build_android_with_custom_compile_sdk_new (self ):
226
226
# This is required when build with different SDK
227
227
Folder .cleanup (self .app_name )
228
228
Tns .create_app (self .app_name )
229
229
Tns .platform_add_android (attributes = {"--path" : self .app_name , "--frameworkPath" : ANDROID_PACKAGE })
230
230
Tns .build_android (attributes = {"--compileSdk" : "28" , "--path" : self .app_name })
231
231
232
+ @unittest .skip ("https://github.com/NativeScript/nativescript-cli/issues/4052" )
233
+ def test_311_build_android_with_custom_compile_sdk_old (self ):
234
+ #https://github.com/NativeScript/nativescript-cli/issues/4052
235
+ # This is required when build with different SDK
236
+ Folder .cleanup (self .app_name )
237
+ Tns .create_app (self .app_name )
238
+ Tns .platform_add_android (attributes = {"--path" : self .app_name , "--frameworkPath" : ANDROID_PACKAGE })
239
+ Tns .build_android (attributes = {"--compileSdk" : "27" , "--path" : self .app_name })
240
+
232
241
def test_313_build_android_with_invalid_compile_sdk (self ):
233
242
# This is required when build with different SDK
234
243
Folder .cleanup (self .app_name )
You can’t perform that action at this time.
0 commit comments