Add android metadata tag in theme apk and read the value -


add android metadata tag in theme apk , read value, saw this , application apk works fine have theme apk doesn't has application tag , tried adding metadata under manifest tag not working. can 1 me in adding how metadata or custom tag in manifest , retrive value in android application using packagemanager

the manifest of theme apk below

<?xml version="1.0" encoding="utf-8"?>   <manifest android:hascode="false" android:versioncode="2" android:versionname="1.0" android:installlocation="internalonly" package="com.template.theme.y"   xmlns:android="http://schemas.android.com/apk/res/android" xmlns:pluto="http://www.w3.org/2001/pluto.html">     <theme pluto:wallpaperimage="@drawable/wallpaper" pluto:ringtonefilename="media/audio/ringtones/standard.mp3" pluto:preview="@drawable/preview" pluto:stylename="@string/style_appearance_name" pluto:ringtonename="standard" pluto:name="@string/theme_name" pluto:author="@string/author" pluto:notificationringtonename="subtle" pluto:themeid="templatebread" pluto:notificationringtonefilename="media/audio/notifications/subtle.mp3" pluto:styleid="@style/templatebread" pluto:copyright="@string/copyright">         <meta-data android:name="themeengineversion" android:value="101" />     </theme> </manifest> 


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

VBA function to include CDATA -