Is there a mobile defense as a system app update.zip? Whenever I need to reinstall it (ie., wipe, ROM change, etc.), I need to be by the comp which I hate. It would be nice to have a zip file I could just flash.
Thanks
I was thinking the same thing. I was on the MD site looking at the instructions to install it as a system app for added security and clicked a link in the instructions to download the apk. When I looked at the link it was a zip file, not an apk. Does this mean that I can flash it in recovery or what? Is it ok to push a zip file to the system/app folder as stated in the instructions, and will it install properly?
instructions: http://support.mobiledefense.com/viewtopic.php?id=569
APK (zip): http://www.mobiledefense.com/system/indigo/mobiledefense-install.zip
See this thread: http://forum.xda-developers.com/showthread.php?t=689350
djmcnz said:
Why not create one yourself? It's really easy.
Create a zip file and add a system/app directory to it
Put apk in system/app directory in zip
Create META-INF/com/google/android directory in zip
Create a text file with the code below called update-script and put it in this directory
Sign the zip file (see: http://forum.xda-developers.com/showthread.php?t=667923)
Good to go.
Code:
assert compatible_with("0.2") == "true"
assert getprop("ro.product.device") == "passion" || getprop("ro.build.product") == "passion"
show_progress 0.100000 0
copy_dir PACKAGE:system SYSTEM:
show_progress 0.100000 10
Click to expand...
Click to collapse
Ok... WOW. I didn't realize it was so easy but am confused with the Create META-INF step. Tell me if this is right:
1) Make a new folder and name it mobiledefenseupdate
2) Add a new folder called system in the above folder
3) Add a new folder called app in the above folder
4) Add a new folder called META-INF in the mobiledefenseupdate folder
5) Add a new folder called com in the above folder
6) Add a new folder called google in the above folder
7) Add a new folder called android in the above folder
8) Add the *.apk to the system -> app folder
9) In the META-INF/com/google/android directory, add a new text file with the code below and name it update-script
And then sign?
hah2110 said:
Ok... WOW. I didn't realize it was so easy but am confused with the Create META-INF step. Tell me if this is right:
1) Make a new folder and name it mobiledefenseupdate
2) Add a new folder called system in the above folder
3) Add a new folder called app in the above folder
4) Add a new folder called META-INF in the mobiledefenseupdate folder
5) Add a new folder called com in the above folder
6) Add a new folder called google in the above folder
7) Add a new folder called android in the above folder
8) Add the *.apk to the system -> app folder
9) In the META-INF/com/google/android directory, add a new text file with the code below and name it update-script
And then sign?
Click to expand...
Click to collapse
Yes that's correct but you can name your update.zip file anything you want.
You will end up with:
Code:
root
-/system
+-/app <- apk's go in here
-/META-INF
+-/com
+-/google
+-/android <- update-script goes in here
Any apps you put in the system/app directory will be installed. Just be aware that your system partition does have a size limit so don't just dump heaps of massive game apk's in there...
And then sign away. The recovery console will check the validity of your signatures and scripts so it's difficult to make an irrecoverable mistake...
Let us know how you get on!
They just finished one up...
http://forum.xda-developers.com/showthread.php?t=689350
dailydR1ver said:
They just finished one up...
http://forum.xda-developers.com/showthread.php?t=689350
Click to expand...
Click to collapse
Lol that was me. Thanks
Related
Hello, I have searched everywhere and cant find the answer to my question. I wanted to replace a file using CWM .zip how in the heck do I do that? Most of all I just wanted to learn how to do it as well...
Thanks,
Chad
Well to begin with you can take an existing zip with the file path you need, delete everything in the folders not touching the META-inf folder at all, those are the install instructions, and put the file you want to flash in the correct folder. I think thats how everyone starts out.
studacris said:
Well to begin with you can take an existing zip with the file path you need, delete everything in the folders not touching the META-inf folder at all, those are the install instructions, and put the file you want to flash in the correct folder. I think thats how everyone starts out.
Click to expand...
Click to collapse
but your update-script has to match what you are flashing via cwm. if you take a rom zip and just pop in a few files in place of the whole rom structures, your flash will fail because your update-script is looking for specific structures.
Oxicottin said:
Hello, I have searched everywhere and cant find the answer to my question. I wanted to replace a file using CWM .zip how in the heck do I do that? Most of all I just wanted to learn how to do it as well...
Thanks,
Chad
Click to expand...
Click to collapse
One way would be to use: Update Zip creator/modifier (Requires Windows)
yeah it would be bad mojo if you used a wipe rom zips META INFO to make an update zip.....
Thanks a million everyone......
Sorry for being late to the party again.. Here goes my attempt at an explanation though:
Essentially, a CWM flashable zip is just a zip file with the file system replicated in it. So for example, if you wanted to add swype, and you know Swype.apk would regularly go in /system/app, then you would create a blank folder called 'system', and another folder inside system called 'app', and put your Swype.apk inside that. (/system/app/Swype.apk)
After that, all that's left is to build an update script. So, from your root directory (where your system folder is), you would make another directory called META-INF, with a folder inside called 'com', another one inside that called 'google', and finally one called 'android' inside that (/META-INF/com/google/android), you put a text file in there called 'update-script' that tells recovery what you want to do (in this case, copy swype over to the corresponding directory on the file system).
http://forum.xda-developers.com/showthread.php?t=641223
^There's a guide for how to make those. You can also pick apart any rom you find in the dev section and check out the update script for reference.
After that, it's just a matter of zipping up all the contents in your root directory, then signing the zip with testsign.jar
modest_mandroid said:
Sorry for being late to the party again.. Here goes my attempt at an explanation though:
Essentially, a CWM flashable zip is just a zip file with the file system replicated in it. So for example, if you wanted to add swype, and you know Swype.apk would regularly go in /system/app, then you would create a blank folder called 'system', and another folder inside system called 'app', and put your Swype.apk inside that. (/system/app/Swype.apk)
After that, all that's left is to build an update script. So, from your root directory (where your system folder is), you would make another directory called META-INF, with a folder inside called 'com', another one inside that called 'google', and finally one called 'android' inside that (/META-INF/com/google/android), you put a text file in there called 'update-script' that tells recovery what you want to do (in this case, copy swype over to the corresponding directory on the file system).
http://forum.xda-developers.com/showthread.php?t=641223
^There's a guide for how to make those. You can also pick apart any rom you find in the dev section and check out the update script for reference.
After that, it's just a matter of zipping up all the contents in your root directory, then signing the zip with testsign.jar
Click to expand...
Click to collapse
Is there a way from the CWM interface to do the same with a backup you create? I noticed backups are not in the same format, they are usually .img, .tar, and an md5 file?
well im trying to install darktemors a2sd on my fone and im in system recovery <3e> when i try to select the option apply sdcard:update.zip it says
finding update package...
openinng update package..
E:Cant't open /sdacrd/update.zip
(NO Such file or directory)
installtion aborted.
im fresh so i have no idea what to do please help
Use a file explorer like Astro or ES File Explorer, to go look on the sdcard folder and see if update.zip is there. You may need to go into the settings on the file explorer app and specify that it show the file extension (i.e. The .zip part). Make sure the file isn't named update.zip.zip.
Also did the install instructions say the file would be named update.zip? Sometimes the install file is named something else. I.e. darktremor.zip. Which in that case you have to choose the option to 'choose zip to install'. And find the specific zip file name, which may also be in a subfolder on the sdcard. I.e. /sdcard/download/darktremor.zip.
________________________________
http://ron-droid.blogspot.com
rigman said:
Use a file explorer like Astro or ES File Explorer, to go look on the sdcard folder and see if update.zip is there. You may need to go into the settings on the file explorer app and specify that it show the file extension (i.e. The .zip part). Make sure the file isn't named update.zip.zip.
Also did the install instructions say the file would be named update.zip? Sometimes the install file is named something else. I.e. darktremor.zip. Which in that case you have to choose the option to 'choose zip to install'. And find the specific zip file name, which may also be in a subfolder on the sdcard. I.e. /sdcard/download/darktremor.zip.
________________________________
http://ron-droid.blogspot.com
Click to expand...
Click to collapse
lol thanks it was called zip zip
Here is a 10 cycle battery mod
Instructions:copy "framework-res.apk"to your PC
Rename .apk to .rar(zip) then right click"framework-res.rar"then extract it with WinRAR(WinZip)
Enter framework-res\res\drawable-hdpi and select"stat_sys_battery_0.png" to "stat_sys_battery_100.png",total 101 pictures which from your sources folder and copy all of them to the destination,replace older files like these
When you finish doing that back to find folder"framework-res",then use WinRAR to compress it to a .APK file the"archive name" is end with .apk And "Compression method" is "Store"
Modify the attribution of this apk!Its attribution is "rw-r--r--"
Modify with Root Explorer or other programs and now copy "framework-res .apk in system/app
Reboot and enjoy.
I think that there are easier ways to do this,but i'm a beginner.
Here is link:www.abcdownload.ro/lbuqftrgc938.html]circle battery mod.rar
Thank you very much, but the link it's broken. Could you repair it?
Uan_ar said:
Thank you very much, but the link it's broken. Could you repair it?
Click to expand...
Click to collapse
Here is the link:http://www.mediafire.com/?6o7r6wy2gu3bnyw
Thank you very much.
Let me tell you my experience:
I tried this method but it didn't work out in my case, i got bootloop always. After some research, it seems that i got a problem with the sign of the file, and this is what i did and worked out:
Fase 1:
a) be root;
b.) copy with root explorer (or somelike app) from system/framework the file framework-res.apk to the SD;
c) move it to the PC;
d) in the PC, you have to got all the icons you wish to change into a folder;
e) there, open with winrar or 7zip (this is wich i used) the file framework-res (don't rename, just choose 7zip to open that file), go to \res\drawable-hdpi (you browse with 7zip);
f) with Windows Explorer open the folder in wich you have the icons you want to put into framework-res, select all the files, and just drag and drope it into the window within 7zip and where you have open framework-res\res\drawable-hdpi;
g) close the window of winrar o 7zip.
Fase 2:
h) copy the file framework-res.apk from PC to SD;
i) there move it with Root Explorer to System and chane permissions to rw-, r--, r-- (you can´t change permissions in SD);
j) then move the file framework-res.apk from system to system/framework
k) reboot and done!!
Advice: altaugh the icons you copy are ready to go from 1% to 1%, it doesn't mean it will work in your device. You have to modify something else that (yet) i don't Know.
See you all.
password
umarian said:
Here is the link:http://www.mediafire.com/?6o7r6wy2gu3bnyw
Click to expand...
Click to collapse
password protected
pepooh696 said:
password protected
Click to expand...
Click to collapse
Hi! Me too!
JaviLerma said:
Hi! Me too!
Click to expand...
Click to collapse
You can download
Uan_ar said:
Thank you very much.
Let me tell you my experience:
I tried this method but it didn't work out in my case, i got bootloop always. After some research, it seems that i got a problem with the sign of the file, and this is what i did and worked out:
Fase 1:
a) be root;
b.) copy with root explorer (or somelike app) from system/framework the file framework-res.apk to the SD;
c) move it to the PC;
d) in the PC, you have to got all the icons you wish to change into a folder;
e) there, open with winrar or 7zip (this is wich i used) the file framework-res (don't rename, just choose 7zip to open that file), go to \res\drawable-hdpi (you browse with 7zip);
f) with Windows Explorer open the folder in wich you have the icons you want to put into framework-res, select all the files, and just drag and drope it into the window within 7zip and where you have open framework-res\res\drawable-hdpi;
g) close the window of winrar o 7zip.
Fase 2:
h) copy the file framework-res.apk from PC to SD;
i) there move it with Root Explorer to System and chane permissions to rw-, r--, r-- (you can´t change permissions in SD);
j) then move the file framework-res.apk from system to system/framework
k) reboot and done!!
Advice: altaugh the icons you copy are ready to go from 1% to 1%, it doesn't mean it will work in your device. You have to modify something else that (yet) i don't Know.
See you all.
Click to expand...
Click to collapse
Thanks bro, working grate
sad, that not by 1%
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
ask
R3v3nGe said:
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
Click to expand...
Click to collapse
ask:
I mod user apk. I change some icon on apk.
But only instaled with same type device eg. Jena. but Other type hh cant instal. how to fix it..
on user app data/app i cant found odex file.
whats can use rootex. for edit file.
thx ..
---------- Post added at 07:56 PM ---------- Previous post was at 07:49 PM ----------
sorry. bad englis.
R3v3nGe said:
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
Click to expand...
Click to collapse
I still can't install the .apk app.(app manager from LG rom).it still app not installer .can you up a video instruction me. tks so much...
pleaz help .can't every one post a video instruction how to fix application not install :crying:
where can i find the .odex?? or app.odex??
embim27 said:
ask:
I mod user apk. I change some icon on apk.
But only instaled with same type device eg. Jena. but Other type hh cant instal. how to fix it..
on user app data/app i cant found odex file.
whats can use rootex. for edit file.
thx ..
---------- Post added at 07:56 PM ---------- Previous post was at 07:49 PM ----------
sorry. bad englis.
Click to expand...
Click to collapse
you need to sign the app with zipsigner.
Sent from my HTC Flyer P510e using xda app-developers app
Thanks :good:
Renzki™ said:
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
Click to expand...
Click to collapse
didn't know it was that easy to deodex, but anyway, you don't need to rename app.apk to app.zip, apk's can be opened by any archiver.
so you can just put the classes.dex in the apk.
So, Basically...
So, basically, what you did there was DeODEXed an ODEXed app... Is it correct?
I never knew DeODEXing would be this easy... So I'm quite unsure about this. Can anyone try to do this on an ODEXed app?
Anyone?
I am having one apk which can schedule power on and off your android device..Actually I have got this from Micromax but unable to install it on my HTC one..try if anyone succeeds and let me know please....I have uploaded the apk as well...Thanks and waiting for experts to reply soon...
I think no one has tried it yet..My above power on off scheduler...Try it man and let me know plz....
Does it work? I couldn't fix this problem
very desperate.. pls help
RenzkiPH said:
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
Click to expand...
Click to collapse
pls I have no idea where I can get the odex file or any of those inside files, the only thing I see when I plug it to my system is only the apk file ..pls is there any software I need in other to view these files
Still unsolved!!!! Please help!!!
Yeah, I got it. It really works on your case. But what if we say, like in my case, that the to-be-installed apps really give the same "App not installed" error (attempting to install Astro File Manager or any other would still be futile), even though they tend to work well on other phones, which means it's just my phone which that's not working. How should I fix this? I've tried almost everything like resetting the app preferences in the App manager. Also, factory resetting the phone is never a good choice for me since losing all the data would be very sad. Please help!
RenzkiPH said:
Hi Guys, i will teach you how to fix "app not installed"
requirements:
Windows PC/LAPPY
Brain
7zip or Winrar
Ins:
1.If you want a app from a rom do this..
-Copy the app.apk and app.odex to the rom you want...
-rename the app.odex to classes.dex via clicking right click/ properties
-if a popup appears click yes
-Convert the app.apk to zip via clicking right click/ properties and rename it to app.zip
-if a popup appears click yes
-Make a folder called "app name" then extract the files of app.zip to app name folder
-You will see this FILES:
-res
-assets
-meta-inf
-etc
-resources.arsc
-copy the classes.dex to the app name folder
-select all files then click right click/7zip or winrar/add to archive then press ok
-after you zip that app do this:
-Click the app.zip, then click right click/properties
-rename it to app.apk
-finish then copy it to sdcard
i hope that guide fixes your error if not post here i will give new way...
Click to expand...
Click to collapse
don this but still application not installed error on lg optimus g pro e988
app not installed problem
i was having problem with certain apps and games, i guess this was due to the custom rom.when i tried to install them via play store it said "couldnt install on internal or usb storage". I tried all methods but none could solve my problem. What i did was search were apks are kept in system. it was in the data folder(you need root) and then i put these apks in the data folder where all other apks are installed and manually placed my apks there. Now the apps which i wasnt able to install work like charm. What you do is to place the apk in the folder and then reeboot your phone. On reebooting you will see a shortcut of the applications you just placed. Hope it helps
stonecoldsouvik said:
i was having problem with certain apps and games, i guess this was due to the custom rom.when i tried to install them via play store it said "couldnt install on internal or usb storage". I tried all methods but none could solve my problem. What i did was search were apks are kept in system. it was in the data folder(you need root) and then i put these apks in the data folder where all other apks are installed and manually placed my apks there. Now the apps which i wasnt able to install work like charm. What you do is to place the apk in the folder and then reeboot your phone. On reebooting you will see a shortcut of the applications you just placed. Hope it helps
Click to expand...
Click to collapse
This worked for me, but you forgot to mention that you need to set permissions to 0644. After I did that, I didn't even have to reboot, the apps appeared in my drawer just like that. Thx, BTW.
---------- Post added at 02:45 AM ---------- Previous post was at 02:40 AM ----------
ravitelang said:
I am having one apk which can schedule power on and off your android device..Actually I have got this from Micromax but unable to install it on my HTC one..try if anyone succeeds and let me know please....I have uploaded the apk as well...Thanks and waiting for experts to reply soon...
Click to expand...
Click to collapse
I DL'ed your APK, and installed it, only to be told "There was a problem parsing the package. This USUALLY, IME, means that there was a problem during the file transfer, however your apk just will NOT work for me, I tried DL'ing it 3X, 3 different machines, no luck. Sorry, man. NOT an expert, BTW, but I have SOME knowledge.
Android Link/Shortcut Editing
Again, this is the 2nd time I was logged out on the middle of this post. It is more than infuriating with such a crippled text entry interface.
This page is not right, I'm having to re-author this post when for whatever reason my previous login was no longer valid and my post data was lost?? Also, is there a solution for text entry erratic/jumping-around behavior??
Re: Android; Application not installed on your phone
To my chagrin I have more than a few 'application specific' internet (URL) links/shortcuts to an app whose current version crashes on startup; and I have uninstalled it. Anyway, I would rather that these links run the browser chooser/launcher or something more useful like an unrooted URL-extractor/editor/viewer--Really, Android shows such a basic error without some madness to correct it? Only one star for Dolphin browser : (
Plsssss help
It shows application not installed only for kinguser (root management app). Others all install properly. I TRIED FACTORY RESET AND RECOVERY MOD STILL NO RESULT PLSSSS HELP AS FAST AS POSSIBLE.
This "guide" is BS.
>app.odex
first of all, an app only comes with an .apk
file, for example this towelroot apk
so I dunno how one could sign it using your BS method
Hi, I'm trying translate lenovo-res.apk for my lenovo a850 but I still can't do it. I always get only bootloop. I try apktool, kitchen, jBart... I'm trying it many days. Can anyone help me? Thanks
Tedruart said:
Hi, I'm trying translate lenovo-res.apk for my lenovo a850 but I still can't do it. I always get only bootloop. I try apktool, kitchen, jBart... I'm trying it many days. Can anyone help me? Thanks
Click to expand...
Click to collapse
I have the same problem on Lenovo P770....
I can help. Try the following steps:
1. Make a full backup of your device!
2. Get the lenovo-res.apk file onto your PC. Copy it to a safe place as a backup.
3. Download an archive manager (WinRAR, 7zip), and open it.
4. While in the archiver, navigate to the directory where the lenovo-res.apk file is located (not the backup one!).
5. Extract lenovo-res.apk to an empty folder of your choice (name suggestion - "lenovo-res modding").
6. Go back to your regular file explorer and open the folder you just extracted the files to. Open and modify what you like.
7. Now, open up your archiver program again, and navigate to the directory inside the lenovo-res.apk file where the files you modified belong (for example, lenovo-res.apk\res\drawable-mdpi).
8. Back in your regular file explorer, select and drag the modified files from the file explorer window into the archiver window. Drop the files in the archiver window.
9. Hit "Yes" or "OK" if asked if you're sure.
10. Repeat steps 6-9 as many times as necessary.
11. When done, close the archiver window to finalize the changes.
12, Now, you can ADB push the modded lenovo-res.apk file to your device, but don't replace the one on your system with the push! You will get a bootloop!
13. Instead, push it to your external sdcard (for example, /mnt/sdcard).
14. On your device, open up your file explorer app (I use ES File Explorer), and navigate to where you pushed the lenovo-res.apk. Copy it, and paste it directly into the directory where the system file is (for example, /system/framework).
15. If the paste succeeds, you did it. Your device will hot reboot itself after the replacement, and will then boot up using the new lenovo-res.apk.
16. Done!
If the above steps are helpful, please, please click the Thanks button below!
:good:
Thanks, but this will not help me. Because I need give to lenovo-res.apk new slovak and czech translates (folders values-sk and values-cs). If I unzip the apk file, as you wrote, there is no all subdirectories in "res" directory, where language files are.
All Subdirectories in "res" directory are creates only when you use JBart or Apktool:
color\
drawable\
drawable-hdpi\
layout\
values\
values-in\
values-ms\
values-ru\
values-vi\
values-zh-rCN\
If you will use 7ZIP, there are only:
color\
drawable\
drawable-hdpi\
layout\
I need to add values-sk and values-cs subdirectories. Normaly I use jBart or Apktool, make lenovo-res.apk file, no errors. Then install ROM file, but phone will stop on bootloop. On all other apk files procedure with jBart/Apktool works well, except lenovo-res.apk not.
I do not know how to compile this one apk. Please help me. Thanks.
I know this is a little bit off topic..Kindly help.. am trying to locate the systemUI apk on my lenovo k80m.. cant seem to find it in priv- app or app folders.