Android :: APIs Support Configuration / Specific PDE Server
Feb 15, 2010Carrier want it's navigator use specific PDE server to get location information so we need API that can configure PDE server(IP, Port) Is it available?
View 2 RepliesCarrier want it's navigator use specific PDE server to get location information so we need API that can configure PDE server(IP, Port) Is it available?
View 2 RepliesSay that there is an App Widget that shows a configuration Activity when placed. The configuration page allows adjusting the appearance of the widget.
The user may place multiple instances of this widget on their home screen. What would be the best way to maintain the unique configuration states on each of the widget instances? Or would each widget instance have to adopt the same global state?
I wish to know if Android 2.1 SDK support APIs for changing network settings such as bluetooth on/off, wifi on/off , airplane mode on/off.
View 2 Replies View RelatedI want to use our company WiFi to connect to net on x10. I have configured basic WiFi setting and i can see all computers on LAN. We are using proxy for Internet browsing but there is no provision to enter proxy IP details for WiFi. Earlier I was using SE P990i and it had provision to configure proxy which I could not find in X10.
View 1 Replies View RelatedI am trying to log onto my company website to check my email. I click on the intranet link and received a message that says "there is a problem with the security certificate for this site." It gives me an option to continue or cancel. I click on the continue button and the page says "You are not authorized to view this page. Your web browser is sending a WWW-authenticate header field that the web server is not configured to accept. Http error 401.2-unauthorized: Access is denied due to server configuration".
I don't have this problem on my iphone. My friend has a sprint Palm phone and it doesn't have this issue either. My other coworker uses a verizon Android phone and it doesn't have any issues accessing the website. Sprint duplicated the error at tech support with another Hero phone and advised it is the companies website and not sprint. I contacted my company and they advised it is isolated to the HTC Hero phone.
Managing Galaxy Note I & IIs running Android 4.1.2 and would like to direct network/browser traffic to a URL filtering service through a proxy server. Can confirm or deny (with supporting reference material) that Jelly Bean (specifically Android v4.1.2) has support for PAC files to configure proxy settings? The browsers I want to redirect to the proxy are Internet V4.1.2 (default with version 4.1.2 Android OS) and Chrome V 25.0.1364.169. Pointers to how to set proxies for those specific browser releases is also welcome.
If PAC file support does exist where does the PAC file need to be installed? How is it typically installed? Any documentation that reviews the PAC file support.
I am going to transform my website to mobile phone supported. My website consists of lots of java script and ajax stuffs so looked for a specific JS framework to support all the mobile os (android,ios,windows and blackberry).I googled and found some frame works like phonegap, sencha touch,JQTouch and appcelerator titanium. Can you people help me to find out the right one which will be suitable for my needs.
View 1 Replies View RelatedHow can I open a specific port in android? I have a server socket but the connection is rejected because the port is closed.
try { ServerSocket server = new ServerSocket(2021);
Socket client = server.accept();
} catch (Exception e) {
// TODO Auto-generated catch block a = false;
e.printStackTrace();
}
I'm working on a litte HTTP server application for the Android. Now I like to secure the communication by using SSL. But I got stuck by creating a suitable keystore file. Searching the archives I came to the conclusion that it will be best to use a BKS type keystore since all other keystore types (like JKS) are not supported on the android.
Unfortunately I can't figure out a way to setup the keystore file. I tried OpenSSL - wrong keystore format. I tried the keytool from JDK - right keystore format but it doesn't support BKS keystores. I tried the Keytool IUI - I could create a BKS type keystore but it alwais ends up in an InvalidKeyException "Illegal key size". No matter if I try to create a new certificate or import it from a JKS keystore. (I tried to create the RSA ver.3 certificate with a key size of 2048 and 1024 bits.) How do you create BKS keystores?
For completeness here's the code I trying to use for loading the keystore:..............................
Just picked up my incredible, and I have two questions....
1. how do i change the email notification to a specific sound? As of rite now, when i receive an email nothing happens (no sound or vibrate).
2. How do I select a specific ring for mms. I know how to select sms, but I cant figure out how to change the mms.
I have had androids for over two years now and am getting more and more concerned every time I download an app and seeing that it wants to READ my SMS message and Contacts.
Is there a way I can disable reading of SMS messages or any one of the other permissions by specific apps, or all apps?
Are we living in a world where any "joe schmo" can upload an app the to the app store and wait for those inadvertent downloads and collect all your personal information, and that's after all the time we spend protecting our identity and personal details?
I'm working on an Android app in which I would like to use multi-touch. However, I do not want to completely leave out those still running a 1.x OS phone. How do you program the app so that you can use the 2.x multi-touch APIs (or any other higher level API for that matter) and still allow it to gracefully degrade on 1.x systems. If you create a project in Eclipse for 1.x can you even still access the 2.x APIs?
Basically I want it to show up in the marketplace and work on all 1.6 and higher phones and just allow access to the higher level functionality if available.
Also, if anyone can point me to any data on the number of 1.x devices vs. 2.x devices in use.
I have recently started working on an app which has both Java and native components. I am trying to generate trace information for both components using Debug.startMethodTracing("myapp") and Debug.startNativeTracing() alternately.
However, both are behaving unexpectedly.
When I use Debug.startMethodTracing("myapp"), I can see a file /sdcard/myapp.trace being created but it is always empty no matter how long I run my app. When I use Debug.startNativeTracing() and start the emulator with the -trace <tracename> switch, I see a message saying "Trace started", but when I try to run my app, the
emulator crashes.
It seems a little ahead of tomorrows Google event.But I'm already getting many complaints that my app fails completely under Android 2.2.So that scares me a lot!Anyone know when the API might be released? Tomorrow perhaps?
View 5 Replies View RelatedI want to upload my documents(in the mobile) to google docs, Can Google data APIS work in Android?
View 2 Replies View RelatedIn the Web When we apply the Map Keys, we need sumbit the URL of our sites. In the Google APIs Add-on , we need the MD5 of our soft to get the Map keys. but here is a big question.
1. MD5 is easy to be changed.
2. First I got the MD5 of my app ,and then submit, but when I add the new keys, if the MD5 is changed, there will have the problems of the martch.
3. what should I do?
I'm building an app where I want to architect the app layer separately from the service layer (not android services). So I'll create a service interface(the apis) and then create a class(es) that implement that service interface. Inside the android application layer, I want to code to just that service interface. I think this is similar to how the google maps apis works. the api interface and stubs are in the framework, then each device actually provides the implementation. I don't need to go that far, but I am wondering how I package this up. One, where would I put these interfaces, so I can code to them in the app layer (like Activities). Second, how do I tell Android where the implementing classes are? I'm guessing this is somewhere in the manifest? For now I think I would probably just build the service implementation with the application source code, if that's easier. Eventually I'd like to break that out and drop it in as a 3rd-party jar.
View 4 Replies View RelatedI could see there are many APIs available in Android. If I have to create some device driver do I need to use Java(Android) for that also. Or that will be in C?
View 2 Replies View RelatedI work with Eclipse and implement some applications using the Android Emulator.
I'd like to know: Is it possible to extend Android APIs with other .jar file?
If it's possible, how can I extend the APIs?
I just have to add libraries to the project or do I copy it to the $ANDROID_HOME/platforms/android-8/tools/lib
Kinda like in the format of a class-dump result but in Java, I already have the Android.jar file and I would like to dump a clean listing of classes and methods for each .class file. How do I do this?
View 1 Replies View RelatedAnyone know where I can find what Android APIs are supported in the latest Flex AIR SDK (Hero). In particular is the speech to Text API supported?
View 2 Replies View RelatedHow can we display a buffer on screen?
Currently I create a bitmap using Bitmap's CreateBitmap() and render it on screen using canvas' drawBitmap().
Is there any other way of doing this in Java layer?
I am developing maps application which has to support driving directions and route search and creation. But there is no API support in Android for this.
So i want to use google map APIs instead of Android APIs, Are there any APIs available for driving directions in google. If yes, What are those APIs, How can i use those APIs with Http request/response.
I read some where that earlier googlenav package was there in Android SDK, but it is now removed. May I know the reason for removal of this package, or When can i expect it to come back with fixed version of googlenav in Android? Looking forward to your reply.
Or is it essentially the same SDK/APIs as standard Android development?
View 5 Replies View RelatedWondering what the differences between REST and JSON APIs are, how you interface with them, and how to go about parsing the results. My goal is to build a small application for my android phone to tell me when the next train will get to the subway station by my house, using the developer API provided by the transit agency.
I'm learning C++ in university, but hope to go about this in Java. I'm sorry if this is more of a discussion question rather than a black and white answer question, but I can't find any information elsewhere.
I am working on Eclipse and am looking for method to down load Android API's offline and then plug it to Eclipse
is there a method for that ? because my internet Connection drive me crazy.
I have a hosting account at godaddy ruinning Linux. Is has MySQL. I am creating a J2ME application that runs on android and I was wondering if there is any simpler way to connect from j2me application to my MySQL server?
Is it required to install anything at my server? which I cannot do because of the shared account. Any way to just open the connection, update some data in the MySQL from j2me application?
Does anyone know if there is an API available to access all SMS messages as well as emails in the inbox? 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@google groups.com To unsubscribe from this group, send email to android-developers+unsubscribe @googlegroups.com For more options, visit this group at http://groups.google .com/group/ android -developers?hl=en
View 9 Replies View RelatedI'm configuring a new machine for Android development and moving my current project over. I did a fresh install of all the Android tools and SDKs, and under "build targets", the Google APIs' target supports Android 2.2. Of course I need 1.5 as the base build target. My project doesn't build when I select that because the Google Maps stuff from maps.jar isn't there. In fact, after I did my full install I can't find maps.jar anywhere on my new machine. Is this jar file still required for Google Maps integration, or is it history? I'm using Eclipse 3.5. I guess I'd presume there would be a "google apis" for Android 1.5 build target. I'm thinking my install must be hosed; but maybe it's my understanding.. :)
View 1 Replies View RelatedHas anyone had success using Google Data APIs Client Libraries. I can't seem to successfully use the GData Java client libraries in an Android app. I notice that there used to be some GData access classes in the Wireless packages that have been removed. Should I be using some map data classes in the com.google.android.maps classes I'm not seeing? I started to go down the path of accessing data through raw http calls, but it's a beating.
View 3 Replies View Related