Skip to main content

My projects

I started learnıing Android one year ago. Now i have only one published app. In this year i learned a lot of thing and write a lot of codes and app for practise. But none of them was finished for me. Because i just want to publish useful app with great user experince.

Because of that  now i decide do a major update for my app Show The Way . I already use SherlockActionBar library from Jake Warthon. I will use Polaris map library from Cyril Mottier and support library from google. I will add a history page for multiple location save and built-in navigation on map(only with draw on map). I want to change progress dialog(async task) with thread then hide address and time information with slidingDrawer.


Besides all this improvement with this app, i just start coding one of my ideas. I think it will finish and tested in a mount. I write it because i need something like that and i think user will like it. (I don't tell anything about app idea for know because it is very changeable and i want to add all thing i think.

And on the other hand i am developing Türk Petrol 's Android App in last two weeks(with holiday i just work for 4 work day). I think in this week all of codes finish and after they decide UI, this project will finish in a couple of weeks.

I want to write something about advertisement. I am using adMob and inMobi with adWhirl. I don't trust adMob because they disabled my own account, now i use a account of my friend. But it has average reveune for my 20000 download app. On the other hand inMobi has only 0.5 dolar reveune in last month. I don't want to disturb user with advertisement. I don't want to use any thing with notification or main screen icon ads. Whatever, i am looking for other advertisement company. Any suggestion? Can you share your experince with ads?

And links of libraries i will use.
http://actionbarsherlock.com/
https://github.com/cyrilmottier/Polaris


Comments

Popular posts from this blog

How to change position of MyLocationButton on new Map API v2 - 2

In my previuos post[1], i mention a workaround for changing buttons on Google Map which we use with google services. It is good to know they listen developers and make their products more development friendly. (I hope it goes like that way all the time and all the product lines of Google) Now we have a method for setting padding of map. It is add padding to useful area of map. We can see full screen map but with padding we can use prefered area of it. It is good for overlay action bar and other things on map view. [ 2] They write a blog and take a video about it. Read blog and watch video if you are using google map in your app :) [3] And finally, They add this method because of this issue. That means, if you find a bug or want extra feature from and api, write to google via this issue tracking system. [1] http://blog.kozaxinan.com/2013/08/how-to-change-position-of.html [2] https://developers.google.com/maps/documentation/android/map#map_padding [3] http://googlegeodeve

How to set alarm to show a notification at future date with AlarmManager?

Lets assume you want to do a job a future time or show a notification at a selected time. AlarmManager can help to send an intent in future time. First we need to select date, Lets create a date in 2050, Calendar calendar = Calendar. getInstance () ; calendar.set(Calendar. YEAR , 2050 ) ; Date date = calendar.getTime() ; For showing notification we need a service. public class AlarmReceiver extends Service { public AlarmReceiver() { } @Override public IBinder onBind (Intent intent) { } } Add service to Manifest.xml <service android :name= "com.kozaxinan.example.alarm.AlarmReceiver" android :enabled= "true" android :exported= "true" > </service> We will modify AlarmReceiver for sending notification. But first we need to register a alarm. AlarmManager alarmManager = (AlarmManager) getSystemService( ALARM_SERVICE ) ; Intent intent = new Intent( this, AlarmReceiver. class ) ; intent.putExtra( &q

Finally I released my First Game; The Red Button

Finally I released  "The Red Button Don't Touch It" . My First Game for Android. Game has only one objective; be fast enough to react and click the green button. Playstore Link :  https://play.google.com/store/apps/details?id=com.kozaxinan.redbutton Please don't hesitate to give me feedback!