Android

MissingMethodException: No signature of method

Posted on

When running a Flutter app, I faced this issue Caused by: groovy.lang.MissingMethodException: No signature of method I see above error message is not clear to where exactly issue causing the issue. Issue happening in build.gradle To resolve the issue, you need to remove the lint code. after removing those lines Im able build app. below […]

Android

Using WebView from more than one process

Posted on

Using WebView from more than one process at once with the same data directory is not supported. I faced above issue when launching app, its a Native Android app having integrated Flutter code. Below I explain the details and fix for the issue. To integrate in Flutter app in to Android Native app. I have […]

Android

Android Studio Quick fixes 1

Posted on

Here I wanted to give Quick fixes that i faced in work. Issue 1 Faced below issue when run a gradlew command in Android Studio Terminal. Solution To Solve this issue, You need to run below command. Issue 2 Solution To resolve this issue, you need to add below code in project level gradle file […]

Android

How to make EditText not editable but scrollable

Posted on

EditText not Editable but Scrollable When we need to show long text like Terms and conditions in EditText. We need to allow scrolling and it should not be editable. For this I tried in XML set EditText attributes to show vertical scrollbars android:scrollbars=”vertical” And then to make EditText not editable i tried different ways like android:inputType=”none” not worked, and […]

Android

Html tags in Text not working in TextView

Posted on

Here I try to explain the details why Html tags in Text not working in TextView. At times you may need to display text with Bold and normal style in TextView like this,  …(You may skip to solution ) Welcome, to your favorite music app store.    So, you’ll define a string in string.xml file as follows <string name=”welcome_text”><b>Welcome,</b> […]