Android :: Hosting Application File On Own Site
Sep 25, 2010
I've got an app (.apk) file that I want to host on my site. Whenever I click on page link to the .apk file, I get the binary code listed as ASCII. The app does not download. I added:
AddType application/apk .apk
to the .htaccess file - tomcat server
View 6 Replies
Mar 17, 2009
I'm currently hosting an app on my own server so my beta testers can test it. I've set up the apk MIME type to be application/ vnd.android.package-archive, and when I try to download the app from the emulator, it downloads the 53KB apk file and installs it. When I try to do the same thing from a real ADP1 device, it only loads 43KB. When I try to install it, the system says that I'm trying to install an app that already exists (called "Android System") and that doesn't require any permissions, but nothing happens when I proceed. logcat tells me
"D/asset (16379): failed to open Zip archive '/ sdcard/download/[name of the app].apk'
Bonus points! When I try to download the app from the emulator, I can see that in the accesslog of my server. Not so when I download it from the device, even after deleting /sdcard/download/* and clearing the cache through the settings. Almost as if the device was loading an old copy from a proxy server. I'm not sure which APN I'm using, but none of the T-Mobile APNs have a proxy AFAICS. Is there a way to circumvent the proxy, assuming that this is the case? And/or tell the proxy not to cache this apk file?
View 7 Replies
View Related
Apr 6, 2010
I am writing an app that will require a centralized database, along with a small app to digest incoming file data and populate this database.
android phone -> file -> some app somewhere -> some database somewhere
I know this is probably a fairly common situation. Is there a particular hosting service/solution for this? Many apps must do something like this (with high score tables and the like). The trick is, I can't use one of the high-score-specific hosting sites, because I need the app in front of the database to interpret the incoming files.
View 1 Replies
View Related
Jul 30, 2010
Does anyone know when their beta will re-open so we can download it? Or is their a way to download the file while bypassing their official site?
View 2 Replies
View Related
Oct 23, 2010
I finished my first android application and I am trying to figure out which site to upload it too. Shall I take Android market or appbreain or whatever? Please tell me where i should put it.
View 10 Replies
View Related
Jan 26, 2010
I have built my app, it basically parses some XML data from a web site. When I run it for the first time it gets the data, then the XML gets changed and I run the app again but it does not override the current data. How can I override them?
View 1 Replies
View Related
Jan 24, 2010
I'm developing an Android and web application that will function as a service (use the same data). My question is how should the data be stored to allow for both the web and the android application to have access to the same set of data? Should the android application connect to the sites MySQL server to store/access data? If so how do I allow someone to access the data when they are not in a service area?
View 1 Replies
View Related
Feb 27, 2010
I'm trying to follow the example from google: http://code.google.com/apis/maps/articles/android_v3.html
Using the example files from their SVN repo: (http)gmaps-samples.googlecode.com/svn/trunk/articles-android-webmap/
But although it seems to compile and export it fails; can someone sanity check that its not just me this fails for and any hints as to if its a quick thing to fix, I've been prodding it with try/catch for the last 2 hours to no avail.
Forgot to add
It Compiles and Uploads to the emulator (and to my phone) but running it just results in
The Application WebMapActivity (process com.google.android.examples.webmap) has stopped unexpectedly. Please try again. [Force Close]
View 2 Replies
View Related
Jul 14, 2010
Is there a file site similar to gridlocks rom site where all the roms are compiled? On the eris section everyone posts a screenshots so they know what they are getting before downloading. I don't see that much here unless I'm missing something?
View 3 Replies
View Related
Apr 29, 2012
I am trying to do sending latitude and longitude from Android application to webserver / website / site port
View 9 Replies
View Related
May 31, 2010
Free Domain Name
Unlimited Space
Unlimited Emails
Unlimited Subdomains
Unlimited Databases
Php, Mysql, Perl, Ruby Support
Free Script Library
10 Gb Bandwidth/Month
Free Site Builder
Free 500 Templates
99% Up Time Guaranteed
Free Technical Support
http://indiaebazar.com/biswajit/prodesc.php?pid=53&rid=biswajit
View 2 Replies
View Related
Jun 10, 2010
I was able to get wireless tether to work on my rooted EVO, but for some reason I can't get the wired tether found here android-wired-tether - Project Hosting on Google Code to work. I installed HTCsync and the specified driver, but when I switch it to internet sharing I get "Error code 67. Registration failure. Your PCS Vision username and/or password may be incorrect".rk?
View 15 Replies
View Related
Apr 7, 2009
I've been working on my project for a while and have decided to share it's source so that I can get help from people and finish it and post it to the market (it's a highly addictive and fun card game). However, I have published it on google code at:
http://code.google.com/p/bestcardgameever-android/
And when I tried to download it with a friend that can help I kept getting messages saying that it is not an android project from eclipse I'd appreciate it if somebody could tell me exactly what needs to be uploaded and what doesn't need and how can I make it work - if you have done it before - you probably can easily help Thanks! also, if you can and want to generally join the project as a developer graphics person or web designer.
View 2 Replies
View Related
Feb 11, 2009
I know that I am supposed to add application/vnd.android.package- archive mime type in it. However I have to access to this. I have emailed godaddy asking them to add it but I just wanted to see if anyone knows of an alternate method that I could use to allow my users to download this from my site.
View 6 Replies
View Related
May 14, 2010
PostgreSQL has announced an Android app contest. I wanted to try out something but the only hosting I have does not provide PostgreSQL. Do I have any economical (read cheap: D) options? Is there a free hosting that anyone knows of?
View 1 Replies
View Related
Jul 14, 2010
I am new to Android and so I may be missing some very basic things here. I am trying to host custom KML files on a server behind my firewall and display those KML files on the Android emulator. I started by writing a simple app that uses an Intent to display the overlay and pointing the app at geo:0,0?q=
http://code.google.com/apis/kml/documentation/KML_Samples.kml. This works in the emulator.
Next I downloaded that KML file and posted it on my web server (Apache 2.2 on Fedora). I added an AddType directive for the .kml extension and restarted HTTPD. When I point my simple app's Intent to my internally hosted KML file I get the error "The community map could not be displayed because it contains errors." I added some code to try and download the KML file independently of the KML so I could check the status line and the like:
final HttpClient client = new DefaultHttpClient();
final HttpGet get = new HttpGet("http://mycompany.com/data/KML_Samples.kml");
try { final HttpResponse resp = client.execute(get);
android.util.Log.e("MapOverlays", resp.toString());
} catch (Throwable t) {
android.util.Log.e("MapOverlays", "Exception", t);
}
With a breakpoint on the first Log message line I can inspect the results:
statusline = "HTTP/1.1 200 OK"
Content-Type: application/vnd.google-earth.kml+xml
Here's the Intent I'm using:
final Intent intent = new Intent(
android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=http://mycompany.com/data/KML_Samples.kml"));
startActivity(intent);
So the two main questions are
What do I need to do to get KML loaded from a private server?
What tools are available (if any) to determine what is wrong with what I've done (something more informative than "The community map...")?
View 1 Replies
View Related
Apr 21, 2010
I am trying to set up a private repository of Android source code while hosting the git trees on github as private repos. I have no problem changing the manifest.xml file to point to public git trees hosted on github in the same way that CynagonMod does, but when trying to point to private repos I get the following error when trying "repo sync":
Initializing project username/android_external_webkit ...
fatal: The remote end hung up unexpectedly
error: Cannot fetch username/android_external_webkit
Where username/android_external_webkit is of course a private github repo of the same name. I understand the error occurs since I did not specify my user name and credentials to github, but I fail to see how to do it in the manifest.xml with repo.
View 1 Replies
View Related
Nov 14, 2010
Have anybody tried this on Dinc? Android-wired-tether - Project Hosting on Google Code
View 1 Replies
View Related
Jul 3, 2012
I have a problem with downloading files from hosting sites such as rapidgator, hellshare etc. On default browser and on Google Chrome files aren't downloading at all or there is downloaded a file which has for example 26kb or so, while I am trying to download files about 400-700mb. On Opera Mobile the files are downloading, but if I will minimize the browser and start any other app, the downloading process is stopped. I am really surprised with that because a few months ago I also had HTC Desire Z and I could've download any file with the stock browser and. while downloading, check any app I wanted.
I have Asus Transformer Pad 300 with Android ICS (newest update). When I download files about 10mb everything is ok, so I assume it's the size problem or maybe file extension, but I tried the app called All files download (or something like that) which has been recommended in a similar post (but that user had SGS3) and it didn't worked either.
View 1 Replies
View Related
Oct 14, 2012
I have to create an app that allows other devices to connect to my android terminal via wifi, without access point, so my device should become an access point to host their connections. i don't have to share the internet connection with them, just have to make them connect directly to me, then they send a UDP packet, and I have to read it, so on my device will have to be an UDP server after the connection creation. how to manage wifi? any step to follow? my android version is 4.0.3
View 1 Replies
View Related
Jul 17, 2010
I have tried everything found several wired tether options none work. I will start with the market pdanet randomly looses connection (if you have the answer please this seems easiest rout)
easy tether just plain doesn't work not sure why I think it's cause I am on windows 7 x64. Now I found a couple out of the market that also don't work android-wired-tether - Project Hosting on Google Code not sure how to get it to work and this azilink - Project Hosting on Google Code. This I got as far as trying to load it and I get OpenVPNClient start azilink_p1634: process started and then immediately exited: []. I like pdanet but it just keeps dropping connection.
View 10 Replies
View Related
Oct 11, 2009
I was just wondering if anybody knows of a mobile image hosting website that will allow me to upload wh image from my HTC hero and then host it and give me the picture link once uploaded? I've tried one or two but they say 'upload disabled' when I've tried, so I just wondered if anyone here had successfully used one.
View 9 Replies
View Related
Oct 14, 2009
I'm am creating an Android application, but in order to have one of the functionalities working I need to read a predefined xml file whilst only knowing its name, not the R.id..
In normal Java I know I can use
getClass().getClassLoader().getResource(xmlName)
But using the limited Android SDK thats not working, any knows how to solve this?
View 2 Replies
View Related
Oct 2, 2010
Can someone please tell me where I'm going wrong with this piece of code? Basically I want the app to download a .png file, display it to the user and also save it to the sd card for future reference. It seems to be all going fine until the while ((len = webstream.read(buffer)) > 0) part; as the debugger doesn't reach the breakpoint I've put in here, and I have a directory of empty .png files. I have the WRITE_EXTERNAL_STORAGE permission declared in my Manifest.......
View 2 Replies
View Related
Nov 19, 2010
I have two applications with two different application package names.
I want to use first application GUI code in the second one with out rewriting entire code.
But my first application using resource import statements in so many places.
Even i am able to compile it, i am getting runtime exceptions.
How to prevent these exceptions and make use one application GUI code in another?
View 5 Replies
View Related
Jul 24, 2010
I'm developing an image editor application for Android. I have a big problem: I haven't a mobile with Android. I found a person that helps me to test the application and I found many problems. The application works in the emulator perfectly but in the mobile the application constantly mistakenly ends. I want to print a log similar that the show in ddms in a file on the SDCard. I did it with a FileWriter but it isn't the same that I can see in ddms.
Is it possible to show the same output as ddms in a file?
If not possible I would like to get as much information as possible. The person who has the mobile don't have knowledge of programming and I have not got close.
View 2 Replies
View Related
May 27, 2010
I want to create a file out side the application and memory card. How to create it? I know how to create it under application but how to create it outside the application?
View 12 Replies
View Related
Aug 9, 2010
I have a issue about the backup part. I wanna do a backup of my application, however I don`t wanna send for google`s server(android service) I just want to push my data into a file and export this file, can I do this today?
View 12 Replies
View Related
Sep 29, 2010
Is it possible to genrate .apk file from our application?
View 1 Replies
View Related
Feb 20, 2013
I want my android application to create a .js file, which can then be read by my web view. I have read that the "assets" file is ready only so I cannot save a file to there during runtime. I am saving it in the default "/files/" directory.
I want to be able to reference this file from my webview HTML file. The webview is showing local html files stored in the assets folder. What is the file directory I should use to reference this the .js file in the .html file?
View 4 Replies
View Related