Я пытаюсь запустить этот сервис
class PptpService extends VpnService<PptpProfile> {
@Override
protected void connect(String serverIp, String username, String password) throws IOException {
PptpProfile p = getProfile();
getDaemons().startPptp(serverIp, username, password, p.isEncryptionEnabled());
}
}
Кто-нибудь может мне помочь?Я пытался с этим, но не повезло.
Intent intent = new Intent(this, PptpService.class);
startService(intent);