Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reduce SIZE #60

Open
ghost opened this issue Oct 4, 2019 · 11 comments
Open

reduce SIZE #60

ghost opened this issue Oct 4, 2019 · 11 comments
Labels
enhancement New feature or request

Comments

@ghost
Copy link

ghost commented Oct 4, 2019

I noticed that even a very basic App will lead to an at-least 52MB APK file.
Is it really necessary that, the built apk file so much huge be?
Is it possible to diminish the SIZE?

@danbulant
Copy link

It's because the node has to be embedded in the app. That's around 30MB just for pc, so it could be bigger for android support.
Also maybe you have some images, scripts etc, that might add space too.

@Chhekur Chhekur added the enhancement New feature or request label Mar 5, 2020
@Chhekur
Copy link
Member

Chhekur commented May 1, 2020

Hey, we have created a slack channel for support & discussion: join here

@Bhahirathan
Copy link

What is the solution for this problem ?
I want to reduce my apk size.
Is there any solution for this?

@appsdevpk
Copy link

This is the only problem preventing me from adopting androidjs to create my apps

@PawelSuwinski
Copy link
Contributor

PawelSuwinski commented Dec 4, 2020

Apk webview only (#144) feature would be one of the solution.

Other one would be some sort of reusing already existing nodejs installation (?). Some sort of dependency on base/ shared app with nodejs environment for every androidjs webview app (many to one)? I think it would be nice feature.

@Chhekur
Copy link
Member

Chhekur commented Dec 4, 2020

@PawelSuwinski we had thought of the same approach but it has some complexity in UX and security-wise that's why we didn't implement this that way.

@PawelSuwinski
Copy link
Contributor

PawelSuwinski commented Dec 5, 2020

@Chhekur OK, so what about another approach to meet this size reducing requirement in a halfway between webview-only-SDK and with-node-SDK by implementing some simplified version of child_process.spawnSync to execute system commands?

There are a few useful base utils in android /system/bin/ (for example toybox) and shell poweruser can accomplish quite a bit of these in as part of backend processing especially in conjunction with app API.

For example:

// trigger VIEW actiton by ActivityManager
const file = app.getPath('downloads') + '/some/file.txt';
{pid,  stdout, stderr, status, error} =  app.exec('am', [...'start --user 0 -a android.intent.action.VIEW -d'.split(' '), file]);

// read file 
{...} = app.exec('cat', [file]);

// save file
{...} = app.exec('cat > ', [file], { input: myData, shell: true});

And so on... leaving with-node-SDK version to more advanced tasks and backend processing.

@THROFHR
Copy link

THROFHR commented May 27, 2022

@Chhekur OK, so what about another approach to meet this size reducing requirement in a halfway between webview-only-SDK and with-node-SDK by implementing some simplified version of child_process.spawnSync to execute system commands?

There are a few useful base utils in android /system/bin/ (for example toybox) and shell poweruser can accomplish quite a bit of these in as part of backend processing especially in conjunction with app API.

For example:

// trigger VIEW actiton by ActivityManager
const file = app.getPath('downloads') + '/some/file.txt';
{pid,  stdout, stderr, status, error} =  app.exec('am', [...'start --user 0 -a android.intent.action.VIEW -d'.split(' '), file]);

// read file 
{...} = app.exec('cat', [file]);

// save file
{...} = app.exec('cat > ', [file], { input: myData, shell: true});

And so on... leaving with-node-SDK version to more advanced tasks and backend processing.

some error happened,app.exec is right?

$("#open").on("click", ()=>{
	var params = `start --user 0 -a android.intent.action.VIEW -d ${link}`.split(' ')
	app.exec('am', params);	
})

@PawelSuwinski
Copy link
Contributor

And what logcat says?

@THROFHR
Copy link

THROFHR commented Jun 8, 2022

app.exec is not a function

@PawelSuwinski
Copy link
Contributor

I am afraid that this feature was not merged yet and is not present at dist version:
android-js/android-native-apis#15

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

6 participants