Closed subhanahmed047 closed 2 years ago
@subhanahmed047
I tested with your code and confirmed that the ipk was created successfully and the mp4 file is also included in the ipk. And that ipk was installed and the app was launched fine. Also the video was played fine.
Do you have a video.mp4 file in the destination directory you want to package? There should be an mp4 file in the folder as shown below.
$ tree test test ├── appinfo.json ├── icon.png ├── index.html └── video.mp4 0 directories, 4 files
Please check your code and directory structure once more.
I'm trying to create an
ipk
file. myappinfo.json
looks like this:In the same folder, I have an
index.html
which looks like this:as you can see I have a video.mp4 file sitting next to the index.html.
I realised that creating a package using
ares-package ./test
creates the.ipk
file but it doesn't bundle the video file within the package.I was wondering if there is a way to bundle assets along with the index.html in an LG package?