Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Gradle build error due to Android support lib 27.1.0 usage / Program type already present #1158

Closed
lambourn opened this issue Aug 15, 2018 · 18 comments
Assignees
Milestone

Comments

@lambourn
Copy link

CLI version: 4.2.1
Android runtime version: 4.2.0
minSdkVersion: 21
targetSdkVersion: 26

Not sure if this is a bug, but after upgrading to {N} 4.2 our release build for Android fails during Gradle's :app:transformDexArchiveWithExternalLibsDexMergerForRelease task.

Error:

D8: Program type already present: android.support.design.widget.CoordinatorLayout$Behavior

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease'.

It turned out that the Android support lib version used in the generated platforms/android/app/build.gradle is causing this.

Workaround was to add this to the App_Resources/Android/app.gradle file

ext {
    supportVersion = "27.1.0"
}

then compilation works fine.

@NickIliev
Copy link

Seems to be related to a known native issue

@tjvantoll
Copy link

We just hit this in an app and the posted workaround worked for us. Thanks for taking the time to write this up @lambourn!

@edusperoni
Copy link
Collaborator

This introduces some issues. We're using nativescript-textinputlayout, and if we use this workaround, we get this exact error on API <23:

https://stackoverflow.com/questions/47073632/classnotfound-android-view-viewstructure-with-support-library-26-0-2-27-0-0

Maybe it has something to do with the way {N} is inflating its components?

@edusperoni
Copy link
Collaborator

edusperoni commented Aug 28, 2018

To reproduce this issue, download this playground:
https://play.nativescript.org/?template=play-ng&id=b8YyX3
and add the workaround

Edit: the error points to this exact line:
https://github.com/bradleygore/nativescript-textinputlayout/blob/master/src/textInputLayout.android.ts#L126

which has nothing to do with dispatchProvideAutofillStructure(ViewStructure structure, int flags). Any ideas?

@vtrifonov
Copy link
Contributor

@edusperoni you are getting this error only in debug mode because of the inspector which is being started in debug. You can see more info about it here. You can try running the app and it should work on API level < 23.

@edusperoni
Copy link
Collaborator

@vtrifonov Unfortunately, that's not the case. Even a release build and installing the APK manually will trigger the crash.

@vtrifonov vtrifonov changed the title Gradle build error due to Android support lib 27.0.1 usage / Program type already present Gradle build error due to Android support lib 27.1.0 usage / Program type already present Aug 30, 2018
@vtrifonov
Copy link
Contributor

vtrifonov commented Aug 30, 2018

@edusperoni you are right, I was testing with a little bit different solution of the first problem from here. So instead of:

ext {
    supportVersion = "27.1.0"
}

I'm using this:

dependencies {
    debugImplementation "com.android.support:design:27.1.0"
}

inside the App_Resources/Android/app.gradle file

@edusperoni
Copy link
Collaborator

@vtrifonov this makes the release build fail with:

D8: Program type already present: android.support.design.widget.CoordinatorLayout$Behavior

Once again.

@vtrifonov
Copy link
Contributor

Ok, I see that is not fixing the issue :( However I'm not sure whether there's a workaround to make the TextInputLayout work on older devices (< API 23) with the latest support library (> 26.0.1) according to this bug report. Maybe you should create an issue in the https://github.com/bradleygore/nativescript-textinputlayout repo.

@edusperoni
Copy link
Collaborator

This seems to be an issue with the way Nativescript handles javascript to native code. Even without the plugin, if you try to manually create a TextInputLayout, it'll fail when you call addView. It should probably be treated as a nativescript bug, otherwise more problems will surely arise as we change support library versions.

@vtrifonov
Copy link
Contributor

vtrifonov commented Aug 30, 2018

Can you provide a sample playground project?

@edusperoni
Copy link
Collaborator

edusperoni commented Aug 30, 2018

https://play.nativescript.org/?template=play-ng&id=SODUNG

This will crash if you use support library 27.1.0+ on API < 23, but will show fine in API >= 23. If you remove the support lib, it won't crash, but release build will fail. If you remove the line til.addView(editText);, it won't crash.

@vtrifonov
Copy link
Contributor

@edusperoni I've found what's causing the error. We are using getDeclaredMethods of the TextInputLayout class to get the list of available methods when searching the corresponding Java method of a JavaScript method call. So this call is causing the app to crash. You can reproduce the same behaviour in a native app by calling the following code:

Class<?> clazz = Class.forName("android.support.design.widget.TextInputLayout");
Method[] declaredMethods = clazz.getDeclaredMethods(); 

We've found a fix for this and I hope it will be part of our next release. Thanks for helping me finding the root cause!

@edusperoni
Copy link
Collaborator

@vtrifonov Glad you sorted it out and found a quick fix! I'll be looking forward to the next release!

@vtrifonov
Copy link
Contributor

@edusperoni you can try with the tns-android@next version now.

@edusperoni
Copy link
Collaborator

Just tried it and it worked on Android 4.3. Seems good!

@vtrifonov
Copy link
Contributor

Great!

@vtrifonov vtrifonov self-assigned this Sep 4, 2018
@vtrifonov vtrifonov added this to the 5.0.0 milestone Sep 4, 2018
@Natalia-Hristova
Copy link

Natalia-Hristova commented Oct 10, 2018

Fixed and will be available in the next official version of tns-android 5.0.0

# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

6 participants