[Q] Apk parse error during installation - Other Tools & General Discussion

Dear All,
I have been trying to install my edited barcode scanner phone gap plug-in apk file. however each time I try to install the apk I am given a parse error. I am trying to install on android 4.1
I have downloaded an apk installer, however I am still given the same error.
Here is a copy of the xml manifest details - Am I missing something? :S
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=""
package="com.mds.AndroidBarcodeScanner"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
Thanks in advance

emvin taylor said:
Dear All,
I have been trying to install my edited barcode scanner phone gap plug-in apk file. however each time I try to install the apk I am given a parse error. I am trying to install on android 4.1
I have downloaded an apk installer, however I am still given the same error.
Here is a copy of the xml manifest details - Am I missing something? :S
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=""
package="com.mds.AndroidBarcodeScanner"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
Thanks in advance
Click to expand...
Click to collapse
try this..
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="17"/>
and recompile.
and you only need it once!

You can't use one tag twice remove one of the use sdk from the mainfest
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

Where do I put these codes in ? Please show me

XdaFan02 said:
Where do I put these codes in ? Please show me
Click to expand...
Click to collapse
In Mainfest.xml in the root <mainfest> tag
Sent from my GT-S5302 using Tapatalk 2

Related

Aokp jb building

Can someone help me,? what would i have to do to fix this error please and thanx guys... I got this whole build blackout and themed wish i could figure this out
make: *** No rule to make target `out/target/product/evita/kernel', needed by `out/target/product/evita/boot.img'. Stop.
make: *** Waiting for unfinished jobs....
Wow well forget it, figured it out myself can I get this closed or locked
Sent from my One X using Xparent SkyBlue Tapatalk 2
Well, the way you did it in the way you PMed me about is wrong
You need to add the kernel source to your local_manifest.xml
go to your source's root
then go to the ".repo" folder (its hidden)
create a file called "local_manifest.xml"
paste the following contents into that file:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project path="kernel/htc/msm8960" name="android_kernel_htc_msm8960" remote="cm" revision="jellybean" />
</manifest>
then resync the source, it should download the kernel source
next, do a make clobber and then try to build again
Thank you I will you the man
Sent from my One X using Xparent SkyBlue Tapatalk 2

[MOD] Multiwindow Apps

I've been able to mod some apps to work in multiwindow mode.
How to install:
Backup your data from the app using titanium backup
Uninstall the app
Install the modded app
Restore your app data using titanium backup
Please Note:
I'm not a dev, I only added some lines to androidmanifest.xml
These apps may not be optimized for multiscreen mode, I've just enabled it.
This is just a temporarily solution.
This only works on Jelly Bean Roms.
You can't update modifed Apps with Playstore.
Modded apps:
4PDA
Andchat
AndIRC
AT&T Wireless
Chrome
Cyman Mark 2
Dolphin for Pad
Dropbox
Ebay
Evernote
ES File Explorer
Facebook
Facebook Messenger
File Manager HD
Google Currents
Google Translate
Google Play Music
GooManager
Hill Climb Racing
Total Connect Comfort
MX Player
Oeffi
Papyrus
Solid Explorer
TI-83
Spotify (landscapemode enabled, too)
Tapatalk HD
Titanium Backup
Twitter
VLC Player
Whatsapp
Youtube
As I can't update this post, everytime someone post a new modifed app, use this link to have an overview of all attached apps of this thread. Unfortunately, direct links to filehosters are not included
Or look at this thread created by TheSanitarium
Apps that didn't work:
Chrome (Error while recompiling with apk-multi-tools, even without changes, maybe someone else can edit this one)
Maps (same as above)
Play (same as above)
[*]Youtube (same as above)
How to modify Apps by yourself:
Decompile the app with apk-multi-tools
Open Androidmanifest.xml with Editor, Notepad++ or something else
Search for this
Code:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
Add this line
Code:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
Search for this line
Code:
</application>
Add these lines so that it looks like this
Code:
<uses-library required="false" name="com.sec.android.app.multiwindow" />
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" />
</application>
Recompile app
can you teach us how to do this?
This is cool to get multiwindow apps working. One problem is when you decompile the APK and compile it back up, you will be signing APK with a different key than developers. This means you cannot update from Play Store because the keys will not match. You will have to remove modded APK, install update, then mod updated APK. If you are ok with having older version of APK then there isnt an issue.
why i get error while decompile some apk ? facebook apk is error too
I've try this mod in ICS 4.0.4 and didn´t work.
Waiting for Jelly Bean... xD
cheznutts said:
This is cool to get multiwindow apps working. One problem is when you decompile the APK and compile it back up, you will be signing APK with a different key than developers. This means you cannot update from Play Store because the keys will not match. You will have to remove modded APK, install update, then mod updated APK. If you are ok with having older version of APK then there isnt an issue.
Click to expand...
Click to collapse
Will there still be an update notifier in the playstore, or do we lose that, aswell as the ability to update?
Can someone reload the modified facebook apk to another site, maybe Gdrive or dropbox?
techkia said:
Can someone reload the modified facebook apk to another site, maybe Gdrive or dropbox?
Click to expand...
Click to collapse
Facebook is now uploaded as an attachment, too. Just use Winrar or 7zip to unpack.
It's good to see at least some of the apps can be modded to support multi window. This is a big step of note 10.1. I have successfully modded IMO.
Is there a way I could change the default size of the pop up window? I have tried to change the four numbers for portrait apps but still the pop up is in landscape. Not convenient enough to adjust it every time.
Sent from my GT-N8000 using xda app-developers app
The modded facebook apk had been tested working on dr Akrim jb rom.
You have to launch the apps in the multiscreen launcher.
Thank you! I am a noob....
Sent from my GT-N8000 using xda app-developers app
i use APK-Multi-Tool to decompile apk , but in many apk(like facebook's apk) , it will appear “an error occurred,please check the log (option 23) why and how to fix it
weihan1102 said:
i use APK-Multi-Tool to decompile apk , but in many apk(like facebook's apk) , it will appear “an error occurred,please check the log (option 23) why and how to fix it
Click to expand...
Click to collapse
I'm trying to decompile some of my own apps but when I'm using apk multi tools or apk manager, whenever I hit extract (option 1) or decompile apk (option 9) the script just shuts off. Anyone knows how to get it working?
Sent from my Incredible S using xda app-developers app
banderos101 said:
Will there still be an update notifier in the playstore, or do we lose that, aswell as the ability to update?
Click to expand...
Click to collapse
If you uninstall app and install modded apk, play should not show the app as installed. Play checks the key on the apk with what the developers placed on the market. If there is a mismatch, then play will think its a different app.
great work!!!!!!!!
thank u very much
BUT... in some apk it was fantastic to zoom in/out!!!
IS IT POSSIBILE??????
rchempd and
weihan1102 said:
i use APK-Multi-Tool to decompile apk , but in many apk(like facebook's apk) , it will appear “an error occurred,please check the log (option 23) why and how to fix it
Click to expand...
Click to collapse
It's not only that... I played with this mod since friday and there are apps, that don't work properly after you decompile and compile them!
For e.g ezPDF f.c. after opening a PDF. The reason is not this little modification but apk-tools itself, that have some problems with signed NON-system apps. Anyway GApps should be safe because you can find a bunch of "Inverted GApps"-Packs.
Could someone else try it with ezPDF?
It should be possible to write a deamon, that registeres preselected non-multiwindow apps as multiwindow apps. But unfortunately I'm not a Dev (for now ).
I've been playing around with this mod since today and I managed to get some apps too work! ! I also tried with a game "Hill Climb Racing" and it's been working like a charm!
Sent from my GT-N8000 using XDA Premium HD app
can anyone make SamsungCamera.apk multiwindows plsss
I can't get this to work with stock 4.0.4.
Guess we have to wait for JB

[TRICK] Use Tata Sky Everywhere TV on any device, any android version

As many Indian Tata Sky users might know, Tata Sky's Everywhere TV is supported on only a few devices on specific Android versions only.
Also, it doesnt work on rooted devices.
So, here is a small tutorial to get it working on "ANY" device on "ANY" android version (root needed)
First off, to prevent it from detecting root, we need Rootcloak and Xposed.
This step is self explanatory, just add the Tata Sky mobile app in Rootclock.
Secondly, to remove device check
Open Tata Sky app and minimize it
Using a root explorer, go to /data/data/com.ryzmedia.tatasky/Shared_prefs
Open com.ryzmedia.tatasky.xml
Find these 2 lines
<boolean name="FIRST_TIME_FLAG" value="true">
<boolean name="ETV_SUPPORT_FLAG" value="false">
Change them to
<boolean name="FIRST_TIME_FLAG" value="false">
<boolean name="ETV_SUPPORT_FLAG" value="true">
Now, save the file, switch to Tata Sky app, and click the Everywhere TV icon.
If you close the app, you must redo the 2nd step.
Voila, everything works, Screw you Tata Sky, I aint abiding by your rules. :silly: :laugh:
This is NOT a permanent solution though.
Screenshots from Nexus 5 on stock rooted 4.4.2 (an unsupported device)
COOL
Can't find the tata sky in root
I got it done but sadly. This hack does not work on a Nexus 4. Any other way possible.
Hi,
I am unable to find /data/data/com.ryzmedia.tatasky/Shared_prefs could you please help
Regards
ts1506 said:
As many Indian Tata Sky users might know, Tata Sky's Everywhere TV is supported on only a few devices on specific Android versions only.
Also, it doesnt work on rooted devices.
So, here is a small tutorial to get it working on "ANY" device on "ANY" android version (root needed)
First off, to prevent it from detecting root, we need Rootcloak and Xposed.
This step is self explanatory, just add the Tata Sky mobile app in Rootclock.
Secondly, to remove device check
Open Tata Sky app and minimize it
Using a root explorer, go to /data/data/com.ryzmedia.tatasky/Shared_prefs
Open com.ryzmedia.tatasky.xml
Find these 2 lines
<boolean name="FIRST_TIME_FLAG" value="true">
<boolean name="ETV_SUPPORT_FLAG" value="false">
Change them to
<boolean name="FIRST_TIME_FLAG" value="false">
<boolean name="ETV_SUPPORT_FLAG" value="true">
Now, save the file, switch to Tata Sky app, and click the Everywhere TV icon.
If you close the app, you must redo the 2nd step.
Voila, everything works, Screw you Tata Sky, I aint abiding by your rules. :silly: :laugh:
This is NOT a permanent solution though.
Screenshots from Nexus 5 on stock rooted 4.4.2 (an unsupported device)
Click to expand...
Click to collapse
Thanks bro....
Sent from my Xperia P using XDA Premium 4 mobile app
Not sure, but can this XML be used to play everywhere TV on a different device, if you have enabled everywhere tv on a device.
Just wondering what will the app do if I keep the device name same
Sky tv
Sent from my HTC One using XDA Premium 4 mobile app
Would it work without subscription
Thanks for the step.
How do I get the tv working without subscription?
Like I have tata sky but I do not want to pay extra for this mobile tv subscription?
ts1506 said:
As many Indian Tata Sky users might know, Tata Sky's Everywhere TV is supported on only a few devices on specific Android versions only.
Also, it doesnt work on rooted devices.
So, here is a small tutorial to get it working on "ANY" device on "ANY" android version (root needed)
First off, to prevent it from detecting root, we need Rootcloak and Xposed.
This step is self explanatory, just add the Tata Sky mobile app in Rootclock.
Secondly, to remove device check
Open Tata Sky app and minimize it
Using a root explorer, go to /data/data/com.ryzmedia.tatasky/Shared_prefs
Open com.ryzmedia.tatasky.xml
Find these 2 lines
<boolean name="FIRST_TIME_FLAG" value="true">
<boolean name="ETV_SUPPORT_FLAG" value="false">
Change them to
<boolean name="FIRST_TIME_FLAG" value="false">
<boolean name="ETV_SUPPORT_FLAG" value="true">
Now, save the file, switch to Tata Sky app, and click the Everywhere TV icon.
If you close the app, you must redo the 2nd step.
Voila, everything works, Screw you Tata Sky, I aint abiding by your rules. :silly: :laugh:
This is NOT a permanent solution though.
Screenshots from Nexus 5 on stock rooted 4.4.2 (an unsupported device)
Click to expand...
Click to collapse
ashu388866 said:
Thanks for the step.
How do I get the tv working without subscription?
Like I have tata sky but I do not want to pay extra for this mobile tv subscription?
Click to expand...
Click to collapse
Doesnt work that way. You need to register the mobile and pay the money.
Also this method is a hassle if you want to use everyday. This is more like a proof of concept
ts1506 said:
As many Indian Tata Sky users might know, Tata Sky's Everywhere TV is supported on only a few devices on specific Android versions only.
Also, it doesnt work on rooted devices.
So, here is a small tutorial to get it working on "ANY" device on "ANY" android version (root needed)
First off, to prevent it from detecting root, we need Rootcloak and Xposed.
This step is self explanatory, just add the Tata Sky mobile app in Rootclock.
Secondly, to remove device check
Open Tata Sky app and minimize it
Using a root explorer, go to /data/data/com.ryzmedia.tatasky/Shared_prefs
Open com.ryzmedia.tatasky.xml
Find these 2 lines
<boolean name="FIRST_TIME_FLAG" value="true">
<boolean name="ETV_SUPPORT_FLAG" value="false">
Change them to
<boolean name="FIRST_TIME_FLAG" value="false">
<boolean name="ETV_SUPPORT_FLAG" value="true">
Now, save the file, switch to Tata Sky app, and click the Everywhere TV icon.
If you close the app, you must redo the 2nd step.
Voila, everything works, Screw you Tata Sky, I aint abiding by your rules. :silly: :laugh:
This is NOT a permanent solution though.
Screenshots from Nexus 5 on stock rooted 4.4.2 (an unsupported device)
Click to expand...
Click to collapse
Thanks. Any idea how to trick the system to allow me to view from abroad. I have subscribed to Everywhere tv but it doesn't load videos sitting abroad. I don't have a VPN with india server
thanks
I would better not watch tata sky to go through this. Entertainment again leads to education :banghead:
Sent from my XT1033 using XDA Free mobile app
Does this really works ?
Does this really works ?
Tried on few of my non-rooted devices. (including tablets)
i suppose this workaround is after the app is installed already
i cannot even find this app in google play store on phone; i can see it on google play on web browser but it says all my devices are incompatible
This string is not present in the current app! Any way to fix this issue?
@ts1506
getting the error 0xfd800095
this device is not supported
Galaxy S4
5.1.1
COOL!!! So this way we can do the needful I guess. Let me give a try & let you know all about my experience.
Hi I tried this method but I am unable to found out thoes two line in that xml file.I think that tata sky updated the app version.show some settings has been changed from the previous one. So plz request to u that find some new solution.
Thanks
Sam
Deactivate my anywhere tv
---------- Post added at 04:54 PM ---------- Previous post was at 04:54 PM ----------
How to Deactivate my anywhere tv
i have weston smart android tv i install tata sky mobile /tab ver after install successfully, i try to see live tv when i click on live tv i get an error massage live tv is not supported on rooted/jailbroken devices, i try to find this path and file (Using a root explorer, go to /data/data/com.ryzmedia.tatasky/Shared_prefs) but did not find in my device, i try kingroot app, hide root app, supre su app and many other aaps do no use can you please help me thanks
Tatasky.doesnt allow casting or mirroring How do i get around that

[Reward] Modding S5 Browser Search Engines

Hey guys,
could anyone of you decompile SBrowser.apk from here: https://mega.co.nz/#!fghHgZKQ!2NGBoJ69xBF411iXg9lKbSB69M16E0jJTv5S60cA9gs
Framework for decompiling:
https://mega.co.nz/#!WB5mUSaA!UJOEZmdIKDtnzaPdUnbBXLjYFAWoJOcmpJUx_WNtY2c
https://mega.co.nz/#!vYhRXA4D!Do2GwfwYQ5tYhHu50m9lqFWbARKjXi3BlK9hJ5Ct1eo
then add to /res/values/arrays.xml the following lines:
<string-array name="'DuckDuckGo">
<item>DuckDuckGo</item>
<item>duckduckgo.com</item>
<item>https://duckduckgo.com/favicon.ico</item>
<item>https://duckduckgo.com/?q={searchTerms}</item>
<item>UTF-8</item>
<item></item>
</string-array>
<string-array name="DuckDuckGoBeta">
<item>DuckDuckGoBeta</item>
<item>next.duckduckgo.com</item>
<item>https://next.duckduckgo.com/favicon.ico</item>
<item>https://next.duckduckgo.com/?q={searchTerms}</item>
<item>UTF-8</item>
<item></item>
</string-array>
and under <string-array name="search_engines">
add:
<item>DuckDuckGo</item>
<item>DuckDuckGoBeta</item>
and then go to res\values-de-rDE\arrays.xml (<-- I'm from Germany, but you can also edit every other arrays.xml for other countries if you want to) and add under <string-array name="search_engines">:
<item>DuckDuckGo</item>
<item>DuckDuckGoBeta</item>
compile and then send the apk to me?
I'm too stupid myself to properly decompile, I always get errors. So anybody who is able to add DuckDuckGo and DuckDuckGoBeta to the selection of the Search Engines on the S5 browser provided above will get a nice donation from me via paypal - 3-5€ :good: (of course only if you want to )
Thanks for help!
Sincerely,
GamingWiidesire
3-5 dollars is a bit stingy for a lot of work. I would charge maybe 150 for their hard work and thus is why you have no replies
Sent from my GT-I9505 using Tapatalk
patch81 said:
3-5 dollars is a bit stingy for a lot of work. I would charge maybe 150 for their hard work and thus is why you have no replies
Sent from my GT-I9505 using Tapatalk
Click to expand...
Click to collapse
LOL...Agree bro.
I would charge 300$ for such work.
Sorry I can only provide 10000$ maximum
If possible, please use the updated browser for the mod: https://mega.co.nz/#!ixgjlaoL!YzVqVAV2pRK_kD6826GyVcjC6d6xMuj6rQPUTbk5CUg
Gesendet von meinem GT-I9505 mit Tapatalk
Done
Here you go
Moded from the latest link you posted , added everthing , compiled and signed try it and give me a feedback please :laugh:
Link : MEGA
Thanks for the help! Unfortunately it says Internet stopped everytime I start it. Cleaned cache+data. Seems like something is wrong with the code I posted. Maybe you could try to remove yahoo and ask.com, because maybe it can only show 4 search engines? I don't know :/
Gesendet von meinem GT-I9505 mit Tapatalk

Root WhatsApp dark mode

I am using a solid explorer. The only one that works correctly on Android 10.
Open File Manager and head over to the root partition.
Then go to Data > Data and navigate to the com.whatsapp folder.
Go to the shared_prefs folder and search for the com.whatsapp_preferences.xml file.
Now add the below lines to that xml file, anywhere inside the <map> and </map> tags. This one line of code is, in fact, responsible for enabling Dark Mode on WhatsApp on rooted Android devices.
<boolean name="dark_mode" value= "true" />
Next, tap on the floppy icon to save the file. Now just force close WhatsApp and re-open it.
Finally, head over to Settings>Chat
You should now see the Theme option, just beneath Account. Tap on it and select Dark.
credit
https://www.**********.com/enable-whatsapp-dark-mode-root/
OOps
So Easy.... Thanks!
You're the Man!! :good::good:
iMorphborg said:
So Easy.... Thanks!
Click to expand...
Click to collapse
You are welcome. Just sharing the knowledge
Swordfishx86 said:
You're the Man!! :good::good:
Click to expand...
Click to collapse
Thanks!
Excellent :good:
Thanks!
I have Samsung Quattro with Jelly Bean. Every time reopen the app (after removing from recents), I have to go to theme and change it to dark. It may be related to OS version.
zooperaj said:
Excellent :good:
Thanks!
I have Samsung Quattro with Jelly Bean. Every time reopen the app (after removing from recents), I have to go to theme and change it to dark. It may be related to OS version.
Click to expand...
Click to collapse
Probably so. You on beta WhatsApp or just regular ?
Xdevillived666 said:
Probably so. You on beta WhatsApp or just regular ?
Click to expand...
Click to collapse
Regular
Excellent and thanks. if i use mixplorer file manager is it supported android 10?
Techguru_Bd said:
Excellent and thanks. if i use mixplorer file manager is it supported android 10?
Click to expand...
Click to collapse
Couldn't say. I haven't used it before.
Techguru_Bd said:
Excellent and thanks. if i use mixplorer file manager is it supported android 10?
Click to expand...
Click to collapse
I used miexplorer to edit file on jelly bean samsung quattro
does it works ?

Categories

Resources