Android Google Analytics - adding to which xml? -
i instructed add following file not sure one, please me.
mark application entry – manifest
add analytics application name on manifest entry below : <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" android:name=".analytics">
but current project manifest have following:
<application android:allowbackup="true" android:hardwareaccelerated="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" >
what should become now?
this means have analytics
application class in app
android:name=".analytics"
will consider application base class.
for more info please refer link http://developer.android.com/reference/android/app/application.html
Comments
Post a Comment