I am triying to do my script for putting in data the apps so the paid apps you have you can unistall and update from market when ever you want.
Structure:
data
META_INF
In data it the APK with i want to test.
META-INF is the updater-script i do to made it work:
Now its wokrs but it doesnt install the app how can I do
A lot of thanks
Structure:
data
META_INF
In data it the APK with i want to test.
META-INF is the updater-script i do to made it work:
Code:
ui_print("Starting Script....");
ui_print("Installing APK....");
ui_print("Allmost done....");
mount("ext4", "EMMC", "/dev/block/mmcblk0p35", "/data");
package_extract_dir("data", "/data/");
unmount("/data");
ui_print("Script made by werty100....");
ui_print("Thanks for using it...");
A lot of thanks