I'm following this post to add a application class to initialize my application, i did as follow: Initialisation.java
package com.thinline.dm21.init;
import android.app.Application;
import android.util.Log;
public class Initialisation extends Application{
  public void onCreate() {
    super.onCreate();
    Log.i("Test","Executed");
  }     
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thinline.dm21"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="15" />
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar" >
    <activity
        android:name="com.thinline.dm21.calendrier.Calendrier"
        android:label="@string/app_name"
        android:configChanges="orientation" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"        
        android:name="com.thinline.dm21.init.Initialisation">       
</application>
</manifest>
but i dont see my message in the logcat. What am i missing ?
 
     
    