Giter Club home page Giter Club logo

vcardio's People

vcardio's Issues

Command-line operation

It would be very helpful if import/export operations could be conducted
from the Android command line.  This would allow automated contacts
synchronization from a desktop terminal over Wi-Fi (using ssh and rsync).

Original issue reported on code.google.com by [email protected] on 7 Jan 2010 at 8:55

can't save contact picture

What steps will reproduce the problem?
1.exported vcf file, edited it
2.can't save a picture to a contact anymore. It let's me select but after 
clicking done it's not 
saved. 
3.tried rebooting, didn't help

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 30 Oct 2009 at 12:57

type of telephon number

What steps will reproduce the problem?
1. When I import vcards from my gmail contacts into my phone vcardio don't 
recognize the type of telephon number (Home, work, fax, ecc.) and put 
"Altro" on all numbers
2. I use the italian version of gmail that mark telephon numbers as "Casa, 
Ufficio, Cellulare, ecc." 
3.

What is the expected output? What do you see instead?
I expect
00226655 Casa
00336688 Ufficio
22556699 Fax
And I get
00226655 Altro
00336688 Altro
22556699 Altro
So I can't distinguish Fax number from Office number

What version of the product are you using? On what operating system?
0.19 on Android Phone

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 22 Oct 2009 at 9:57

  • Merged into: #3

All numbers are imported as type "other" instead of "home", "mobile", "work", ...

What steps will reproduce the problem?

1. Import a VCF from kaddressbook 3.5.10
2. View any imported contact



What is the expected output? What do you see instead?

Numbers should have the correct type set - according to what was exported /
what is set in the VCF-file.


What version of the product are you using? On what operating system?

VCardIO: 0.11
KAdressbook: 3.5.10


Please provide any additional information below.

One entry in the vcf-file looks like this:

BEGIN:VCARD
ADR;TYPE=home:;;Street 12;Cityname;Region;9999;Germany
BDAY:1981-11-23T00:00:00Z
CATEGORIES:Mycustomcategory
CLASS:PUBLIC
EMAIL;TYPE=PREF:[email protected]
EMAIL:[email protected]
FN:Christian Meier
N:Meier;Christian;;;
NAME:Christian Meier
REV:2008-10-23T12:17:55Z
TEL;TYPE=HOME:+49000000
TEL;TYPE=CELL:+49000000
TEL;TYPE=WORK:+49000000
UID:vy0M8fzfUD
VERSION:3.0
END:VCARD



NOTE: There is a chance that this issue relates to issue #3: "Support vCard
version 3 natively"

Original issue reported on code.google.com by [email protected] on 8 Jun 2009 at 3:27

Support SMS VCard receiving

Was thinking about an app for this functionality but after all it might be 
better to just integrate it into yours...

I attached a draft of the code needed to receive an sms and add it to the 
contact list. (correct the package name to the one of your project)

add this to your manifest:
<receiver android:name=".SMSReceiver" android:enabled="true">
  <intent-filter>
   <action android:name="android.provider.Telephony.SMS_RECEIVED" />
  </intent-filter>
</receiver>

and 

<uses-permission android:name="android.permission.RECEIVE_SMS" />

Please add me as contributor if you integrate the provided code.

Original issue reported on code.google.com by [email protected] on 28 Jun 2009 at 8:48

Attachments:

Allow import of vcard's from email attachments

This would be an awesome feature. No one else is doing this! Not even
Google support this on their OS.

Original issue reported on code.google.com by bryan.barrett on 9 Nov 2009 at 4:40

send vcard via sms

Feature request

it would be cool to have possibility to send vcards via sms to anybody in 
contact list and maybe it could also be possible to recieve vcard sms but 
i can not imagine how...



Original issue reported on code.google.com by [email protected] on 17 Oct 2009 at 4:21

Activity vcard.io.App has leaked ServiceConnection

What steps will reproduce the problem?
open app in emulator
click back

LogCat:

07-11 15:08:34.849: ERROR/ActivityThread(888): Activity vcard.io.App has 
leaked ServiceConnection vcard.io.App$1@43738fe8 that was originally bound 
here
07-11 15:08:34.849: ERROR/ActivityThread(888): 
android.app.ServiceConnectionLeaked: Activity vcard.io.App has leaked 
ServiceConnection vcard.io.App$1@43738fe8 that was originally bound here
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThr
ead.java:886)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.
java:781)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ApplicationContext.bindService(ApplicationContext.java:820)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.content.ContextWrapper.bindService(ContextWrapper.java:307)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
vcard.io.App.onCreate(App.java:156)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread.access$1800(ActivityThread.java:112)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.os.Handler.dispatchMessage(Handler.java:99)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.os.Looper.loop(Looper.java:123)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
android.app.ActivityThread.main(ActivityThread.java:3948)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
java.lang.reflect.Method.invokeNative(Native Method)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
java.lang.reflect.Method.invoke(Method.java:521)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:
782)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
07-11 15:08:34.849: ERROR/ActivityThread(888):     at 
dalvik.system.NativeStart.main(Native Method)
07-11 15:08:34.869: WARN/ActivityManager(582): Unbind failed: could not 
find connection for android.os.BinderProxy@436a70e8

Original issue reported on code.google.com by [email protected] on 11 Jul 2009 at 3:13

eMail addresses duplicated when importing existing contact (with same X-IRMC-LUID)

What steps will reproduce the problem?
1. Import a vCard file containing contacts. Every contact has a unique X-
IRMC-LUID. Most contacts have one or two email addresses. Only one email 
address is the default/preferred one.
2. Import the same file once more.
3. For all the contacts that have one or two email addresses, these 
addresses appear twice in the contact details.

What is the expected output?
=> That all the attributes of an existing contact would be taken from the 
newly imported file. I would expect the import to do a full REPLACEMENT of 
existing contacts, and not an ADDITION (with duplication) of attributes.

What do you see instead?
=> See steps to reproduce, point 3.

What version of the product are you using? On what operating system?
=> Version v0.27.sms running on Android 1.6 (HTC Tattoo).

Please provide any additional information below.
=> I have added a teplate vcf file in attachment, with fake contact data, 
but showing the fields and the syntax of the file I am generating for 
import into vCardIO.

Original issue reported on code.google.com by [email protected] on 17 Feb 2010 at 4:58

Attachments:

Multiline quoted-printable is broken

try this vcard:

BEGIN:VCARD
VERSION:2.1
N;CHARSET=UTF-8;ENCODING=QUOTED-
PRINTABLE:=D0=9A=D1=80=D0=B8=D1=81=D1=82=D0=
=B8=D0=BD=D0=B0 =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=D0=
=BE=D0=B2=D0=BD=D0=B0;BearPaw
TEL;CELL:+12345678901
EMAIL;INTERNET;PREF:
EMAIL;INTERNET:
EMAIL;INTERNET:
X-IRMC-LUID:00020000013B
END:VCARD

Several words should be in the name field, but I can see only the first 
one with "=" sign at the end.

0.27-sms
Android 1.6 Dev


Original issue reported on code.google.com by [email protected] on 10 Nov 2009 at 11:16

Import from SonyEricsson C902 doesn't work

What steps will reproduce the problem?
1. From SonyEricsson C902, go to contacts, then Options, Others, Advanced,
Save on memory card (my menus are in french, so it can be different names)
2. Transfer the backup file (PB_Backup.vcf) to your android phone
3. Launch VCardIO, import this file

What is the expected output? What do you see instead?
Stop the import because of the error

What version of the product are you using? On what operating system?
VCardIO 0.8, Android CupCake 1.5 on HTC Magic

Please provide any additional information below.
I tried with only one vcard so I could determine the problem.
Here is the VCard :
BEGIN:VCARD

VERSION:2.1

N;ENCODING=QUOTED-PRINTABLE:Jorgel;Agn=E8s

FN;ENCODING=QUOTED-PRINTABLE:Agn=E8s Jorgel

TEL;CELL:0123456789
X-IRMC-LUID:0002000000FF

END:VCARD

The X-IRMC-LUID field isn't in the same format as the one from VCardIO and
it stop because of that.

The other problem come from the encoding where I lose the accents. It use
some sort of odd special characters (Normally it is : Agnès)

Original issue reported on code.google.com by [email protected] on 27 May 2009 at 9:04

Only restore 303 contacts from my 444 contacts backup

What steps will reproduce the problem?
1. I have done the backup (444 contacts)
2. Import file contacts.vcf and finish without error, but only 303 contacts 
restored.
3.

What is the expected output? What do you see instead?
Nothing error

What version of the product are you using? On what operating system?
vcardio 0.11.apk on HTC MAGIC (1.5 Cupcake)

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 7 Jun 2009 at 9:22

Import more vcf file in a directory

Is there any way how to import more vcf files from a directory.
My Nokia backed up contact by contact in separate vcf file and I need to
import all of them. Selecting file by file is not really easy.

Any advice?

Jiri

Original issue reported on code.google.com by [email protected] on 24 Jun 2009 at 8:03

Can not import previously exported contact

What steps will reproduce the problem?
1. Export contacts with JF 1.51 mod
2. Upgrade to Cm 4.2.15 mod
3. Import contacts

What is the expected output? What do you see instead?
The importing process get freezes.

What version of the product are you using? On what operating system?
tried with 0.27 and 0.32 version

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 13 Mar 2010 at 1:39

Multiple entries in my phonebook

What steps will reproduce the problem?
1. I have downloaded 0.19-sms to test issue 18 whit the scandinavian 
letters.
2. I have tryed to import my vsd file again and I have rememberd "replace 
existing contacts".
3. Then I got alle contacts twise in my phone.
4. I went into "Settings", "Applications", "Manage 
applications", "Contacts Storage", "Clear data".
5. Them my data gows from 1,2mb to 0.00b.
6. I try to import my vsd file again and now every contacts is there tree 
times. Even the first ove whit the wrong letters are there. I have now 
tryed this some times and every contact is there 7 times.

What is the expected output? What do you see instead?
I did expected every contact only one time in my contacts, and not seven 
times like now.

What version of the product are you using? On what operating system?
0.19-sms

Please provide any additional information below.
If I delete every contact from the default contact app. the when I import 
I get the contact only ones. If I then make a new import then the same 
contact will be there two times.

How do I fiks this, I have my contacts in my phonebook seven times, and 
its about 2000 entris now. 

Original issue reported on code.google.com by FamDragic on 3 Sep 2009 at 10:42

JPEG photo export needs spaces for continued lines

What steps will reproduce the problem?
1. Export a contact with a photo
2. Inspect the exported file

Expected:
PHOTO;TYPE=JPEG;ENCODING=BASE64:
 9j4AAQSkZJRgABAQAAAQABAADD2wBDAAMCA ...

Actual:
PHOTO;TYPE=JPEG;ENCODING=BASE64:
9j4AAQSkZJRgABAQAAAQABAADD2wBDAAMCA ...

The lack of space causes KDE Kontact to discard the card as invalid. 
Adding a space manually in a text editor allows proper import of the photo.

Version:
vCardIO 0.27

Original issue reported on code.google.com by [email protected] on 8 Jan 2010 at 12:43

can't save contact picture

What steps will reproduce the problem?
1.exported vcf file, edited it
2.can't save a picture to a contact anymore. It let's me select but after 
clicking done it's not 
saved. 
3.tried rebooting, didn't help

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
Running 1.5, on samsung galaxy

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 30 Oct 2009 at 12:58

  • Merged into: #30

Please use i18n

What steps will reproduce the problem?
1. Use VcardIO in any non-english Android system.

What is the expected output? What do you see instead?
I'd expect to see all messages/labels in my default language.
I do see all messages/labels in English only.

What version of the product are you using? On what operating system?


Please provide any additional information below.
I will provide the necessary translations for German.

Original issue reported on code.google.com by wiedmann.michael on 26 Oct 2009 at 8:30

Birthday fields not exported on HTC Hero

Exporting and importing works fine, but I don't see any birthday notes when
exporting on my HTC Hero (Build 2.73.405.5).
I sort of needed this feature, a proper BDAY field would of course be even
better..

Original issue reported on code.google.com by [email protected] on 27 Oct 2009 at 11:13

Fields mapping from Google contacts Vcard exported file

Fields such as Mobile, Work, Work fax are all tagged as "Other"

1.Exporting contacts from google contacts as Vcard 
2.Importing into a blanc contact book in android (always cleared prior 
import)
3. ALL Phone/mobile/fax fields are tagged as "Other"
4. Switched device language with same result, google contacts in english 
(if it makes any difference) 

Ver 0.11 on Android 1.1

As many HTC Dream/Android users in Spain and France cannot sync google 
contacts between gmail account and device (BTW Thanks to Orange and 
Telefonica) Therefore your application is the ONLY working solution found 
so far. It works so thanks for creating it, but this fields mapping issue 
is annoying. 

Original issue reported on code.google.com by [email protected] on 27 Jun 2009 at 8:19

show About info

What steps will reproduce the problem?
1. Start app and try to find version info
2. or: Start Preferences->Applications, search VCARDIO
3.

What is the expected output? What do you see instead?
Show current versio, e.g. 0.32.
Instead the info under "preferences" says "version 8"

What version of the product are you using? On what operating system?
0.32 sms

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 5 Apr 2010 at 7:57

ENHANCEMENTS

What steps will reproduce the problem?
HOW TO TO MULTIPLE IMPORTS (can there be a use of wild card)

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 14 Aug 2009 at 7:55

add the settings for the local language

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
i can import other language's encode vcard files

What version of the product are you using? On what operating system?
ver 0.27

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 30 Jan 2010 at 1:29

Added a space before Name

What steps will reproduce the problem?
1. Backed up contacts from old Nokia phone with Nokia PC Studio.
2. NBU file converted to VCF files via NbuExplorer.
3. All vcf files merged in linux (cat *.vcf >../all.vcf)
4. all.vcf uploaded to Samsung i7500 phone sdcard.
5. all.vcf imported with Vcardio.

What is the expected output? What do you see instead?
All contacts have one space character on beginning of their names.

What version of the product are you using? On what operating system?
Nbuexplorer v18, vcario 0.27.

Please provide any additional information below.
An example from my vcf file was:
BEGIN:VCARD
VERSION:2.1
X-IRMC-LUID:4af882cc-9592-4a72-bcf3-dae12f2cde80
N:Sirname;Name;;;
TEL;PREF;CELL:05371234567
END:VCARD

There isn't a space before Name in VCF file.

Original issue reported on code.google.com by [email protected] on 4 Dec 2009 at 8:59

Does not work whit LG gw620

The app does not start. It says "The application vCardIO (process vcard.io)
has stopped unexpectedly. Please try again."
I have tried killing all the other apps.
I have restarted the phone.
No luck.

The phone is LG GW620 (LG enta in some places) bought from Europe. Not rooted. 

Original issue reported on code.google.com by [email protected] on 4 Mar 2010 at 11:46

after restore contacts, the icon of contacts can't saved

What steps will reproduce the problem?
1. backup contacts
2. delete some contacts
3. restore contacts
4. icon missed
5. edit contact , add icon to the contact. it's not saved. all the contact 
icon can't changed.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 May 2009 at 3:09

Filename containing spaces

What steps will reproduce the problem?
1. Click the elipses (...) to select a file. OI File Manager opens up.
2. Select a file with name containing spaces (e.g. "Input File.vcf")
3. Click "Import"
4. Error message appears "File not found /sdcard/Input%20File.vcf"

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?

HTC Hero
OI File Manager
vCardIO v0.27


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 1 Nov 2009 at 11:07

Make it posible to import a lot of contacts whit BT

Hi there

I have seen that it is now possible to import an contact when receiving an
sms. Could you not make a function that can make a import on a lot of
contacts recieving by BT?

Just an idea

Regards, 
Nenad 

Original issue reported on code.google.com by FamDragic on 13 Sep 2009 at 6:15

"CHARSET=UTF-8" should be added to each property if it contains non ASCII values.

What steps will reproduce the problem?
1. Create an entry with non-ASCII characters.
2. Export the entry using vcardio

What is the expected output? What do you see instead?
Output should be like this:
BEGIN:VCARD
VERSION:2.1
X-IRMC-LUID:c37dfc89-e338-4182-8f85-c7ab216db9a2
N;CHARSET=UTF-8:;いえ;;;
END:VCARD

What version of the product are you using? On what operating system?
There's no CHARSET information.
BEGIN:VCARD
VERSION:2.1
X-IRMC-LUID:c37dfc89-e338-4182-8f85-c7ab216db9a2
N:;いえ;;;
END:VCARD

Please provide any additional information below.

Basically, this is very cool tool. However, at one point, I'd like to say
something.

vCard 2.1 specification (http://www.imc.org/pdi/vcard-21.txt) says as follows:

> The default character set is ASCII. The default character set can be
overridden for an individual property value by using the "CHARSET" property
parameter.

Unfortunately vcardio (or the library it is using) seems not care i18n at
this point.
I believe this tool would become much better if this issue was fixed

Original issue reported on code.google.com by [email protected] on 13 May 2009 at 7:21

VCard IO starts without notification (HTC Hero)

The application starts in the background without any user interaction.
-> as highlighted by Taskiller, but VCard IO seems not to be active

The phone contacts were imported via VCard IO and a .vcf file that is still 
on the SD card.

On HTC Hero with Android 1.5 and HTC Sense(latest public version at this 
date).

Original issue reported on code.google.com by [email protected] on 26 Oct 2009 at 11:36

Can't import scandinavian letters

What steps will reproduce the problem?
1. Import my vcf file that I have exportet from my SE880I


What is the expected output? What do you see instead?
I cant see letters like "ÆØÅ", i get strange signs.


What version of the product are you using? On what operating system?
0.12-alpha


Please provide any additional information below.

Original issue reported on code.google.com by FamDragic on 22 Aug 2009 at 9:17

Export specific contact group creates empty export file

What steps will reproduce the problem?
1.Select a group to export
2.Select file name to export to (or use default)
3.Select Export

What is the expected output? What do you see instead?
Expected the contact group to be exported to the indicated file.  Instead
the file was created, vcardio indicates "Importing vcards" (yes "importing"
when the export button is pushed).  The export completes very quickly (1 or
2 seconds) even for a large contact group.  The export file is created but
is empty (0 bytes in size).

What version of the product are you using? On what operating system?
Version 0.27


Please provide any additional information below.
Using Samsung Moment 
Android 1.5
Import worked fine (single vcard with 264 contacts)

Original issue reported on code.google.com by [email protected] on 11 Feb 2010 at 3:13

Can't import scandinavian letters

What steps will reproduce the problem?
1. Import my vcf file that I have exportet from my SE880I


What is the expected output? What do you see instead?
I cant see letters like "ÆØÅ", i get strance signs.


What version of the product are you using? On what operating system?
0.12-alpha


Please provide any additional information below.

Original issue reported on code.google.com by FamDragic on 22 Aug 2009 at 9:17

Attachments:

Support HTC Hero "contact type" field

What steps will reproduce the problem?

What is the expected output? What do you see instead?

I’ am able to import contacts from my .vcf file in different groups, but
always the new created contacts have contact_type set to "Google".
Is it any solution to import contacts from .vcf files with contact type
"Phone" ?

regards

What version of the product are you using? On what operating system?

I am using an HTC Hero (Android 1.5).

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 12 Oct 2009 at 8:21

VCard IO crash during import

What steps will reproduce the problem?
1. Import attached vcf-file.
2. Program crashes.
3.

What is the expected output? What do you see instead?
Expected it to work. The program crashed and I got a "The process vcard.io
for Program VCard IO unexpectedly stopped. Try again. "Force an exit"-button.
Note! This was not the exact text in english. I have a swedish locale and
the error message was in swedish (from Android I guess Or Linux?)


What version of the product are you using? On what operating system?
0.19-sms 46.55Kb

Please provide any additional information below.
Will attach vcf-files that crashed.

Original issue reported on code.google.com by [email protected] on 24 Sep 2009 at 11:00

Attachments:

Option to Choose Contact Type

*** Feature Request ***

Some people may not want to upload their contact info to Google. It would
be nice if there is an option where you can choose the Contract Type (i.e.
either 'Google' or 'Phone')

Thanks and keep up the good work. 

Original issue reported on code.google.com by [email protected] on 1 Nov 2009 at 8:41

  • Merged into: #24

Wrong status text when exporting vcards

What steps will reproduce the problem?
1. Open vcardio
2. Press the "export button"
3. Look at text on top of screen

What is the expected output? What do you see instead?

I expect to see a message saying "Exporting vcards", instead, it says
"Importing vcards"

What version of the product are you using? On what operating system?

Using VcardIO 0.27, on Android 1.6

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 8 Jan 2010 at 10:58

UTF-8 (or multilanguage) Support

When I tried to import settings with Turkish characters, the characterse
can not be recognized and replaced with "!" character. I have to correct
all missing letters by hand. Is there any chance to support other languages?

Original issue reported on code.google.com by [email protected] on 29 Dec 2009 at 3:03

Vcardio drops additional names in the N field

What steps will reproduce the problem?
1. Import the following vcard
BEGIN:VCARD

VERSION:2.1

REV:20080625T090639Z

UID:2a8198b3-1c34-4748-a688-0669129cd47a

N:Stevenson;John;Philip,Paul;Dr.;Jr.,M.D.,A.C.P.
TEL;VOICE;CELL:+01234567890

END:VCARD

What is the expected output? What do you see instead?
Expected contact name:
Dr. John Philip Stevenson Jr.,M.D.,A.C.P.
Imported contact name:
John Stevenson
Prefixes, suffixes and additional names were dropped. 

What version of the product are you using? On what operating system?
HTC Dream, Android 1.6, vcard-0.27sms

Please provide any additional information below.
none

Original issue reported on code.google.com by [email protected] on 21 Feb 2010 at 10:11

can the imported vcard entries be not marked as "google" contacts?

I'm trying to untie my phone from google services, and if I could somehow
leverage this application to backup applications to an external server (via
http or webdav or something), that would be great.

However, in the meantime, I had a play with another application, MyBackup,
and it skips backing up all the contacts in my phone, because they're
registered as "google" contacts.  

I'm not actually syncing with google at all, so if I could use vcardio to
export the contacts, and then reimport them as phone contacts or sim
contacts or whatever, then maybe MyBackup would pick them up?  If that
would be possible to add as a preference, that would be awesome.

Original issue reported on code.google.com by [email protected] on 16 Sep 2009 at 3:06

can't save picture to a contact

What steps will reproduce the problem?
1.exported vcf file, edited it
2.can't save a picture to a contact anymore. It let's me select but after 
clicking done it's not 
saved. 
3.tried rebooting, didn't help

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
Running 1.5, on samsung galaxy

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 30 Oct 2009 at 1:00

  • Merged into: #30

Parsing of Vcards from XING export wrong

What steps will reproduce the problem?
1. Login into www.xing.com
2. Do a "mobile export" and download vcard file
3. import to G1 via vcardio
4. View contact

What is the expected output? What do you see instead?
all phone details are displayed as "call other" instead of "call mobile",
"call work" and "call home".

What version of the product are you using? On what operating system?
current version (no version given in application info. please add!). OS is
cupcake 1.5

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 29 May 2009 at 2:41

Attachments:

VCardIO for GroupDAV operations

First of all: Thanks for the great work! VCardIO is the only Android-App
that I could find that would allow me to import VCards without adding my
address book to Google Mail.

However, I'm using my address book on more than one devices (that would be
my mobile and my laptop for now), so I'd like to keep them in sync (still
without Google Mail). GroupDAV is an easy way to do this that is already
supported by many Desktop-PIM-Products.

So I was wondering: Would you be interested in adding GroupDAV-Sync-Support
to VCard IO? If you don't want to integrate GroupDAV support into VCard IO
directly, is there a way to access the phones contact database through
VCard IO?

I have previously tried to build such an App from scratch, but got stuck on
the vcard-parsing-part. Thus, I'd like to try and integrate the
GroupDAV-parts with VCard IO.

I'm envisioning the following:

1) Add Support for importing from/exporting to a GroupDAV share

2) Add Support for a 2-way-diff (take two VCards of the same object and
incorporate the changes in each into the other) - I have previous work on
this. The tricky part is mapping attributes between Android and VCards, but
you probably know this already.

So, what's your opinion on this?

Original issue reported on code.google.com by [email protected] on 22 Mar 2010 at 9:15

autoimport *.vcf in certain directory

As a one way automated copy feature, vcardio could autoimport all vcf 
files in a certain predefind directory on start (or better - 
periodically).

In conjuction with, for example, swiftp - ftp server, this could become a 
oneway autocopy solution for contacts.

Original issue reported on code.google.com by [email protected] on 8 Feb 2010 at 9:20

ORG and NOTE field supported

Your Overview page says, "Currently supported fields are phones, contact 
methods and photos."

In my testing, I found that the v 2.1 ORG and NOTE fields are also 
supported for both import and export, which was a pleasant surprise.


Original issue reported on code.google.com by [email protected] on 4 Aug 2009 at 4:27

Receive Business Card

What is the expected output? What do you see instead?
If someone sends CONTACT INFORMATION to me as a BUSINESS CARD, I should be
able to receive it on my android. NOTHING happens.


What version of the product are you using? On what operating system?
Android, HTC Magic.

Please provide any additional information below.
Please, please, please can someone come up with an app/version that enables
the android to receive business cards? (vcards). Even my 6 year old phone
can do that :(

Original issue reported on code.google.com by [email protected] on 27 Jul 2009 at 10:20

Create parsing unit tests

I think it would be a good idea to work on some unit tests for testing the 
parsing of vcards. As you can see by the other issues here this is not 100% 
solid.
This might also require the code to be a bit more modular. I'm willing to 
work on this. We could then just ask the user what cards are failing and add 
them to the test.

Original issue reported on code.google.com by [email protected] on 28 Jun 2009 at 8:55

Support vCard version 3 natively

What steps will reproduce the problem?
1.  Import a vcard file containing photos
2.  Photos do not show on the phone
3.  Export to a new vcard, photos are still there but the format doesn't comply 
with
RFC2426

What is the expected output? What do you see instead?
Expected:
PHOTO;ENCODING=b;TYPE=jpeg:/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGB

Got:
PHOTO;TYPE=JPEG;ENCODING=BASE64:
/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB


What version of the product are you using? On what operating system?
Version 0.8

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 May 2009 at 10:22

Enhancement request: Load vcf batch to user-selected Group in Contacts

It would be great if the import of a .vcf batch would load to a given 
group in Android Contacts.  This would allow the user to segregate these 
contacts from others for display.  It also would allow user to use Android 
settings to control sync of this group to Gmail.

My primary use of this app would be to load ~600 private contacts that I 
do NOT want to sync with GMail, to comply with policy of my organization 
that forbids upload of its contact data to third-party servers.  This is 
the primary value your app would add for institutional/corporate users. 
(Otherwise, if I did want them synced to Gmail, the Gmail web interface is 
superior to this app.)

Original issue reported on code.google.com by [email protected] on 4 Aug 2009 at 4:10

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.