Another trick is to load assets only after Screen initialize is finished, for example by using a clock that waits half a second or so before it fires and then you can do what needs to be done. Disable it also ofter it fires once!
On the topic it's say :Another trick is to load assets only after Screen initialize is finished, for example by using a clock that waits half a second or so before it fires and then you can do what needs to be done. Disable it also ofter it fires once!
it requires the use of third parties software to achieve this
New version AppToMarket 4.1
One thing to be aware of is that AppToMarket v4.1 does not retain the edited manifest. It also deletes the additional files baastheme.xml and colors.xml, so it is necessary to keep a copy of these files out of ATM's path.
Also, changing Min SDK Ver/Target SDK Ver does not seem to result in a change of the manifest?
However the manifest includes:
platformBuildVersionCode="22" platformBuildVersionName="5.1.1-1819727"
.... doesn't that relate to Android Lollipop? If so, not great because I understand that a large number of phones in use are on KitKat or lower.
<?xml version="1.0" encoding="utf-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android"><itemandroid:drawable="@color/orange"/><item><bitmapandroid:gravity="center"android:src="@drawable/ya"/></item></layer-list>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="orange">#FFFFC800</color>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#ffffff</color>
<color name="orange">#ffffc800</color>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/orange"/>
<item> <bitmap android:gravity="center"
android:src="@drawable/in"/> </item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/orange"/>
<item>
android:gravity="center"
android:text="Initialising..."
</item>
</layer-list>