[android-developers] Re: Conversion to Dalvik format failed with error

2009-05-03 Thread dario
ou fail to remove a previous library variable pointing to the android jar (even if you update the path). I've fixed this problem by removing it (since there's a new one placed by the new eclipse plugin anyway). I hope this helps others that are in the same misleading predicament. -Dario

[android-developers] Re: manifest package

2009-10-22 Thread Dario
but you can put more manifest Mark Murphy ha scritto: > android wrote: > >> How do I indicate in the manifest multiple packages >> > > I do not believe this is possible. > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: 3GP file plays on hardware, not on emulator

2009-07-13 Thread dario
I had an identical problem when I saved videos with custom dimensions. So you may want to save to the common 352x288 and either clip or resize during playback or try saving using different aspect ratios. hope this helps, Dario On Jul 13, 5:32 pm, Mark Murphy wrote: > http://commonsware.

[android-developers] Android FTP

2009-07-29 Thread dario
hello I whant to make android simple FTP client, but I cant use any FTP sdk , can someone to tell me how to make connection to ftp on android --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] URL url

2009-07-29 Thread dario
can someone tell me how must be URL is this wright? URL url = new URL("ftp://user:p...@ftp://user.freewebhostx.com/";); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] FTP

2009-07-29 Thread dario
package com.android; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.But

[android-developers] files.length

2009-07-29 Thread dario
helo, in Java Se its tell me that files.length is 16 but when i run it in the android plathform tell me that there is 0 FTPClient f = new FTPClient(); f.connect(server, 21); f.login(username, password); FTPFile[] files = f.listFiles();

[android-developers] Re: Interleaved buffer in OpenGL incompatible with GLLogWrapper?

2010-03-10 Thread dario
Lance, This looks like issue 6109 http://code.google.com/p/android/issues/detail?id=6109 Which hasn't been updated but the good news is that I tried your code with the master branch and it's been fixed. Hopefully it'll make the next update to 2.1 -Dario On Jan 11, 4:31 am, Lan

[android-developers] Re: Spinner in ListView Activity

2010-10-19 Thread dario
Seems like you're not setting the adapter on the spinner but on the list, is this intended? (I'm assuming you are extending ListActivity) this would explain why onItemSelected isn't called. -Dario On Oct 18, 2:18 pm, SImplyG2010 wrote: > Sorry Bret I do not understand in whi

[android-developers] Re: How to read pdf/ppt/doc file in android offline?

2012-05-30 Thread Dario
We're dealing with radaee native library. It seems simple and fast. We would also check for PDFTron. Both are closed sources and commercial libraries. Il giorno martedì 3 aprile 2012 14:35:16 UTC+2, bhagyashri vaikos ha scritto: > > Hi all, > > I am doing a project in which i want my application

[android-developers] Re: Android isn't able to manage a PDF, this is bad.

2012-05-30 Thread Dario
t also PDFTron. cheers dario Il giorno mercoledì 18 aprile 2012 15:10:20 UTC+2, sblantipodi ha scritto: > > Since Android isn't able to manage a pdf inside the app I'm using > google docs to "translate" some pdf into html > and than show it inside a webview. > >

[android-developers] Open and render local PDF

2012-05-30 Thread Dario
I'm looking how to render PDF pages from a local file without using online services as Google Apps. The need is get a library (java or native) not tight to GPL2/GPL3 licenses as MuPDF is: our product will be a commercial product. As anyone experiences with PDFTron, Foxit or Radaee? Performances?

Re: [android-developers] how to display pdf file in a project

2012-06-04 Thread Dario
I think you should divide your project in two separate steps: - storage management: I think you're thinking about db storing to protect your document. - pdf rendering For the first step, I think you won't be able to put your file from db to ram and past it to the second step: third part library

[android-developers] Re: Market expanding to technically non-compliant devices?

2010-12-01 Thread dario
back to the start of this thread, I tested the following: But android.hardware.touchscreen is still gets listed in the dev console for market filtering. For apps that made sure that the touchscreen wasn't the sole input UI, it would be great to see these apps work on GoogleTV once the marke

[android-developers] Re: The connection to adb is down

2010-12-06 Thread dario
as of new 2.3 SDK, tools_r8 has a another path to add to your runtime path: /platform-tools (in addition to tools) -Dario On Dec 7, 1:57 am, "pramod.deore" wrote: > when i tried to execute command - adb kill-server  then it gives me > error as 'adb' is not recognized

[android-developers] Re: Android 2.3: eclipse reporting "Unable to execute dex: null"

2010-12-07 Thread dario
Fix is in master repo (verified) and it seems like 8.0.1 is ready to go, however I'm seeing a problem with the layout editor and custom views that have a dependency on a class that is in a referenced Java project. At least the error is accurate this time: NoClassDefFound: -Dario On Dec 7,

[android-developers] Re: Android 2.3: eclipse reporting "Unable to execute dex: null"

2010-12-07 Thread dario
Anselm, I couldn't repro with latest build. Xavier, I posted the bug I described as issue #13010 -Dario On Dec 7, 8:46 am, garbeam wrote: > I also wanted to note, that I see similar problems with Android > Library projects. It appears as if the ADK does not properly include &g

[android-developers] Re: Eclipse wont regenerate files since downloading the 2.3 SDK

2011-03-11 Thread dario
For what it's worth, another workaround (and another hint to the underlying problem) is to add a library to the Java Build Path under Project Properties (e.g. add junit) save project, then remove it. -Dario On Mar 9, 7:56 pm, Zsolt Vasvari wrote: > > But if I click on the project a

[android-developers] Show default view in activitygroup

2011-05-12 Thread dario
Hello In my app I have a tabHost with 4 tabs; one of these tabs is an activitygroup with different activities. I would like to show the default activity any time the corresponding tab is clicked. I'm handling onResume and onStart event and they work fine except when the corresponding tab was the

[android-developers] Launch timeout has expired, giving up wake lock!

2011-06-24 Thread dario
Hello I tryed to start Activity from other Activity startActivity(Main.this,Game.class); and when Game activity is show on the screen after 1-2 sec its go left and make black screen and its write this warrning 05-17 10:07:24.819: WARN/ActivityManager(73): Launch timeout has expired, giving up

[android-developers] Re: ADC 2 Submission Site -- Now live

2009-08-25 Thread Yuri Dario
Hello, one thing it is still not clear to me. I see that applications submitted for ADC2 will not be visible into the market, so we can publish another application in the market under a different package name. But application updates are not clear: while apps on market can be updated as we need

[android-developers] Re: Accelerometer OnSensorChanged() no longer occur in standby

2009-08-29 Thread Yuri Dario
Hi, > I have tried a wakelock, but only the full, screen-on wakelock allows > it to work, which is undesirable behaviour. my background service gets accelerometer events with a partial wake lock (and screen off). ADP1 with latest 1.5 firmware drop by HTC. bye, Yuri --~--~-~--~~--

[android-developers] Re: Accelerometer OnSensorChanged() no longer occur in standby

2009-08-29 Thread Yuri Dario
Hi, > the Magic or Hero when I tried partial wake locks (you mentioned > trying on ADP1, ie a G1 - have you tried it on any other handsets?) there are over 100 users now, so I think it works; I'll ask someone I know has a magic. > It has worked in the past without any requirement on a wake loc

[android-developers] Re: Accelerometer OnSensorChanged() no longer occur in standby

2009-08-30 Thread Yuri Dario
Hi, > http://code.google.com/p/android/issues/detail?id=3708 this means my application in the Market is broken too. At least I need to update the description... this is really bad. Yuri --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Accelerometer OnSensorChanged() no longer occur in standby

2009-08-30 Thread Yuri Dario
> >http://code.google.com/p/android/issues/detail?id=3708 > > this means my application in the Market is broken too. At least I need > to update the description... this is really bad. and worse, ADC2 is about to reach deadline. --~--~-~--~~~---~--~~ You receive

[android-developers] How to power off the screen?

2009-07-20 Thread Yuri Dario
Hi, I'm looking for a way to power off the device screen from my program. I see that PowerManager is only for system apps, and I can't find other ways. Can you help me? thanks, Yuri --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

[android-developers] Re: How to power off the screen?

2009-07-21 Thread Yuri Dario
On 21 Lug, 07:30, Sansiro wrote: > BTW, I use the goToSleep() method in this class, and I didn't get a > PowerManaget instance from Context. with the DEVICE_POWER right in manifest, I got a PowerManager instance, but goToSleep is still not usable. > > the screen. Do you want to put the device

[android-developers] Re: How to power off the screen?

2009-07-21 Thread Yuri Dario
Hi, > public static native int setScreenState(boolean on) tried this one, but calling it does nothing, and always returns 2; since this is a native method, I think it means EACCESS (permission denied). thanks, Yuri --~--~-~--~~~---~--~~ You received this messag

[android-developers] Re: How to power off the screen?

2009-07-22 Thread Yuri Dario
Hi, > By using the native method setScreenState(), I make my device's screen > off.The code is: > > int x=Power.setScreenState(false);//make the screen off > System.out.println(x);//0 will be print out > Thread.sleep(3000); > x=Power.setScreenState(true);//make the screen on > System.out.println(

[android-developers] Apache Jena framework on Android

2013-04-22 Thread dario bonino
Few months ago we were involved in a project using ontologies on Android-based mobile devices. We firstly tried the Androjena project (http://code.google.com/p/androjena/) but it's development is almost ceased and it supports only a subset of the Jena features. Therefore we tried to use the f

Re: [android-developers] which PDF reader & annotation APIs is worthy and good

2012-05-30 Thread Dario Finardi
We are using radaee. You should find it on AndroidPDF.mobi. Il giorno 30/mag/2012 19:25, "Rocky" ha scritto: > I'm going to develop PDF reader and editor (few annotation), which SDK > APIs is good like. > > iText. > Qoppa > Adobe > > plz let me know. > > > -- > Thanks & Regards > > Rakesh Kumar

[android-developers] Permission Denial at Receiving SMS

2011-04-28 Thread Dario Enser
pps i imported to my workspace to try it, but the result is the same again and again. can you help me please ? Thanks Dario -- 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@goog

[android-developers] Re: Drop of active installs, surge of 1-star ratings

2011-10-21 Thread Dario Rapisardi
Same issue here, ridiculous drop of active installs in just 1 day but without the 1-star ratings. Everything else seems normal. On Oct 20, 6:54 am, binarytoys wrote: > Have same issue, but without 1-star ratings. But overall ratings > number was slightly decreased. From other side activeinstallsd

Re: [android-developers] Xperia C 2305

2016-02-14 Thread 'Dario Dorando' via Android Developers
Please use english when asking here a question :) Am 14.02.2016 3:16 nachm. schrieb "Metawerter" : > Здравствуйте. Когда нибудь дадите возможность разблокировать загрузчик на > Xperia C 2305 ? > > -- > You received this message because you are subscribed to the Google Groups > "Android Developers"

Re: [android-developers] Selling ringtones / How to make the .wav files to work only on devices that paid for it?

2016-05-03 Thread 'Dario Dorando' via Android Developers
The way I would prefer: - Encrypt your wav files and let them decrypt in an player app The way I dont prefer, but it IS a way: - Develop your own music codec bound to the device ID Am 03.05.2016 1:25 vorm. schrieb "Business App" : > Hello, > > I am completely new on this. > I just created a few r

Re: [android-developers] Selling ringtones / How to make the .wav files to work only on devices that paid for it?

2016-05-03 Thread 'Dario Dorando' via Android Developers
Okay... forget the previous mail... I havent read it completely :D Am 03.05.2016 11:19 vorm. schrieb "Dario Dorando" < dariodora...@googlemail.com>: > The way I would prefer: > - Encrypt your wav files and let them decrypt in an player app > > The way I dont prefer,

Re: [android-developers] Block application install

2016-07-03 Thread &#x27;Dario Dorando' via Android Developers
There is an app called "Package Installer", which installs every package (apk & Playstore). You can simply set a password query for this one. This prevents every application from (un-)installing unless you enter the right password. Am 03.07.2016 11:24 vorm. schrieb "Adrian Tudor" : > I want to mak

Re: [android-developers] Block application install

2016-07-03 Thread &#x27;Dario Dorando' via Android Developers
nday, July 3, 2016 at 6:23:37 PM UTC+3, Dario Dorando wrote: >> >> There is an app called "Package Installer", which installs every package >> (apk & Playstore). You can simply set a password query for this one. This >> prevents every application from (un-)ins

Re: [android-developers] Run Android Studio

2016-07-20 Thread &#x27;Dario Dorando' via Android Developers
Try it out... why do you have such a small screen?? Am 20.07.2016 1:06 nachm. schrieb "Gregi Mahes" : > can i run android studio in 1024x600 screen? > > -- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and

Re: [android-developers] SON OF WHORE NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) COLOMBIAN & ITALIANAMERICAN MAFIA! THESE ARE "THE MYST

2016-07-24 Thread &#x27;Dario Dorando' via Android Developers
SHUT UP Am 24.07.2016 6:17 nachm. schrieb "'MARTIN ZAPICO HOLWOOD HOUSE ICAP EX MORGAN STANLEY' via Android Developers" : > SON OF WHORE NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH > COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) COLOMBIAN & > ITALIANAMERICAN MAFIA! TH

Re: [android-developers] For a help

2015-12-08 Thread &#x27;Dario Dorando' via Android Developers
1. You wrote it 3 times already :) 2. What type of Map? Self-Programmed? In an App?... Am 04.12.2015 3:06 nachm. schrieb "m tt" : > I am trying to get pretty good map. Which is you can look live. I mean > like a moving things. But i have a samsung galaxy tab. So i dont have > computer. Please if t

Re: [android-developers] a little problem

2016-01-03 Thread &#x27;Dario Dorando' via Android Developers
Which problem? Please be more precise. Am 03.01.2016 3:21 nachm. schrieb : > I made my app but I am facing a little problem to transfer it to .apk file > so that I can publish it > >- > > -- > You received this message because you are subscribed to the Google Groups > "Android Developers" gro

AW: [android-developers] a little problem

2016-01-04 Thread &#x27;Dario Dorando' via Android Developers
Have you sent it from an Computer to another one? If so, then you have to Import the Project first. I think it’s „Start“ -> „New Project“ -> „Import Project from existing Code“ or whatever. Greetz, Dario Gesendet von Mail für Windows 10 Von: ammaryasser2...@gmail.com Gesendet: Mon

AW: [android-developers] My livescores APP suspended: Violation of theimpersonation or deceptive behavior

2016-01-04 Thread &#x27;Dario Dorando' via Android Developers
Can you send us a screenshot, what the „problematic sites“ are? Gesendet von Mail für Windows 10 Von: Reshad Mirzeyev Gesendet: Montag, 4. Januar 2016 08:21 An: Android Developers Betreff: [android-developers] My livescores APP suspended: Violation of theimpersonation or deceptive behavior Hi,

AW: [android-developers] Why similar apps are not visible in an app page?

2016-01-04 Thread &#x27;Dario Dorando' via Android Developers
Maybe your game hasn’t got enough Downloads? Gesendet von Mail für Windows 10 Von: Jonyd M. Gesendet: Montag, 4. Januar 2016 11:18 An: Android Developers Betreff: [android-developers] Why similar apps are not visible in an app page? I published a game on play store over a month ago. It does not

AW: [android-developers] How to stop an applications music/sound whenHOME button is pressed?

2016-01-04 Thread &#x27;Dario Dorando' via Android Developers
On which Android Version? Gesendet von Mail für Windows 10 Von: Eric Risdall Gesendet: Montag, 4. Januar 2016 04:35 An: Android Developers Betreff: [android-developers] How to stop an applications music/sound whenHOME button is pressed? I am developing an app in Flash Professional CS5.5 & Acti