Android Developer Days is an organization that people, interested in Android and mobile technologies, get together and share their knowledge and experiences. Android Developer Days will take place in METU Cultural and Convetion Center in Ankara, Turkey on May 21 / 22 . There will be parallel sessions in two halls and one workshop hall in the organization.

In Android Developer Days, there will be presentations, tutorials and workshops. If you want to share your knowledge and experience about the subjects below, we are inviting you to share them in Android Developer Days. Moreover we appreciate all different ideas and papers beyond subjects below. More information is available on web site

  • Mobile World
    • Future of Mobile World
    • Future Mobile Technologies
  • Android Open Source Project (AOSP)
    • Ice Cream Sandwich
    • Future Releases
    • Android in Different Architectures
    • Android in Different Areas(Industry, Defense, Home Electronics etc.)
  • Android App Development
    • Best Practices in Development
      • Efficient usage of System Resources
      • Development for different devices
      • User Interface Design
    • Android SDK
    • Tablet Apps
  • Cross Platform App Development Frameworks
  • Communication Solutions
  • Mobile Education
  • Mobile Payment
  • App Monetization
  • Security
  • NFC
  • Google TV
  • HTML5 (Mobile Web Applications)
  • Game Development

Android Developer Days - www.androiddeveloperdays.com

Firstly, let me say that this document is an abstract information which is available in pdk documents. Secondly, you may want to look at the post that tells how to build Android source code.  And now, we can start, at a first glance to Android source codes, we see that applications, libraries, components in framework have Android.mk files in their specific directories. These Android.mk files defines how to build that source code. There are well defined specific rules for Android.mk files. Let me summarize them.

  • Name: We need to define a name for our build (LOCAL_MODULE := )
  • Local Variables: All builds may have some local variables so to start a new build it is good to clear all local variables (include $(CLEAR_VARS))
  • Files: We need to write all files we want it to be build (LOCAL_SRC_FILES := main.c)
  • Tags: Define tags for build. (LOCAL_MODULE_TAGS := eng development)
  • Libraries: If build needs to be linked to other libraries, we need to define them (LOCAL_SHARED_LIBRARIES := cutils)
  • Template file: We can define whether our build is executable,library or something else by including template file (include $(BUILD_EXECUTABLE))

BUILD_EXECUTABLE, CLEAR_VARS, etc. variables which are the absolute address of the template files are defined in build/core/config.mk.

Here is a simple Android.mk file that builds an apk

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# Build all java files in the java subdirectory
LOCAL_SRC_FILES := $(call all-subdir-java-files)
# Name of the APK to build
LOCAL_PACKAGE_NAME := LocalPackage
# Tell it to build an APK
include $(BUILD_PACKAGE)

Last line in Android.mk file builds the APK file. Different source code types must be built differently so we can also use $(BUILD_EXECUTABLE), $(HOST_JAVA_LIBRARY), $(HOST_PREBUILT) etc. variables according to our source code. (Definitions like my-dir, all-subdir-java-files are in build/core/definitions.mk)

we can add LOCAL_MODULE_TAGS variable to Android.mk file to determine that module to be installed in that source code built. Here are the some defined tags and their meanings

  • eng
    • Default variant
    • Installs modules tagged with: eng, debug, user, and/or development
    • Installs non-apk modules that have no tags specified.
    • Installs APKs according to the product definition files.
    • adb is enabled by default.
  • user
    • Final release
    • Installs modules tagged with user
    • Installs non-apk modules that have no tags specified
    • Install APKs according to the product definition files
    • adb is disabled by default.
  • userdebug, Same as user except:
    • Also installs modules tagged with debug
    • adb is enabled by default

These tags is same as build variants that can be specified in “choosecombo” function. “choosecombo” function is available after “source build/envsetup.sh” command.  We can specify build variant in building source code like below

make -j4 PRODUCT-generic-eng

eng” is the build variant “generic” is the product. The command above will build and install modules according to attributes of “eng” tag mentioned above.

Ahmet Oğuz Mermerkaya

118 Andro makes you easily access yellow and white pages for landlines in Turkey. In other words, people’s and companies’ landline numbers can be queried by 118 Andro. 118 Andro can be downloaded from Android Market

Read on »

Android Seminar on December 8 at Kadir Has University http://www.facebook.com/events/190509481036147/

Lately, we have heard some many exciting things about HTML5 so we, the traceper team, decided to learn what the key features are in HTML5 and how we can use them in traceper.

So we are writing this document to help our project team and ankara gtug community members learn somethings about HTML5. This document doesn’t include every aspect of HTML5, it just consist of parts of HTML5 we find important for us.

Equation of HTML5:

HTML5 ~= HTML + CSS + JS

Read on »

The extended second edition of the book “Merhaba Android” (Hello Android) has been published on November 2011. The book aims to be a fundamental resource for people who are willing to learn how to develop Android applications .

One feature of this book is that there is a web site with the same name; www.merhabaandroid.net. Readers can ask questions via this website to the writers about the points that they don’t understand.

Merhaba Android 2; is available  on book stores like D&R, Remzi, Inkılap and also it is available on 
pusula.com
hepsiburada.com (worldwide shipping),
idefix.com and
kitapyurdu.com.

We need to remind you that the book is written in Turkish languge.

You can download all required packages to build Android and run it in emulator. Having these packages, bundled in an archive, is a life saver for those whose ubuntu is offline.

You can learn how to download Android source codes by following instructions on http://source.android.com/source/downloading.html and now, let me give some instructions for how to build Android and run emulator on ubuntu 10.10 Read on »

One of my friend (Murat Onder) and I have written a book with name “Merhaba Android” (Hello Android) that is a fundamental resource for people who are willing to learn how to develop Android applications from a Turkish book.
 
Some of the chapters in “Merhaba Android”  are What is Android and what is the future of Android, How to install Android development environment, Hello Android application, Activites, User Interface elements, Services, Application Resources and Samples projects(Camera, GPS)
 
One of the other feature of this book is there is a web site with the same name; www.merhabaandroid.net. Readers can ask question via this website to us about the points that they don’t understand.
 
Merhaba Android; is available  on book stores like D&R, Remzi, Inkılap and also it is available on  pusula.comhepsiburada.com(worldwide shipping), idefix.com and kitapyurdu.com.
These are the seminars we have given…

Android Konya Turkiye, Turkey

Android Seminar Ankara Turkiye Turkey

Yeah, lately we have developed a grid for one of our customers and as expected it is special for our customer
Grid with locking and history features for files in file system

I think, this grid can be a very simple version of a kind of  configuration management tools

and now let me tell some of the features of  this grid.

  • It reads all the files and directories recursively in a directory (specified by developer or in runtime) and saves them into a mysql table Read on »