AndroidDeveloperLB

Results 886 comments of AndroidDeveloperLB

How do I generate this file within Android OS, given an AAB file ? Is this tool available as a library? This was the request, to be able to use...

Seeing that (sadly) Google will force developers to switch to only app-bundle solution on the Play Store (link [here](https://www.xda-developers.com/google-play-billing-v3-app-bundle-requirement-2021/) and [here](https://www.youtube.com/watch?time_continue=320&v=cMr-b660Esw)), I think it's important to make everything that's related...

I hope you can pass it forward to Google developers who work on Android itself, too. The more there is a push for split-APK files, the more this will become...

OK was curious and tried it myself. gradle: implementation 'com.j256.simplemagic:simplemagic:1.16' Code: ``` AsyncTask.execute { val util = ContentInfoUtil() val input = URL("https://img.freepik.com/free-vector/abstract-dynamic-pattern-wallpaper-vector_53876-59131.jpg?size=338&ext=jpg").openStream() val info = util.findMatch(input) Log.d("AppLog", "info:$info") } ```...

@j256 Can you please confirm and/or answer what I wrote ? Is there a list somewhere of all the file-types that you support? Does it at least include those that...

Confirmed, and this should be relatively easy to detect, as it's an XML file that has "

It's also when not using navigation component . I tried all 3 first buttons (current backstack activities, open current activity, open current fragment), and all failed. In fact, "open current...

@dengzii As I wrote, I don't think there is a single command to do what I requested (switch to Wi-fi). I want a way to have a shortcut on my...

You mean this: https://github.com/hsiafan/apk-parser/blob/master/src/main/java/net/dongliu/apk/parser/ByteArrayApkFile.java This means it has to load the entire APK content in order to parse it. I don't think that's how the Android parser works. Imagine I...