26 lines
1.2 KiB
Java
26 lines
1.2 KiB
Java
/*
|
|
Speed Climbing Stopwatch - Simple Stopwatch for Climbers
|
|
Copyright (C) 2018 Itsblue Development - Dorian Zeder
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, version 3 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.itsblue.speedclimbing_stopwatch;
|
|
public class MainActivity extends org.qtproject.qt5.android.bindings.QtActivity {
|
|
@Override
|
|
public void onCreate(android.os.Bundle savedInstanceState){
|
|
super.onCreate(savedInstanceState);
|
|
this.getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
|
//this.getWindow().setVolumeControlStream(android.view.AudioManager.STREAM_MUSIC);
|
|
}
|
|
}
|