Android :: Using Project With Google Code Hosting
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
Nov 14, 2010
Have anybody tried this on Dinc? Android-wired-tether - Project Hosting on Google Code
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
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
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
Oct 8, 2010
In an effort to reduce duplication, I have my app's workspace split into 3 projects:
Main (A library project, where all of the common code lives)
Free (To make the free version)
Paid (To make the paid version)
Behavior in the free version and the paid version must differ sometimes. How can I "call into" the final projects from the library project? Here is some sample psuedo-code to illustrate my question: Code...
View 4 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
Dec 10, 2009
I have project A with some classes and some resources (used for classes configuration). I'd like to reuse its classes (and resources necessary for them) in another project B (and possibly in more projects). Currently I have 2 projects in Eclipse and they both builds fine, but when project B is started in emulator it fails with error.It should get classes and resources from both projects and package them together. 2) Make a third project which consists of symbolic links to classes and resources of those two projects. 3) Make project A as a service and consume it in project B. They all are imperfect: - 1 and 2 would pack classes and resources of project A into the .apk of project B. - 3 has performance penalty and reuse is not so easy.
View 16 Replies
View Related
Oct 14, 2010
The following code was copied from one project to another. No errors in project one.
In project 2 I get:
-The method onClick(View) of type new View.OnClickListener((){} must override a superclass method
-implements androd.view.View.OnClickListener.onClick
View 1 Replies
View Related
Oct 2, 2010
I want to be able to have two projects, one that contains production code and one that contains test code. This shouldn't necessarily be an Android-specific question, but I'm want to write some unit tests for some non-platform-specific Android code on the host PC.
I created a new Java project so I can run the unit tests on the PC and only include the non-platform-specific classes from the Android project. Both projects are opened in the same Eclipse workspace. I assume I need to somehow include these Android-project sources explicitly in the new project where I'll run the Junit tests, but I can't figure out how to do this.
View 3 Replies
View Related
Apr 14, 2010
I am currently moving from Xcode and iPhone development to Android with Eclipse. I want to have a shared code project so that I can store all the code to be shared across apps in one common library. However it would appear that the only android project available is for applications and not for code libs how can i achieve this?
View 4 Replies
View Related
Apr 23, 2009
The OpenWnn project was involved in the cupcake project when I got the code at 1st April, but it disappears in the latest cupcake code. Why? Will it be in the final cupcake release?
View 2 Replies
View Related
Jun 1, 2010
I'm pretty new to android, and just finished setup my environment and reading some tutorials. Then I got sdk samples from the web. Okay, what I wanna ask you is that is there a way to start a sample as a project in the Eclipse? I mean like clicking a project file in c# or a solution file.code...
Or, do I need to make a new android project and import (or add files? maybe) them?
View 4 Replies
View Related
Nov 15, 2010
I have an Android code base which uses APIs with settings to get different data for several apps. All apps use the same code base but with one or two design tweaks. So how do I re-use the main code base without having to copy the whole Android project each time?
iPhone uses multiple targets in the same project which works well. If android cant do this do I need to compile binaries of the code base in one project and then import into each new app project? If so how? I'm using Eclipse and am an intermediate Java developer.
View 2 Replies
View Related
Nov 21, 2010
How to push the code change to Android open source project? Anyone could provide a push command for me?
View 3 Replies
View Related
Sep 3, 2012
I just started making my way through beginner tutorials on developer.android.com. I'm stuck at the chapter which explains the life cycle of activities. I understand it but I can't get the supplied sample (sample) to work.
I start a new project with "Android project from existing code" and select the downloaded files but Graphical Layout view reports some errors like:
Code:
Failed to convert @color/dark_yellow into a drawable
Color value '@color/light_yellow' must start with #
Couldn't resolve resource @color/dark_yellow
Couldn't resolve resource @dimen/font_medium
I'm sure there's a simple solution...
I'm attaching an image: Image
View 4 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
Mar 21, 2010
Somethings I'll have an? .xml file selected when I compile a project, only to have a? .out.xml generated. Deleting the file doesn't clear the error, and Eclipse won't compile the project. It just reports that your project contains errors. The solution is to go to Project/Clean. This will clear the error in the project and allow it to compile.
View 6 Replies
View Related
Aug 11, 2010
I can now get our Android project to talk to our non-Android project. But there's still an issue: I are trying to have an Android class call a non Android Hello World class. I tried compiling our non-Android Hello World class in a separate Eclipse workspace. I then packaged it into a jar. I imported that jar into our Android Hello World class.
I then called one of the methods in the non-Android Hello World class. When I ran the Android Hello World class as an Android application, the following runtime error occurred. Here are the Android debug logs:
08-11 09:07:56.764: ERROR/AndroidRuntime(333): FATAL EXCEPTION: main
08-11 09:07:56.764: ERROR/AndroidRuntime(333): java.lang.ExceptionInInitializerError
08-11 09:07:56.764: ERROR/AndroidRuntime(333): at com.hello2.hello2.onCreate(hello2.java:27)
08-11 09:07:56.764: ERROR/AndroidRuntime(333): at android.app.Instrumentation.callActivityOnCreate(I nstrumentation.java:1047).....................
View 1 Replies
View Related
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
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
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
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
Jun 6, 2010
I have 2 android projects out of which I modified one to work as a library. I want the main project to refer to this library to perform few functions. While this scenario works just as expected, I want to introduce one more functionality. I want to link this library project with another just a java project which has code common to both Android and Blackberry applications. This second part however doesn't seem to work and throws "The application <appname> (<package name>) has stopped unexpectedly. Please try again" with a ForceClose button. I would greatly appreciate if someone can give a brief information on how to make this work.
View 2 Replies
View Related
Jan 25, 2010
I am a C# developer and getting started with Android. I am attempting to duplicate a couple applications I already have in VS. The project is made of 2 executables and 1 common assembly. The 2 executables contain the application specific logic while the common contains centralized forms and logic (such as login form). I am using Eclipse. So how can I accomplish this layout?
View 1 Replies
View Related
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
Aug 8, 2010
I followed the instructions here on how to create an Android library project, and use it in an Android application:
http://developer.android.com/guide/developing/eclipse-adt.html
But it is not working. I can see the library project is added to my application but I cannot reference anything in it because it won't build. The R.java file from the lib is NOT being added to my application project, so the lib project contains tons of errors, everywhere it tries to reference it's own R.java file.
I don't know if this has anything to do with it, but in the console there are messages stating that the there is "No resource identifier found for attribute 'X' in package 'Lib Package'. My library package has a a few styleable attributes defined for a custom view I made, all of which are being complained about in this console message. The library builds just fine, and I don't get those messages in the console until I hook the library to my application, so I don't know what's up with this.
View 1 Replies
View Related
Sep 15, 2010
When I right click the project in the eclipse, select "Properties". In the property page, select Android. According to the document, you can add the library project through that page. But my problem is that, there is no library information on the page. It only lists "project build target"
View 2 Replies
View Related
Jul 19, 2010
I have created a library project. When I use the library project in other project, it compiles. How ever, when I run the application, it always get the error "The application has stopped unexpectly.".
View 4 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