-
Notifications
You must be signed in to change notification settings - Fork 115
Get app info by apk file #59
base: master
Are you sure you want to change the base?
Get app info by apk file #59
Conversation
… App class in utils so you can run it in a different isolate if you want
Added a method to to get application info by an .apk file and added an App class to convert List<Map> to List<App>
I am not sure to understand what you want to do with this PR. |
I'll explain to you I'm trying to make a file explorer app and I have some
apk files stored locally I want to get the package name and app icon of the
apk file. This is what I intended to do.
…On Sat, 6 Mar, 2021, 8:16 pm Edouard Marquez, ***@***.***> wrote:
I am not sure to understand what you want to do with this PR.
Could you also update the example?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#59 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOTM2LN7QMYF25R3QRWDQ3TTCI53VANCNFSM4WOMC4EQ>
.
|
#!/bin/sh | ||
# This is a generated file; do not edit or check into version control. | ||
export "FLUTTER_ROOT=E:\AndroidStudio\flutter" | ||
export "FLUTTER_APPLICATION_PATH=C:\Users\FAISAL\Documents\GitHub\flutter_plugin_device_apps\example" | ||
export "FLUTTER_TARGET=lib\main.dart" | ||
export "FLUTTER_BUILD_DIR=build" | ||
export "SYMROOT=${SOURCE_ROOT}/../build\ios" | ||
export "OTHER_LDFLAGS=$(inherited) -framework Flutter" | ||
export "FLUTTER_FRAMEWORK_DIR=E:\AndroidStudio\flutter\bin\cache\artifacts\engine\ios" | ||
export "FLUTTER_BUILD_NAME=1.0.0" | ||
export "FLUTTER_BUILD_NUMBER=1" | ||
export "DART_OBFUSCATION=false" | ||
export "TRACK_WIDGET_CREATION=false" | ||
export "TREE_SHAKE_ICONS=false" | ||
export "PACKAGE_CONFIG=.packages" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be exposed in the version control, you can delete it by using git interactive rebase from you commits.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how can i change these
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just add the file name to .gitignore file or search in google to how to remove a file from a repository or how to add a file to .gitignore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you the maintainer of this plugin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you have knowledge flutter and native side communication because i want to collaborate with you i want to add some features and want to develop a plugin.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No I am not maintainer of this plugin, yes I have some knowledge of flutter and native code, I can help you if you want.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you are trying to develop a file manager you should also checkout FileX, jideguru has already done awesome work in it, if you want to contact me you can email me.
This is a great PR, cause currently the package can only get deviceApps i.e. installed ones but after this PR it can also get deviceApps info from file Explorer or the app that is in my storage but not installed, it will help the creators who are trying to make file manager type apps, to fetch the app details like its icon, its name, etc by only its path/paths of the app's. |
Yes, you can do that.
Send me your phone number
…On Fri, 30 Apr, 2021, 12:27 pm Prateek SU, ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In example/ios/Flutter/flutter_export_environment.sh
<#59 (comment)>
:
> +#!/bin/sh
+# This is a generated file; do not edit or check into version control.
+export "FLUTTER_ROOT=E:\AndroidStudio\flutter"
+export "FLUTTER_APPLICATION_PATH=C:\Users\FAISAL\Documents\GitHub\flutter_plugin_device_apps\example"
+export "FLUTTER_TARGET=lib\main.dart"
+export "FLUTTER_BUILD_DIR=build"
+export "SYMROOT=${SOURCE_ROOT}/../build\ios"
+export "OTHER_LDFLAGS=$(inherited) -framework Flutter"
+export "FLUTTER_FRAMEWORK_DIR=E:\AndroidStudio\flutter\bin\cache\artifacts\engine\ios"
+export "FLUTTER_BUILD_NAME=1.0.0"
+export "FLUTTER_BUILD_NUMBER=1"
+export "DART_OBFUSCATION=false"
+export "TRACK_WIDGET_CREATION=false"
+export "TREE_SHAKE_ICONS=false"
+export "PACKAGE_CONFIG=.packages"
No I am not maintainer of this plugin, yes I have some knowledge of
flutter and native code, I can help you if you want.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#59 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOTM2LPCZKYCB2VLOXQOCO3TLJIGLANCNFSM4WOMC4EQ>
.
|
FileX isn't very good i tried that.
Mine was very different and better
I just want to optimise the communication between native side and flutter
I've made a plugin called storage_details it has made a method to watch
files for changes via FileObserver on native side but i want to run that on
a background thread and make it recursive could you help me with that?
https://pub.dev/packages/storage_details
This is the URL of my package
…On Fri, 30 Apr, 2021, 1:42 pm Prateek SU, ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In example/ios/Flutter/flutter_export_environment.sh
<#59 (comment)>
:
> +#!/bin/sh
+# This is a generated file; do not edit or check into version control.
+export "FLUTTER_ROOT=E:\AndroidStudio\flutter"
+export "FLUTTER_APPLICATION_PATH=C:\Users\FAISAL\Documents\GitHub\flutter_plugin_device_apps\example"
+export "FLUTTER_TARGET=lib\main.dart"
+export "FLUTTER_BUILD_DIR=build"
+export "SYMROOT=${SOURCE_ROOT}/../build\ios"
+export "OTHER_LDFLAGS=$(inherited) -framework Flutter"
+export "FLUTTER_FRAMEWORK_DIR=E:\AndroidStudio\flutter\bin\cache\artifacts\engine\ios"
+export "FLUTTER_BUILD_NAME=1.0.0"
+export "FLUTTER_BUILD_NUMBER=1"
+export "DART_OBFUSCATION=false"
+export "TRACK_WIDGET_CREATION=false"
+export "TREE_SHAKE_ICONS=false"
+export "PACKAGE_CONFIG=.packages"
If you are trying to develop a file manager you should also checkout
FileX, jideguru has already done awesome work in it, if you want to contact
me you can use email me.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#59 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOTM2LPRX5AK6UST6YTJOZLTLJQ47ANCNFSM4WOMC4EQ>
.
|
No description provided.