Skip to content
Snippets Groups Projects
  • ShadowNinja's avatar
    e4167382
    Upgrade Android build to Gradle build system · e4167382
    ShadowNinja authored
    The old Ant build system has been deprecated for a while and new development is focused on Gradle.
    I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory.
    I left the JNI files in the root directory.
    e4167382
    History
    Upgrade Android build to Gradle build system
    ShadowNinja authored
    The old Ant build system has been deprecated for a while and new development is focused on Gradle.
    I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory.
    I left the JNI files in the root directory.
styles.xml 474 B
<?xml version="1.0" encoding="utf-8"?>
<resources>
	<style name="Theme.Transparent" parent="android:Theme">
		<item name="android:windowIsTranslucent">true</item>
		<item name="android:windowBackground">@android:color/transparent</item>
		<item name="android:windowContentOverlay">@null</item>
		<item name="android:windowNoTitle">true</item>
		<item name="android:windowIsFloating">true</item>
		<item name="android:backgroundDimEnabled">false</item>
	</style>
</resources>