now i drag listview component and build apk then giving this error if i m not using listview component then its working fine an build apk succsesfully
i m getting confused when i m using RecyclerView lib then i cant drag ListviewComponent its giving error d8 error if i m using library then i have to remove listviewcomponent and if i m draging listviewComponrnt i have to remove Library then its working fine no giving d8 error
JEWEL
November 13, 2024, 5:20pm
43
It's because the ListView component has recyclerview and cardview libraries built-in.
description = "<p>This is a visible component that displays a list of text and image elements.</p>" +
" <p>Simple lists of strings may be set using the ElementsFromString property." +
" More complex lists of elements containing multiple strings and/or images can be created using " +
"the ListData and ListViewLayout properties. </p>",
category = ComponentCategory.USERINTERFACE,
nonVisible = false,
iconName = "images/listView.png")
@SimpleObject
@UsesLibraries({"recyclerview.jar", "recyclerview.aar", "cardview.jar", "cardview.aar", "dynamicanimation.jar"})
@UsesPermissions(permissionNames = "android.permission.INTERNET," +
"android.permission.READ_EXTERNAL_STORAGE")
public final class ListView extends AndroidViewComponent {
private static final String LOG_TAG = "ListView";
private EditText txtSearchBox;
protected final ComponentContainer container;
private final LinearLayout linearLayout;
private RecyclerView recyclerView;
private ListAdapterWithRecyclerView listAdapterWithRecyclerView;
JEWEL
November 13, 2024, 5:24pm
45
As you are encountering issues with missing resources, it will not be feasible to include them with the extension. I kindly suggest that you remove the recyclerview jar and rely on the in-built libraries.
suposed user used my extension then he cant use ListViewComponent i m right ?
JEWEL
November 13, 2024, 5:27pm
47
If you remove the recyclerview jar from your aix and rely on the in-built library with the ListView component, users will be able to use the ListView component. For now, this would be the most suitable option for you.
1 Like
thanks u so much u help me a lot ....
1 Like
is there any easy solution for this problem?? my apk is still crashing..
JEWEL
June 26, 2025, 5:28pm
50
āĻšā§āϞ⧠āϰāĻŋā§āĻžāĻĻ, āϏāĻŽāϏā§āϝāĻž āϧāϰāϤ⧠āĻĄāĻŋāĻāĻžāĻāϏ āϞāĻāϏ āĻā§āĻ āĻāϰā§āύ āĻāĻŦāĻ āĻŦā§āĻāϤ⧠āύāĻž āĻĒāĻžāϰāϞ⧠āĻāĻāĻžāύ⧠āĻĒā§āϏā§āĻ āĻāϰā§āύāĨ¤
ADB is a command-line utility that that can be used to control your device over USB from a computer. It will allow you to install / uninstall and or view logs on your device. This could be very handy when there are issues with a specific app and you like to view the logs for information that may lead to identify the cause of error.
In this post, weâll discuss how to install and use ADB.
Installation:
ADB comes with Android SDK. However, you can download ONLY the ADB files from HERE .
EDIT: âĻ