blob: 82a2f4b6476671907c190479e1fcf81ad6b2065b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package de.blinkt.openvpn;
import android.app.Activity;
import android.os.Bundle;
/**
* Created by arne on 13.10.13.
*/
public class LogWindow extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.log_window);
}
}
|