[android-developers] Re: Send Manual Broadcast

2009-12-25 Thread rezar
I gave both BT permission in my manifest file, but still it doesn't
work

On Dec 23, 10:44 am, Donal Rafferty draf...@gmail.com wrote:
 I presume you have any bluetooth permisiions required in the manifest?

 On Wed, Dec 23, 2009 at 9:41 AM, rezar rraw...@gmail.com wrote:
  I created an intend which manually calls BT broadcast receiver as
  follows:

  Intent manualIntent = new Intent();
  manualIntent.setAction
  (android.bluetooth.BluetoothDevice.ACTION_FOUND);
  sendBroadcast(manualIntent);

  But in Runtime I got the following Exception:
  ERROR/AndroidRuntime(4054): Caused by: java.lang.SecurityException:
  Permission Denial: not allowed to send broadcast
  android.bluetooth.device.action.FOUND from pid=4054, uid=10050

  I did not found any appropriate permission to enable me send
  Broadcast. Does any body have the same problem here ?
  I am working on a Droid phone.

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Send Manual Broadcast

2009-12-23 Thread rezar
I created an intend which manually calls BT broadcast receiver as
follows:

Intent manualIntent = new Intent();
manualIntent.setAction
(android.bluetooth.BluetoothDevice.ACTION_FOUND);
sendBroadcast(manualIntent);

But in Runtime I got the following Exception:
ERROR/AndroidRuntime(4054): Caused by: java.lang.SecurityException:
Permission Denial: not allowed to send broadcast
android.bluetooth.device.action.FOUND from pid=4054, uid=10050

I did not found any appropriate permission to enable me send
Broadcast. Does any body have the same problem here ?
I am working on a Droid phone.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Bluetooth Developers Guide and Bluetooth Sample Code

2009-12-22 Thread rezar
This is very good. I hope the emulator can support Bluetooth in the
near future. Now debugging bluetooth related things is very hard,
because we need to port each build to the real device and test it
there.

On Dec 22, 4:26 am, chen ji chenjihz...@gmail.com wrote:
 It is good. I just want to find such example. Thanks.

 On 12月19日, 上午6时12分, Nick Pelly npe...@google.com wrote:

  HiBluetoothDevelopers,

  We have just published an AndroidBluetoothDevelopers Guide, and a
  Sample Application. See links 
  below.http://developer.android.com/guide/topics/wireless/bluetooth.htmlhttp...

  I hope these become a useful resource,

  Happy Holidays,
  Nick Pelly
  AndroidBluetoothProject Lead

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Get the list of discovered bluetooth

2009-12-21 Thread rezar
No answer ? :(

On Dec 18, 12:06 pm, rezar rraw...@gmail.com wrote:
 Can any body help me how can I get the list of discoveredbluetooth
 device ?
 I am currently developing an application which scan forbluetooth
 devices in a specific time interval and log their names.
 I haven't been found any example yet. also it seems that
 BluetoothAdapter class does not support this.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Get the list of discovered bluetooth

2009-12-18 Thread rezar
Can any body help me how can I get the list of discovered bluetooth
device ?
I am currently developing an application which scan for bluetooth
devices in a specific time interval and log their names.
I haven't been found any example yet. also it seems that
BluetoothAdapter class does not support this.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Uploading a File with HttpClient and HttpPost

2009-11-15 Thread rezar
I solved the problem. I post my code here for others to have a working
sample:
on the server side I made a simple servlet:
--
private void receiveFile(HttpServletRequest req, HttpServletResponse
resp) throws Exception {
Enumeration emns = req.getHeaderNames();
InputStream is = req.getInputStream();
OutputStream os = new 
FileOutputStream(req.getHeader(FILENAME_STR));
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = is.read(buffer)) != -1) {
  os.write(buffer, 0, bytesRead);
}
is.close();
os.close();
}
protected void doPost(HttpServletRequest request,HttpServletResponse
response) throws ServletException, IOException {
try {
receiveFile(request,response);
} catch (Exception e) {

System.err.println(ERROR-+e.getMessage());
e.printStackTrace();
}
}

At the android side (SDK v.2.0 ):
private HttpPost post;
public void doUpload(String filepath,String filename) {
HttpClient httpClient = new DefaultHttpClient();
try {

httpClient.getParams().setParameter(http.socket.timeout, new
Integer(9)); // 90 second
post = new HttpPost(new URI(YOUR_SERVER_ADDRESS));
File file = new File(filepath);
FileEntity entity;
if (filepath.substring(filepath.length()-3, 
filepath.length
()).equalsIgnoreCase(txt) ||
filepath.substring(filepath.length()-3, 
filepath.length
()).equalsIgnoreCase(log)) {
entity = new FileEntity(file,text/plain; 
charset=\UTF-8\);
entity.setChunked(true);
}else {
entity = new 
FileEntity(file,binary/octet-stream);
entity.setChunked(true);
}
post.setEntity(entity);
post.addHeader(FILENAME_STR, filename);

HttpResponse response = httpClient.execute(post);
if (response.getStatusLine().getStatusCode() != 
HttpStatus.SC_OK) {
Log.e(TAG,ErrorResponse Status 
line
code:+response.getStatusLine());
}else {
// Here every thing is fine.
}
HttpEntity resEntity = response.getEntity();
if (resEntity == null) {
Log.e(TAG,-Error No Response 
!!!-);
}
} catch (Exception ex) {
Log.e(TAG,-Error-+ex.getMessage());
ex.printStackTrace();
} finally {
  httpClient.getConnectionManager().shutdown();
}
}


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Uploading a File with HttpClient and HttpPost

2009-11-12 Thread rezar
I Also have problem uploading to a server with new HttpClient v.4
I am trying to upload a file same as the example in the httpclient
docs.
but it doesn't work and I get NullPointerException when I execute the
post method:

HttpClient client = new DefaultHttpClient();
post = new HttpPost(myServletAddress);
File file = new File(filepath);
FileEntity entity;
if (filepath.substring(filepath.length()-3, filepath.length
()).equalsIgnoreCase(txt) ||
filepath.substring(filepath.length()-3, filepath.length
()).equalsIgnoreCase(log)) {
entity = new FileEntity(file,text/plain; 
charset=\UTF-8\);
}else {
entity = new FileEntity(file,binary/octet-stream);
}
post.setEntity(entity);
HttpResponse response = httpClient.execute(post);

On Nov 9, 9:43 pm, Mark Hansen stonedon...@gmail.com wrote:
 Gah let me try posting this in the correct forum...

 I'm working on an application that does an upload to a webserver, but
 struggling with the actual fileupload.. code:

 byte[] data = params[0]; // this is my picture data in a ByteArray

 HttpClienthttpClient= new DefaultHttpClient();

 HttpPost request = new HttpPost(http://www.someurl.com/upload.aspx;);

 ListBasicNameValuePair nameValuePairs = new
 ArrayListBasicNameValuePair();
 nameValuePairs.add(new BasicNameValuePair
 (filename,droidUpload.jpg));
 nameValuePairs.add(new BasicNameValuePair(userfile, ?) // how do
 I add my byte array, obviously can't go here.

 request.setEntity(new UrlEncodedFormEntity(nameValuePairs));

 Now, I have this working with what is no longer supported in
 MultipartEntity as follows:

 MultipartEntity  entity = new MultipartEntity();
 entity.addPart(filename,new StringBody(droidUpload.jpg));
 entity.addPart(userfile[], new InputStreamBody(new
 ByteArrayInputStream(data), droidUpload.jpg));
 request.setEntity(entity);

 Problem is MultipartEntity is apparently no longer supported, although
 I found the libraries I can include in my project, so I'm hoping Im
 just missing something stupid here.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Android Dev Guide example for Audio recording doesn't work with SDK 1.6

2009-10-20 Thread rezar


I tried to record call from mic. when a phone call is initiated.
I use the code from this link: 
http://dev.android.com/guide/topics/media/index.html
But it seems it doesn't work any more, e.g. MediaStore.MediaColumns.
does not have TIMESTAMP, I can not instantiate a ContentResolver
object, etc.

Is this bug in the documentation ? How can I report it ?
Can anybody help me with new audio recording example.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Obtaining/calculating process CPU usage.

2009-05-05 Thread rezar

You can use output of the top command, for your process
Here is what I did:

Runtime runtime = Runtime.getRuntime();
Process process;
String res = -0-;
try {
String cmd = top -n 1;
process = runtime.exec(cmd);
InputStream is = process.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line ;
while ((line = br.readLine()) != null) {
String segs[] = line.trim().split([ ]+);
if (segs[0].equalsIgnoreCase([Your Process 
ID])) {
res = segs[1];
break;
}
}
} catch (Exception e) {
e.fillInStackTrace();
Log.e(Process Manager, Unable to execute top 
command);
}

On May 4, 4:02 pm, Donald_W wojcik.to...@gmail.com wrote:
 Hello,

 How can I get/calculate current process CPU usage? ActivityManager
 provides method that returns a list of all active processes (list of
 RunningAppProcessInfo), but that class doesn't provide any CPU usage
 information.

 Thanks in advance,
 Tomek
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Obtaining/calculating process CPU usage.

2009-05-05 Thread rezar

I though I sent it once, but

Use out put of top linux command with java Runtime.

On May 4, 4:02 pm, Donald_W wojcik.to...@gmail.com wrote:
 Hello,

 How can I get/calculate current process CPU usage? ActivityManager
 provides method that returns a list of all active processes (list of
 RunningAppProcessInfo), but that class doesn't provide any CPU usage
 information.

 Thanks in advance,
 Tomek
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Disk Activity and Disk Usage

2009-03-18 Thread rezar

I found following as the output of diskstats:

Field 1 -- # of reads issued
Field 2 -- # of reads merged,
Field 3 -- # of sectors read
Field 4 -- # of milliseconds spent reading
Field 5 -- # of writes completed
field 6 -- # of writes merged
Field 7 -- # of sectors written
Field 8 -- # of milliseconds spent writing
Field 9 -- # of I/Os currently in progress
Field 10 -- # of milliseconds spent doing I/Os
Field 11 -- weighted # of milliseconds spent doing I/Os

But I don't know yet what are these names:
ram0-15, loop0-7, nbd0-15, mtdblock0-3 and mmcblk
Yes maybe I know what is RAM or MMCBLK but what about the others ?


On Mar 18, 10:14 am, rezar rraw...@gmail.com wrote:
 Can any body help me how to measure Disk Activity and Disk Usage on
 android ?
 Unfortunately iostat is not available in Android.
 I would like to monitor Data read and Data written for disk activity
 and Utilized and Free space for Disk Usage.
 I found diskstats but I don't know how to read it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Disk Activity and Disk Usage

2009-03-18 Thread rezar

Can any body help me how to measure Disk Activity and Disk Usage on
android ?
Unfortunately iostat is not available in Android.
I would like to monitor Data read and Data written for disk activity
and Utilized and Free space for Disk Usage.
I found diskstats but I don't know how to read it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Network activity for each Process (based on PID)

2009-03-16 Thread rezar

Science Yesterday I didn't receive any answer  :(

On Mar 16, 1:29 am, rezar rraw...@gmail.com wrote:
 Hi All

 I intend to log TCP activity of a given process.
 When I cd to the proc/[PID]/net folder, and check the content of
 the files there. They are not process specific they all have the same
 content.
 e.g a Process withPID=xxx and a process withPID=yyy their snmp or
 tcp or etc. are all the same.

 Do you know any way to go around this ? Is this a bug or something
 that current Linux Kernel of Android doesn't support yet ?

 Thanks,
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Network activity for each Process (based on PID)

2009-03-15 Thread rezar

Hi All

I intend to log TCP activity of a given process.
When I cd to the proc/[PID]/net folder, and check the content of
the files there. They are not process specific they all have the same
content.
e.g a Process with PID=xxx and a process with PID=yyy their snmp or
tcp or etc. are all the same.

Do you know any way to go around this ? Is this a bug or something
that current Linux Kernel of Android doesn't support yet ?

Thanks,
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-06 Thread rezar

And again there is no Bluetooth support !


On Dec 6, 4:00 am, Dan Morrill [EMAIL PROTECTED] wrote:
 Hello, developers!  I wanted to call your attention to the new Android 1.0
 SDK, release 2 that we just made available.

 For full details, please see our blog 
 post:http://android-developers.blogspot.com/2008/12/new-resources-for-deve...

 - Dan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-06 Thread rezar

It is just Bug fixes nothing new

On Dec 6, 2:40 pm, ena [EMAIL PROTECTED] wrote:
 What is new in new sdk??

 On Dec 6, 4:21 pm, Paulo Sergio [EMAIL PROTECTED] wrote:

  Hi
  very nice news!!!

  2 questions:
  whats the band frenquency of the phone? will it have 3g in europe?
  from where is it shipped? if outside europe will be expensive to who live
  here

  ordering online is a huge help, but i'm just sad that a lot of country where
  left out! it's online, why do this??

  thanks,
  paulo

  On Sat, Dec 6, 2008 at 9:52 AM, Al Sutton [EMAIL PROTECTED] wrote:

   The development phones are an excellent and much needed help (especially
   since they are available in markets where the G1 currently isn't).

   And I'd personally like to give a BIG hug to whoever fixed installing
   apps via the browser from places such as AndAppStore in the new SDK
   release :) :) :).

   Nice work and well done all at Google.

   Al.
  http://andappstore.com/

   Dan Morrill wrote:
Hello, developers!  I wanted to call your attention to the new Android
1.0 SDK, release 2 that we just made available.

For full details, please see our blog post:

  http://android-developers.blogspot.com/2008/12/new-resources-for-deve...

- Dan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: No Bluetooth API in 0.9 or 1.0 SDK?!?!?

2008-08-21 Thread rezar

Bluetooth is very important for further integration of other sensors/
device to android device.
I think they underestimate the importance of bluetooth.
Let me put it this way:
With bluetooth there is a possibility to connect Android device to
lots of other thing (from T.V. and Refrigerator to phone and PC) and
they simply removed it !!!
I don't have enough time to wait another six month for Android 1.1, if
it will not be released in version 1.0 I will go for another
platform.

On Aug 21, 1:04 am, foxxtrot [EMAIL PROTECTED] wrote:
 On Aug 20, 7:55 am, kokuryu [EMAIL PROTECTED] wrote:

  It looks like Android is only being released for people to make simple
  handheld games with.  With no usable Bluetooth API in the 0.9 SDK nor
  in the release 1.0 SDK or release 1.0 device,

 The API documentation does not say that there will be no Bluetooth
 API, only that the API will not be comprehensive. This suggests that
 by the time of 1.0, a partial API may be implemented. I have little
 doubt that a comprehensive Bluetooth API is near the top of the list
 of things that need to be done shortly after the 1.0 release.

  Sorry, but I dont have time to write any games - I'm
  writing serious applications.

 I'm sorry, but get over yourself.  Even with the current state of the
 Android Bluetooth API (and I really wish there was more information
 about the upstream issues), there is plenty of room for 'real'
 application development.  And the lack of a comprehensive API does not
 mean that the phone won't support Bluetooth altogether.  HTC would not
 release a smartphone in this day and age that lacked Bluetooth
 support.  At worst, we may need to wait until the 1.1 firmware to be
 able to write applications that fully utilize Bluetooth.

 This is an unfortunate turn of events, that is certain.  But the lack
 of a comprehensive API does not mean the lack of any support
 whatsoever.

 Jeff Craig
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: No bluetooth support ?!?!?!

2008-08-20 Thread rezar

Thank you Raymond for the note, it was good link.
I hope they will provide Bluetooth API as soon as possible.


On Aug 19, 8:17 pm, Raymond Rodgers [EMAIL PROTECTED] wrote:
 I believe there were some issues with the bluez package that caused them
 to remove it at least for the time being. See the release notes
 (http://code.google.com/android/RELEASENOTES.html) which state:

 Due to significant API changes in the upstream open-source project and
 due to the timeline of getting certain Bluetooth profile implementations
 certified, a comprehensive Bluetooth API will not be possible or present
 in Android 1.0.

 That's not saying that Bluetooth won't ever be present, just that it's
 not going to be in 1.0.

 rezar wrote:
  This is very discussing, now bluez package disapper :(
  I can not believe it. They reduced quality of their platform instead
  of increasing it.

  On Aug 19, 3:53 pm, Paulo Sergio [EMAIL PROTECTED] wrote:

  it seems that there will be no support for using bluetooth programatically,
  but i think the phones will support bluetooth..
  or so it seems...

  On Tue, Aug 19, 2008 at 2:42 PM, rezar [EMAIL PROTECTED] wrote:

  I'm very disappointed with new SDK, where is bluetooth ?
  Bluetooth is going to be the social sensor of the phones. Removing
  bluetooth is totally unacceptable.
  If there is no bluetooth support I will go for MS windows mobile.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] No bluetooth support ?!?!?!

2008-08-19 Thread rezar

I'm very disappointed with new SDK, where is bluetooth ?
Bluetooth is going to be the social sensor of the phones. Removing
bluetooth is totally unacceptable.
If there is no bluetooth support I will go for MS windows mobile.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Final SDK build available (84853); deadline extended to Tuesday, August 5?????

2008-07-15 Thread rezar

I hope they make it available for every body, at least member of that
email lists.

On Jul 15, 5:05 pm, Anthony [EMAIL PROTECTED] wrote:
 I got the same email too, don't know its meaning.

 On Jul 15, 10:55 pm, InakaBoyJoe [EMAIL PROTECTED] wrote:

  Ah, now it makes sense. So they've been making private SDK
  releases while the rest of us suffer with the pile of bugs from the 4+
  month old release.

  And then leaking this information is their way of telling us, We
  really only need about 50 apps for the platform, so the rest of you
  can just go develop for iPhone.

  Great, just great.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] android on NVIDA Tegra ?

2008-06-26 Thread rezar

Does any body have any information about android integrity with NVIDA
Tegra ? I hope Android support XVGA.
If there is a phone with strong camera and that new NVIDIA mobile CPU,
I think it will going to be really big step for Android success.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: H264 implementation

2008-06-23 Thread rezar

I think you can use JNI to call your C classes but google for it, I
remember once I saw somebody did it.

On Jun 22, 8:16 am, rajesh [EMAIL PROTECTED] wrote:
 Hey,

 I have an optimized version of H-264 written entirely in C language. I
 want to make use of this in my Media applications in Android. Can I use
 JNI to call this function. Or something else  please guide me.

 Thanks,
 Raj
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Where has everybody gone???

2008-04-16 Thread rezar

good post :)
I finished my submitted mine two weeks ago, it was not complete and
mostly it is prototype.
But I really get addicted to this group.

On Apr 13, 6:51 pm, Dexter's Brain [EMAIL PROTECTED] wrote:
 Hello All,

 Where's everybody gone? I dont find any new topics nor any messages
 here...

 What happened to everybody??? I guess, after all the hard work,
 everybody is having a good night's sleep???
 When you all wake up, please carry on. Though the ADC might be over
 (First phase atleast), shouldn't we continue with our work??

 Dexter.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread rezar

I just change the exit button to back on B and C activity.
I think it is usual in all mobile applications to go back to A then
exit the application.


On Apr 3, 11:23 am, Greg [EMAIL PROTECTED] wrote:
 I have three activies

 A  B  C

 i start sub activity from A then i startsubactivity from B

 i just want to do like when i finish C ..it finish all activies and
 show me the A activity

 please help me out

 i tried to do that but ..when i press back button it again shows B
 activity.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---