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
{{ message }}
This repository was archived by the owner on Feb 6, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,27 @@ class TestFragment : Fragment(R.layout.fragment_test) {
54
54
```
55
55
Incase of fragments Use onViewCreated instead of onCreateView. UI for the fragment is taken care by the library you need not to use onCreateView for initializing the UI for fragment.
56
56
57
+
#### Quick Fixes
58
+
- If you are facing this error
59
+
60
+
```error
61
+
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option
62
+
```
63
+
Then update your JVM target to 1.8 in the app level build.gradle file
0 commit comments