[android-developers] Re: Testers Needed - Community App Store

2008-10-03 Thread Yalcin
self-signed certification for .apk? how to do it? do we need a certification authority like Thawte or others and pay for them 200-300 $. On Oct 3, 10:06 am, hackbod [EMAIL PROTECTED] wrote: On Oct 3, 12:09 am, Al Sutton [EMAIL PROTECTED] wrote: Because it's available and because I don't

[android-developers] Re: Registering and Handling of ContentObserver for Contacts database - handlers first invokation ???

2008-10-03 Thread Yalcin
Why the handler of a ContentObserver called before the changes completed to contacts database? I can’t find any workaround. Is it desired behaviour or bug? I hope to get an answer. On Oct 2, 1:53 pm, Yalcin [EMAIL PROTECTED] wrote: Hi, I want to check new entries, that made to contacts

[android-developers] Registering and Handling of ContentObserver for Contacts database - handlers first invokation ???

2008-10-02 Thread Yalcin
Hi, I want to check new entries, that made to contacts database. As example the notes column entry in people table. I register a ContentObserver and implement the handler, which is invoked on onChange method of ContactsChangeObserver. hier is a code snipped: +++ ContentObserver myObserver = new

[android-developers] Re: Database - Content Provider - Syncable

2008-09-05 Thread Yalcin
Is there a best praxis to follow now to make a content provider’s database to arrange with a network database? Not synchronization but a workaround to keep both of them expandable either from android user or network user. On Sep 5, 10:50 pm, Megha Joshi [EMAIL PROTECTED] wrote: 2008/9/2

[android-developers] Re: changing owner of a file in Windows environment

2008-09-02 Thread Yalcin Akdogan
Hi Justin, my database is in: /data/data/com.zmc.android.provider/databases i populate my database outside of the emulator, this is my problem. if i push it to emulator, then owner is root. Yalcin - Original Message - From: Justin (Google Employee) To: Android Developers

[android-developers] changing owner of a file in Windows environment

2008-08-31 Thread Yalcin
In (windows environment / in adb shell) I want to change the owner of my database file from 'root' to 'app_21'. is there a busybox tool for my environment? thanks in advance. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Exception on database query - table is empty / orderBy is not null

2008-08-31 Thread Yalcin
I am getting following exception during a database query wenn the table is empty and orderBy is not null (either modified ASC or modified DESC). Is something is wrong hier? --- logcat output android.database.sqlite.SQLiteException: no such column: modified: , while compiling: SELECT _id,

[android-developers] Re: Exception on database query - table is empty / orderBy is not null

2008-08-31 Thread Yalcin
: SQLiteDatabase db = mOpenHelper.getReadableDatabase(); Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, null); +++ On Aug 31, 9:32 pm, Yalcin [EMAIL PROTECTED] wrote: I am getting following exception during a database query wenn the table is empty

[android-developers] Re: onNewIntent in v0.9

2008-08-29 Thread Yalcin
Look at the discussion under the topic Activity Question couple days ago webmonkey wrote: 27. August 2008 20:25 --- there is no need to use singleTask, singleTop or any other special flags. It has something to do with the way Eclipse re- installs your application. If

[android-developers] To make Database Synchable ?

2008-08-29 Thread Yalcin
My application has a content provider, which operates on a database with 4 tables. I want to make them synchable. What are the steps? Is extending SyncableContentProvider instead of ContentProvider the solution? Is there any code sample? Thanks.

[android-developers] Re: I2C Devices

2008-08-29 Thread Yalcin Akdogan
Hi Naitik, device driver and low level stuff is discussed in Google-Android-Internals group. hier is the link: http://groups.google.com/group/android-internals?hl=en Regards, Yalcin - Original Message - From: Naitik To: Android Developers Sent: Friday, August 29, 2008 6:47

[android-developers] Database - Content Provider - Syncable

2008-08-29 Thread Yalcin
My application has a content provider, which operates on a database with 4 tables. I want to make them synchable. What are the steps? any help or reference welcome ! Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Database - Content Provider - Syncable

2008-08-29 Thread Yalcin
] wrote: 2008/8/29 Yalcin [EMAIL PROTECTED] My application has a content provider, which operates on a database with 4 tables. I want to make them synchable. Could you clarify this a bit more...an example of what your are trying to do will be nice... If you meant synchable as in they should

[android-developers] Re: 'Keytool error' when building

2008-08-29 Thread Yalcin
I can remember similar problem on my installation. did you get the newest ADT? ADT-0.7.1.zip hier ist the link: http://code.google.com/android/adt_download.html --- On Aug 30, 1:15 am, David Given [EMAIL PROTECTED] wrote: I have just upgraded from m5 to 0.9 on Linux using the ADT on Eclipse

[android-developers] Re: sqlite3?

2008-08-25 Thread Yalcin
use the path: /data/data/com.android.providers.settings/databases/ adb pull /data/data/com.android.providers.settings/databases/settings.db settings.db --- On Aug 25, 7:18 am, Anjan [EMAIL PROTECTED] wrote: I run command adb pull

[android-developers] Contact database – Group crea tion ?

2008-08-23 Thread Yalcin
Howto create a group (like clients, team, etc.) in contact database from an application? Which tables and columns to modify? I looked at the documentation but I'm not clear about it. Thanks, Yalcin --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: can't launch the application from eclipse with android-0.9

2008-08-20 Thread Yalcin
As a workaroud I tried with apkbuilder.bat apkbuilder appname.apk -v -z library.zip -f resources.ap_ -f classes.dex –f AndroidManifest.xml running: adb install appname.apk 379 KB/s (0 bytes in 151938.000s) pkg: /data/local/tmp/appname.apk Failure [INSTALL_FAILED_INVALID_APK] can