I need to edit my package name on AppGallery Connect. Because, I just realized, I have written some characters wrong. Does anyone know how to update package name on AppGallery Connect?
You can enter your package name only when you are creating your application and you can not change it later. If you need something like changing your package name, I suggest you to create new app on AppGallery Connect with your package name that you want to change. Then, you can move all information to your new app
Related
Hi all,
So I was looking into starting a project to build a desktop web app to help build Zooper widgets. I was able to save a basic widget, export it as ZIP, and I see all the JSON files. My only question is what is generating the hash name for the json file. What is its significance? I would like for the web app to be able to create new shapes and set its properties, but I don't know what I should do to generate the JSON file names.
Thanks
It is UUID https://en.wikipedia.org/wiki/Universally_unique_identifier
There are no important rules except unique. You can even use 001, 002, 003
Important is order of files in zip.
Hi all, I'm at my first app project: I've implemented a NanoHttpd webserver (I can't post the link to the relative website) as a service inside my app and I've set up a www folder inside the assets, so that the webserver could use it as a root and serve the files like a normal webserver.
Problem is that I can't find out how to access the assets resources from within a service as I don't have any context to use. Is there any manual way to access them? Or is there any better approach on where to store those static files?
I found a weird Folder name "GROWTH_TEST"
As of now it contains two files
1. "optin_trace.txt" containing "om.android.volley.VolleyError: Network Disconnectedcom.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host "ureca.samsungapps.com": No address associated with hostname "
2. "appGrowthLog.txt" containing "com.android.volley.VolleyError: Network Disconnected "
Which app is creating this?
Why it creating a logs for me to see?
Why the app is creating this as main folder not in sub-folder ?
Abhijeet.kr said:
I found a weird Folder name "GROWTH_TEST"
As of now it contains two files
1. "optin_trace.txt" containing "om.android.volley.VolleyError: Network Disconnectedcom.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host "ureca.samsungapps.com": No address associated with hostname "
2. "appGrowthLog.txt" containing "com.android.volley.VolleyError: Network Disconnected "
Which app is creating this?
Why it creating a logs for me to see?
Why the app is creating this as main folder not in sub-folder ?
Click to expand...
Click to collapse
Yes I belive so
Also found optin_trace.txt
Abhijeet.kr said:
I found a weird Folder name "GROWTH_TEST"
As of now it contains two files
1. "optin_trace.txt" containing "om.android.volley.VolleyError: Network Disconnectedcom.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host "ureca.samsungapps.com": No address associated with hostname "
2. "appGrowthLog.txt" containing "com.android.volley.VolleyError: Network Disconnected "
Which app is creating this?
Why it creating a logs for me to see?
Why the app is creating this as main folder not in sub-folder ?
Click to expand...
Click to collapse
I have the appGrowthLog txt, anyone else have any info?
Edit: in the appGrowthLog.txt file says "com.android.volley.NetworkErrorcom.android.volley.VolleyError: Network Disconnected".
Hi, I am quite new to Android development. I need to share a text file from my Android app via WhatsApp, mail etc. I am using the below code:
File file = new File(stringFile);
Intent intentShare = new Intent(Intent.ACTION_SEND);
intentShare.setType("text/*");
intentShare.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+file));
startActivity(Intent.createChooser(intentShare, "Share the file ..."));
stringFile contains the full path of my file. The file is in internal storage. When I run the above code. I am getting the share apps like WhatsApp. gmail etc.
i am also able to select the requited app( say gmail) and proceed. But the thing is the file is not sent at all.
Is there anything I need to do in special? The file is created in internal storage. The path is /data/user/0/com.example.myappname/files/myfile.txt
Kindly help.Thanks
The receiving app has no permission to access the data your file://Uri points to.
I think you should store the data in your own ContentProvider or system MediaStore in order for the receiving app to have access to the text file.
If you will store the file in your own ContentProvider, you should pass the Content Uri into the function call intentShare.putExtra() then.
Before discussing the question (subject)
Let me explain first as follows.
what i do looks like this
1. An application that receives data from .zip.
1.2 Extract the file into a folder (eg download/name/[library.so, config.json]).
1.3 Read data from config.json (target package name).
2. Get pid from target package name.
2.2 Insert external library to target
External library as a mod menu (reference https://github.com/LGLTeam/Android-...0bd9653/app/src/main/jni/Includes/Utils.h#L61)
The problem is 2.2, which I don't know what to do. Or the keywords should I search for it?