[Q] Contact Sync for Facebook - Android Q&A, Help & Troubleshooting

Hello guys,
Contact Sync for Facebook got an update to 1.0.2 which adds StartApp and stuff which can read/write your browser history/bookmarks, I failed to read the "what's new part" and didn't notice the new permissions for accessing of the browser history. Therefore I would like to go back to the version 1.0.1 but for some reason I can't find the APK to download somewhere.
Anyone mind to extract it for me, please?
Many thanks!

With extract I just mean to get the version 1.0.1 apk from your phone and give me a link to it

Treveo85 said:
Hello guys,
Contact Sync for Facebook got an update to 1.0.2 which adds StartApp and stuff which can read/write your browser history/bookmarks, I failed to read the "what's new part" and didn't notice the new permissions for accessing of the browser history. Therefore I would like to go back to the version 1.0.1 but for some reason I can't find the APK to download somewhere.
Anyone mind to extract it for me, please?
Many thanks!
Click to expand...
Click to collapse
looking as well. SA besterds!
The dev has given permission to remove the StartApp code from his App page-
https://play.google.com/store/apps/details?id=ro.weednet.contactssync
"If you don't like the adds, you can download the source code from GitHub and remove them."
beyond my abilities ATM.
Here's the github
https://github.com/loadrunner/Facebook-Contact-Sync/commits/master

renoob said:
looking as well. SA besterds!
The dev has given permission to remove the StartApp code from his App page-
https://play.google.com/store/apps/details?id=ro.weednet.contactssync
"If you don't like the adds, you can download the source code from GitHub and remove them."
beyond my abilities ATM.
Here's the github
https://github.com/loadrunner/Facebook-Contact-Sync/commits/master
Click to expand...
Click to collapse
EDIT:
Here we go- installed and tested
AndroidManifest verified 1.0.1
http://pool.apk.aptoide.com/apps/ro...-1791617-a281feff9df78906cc34962d4dedeb7b.apk

Related

[Q] It's possible read (and write to) Android browser bookmarks?

I've done this app Bookmarks Easy Import that import pc bookmarks (and folders too) in Android bookmarks but it required root because it read and write directly an Android database.
Please, someone know if is possible read and write Android bookmarks from b4a or java application (via API?) in a non-rooted phone?
Thanks
cb56
Have you seen this example code:
Here should be the link but I am not allowed to post it. So search google for
"Accessing Data With Android Cursors" com.android.broswer.permission.WRITE_HISTORY_BOOKMARKS
It should be the first result.
Did you give you app the correct permissions?
By the way, do you plan to release the source code of your app?
jmozmoz said:
Have you seen this example code:
Here should be the link but I am not allowed to post it. So search google for
"Accessing Data With Android Cursors" com.android.broswer.permission.WRITE_HISTORY_BOOKMARKS
It should be the first result.
Did you give you app the correct permissions?
By the way, do you plan to release the source code of your app?
Click to expand...
Click to collapse
Thanks for the reply ,
I know it can be done with a root device.
I was interested to see if it was possible to read and write Android bookmarks without root to make my program more usable; for now it seems impossible.
May be a permission issue...I'm studying.
Bye
cb56
cb56 said:
Thanks for the reply ,
I know it can be done with a root device.
I was interested to see if it was possible to read and write Android bookmarks without root to make my program more usable; for now it seems impossible.
May be a permission issue...I'm studying.
Bye
cb56
Click to expand...
Click to collapse
Did you solve this?
IvanMunson said:
Did you solve this?
Click to expand...
Click to collapse
No.
cb56

[Q] Account manager

Hi,
Can anyone please share the. apk for the account manager app?
Cheers,
Doogel
https://market.android.com/details?...NvbS5zb255LnNuZWkubnAuYW5kcm9pZC5hY2NvdW50Il0.
sorry I don't have the .apk but unless you're international you should be able to download it here.
Edit - the cheers should have given it away; you're probably in the UK. hopefully someone can jump in here to help out.
doogel said:
Hi,
Can anyone please share the. apk for the account manager app?
Cheers,
Doogel
Click to expand...
Click to collapse
See here: https:// rapidshare.com/#!download|66tl|4258512586|Account_Manager-130.apk|506|R~8B82FEFF75BB5ED2C3618FEA290AC7F3|0|0
remove the space between: / r (I don't have 8 post for place a link).
suc6
from poland
Hi I'm from poland and a have problem witch this application because it is blocked in Poland. Has anyone setup apk version 1.4.2 (latest)?
I would also be very thankful for the latest version
I don't exactly know what the app does. Or if I even pulled it off my Tab right. I backed it up with Titanium, then extracted it from the file. Then to upload it, I put it in *.7z format.
HTH
It works. Exactly the point. Thank you
Thanks, worked for me too. Now the stupid Music Unlimited app is nagging me about updating my app.
If someone is kind enough...
(the latest as per Google Play is version 1.2.3)
Video Unlimited
Music Unlimited
Thank You very much!

How to install multiple instances of the same .apk

I was tinkering and editing an apk, and i managed to compile it and install it fine and it works and is suited to me. So i was wondering ( not too good with xmls ), is it possible to edit the manifest file to rename the apk so I can install multiple copies ( i.e. have the original unmodified one and the modified one at the same time ). I need this for testing purposes. Which lines do i need to edit exactly so the phone doesn't give me the "installing this application will replace the current..." warning, so I can multiple instances of it?
Hope I'm being clear on what exactly I need, any help is appreciated. Cheers
Edit : Just found a post from this guy on a simillar thread that i couldn't find using search
levenum said:
It is not a simple matter.
APKs are managed by package name, not by file name, but you can't simply change the package name in the manifest of a compiled APK.
Even assuming you manage to do it without messing up the file, which is not a simple task, there will still be code referring to the package name, so the app will crash.
Click to expand...
Click to collapse
So is this true ?
Yes it is, I've tried.
Questions or Problems Should Not Be Posted in the Development Forum
Please Post in the Correct Forums
Moving to Q&A
Yeah. Even if you could modify the package name, there could be hardcoded references to this application's intents within the source, which could cause problems when you realise you'll have to also change all of the intent-filters as well.
Its probably more trouble than its worth, as you'll be spending most of your time working out bugs introduced by your editing the APK.
I know its not exactly what you're after but why not try to run the modified app in the emulator on ur computer?
- chris
cttttt said:
Yeah. Even if you could modify the package name, there could be hardcoded references to this application's intents within the source, which could cause problems when you realise you'll have to also change all of the intent-filters as well.
Its probably more trouble than its worth, as you'll be spending most of your time working out bugs introduced by your editing the APK.
I know its not exactly what you're after but why not try to run the modified app in the emulator on ur computer?
- chris
Click to expand...
Click to collapse
Yeah, thought so myself. Used the emu for a while, but It's so damn slow, can't compare it to actual testing. Nvm, I've dropped the matter anyway. Thanks for the reply
Hey try this
http://forum.xda-developers.com/android/software/tool-android-multiple-apk-file-t3516849
akash45 said:
Hey try this
http://forum.xda-developers.com/android/software/tool-android-multiple-apk-file-t3516849
Click to expand...
Click to collapse
Is not that a multiple app apk installer ?
I think op wants a way to install multiple instances of the same APk.
Thanks
prudra said:
Is not that a multiple app apk installer ?
I think op wants a way to install multiple instances of the same APk.
Thanks
Click to expand...
Click to collapse
Okay my bad

[Q] How to change apk package name

I just recently tried to upload an app to the play store that I made on a site.
But every time I try to upload the .apk it said that it failed to save changes, then it said that the package name is already on the store.
If anyone knows how to fix this please post below, As it would be a great help.
Picture and apk are attached.
Bump
Bump - Please help! :good:
M4ttz said:
I just recently tried to upload an app to the play store that I made on a site.
But every time I try to upload the .apk it said that it failed to save changes, then it said that the package name is already on the store.
If anyone knows how to fix this please post below, As it would be a great help.
Picture and apk are attached.
Click to expand...
Click to collapse
Change the package name in code and associated files with it, and then compile and execute the apk, sign it and then try to publish.
via Phone
I know that but there is so many files associated with it. It would take forever to do so!
Thanks for making the effort to help though.:good:
M4ttz said:
I know that but there is so many files associated with it. It would take forever to do so!
Thanks for making the effort to help though.:good:
Click to expand...
Click to collapse
you can right click the project in eclipse and there is android tools, you can change the package name there..
and oh you need to sign the package first before uploading it to playstore

[Q] 2nd Facebook app.

hi all,
I want to log 2 FB accounts on my phone. the 1st acc, im using native FB app on playstore, and i did try several apps for the 2nd account. but after all, IMO, native FB app is still the best now, and i want to use it too for the 2nd acc.
it means i have to install FB app twice on my phone. i google for some days and find out, changing the package name and app name of FB app to something else would let me install it twice. so this what i did:
- decompile latest FB app version 3.2.1.
- change package name from com.facebook.kanata to com.facebook.kanata2
- change app name from Facebook to Facebook2 in string file.
- recompile & sign.
all successful, but i cant install that modified app. my phone shows app not installed.
so do i miss something in modifying or it is just impossible to do that?
Thanks in advance and im looking forward to your help.
p.s: Im sorry if my thread isnt meant to be here.
Nope your thread isn't meant to be here. It should be in q and a. Report it and have it moved.
Regards
N
up, and looking for help
yaibakt said:
up, and looking for help
Click to expand...
Click to collapse
you should have changed it to
com.facebook2.kanata
i needed and done the same as you but changed mines to
com.fb.kanata
and changed the app name to fb
parenti2k9 said:
you should have changed it to
com.facebook2.kanata
i needed and done the same as you but changed mines to
com.fb.kanata
and changed the app name to fb
Click to expand...
Click to collapse
thank you. would you mind upload your modified fb app to any host and give me the link, in case i still couldnt make my app work?
update:
i did the exactly same thing as you said:
package="com.fb.katana"
Click to expand...
Click to collapse
in AndroidManifest.xml
and
<string name="app_name">FB</string>
Click to expand...
Click to collapse
in strings.xml
but after recompile and sign, i still couldnt install it.
could you please share me your modified apk file that could work?

Categories

Resources