You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def ft = fileTree(dir: nodeModulesDir, include: ["**/platforms/android/**/*.*"], exclude: '**/.bin/**')
183
+
ft.files.each { f->
184
+
def fileName = f.getName();
185
+
if(
186
+
!fileName.endsWith(".aar")
187
+
&&
188
+
!fileName.equals("include.gradle")
189
+
&&
190
+
!fileName.endsWith(".jar")
191
+
){
192
+
println"WARNING: The file: "+ f +" is depricated, you can read more about what will be the expected plugin structure here: https://www.nativescript.org/blog/migrating-n-android-plugins-from-version-1.7-to-2.0"
0 commit comments