Skip to content

Commit afcb471

Browse files
committed
Added plugin source, manifest, project.properties and compiled jar
1 parent 02d63e9 commit afcb471

4 files changed

Lines changed: 36 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.unity3d.nostatusbar"
4+
android:versionCode="1"
5+
android:versionName="1.0">
6+
</manifest>
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-23
15+
android.library=true
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.unity3d.nostatusbar;
2+
3+
import android.os.Bundle;
4+
import android.view.WindowManager;
5+
import com.unity3d.player.UnityPlayerActivity;
6+
7+
public class UnityPlayerActivityStatusBar extends UnityPlayerActivity
8+
{
9+
@Override
10+
public void onCreate(Bundle savedInstanceState)
11+
{
12+
super.onCreate(savedInstanceState);
13+
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
14+
}
15+
}

0 commit comments

Comments
 (0)