2022-01-06 23:54:55 -05:00
|
|
|
package com.stoutner.privacybrowser.activities;
|
|
|
|
|
|
|
|
import android.app.Service;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
import androidx.core.content.ContextCompat;
|
|
|
|
|
|
|
|
import static androidx.core.content.ContextCompat.startForegroundService;
|
|
|
|
|
2022-04-21 20:47:04 -04:00
|
|
|
import com.stoutner.privacybrowser.R;
|
|
|
|
|
2022-01-06 23:54:55 -05:00
|
|
|
public class I2PTunnelService extends AppCompatActivity {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2022-04-21 20:47:04 -04:00
|
|
|
setContentView(R.layout.webview_framelayout);
|
2022-01-06 23:54:55 -05:00
|
|
|
}
|
|
|
|
}
|