PGM-Invoice

is the fast and easy way to issue invoice …

See how simple it is.

Demo version (free) and full version (€ 11.99) available from Market.

Control devices using the Android.

The AndroControl allows you to control electrical devices in your home or company. We developed software and control system of intelligent buildings.

WiFinder

is fast and easy program for searching and connecting to WiFi net.
Search in Google Market…

Free-SMS for Android

Free program for sending text messages from your Android phone

Read-System 1.21

New extension for Android ..


This library allows execute commands and catch output from shell.

FreeSMSWidget

New widget for sending text messages from your Android phone

Our applications:

PGM-Invoice 1.3

AndroControl 2.0

WiFinder 1.5

Free-SMS 0.7p

Read-System 1.21

FreeSMSWidget

Read-System 1.21


Read-System Library

Read-System 1.21

Installation & Usage


Setup an Android project as you would normally.

Download Read_System_Library.jar file from HERE
Go to Project > Properties > Java Build Path > Libraries and click on “Add External JARs…” Then add in the Read_System_Library.jar file.

A Step-By-Step Tutorial To Get You Started ….
This tutorial will take you step-by-step through writing a simple Hello World application. It assumes that you have Eclipse setup to work with the Android SDK already.
Get the Read_System_Library.jar file from


Start Eclipse. Go to “File” > “New Project” > “Project…” and choose “Android Project” under “Android”. Fill out the information

Important Info !
The library license fee is 5$ per package (check Info Box below). If you want test it first,
you must enter: “com.google.test” in Package name field. If you enter other package name, and don’t buy package license you’re see information dialog how to use library and command not be executed.


Click “Finish” to generate the skeleton for a project. The rest of this tutorial assumes that you named your application “ReadSystemHello”.
Select your project in the “Package Explorer”, then go to “Project” > “Properties”. Select “Java Build Path” and click on the “Libraries” tab. Click on “Add external JARs…” and select the Read_System_Library.jar from step 1.

Open ReadSystemHello.java and do the following:
-In the imports section at the top of the file, add this line:

import com.pgmsoft.library.ReadSystem;

-After the line “public class ReadSystemHello extends Activity {“, add this line:

private ReadSystem sys_out;

-Add the following as the last line of the onCreate method:

sys_out = new ReadSystem(this);

-After that, you can use this metod to system call

String output = sys_out.call(“cat /proc/cpuinfo”);

In “output” you have standard STDOUT from system call, you can display it for example … in textview widget:

TextView display = (TextView) findViewById(R.id.you_text_view); 
display.setText(output);

Build this app, install it on your Android device, and run it. You should see output from “cat /proc/cpuinfo” system call (same result like in adb shell)
If you do not have the Read System Call Library installed on the phone, you will be prompted to install it.



Screenshot