Click here to Skip to main content
15,886,676 members
Articles / Mobile Apps / Android

Write a Console App on Android using Java

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
29 May 2011Apache5 min read 107.9K   3.4K   39  
Write console apps on Android for testing purposes
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.console.testhttp"
      android:versionCode="1"
      android:versionName="1.0">
<!--
    <application android:label="@string/app_name" android:icon="@drawable/icon">
        <activity android:name="TestHttp"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
-->
</manifest> 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer
Hong Kong Hong Kong
Like programming, reading, watching movies.
Wish to own a book store and a small cafe in the future.

Comments and Discussions