Developing Android Application 3

Weekly Review:

Last week I studied tutorials from http:/www.startandroid.ru/ru, which introduced me to basic theory(Activity, Intent and e.t.c) in simple language. By doing practice exercises and learning theory, I successfully reached to databases. Android can store data by:

1) Preference, which is another class option from android library. Despite it can be easily used, the storage of such method is short.

2) SQLite(mostly used), The problem which I met is complexity of learning it.

In Wednesday meeting we decided with our basic knowledge we should proceed on developing group project. On the of ideas is playing volleyball via two or more phones where by using phone's camera we can detect ball. Another idea is to make more functional OwnCloud applicaiton on android. The open source project GitHub provides only main code without some elements and folders. By using instructions we installed adb and wrote path to android in .bash_profile:

~ANDROID_HOME=$HOME/android/sdk

~PATH=$(ANDROID_HOME)/tools:$(ANDROID_HOME)/platform-tools:$(PATH)'

~export PATH

After we should launch setup_env.sh in terminal, however there was problem that command line was not found.

Also there is another way to setup by using eclipse where we didn't succeeded as well.

Comments