aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/android/BootCompletedReceiver.java (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-06Serviceless rewrite, part 1Samuel Holland1-17/+0
Signed-off-by: Samuel Holland <samuel@sholland.org>
2017-11-24VpnService: Move it to a backends packageSamuel Holland1-0/+2
It should be split into two pieces: configuration file management (loading/saving/renaming/deleting) and calling into wg-quick via RootShell. The configuration file management part should then go back into the main package. This is in preparation for adding additional backends based on wg(8) and wireguard-go. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-08-13Major renaming and refactoring in activity and serviceSamuel Holland1-3/+2
Apparently "configuration" is the proper term, not "profile". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-07-31BootCompletedReceiver: Enforce receiving the correct broadcastSamuel Holland1-0/+2
This satisfies an Android security lint. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-07-30ProfileService: Add a listener to start it on bootSamuel Holland1-0/+14
This will allow automatically starting profiles on boot. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>